Richard said:
Hello,
Using Windows XP SP1, I cannot add an IPV6 address with
the 6to4 format using Hexa characters.
The following error occurs
C:\Program Files\Support Tools>ipv6 adu
5/2002:A18:1818::A18:1818
address update error: 57
Thanks
Richard
First, be sure to have this installed, it provides an updated IPv6 stack:
http://support.microsoft.com/?kbid=817778
Now,don't use the ipv6 command.
It's being obsoleted.
Use the netsh IPv6 context to add addresses to interfaces.
I've not used 6to4 myself, but adding addresses to
interfaces is generally done like this:
C:\Documents and Settings\Administrator.HOMENET>netsh
netsh>interface
netsh interface>ipv6
netsh interface ipv6>show address
Querying active state...
<snip>
netsh interface ipv6>add address "AAISP" 2001:8b0:b7:1::1
Ok.
netsh interface ipv6>show address
Querying active state...
Interface 5: AAISP
Addr Type DAD State Valid Life Pref. Life Address
--------- ---------- ------------ ------------ ----------------------------
-
Manual Preferred infinite infinite 2001:8b0:b7:1::1
Link Preferred infinite infinite fe80::5:51bb:bf4e
<snip rest of output>
(AAISP happens to be the name of the tunnel interface I'm adding the
address to. You can use either the interface name or it's Index number,
IIRC. )