Windows 通过 IPv6 ULA 解析主机名

Windows 通过 IPv6 ULA 解析主机名

我正在运行 Windows 8.1,它正在尝试通过 IPv6 ULA 解析主机名。看一下ipconfig /all

Windows IP Configuration

   Host Name . . . . . . . . . . . . : rivercardiff
   Primary Dns Suffix  . . . . . . . : rivercardiff
   Node Type . . . . . . . . . . . . : Mixed
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   DNS Suffix Search List. . . . . . : rivercardiff
                                       lan

Ethernet adapter Ethernet 2:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : TAP-Windows Adapter V9
   Physical Address. . . . . . . . . : 00-FF-E5-CA-58-CA
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

Ethernet adapter Ethernet:

    Connection-specific DNS Suffix  . : lan
    Description . . . . . . . . . . . : Intel(R) 82579V Gigabit Network Connection
    Physical Address. . . . . . . . . : 00-19-99-C1-C9-49
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Link-local IPv6 Address . . . . . : fe80::38b5:3be8:dd73:5c3d%3(Preferred)
    IPv4 Address. . . . . . . . . . . : 192.168.1.247(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Lease Obtained. . . . . . . . . . : 05 November 2015 12:06:54
    Lease Expires . . . . . . . . . . : 05 November 2015 12:21:53
    Default Gateway . . . . . . . . . : 192.168.1.1
    DHCP Server . . . . . . . . . . . : 192.168.1.1
    DHCPv6 IAID . . . . . . . . . . . : 50338201
    DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-1C-59-DE-57-00-19-99-C1-C9-49
    DNS Servers . . . . . . . . . . . : fdd7:3388:bf71::1
                                        192.168.1.1
    NetBIOS over Tcpip. . . . . . . . : Enabled
    Connection-specific DNS Suffix Search List : lan

Ethernet adapter VirtualBox Host-Only Network:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : VirtualBox Host-Only Ethernet Adapter
   Physical Address. . . . . . . . . : 0A-00-27-00-00-00
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::188d:7f90:23b9:9918%436(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.56.1(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :
   DHCPv6 IAID . . . . . . . . . . . : -1190526937
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-1C-59-DE-57-00-19-99-C1-C9-49
   DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                       fec0:0:0:ffff::2%1
                                       fec0:0:0:ffff::3%1

我首先想到的是,问题可能与 Teredo 有关(在我执行 ipconfig /all 之前,我已经安装了 Teredo 适配器),因此我使用以下命令禁用了它

netsh int ipv6 isatap set state disabled
netsh int ipv6 6to4 set state disabled
netsh interface teredo set state disable

它摆脱了 Teredo 的东西,但问题仍然存在。

这只发生在我身上,网络上的其他计算机(Win8.1,Win10)没有同样的问题。

答案1

编辑:您可以使用 -4 参数强制 ping 使用 IPv4,或使用 -6 参数强制 ping 使用 IPv6

例子:

C:\Users\User>ping www.google.com -4

Pinging www.google.com [74.125.136.99] with 32 bytes of data:
Reply from 74.125.136.99: bytes=32 time=12ms TTL=48
Reply from 74.125.136.99: bytes=32 time=11ms TTL=48
Reply from 74.125.136.99: bytes=32 time=12ms TTL=48
Reply from 74.125.136.99: bytes=32 time=11ms TTL=48

尝试在 Windows GUI 中禁用 IPv6。

  1. 进入控制面板
  2. 进入网络和 Internet
  3. 进入网络和共享中心
  4. 选择网络适配器 在此处输入图片描述

  5. 转到网络适配器的属性

在此处输入图片描述

  1. 通过以下方式禁用 IPv6取消勾选选项

在此处输入图片描述

相关内容