ipconfig隧道适配器

2015-08-29

命令提示符中输入ipconfig /all 发现有30多条隧道适配器的本地连接,如何删除这些隧道适配器呢?

这些隧道适配器的本地连接是由系统自动配置生成的。作用是实现IPv4 与IPv6 互相访问。但是,对于基本上只用IPv4 的用户,多个隧道连接没什么用,可以使用netsh 命令关闭Wlndows7 自带的IPv6 隧道适配器:

a.bat
netsh interface teredo set state disabled
netsh interface 6to4 set state disabled
netsh interface isatap set state disabled

D:\>netsh interface teredo set state disabled
确定。
D:\>netsh interface 6to4 set state disabled
确定。
D:\>netsh interface isatap set state disabled
确定。

当需要使用IPv6 网络时,只需要将上述命令中的“disabled ”替换成“default”以后,再运行一下就OK了。

分类:操作系统 | 标签: |

相关日志

评论被关闭!