Pomocí níže uvedeného návodu se mi podařilo zprovoznit DHCPv6 a komunikaci mezi klienty. Zjistil jsem, že když je v síti DNS server, že mohu používat názvy jako \\SERVER nadále, v jiné síti musím zadávat celou IPv6 adresu. Nepodařilo se mi zatím zjistit, jak je to s tou šifrovanou komunikací po IPv6 - jestli je to automaticky při každé komunikaci nebo to musím někde nastavit. A ještě by mě zajímalo jestli lze nějak prohledávat zařízení v síti, když neexistuje broadcast. Někde jsem četl, že by se měla spustit služba, ale nepsali jaká. Nevíte někdo?
------------------------
On the DHCP server, start NETSH and switch to the INTERFACE IPV6 context, then type these commands:
SHOW INTERFACES
Note the interface number of the LAN adapter, which we'll call ##. Then do this:
SHOW INTERFACE ##
Note that Forwarding and Advertise are disabled. Enable them as follows:
SET INTERFACE ## FORWARDING=ENABLED ADVERTISING=ENABLED STORE=PERSISTENT
You can verify the results with SHOW INTERFACE ##. Then we have to delete any existing default route on the interface:
DELETE ROUTE ::/0 ##
(In my case, that route did not exist, so I got an error message.) Then add a new route:
ADD ROUTE ::/0 ## NEXTHOP=:: PUBLISH=YES STORE=PERSISTENT
At that point, IPv6 connectivity worked between all machines--no restart required.