Windows7系统支持IPV6,但是这也给用户造成一些困扰,因为win7支持IPv6,所以会自发建立一条IPV6的隧道,通常我们用ipconfig /all就会看到很多条隧道适配器,比如我这边有20多个隧道,给使用带来不便。这是因为windows在IPv6迁移过程中需要使用一种或多种IPv6过渡技术。
只要使用以下3条命令把ipv6的接口关闭即可:
如图:
附录:
我们只用运用以下3条命令把IPv6的接口关闭即可
netsh interface teredo set state disable //netsh接口禁用Teredo的设置状态
netsh interface 6to4 set state disabled //netsh接口的6to4设置状态禁用
netsh interface isatap set state disabled //netsh接口isatap设置状态禁用
若想复原IPv6隧道则用以下命令:
netsh interface teredo set state default //netsh接口Teredo的默认设置状态
netsh interface 6to4 set state default //netsh接口的6to4默认设置状态
netsh interface isatap set state default //netsh接口isatap默认设置状态
这样你在查看你的本机IP运行ipconfig是就不会看到这么多隧道适配器了!目前这种问题只会出现在Windows7或以上的系统中。笔者亲测!