ipv6 dhcp client

Use this command to configure DHCP client options to a DHCPv6 request.

Use the no form of this command to remove client options from a DHCPv6 request.

 

  • The command ipv6 dhcp client information-request is used to get only stateless configuration parameters (i.e., without address).
  • DAD-wait-time value is the maximum time (in seconds) that the client should wait for the duplicate address detection (DAD) to complete on an interface.
  • DUID option override the default when selecting the type of DUID to use. By default, DHCPv6 dhclient creates an identifier based on the link-layer address (DUID-LL) if it is running in stateless mode (with -S, not requesting an address), or it creates an identifier based on the link-layer address plus a timestamp (DUID-LLT) if it is running in stateful mode (without -S, requesting an address).

Command Syntax

Copy
ipv6 dhcp client information-request
ipv6 dhcp client dad-wait-time <1-600>
ipv6 dhcp client duid (ll | llt)
no ipv6 dhcp client duid
no ipv6 dhcp client dad-wait-time
no ipv6 dhcp client information-request

Parameters

information-request

Request to enable information-request

<1-600>

DAD wait-time in seconds

duid ll

Link-layer address

duid llt

Link-layer address plus timestamp

Default

None

Command Mode

Interface mode

Applicability

This command was introduced before OcNOS version 1.3 and modified in OcNOS version 5.0

Examples

Copy
#configure terminal
(config)#interface eth0
(config-if)#ipv6 dhcp client information-request
(config-if)#exit
 
(config)#interface eth0
(config-if)#ipv6 dhcp client dad-wait-time 20
(config-if)#exit
 
(config)#interface eth0
(config-if)#ipv6 dhcp client duid ll
(config-if)#exit