Configuring static tunnels on Windows XP hosts can be performed by the following steps:
1. Create an IPv6-in-IPv4 tunnel, named myTunnel:
C:\>netsh interface ipv6 add v6v4tunnel myTunnel 195.251.29.15 \
195.251.29.243 enable
2. Add an IPv6 address to the tunnel:
C:\>netsh interface ipv6 add address “myTunnel” 2001:db8:1::1
3. Add a default route to the remote IPv6 address of the tunnel, e.g. 2001:db8:1::2, so that all IPv6 traffic goes through the tunnel:
C:\>netsh interface ipv6 add route ::/0 “myTunnel” 2001:db8:1::2
