我目前无法访问我的一个客户端服务器,看来我和服务器之间的网络连接可能有问题。但是,我尝试过的方法之一是通过nslookup
Windows 命令行工具获取服务器的实际 IP 地址。但这似乎在我的计算机上不起作用。
运行任何 nslookup 命令只会返回“服务器无响应”。
以下是一个例子:
C:\Windows\system32>nslookup www.google.com
Server: UnKnown
Address: 2606:4700:4700::1111
*** UnKnown can't find www.google.com: No response from server
在这个特定的例子中,我已将 DNS 设置为使用 Cloudflare DNS,但如果我使用提供商 DNS 或 Google DNS,也会出现同样的问题。我可以毫无问题地访问 Google 服务器并使用互联网,因此 DNS 显然可以正常工作。有人知道为什么它nslookup
不起作用吗?
这是我的 ipconfig /all 输出:
C:\Windows\system32>ipconfig /all
Windows IP Configuration
Host Name . . . . . . . . . . . . : Wildfire
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Hybrid
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
Ethernet adapter Ethernet:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Realtek PCIe GbE Family Controller
Physical Address. . . . . . . . . : 9C-5A-44-3C-4D-9E
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Wireless LAN adapter Local Area Connection* 1:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter
Physical Address. . . . . . . . . : 48-F1-7F-C2-ED-9B
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Wireless LAN adapter Local Area Connection* 10:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2
Physical Address. . . . . . . . . : 4A-F1-7F-C2-ED-9A
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Wireless LAN adapter Wi-Fi:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Killer(R) Wireless-AC 1550i Wireless Network Adapter (9560NGW) 160MHz
Physical Address. . . . . . . . . : 48-F1-7F-C2-ED-9A
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::30b6:eeab:4d53:b8e4%9(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.1.107(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Lease Obtained. . . . . . . . . . : 21. listopada 2019. 9:09:22
Lease Expires . . . . . . . . . . : 21. listopada 2019. 11:09:21
Default Gateway . . . . . . . . . : 192.168.1.1
DHCP Server . . . . . . . . . . . : 192.168.1.1
DHCPv6 IAID . . . . . . . . . . . : 105443711
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-24-ED-51-AC-9C-5A-44-3C-4D-9E
DNS Servers . . . . . . . . . . . : 2606:4700:4700::1111
2606:4700:4700::1001
1.1.1.1
1.0.0.1
NetBIOS over Tcpip. . . . . . . . : Enabled
Ethernet adapter Bluetooth Network Connection:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network)
Physical Address. . . . . . . . . : 48-F1-7F-C2-ED-9E
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Ethernet adapter vEthernet (Default Switch):
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Hyper-V Virtual Ethernet Adapter
Physical Address. . . . . . . . . : 00-15-5D-F7-39-02
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::fd51:db6:50fd:5d6b%23(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.46.225(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.240
Default Gateway . . . . . . . . . :
DHCPv6 IAID . . . . . . . . . . . : 385881437
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-24-ED-51-AC-9C-5A-44-3C-4D-9E
DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
fec0:0:0:ffff::2%1
fec0:0:0:ffff::3%1
NetBIOS over Tcpip. . . . . . . . : Enabled
C:\Windows\system32>
答案1
您已配置(CloudFlare)DNS 服务器的 IPv6 地址...但您实际上并没有自己的 IPv6 地址 – 您的 Internet 访问仅限于 IPv4。
(如果第一个 DNS 服务器无法访问,许多程序会自动使用不同的 DNS 服务器重试,但显然nslookup
不会这样做 - 它总是会尝试列表中的第一个服务器。)
打开 IPv6 配置窗口(例如通过ncpa.cpl
),并将“DNS 服务器”设置为“自动”。