How To Set Link Local Ipv6 Address 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.
To set a link-local IPv6 address on a Cisco router, first enable IPv6 routing on the router:
Router#conf t
Router(config)#ipv6 unicast-routing
Router(config)#end
Next, assign an IPv6 prefix to the interface:
Router#conf t
Router(config)#int f0/0
Router(config-if)#ipv6 address 2001:0db8:abcd::/64 eui-64
Router(config-if)#end
Finally, configure the IPv6 link-local address on the interface:
Router#conf t
Router(config)#int f0/0
Router(config-if)#ipv6 address fe80::/10 link-local
Router(config-if)#end