Without IPv6 routing enabled at the router, all hosts get the Link-Local addresses.
Enable LAN Routing at Router computer
Creating a static IPv6 routing infrastructureTwo subnets of Global Addresses:2001:0:0:1::/64 and 2001:0:0:2::/64 Router computer: netsh interface ipv6 add route 2001:0:0:1::/64 "192.168.1.1" publish=yes
Restart all client computers IP Address. . . . . . . . . . . . : 192.168.2.2 Vista computer: IPv6 Address. . . . . . . . . . . : 2001::1:e591:7892:dd96:2aa1 You can ping 2001::2:203:ffff:fecc:b5eb from Vista computer. IPv6 host can have other options, such as default gateway address, DNS server address, domain prefix, etc. All these options can be provisioned by DHCP server. netsh interface ipv6 set interface "Local Area Connection" otherstateful=enabled What is STATEFUL? The IPv6 protocol for the Windows Server 2003 family and Windows XP does not support the use of a stateful address configuration protocol. What is STATELESS? There is a router in local link. The Router Advertisement messages include stateless address prefixes and require that hosts not use a DHCP6 (a stateful address configuration protocol). The following network does not have a DHCPv6 router.
netsh interface ipv6 delete route 2001:0:0:1::/64 "192.168.1.1" netsh interface ipv6 set interface "192.168.1.1" forwarding=disabled advertise=disabled You can set up a DHCP server. The host computers will get IPV6 addresses by DHCP6 protocol – stateful.
Test.Communicate.com DHCP Server
You can force the IPv6 hosts to use the stateful addressing -- using DHCP6 protocol netsh interface ipv6 set interface "Local Area Connection" managedaddress=disabled
|
|