coderABC

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

问题:
我无意中在
Windows7 的命令提示符中输入ipconfig /all 发现有多条隧道适配器的本地连接。

解答:
Windows7系统中确实这样,这些隧道适配器的本地连接是由系统自动配置生成的。作用是实现IPv4 与IPv6 互相访问。但是,对于基本上只用IPv4 的用户,多个隧道连接没什么用,可以使用netsh 命令关闭Wlndows7 自带的IPv6 隧道适配器:
netsh interface teredo set state disabled 
netsh interface 6to4 set state disabled 
netsh interface isatap set state disabled 
当需要使用IPv6 网络时,只需要将上述命令中的“disabled ”替换成“default”以后,再运行一下就OK了。 

posted on 2016-12-23 00:33  as798982083  阅读(626)  评论(0编辑  收藏  举报