tunnelbroker.net IPv6 Tunnel

to delete an interface:

netsh interface ipv6>show interfaces
netsh interface ipv6>delete interface "IP6Tunnel"Code-Sprache: JavaScript (javascript)

WHERE „IP6Tunnel“ is your adapter you like to delete

to add an interface:

netsh interface teredo set state disabled
netsh interface ipv6 add v6v4tunnel interface=IP6Tunnel localaddress=185.196.21.177 remoteaddress=216.66.80.98
netsh interface ipv6 add address interface=IP6Tunnel address=2001:470:25:19e::2
netsh interface ipv6 add route prefix=::/0 interface=IP6Tunnel nexthop=2001:470:25:19e::1Code-Sprache: JavaScript (javascript)