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或以上的系統中。筆者親測