DHCPv6 State-full Configuration from start to finish

Опубликовано: 23 Октябрь 2024
на канале: Man's IT Lab
592
12

#DHCPv6 State-full Configuration from start to finish
! On DHCP Server

enable
configure terminal
hostname DHCP_Server

ipv6 unicast-routing
ipv6 dhcp pool dhcp-statefull
address prefix 2001:abcd:1111:2222::/64
dns-server 2001:abcd:1111:2222::3
domain-name bbu.lab

interface fas 0/0
ipv6 address 2001:abcd:1111:2222::1/64
no shutdown
ipv6 dhcp server dhcp-statefull
ipv6 nd managed-config-flag
end
write

!! On dhcp client router
enable
configure terminal
hostname dhcp-client
ipv6 unicast-routing

interface fas 0/0
no shutdown
ipv6 enable
ipv6 address dhcp
end
write