I am doing a small IPv6 stateless dhcp lab. But the client does not receive IP. The configuration is as follows:
DHCP server:
ipv6 unicast-routing
int lo0
ipv6 enable
ipv6 add 2001:111::1:1:1:1/128
int e0/0
ipv6 enable
ipv6 add 2001:10::1/64
no shut
int e0/1
ipv6 enable
ipv6 add 2001:11::1/64
ipv6 nd other-config-flag
no shut
ipv6 dhcp server IPv6Pool
!
!DHCP Server
!
ipv6 dhcp pool IPv6Pool
dns-server 2002:555::1
domain-name foo.net
DHCP client
interface Ethernet0/1
no ip address
ipv6 address dhcp
ipv6 enable
no shut
Debug
*Aug 17 21:55:13.846: IPv6 DHCP: Received SOLICIT from FE80::A8BB:CCFF:FE00:B10 on Ethernet0/1
*Aug 17 21:55:13.846: IPv6 DHCP: Using interface pool IPv6Pool
*Aug 17 21:55:13.846: IPv6 DHCP: Creating binding for FE80::A8BB:CCFF:FE00:B10 in pool IPv6Pool
*Aug 17 21:55:13.846: IPv6 DHCP: Binding for IA_NA 00040001 not found
*Aug 17 21:55:13.846: IPv6 DHCP: Allocating IA_NA 00040001 in binding for FE80::A8BB:CCFF:FE00:B10
*Aug 17 21:55:13.846: IPv6 DHCP: Freeing IA_NA 00040001 from binding for FE80::A8BB:CCFF:FE00:B10
*Aug 17 21:55:13.846: IPv6 DHCP: Freeing binding for FE80::A8BB:CCFF:FE00:B10 from pool IPv6Pool
DHCP-S(config-if)#
*Aug 17 21:55:13.846: IPv6 DHCP: Sending ADVERTISE to FE80::A8BB:CCFF:FE00:B10 on Ethernet0/1
I don't see Received Request from the client.
What have I missed here ?
thanks !!