How To Configure Ipv6 Dhcp On Cisco Router?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Configuring IPv6 DHCP on a Cisco router is quite simple and can be accomplished using the following steps:
1. Configure the IPv6 address on the interface:
Router# configure terminal
Router(config)# interface <interface-name>
Router(config-if)# ipv6 address <IPv6-address>/<subnet-mask>
2. Configure the router as a DHCPv6 server:
Router(config)# ipv6 dhcp pool <pool-name>
3. Configure the DHCPv6 pool parameters:
Router(config-dhcpv6)# address prefix <IPv6-prefix>/<prefix-length>
Router(config-dhcpv6)# dns-server <IPv6-address>
4. Enable the DHCPv6 server:
Router(config-dhcpv6)# exit
Router(config)# ipv6 dhcp server <pool-name>
5. Configure the interface to use DHCPv6:
Router(config)# interface <interface-name>
Router(config-if)# ipv6 address dhcp
6. Verify the DHCPv6 configuration:
Router# show ipv6 dhcp binding
Router# show ipv6 dhcp pool