Windows-Server-2008

禁用 ipv6 環回

  • November 14, 2012

我正在嘗試完全禁用/斷開 IPv6 環回。在這裡搜尋文章,我看到了到目前為止我所做的一切。

1)取消選中適配器上的 IPv6,這將禁用該 LAN 介面的 IPv6。

2)添加DisabledComponents DWORD 000000ff

Pre/Post reboot >netsh interface ipv6 show interface

上一篇:

Idx     Met         MTU          State                Name
---  ----------  ----------  ------------  ---------------------------
 1          50  4294967295  connected     Loopback Pseudo-Interface 1
12          50        1280  disconnected  isatap.{08551F83-B9DE-4FF1-8A21-5B988
00BEC66}
13          10        1280  connected     6TO4 Adapter
14          50        1280  connected     Teredo Tunneling Pseudo-Interface

郵政:

Idx     Met         MTU          State                Name
---  ----------  ----------  ------------  ---------------------------
 1          50  4294967295  connected     Loopback Pseudo-Interface 1

3)編輯主機文件看起來像:

# localhost name resolution is handled within DNS itself.
   127.0.0.1       localhost
#   ::1             localhost

那麼我還能做些什麼來禁用/斷開 IPv6 環回?Netsh 仍然顯示已連接的環回介面。

只是取消選中該框並不能完全禁用 ipv6。

c:>reg 添加 hklm\system\currentcontrolset\services\tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 255

除非您需要 ipv6,否則您應該這樣做,因為它會導致問題並使您的 dns 與所有條目混淆

你為什麼不netsh interface ipv6>uninstall呢?這將完全刪除 ipv6 支持。

引用自:https://serverfault.com/questions/290391