-
Notifications
You must be signed in to change notification settings - Fork 7.7k
IPv6 Win10
onplus edited this page Nov 21, 2017
·
29 revisions
- 命令行
-
Win+X 打开Windows PowerShell(管理员),输入命令
// 设置 Teredo 服务器,默认为:win10.ipv6.microsoft.com netsh interface teredo set state enterpriseclient server=default ping -6 ipv6.test-ipv6.com // 重置 IPv6 配置 netsh interface ipv6 reset
-
重启系统
-
通过命令
ipconfig /all
命令查看当前网络信息,看到Teredo Tunneling Pseudo-Interface
有以 2001 开头的地址即可。 启动IE浏览器,访问 http://test-ipv6.com/http://ipv6.test-ipv6.com,如果选项卡 “测试项目” 下面的 “不使用域名的 IPv6 测试” 显示成功,则隧道建立成功。chrome浏览器的测试结果可能和IE不一样,请注意 -
如上面操作后仍无法启用 IPv6,可能是 Teredo 服务器无法正常连接,也可能是 Windows 自身配置问题,可尝试以下两种方法
// 第一种:修改 Teredo 服务器为 teredo.remlab.net netsh interface teredo set state server=teredo.remlab.net // 第二种:先卸载当前 Teredo 适配器再重新启用 netsh interface Teredo set state disable netsh interface Teredo set state type=default ping -6 ipv6.test-ipv6.com
同家庭版
-
Win+R 打开gpedit.msc
-
依顺序打开“计算机配置”——>“管理模板”——>“网络”——>“TCPIP 设置”——>“IPv6 转换技术” ,
“6to4 状态” 和 “ISATAP 状态” 都配置为 “已禁用状态” ,
“Teredo 状态” 配置为 “企业客户端”,“Teredo 默认限定” 配置为 “已启用状态”
___