另外共享下用了 N 年的 PC 拨号并自动建 6in4 隧道的 PowerShell 脚本:
rasdial 拨号名称 宽带账号 密码
$wc = New-Object net.webclient;
$url = "
https://ipv4.tunnelbroker.net/ipv4_end.php?pass=换&user_id=换&tid=换"
$wc.DownloadString(($url));
netsh interface ipv6 del address XXX 2001:(换)::2
netsh interface ipv6 del route ::/0 XXX 2001:(换)::1
netsh interface ipv6 del interface XXX
$myip = (netsh interface ipv4 show address 拨号名称 | findstr /c:"IP" | select -First 1 ).split(":")[1].trim()
netsh interface ipv6 add v6v4tunnel XXX $myip 换 he 的 ip
netsh interface ipv6 add address XXX 2001:(换)::2
netsh interface ipv6 add route ::/0 XXX 2001:(换)::1
换掉中文的部分,记事本存成 ipv6.ps1 运行后直接拨号并建立隧道。
其实弄个路由,用路由拨号比较方便。