Difference between revisions of "DHCPv6 Cisco IOS"
From Teknologisk videncenter
m |
m |
||
Line 1: | Line 1: | ||
{{In progress}} | {{In progress}} | ||
+ | This article will be written when the author gets experience using DHCPv6. (Hopefully shortly :-) | ||
+ | =DHCPv6 Relay agent= | ||
+ | ==On local link== | ||
+ | <source lang=cli> | ||
+ | R1(config)#<input>interface fastethernet 0/0</input> | ||
+ | R1(config-if)# <input>ipv6 dhcp relay destination FE80::250:A2FF:FEBF:A056 fastethernet0/1</input> | ||
+ | </source> | ||
+ | ==To global unicast== | ||
+ | <source lang=cli> | ||
+ | R1(config)#<input>interface fastethernet 0/0</input> | ||
+ | R1(config-if)# <input>ipv6 dhcp relay destination 2001:16D8:DD85:146::2</input> | ||
+ | </source> | ||
+ | ==To Multicast All Site Local DHCPv6 servers== | ||
+ | <source lang=cli> | ||
+ | R1(config)#<input>interface fastethernet 0/0</input> | ||
+ | R1(config-if)# <input>ipv6 dhcp relay destination FF05::1:3</input> | ||
+ | </source> | ||
+ | |||
*See [http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-dhcp_ps6441_TSD_Products_Configuration_Guide_Chapter.html http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-dhcp_ps6441_TSD_Products_Configuration_Guide_Chapter.html] | *See [http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-dhcp_ps6441_TSD_Products_Configuration_Guide_Chapter.html http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-dhcp_ps6441_TSD_Products_Configuration_Guide_Chapter.html] | ||
− | + | *See [http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-dhcp.html#wp1054443 Cisco DHCPv6 configuration guide] | |
+ | |||
[[Category:IPv6]][[Category:CiscoIPv6]][[Category:IOS]] | [[Category:IPv6]][[Category:CiscoIPv6]][[Category:IOS]] |
Revision as of 15:05, 12 December 2011
This article will be written when the author gets experience using DHCPv6. (Hopefully shortly :-)
DHCPv6 Relay agent
On local link
R1(config)#<input>interface fastethernet 0/0</input>
R1(config-if)# <input>ipv6 dhcp relay destination FE80::250:A2FF:FEBF:A056 fastethernet0/1</input>
To global unicast
R1(config)#<input>interface fastethernet 0/0</input>
R1(config-if)# <input>ipv6 dhcp relay destination 2001:16D8:DD85:146::2</input>
To Multicast All Site Local DHCPv6 servers
R1(config)#<input>interface fastethernet 0/0</input>
R1(config-if)# <input>ipv6 dhcp relay destination FF05::1:3</input>