在 Windows 2003 服务器上我可以nslookup www.google.com
返回
Server: localhost
Address: 127.0.0.1
Non-authoritative answer:
Name: www.l.google.com
Addresses: 74.125.79.104, 74.125.79.147, 74.125.79.99
Aliases: www.google.com
然后我可以ping 74.125.79.104
:
Pinging 74.125.79.104 with 32 bytes of data:
Reply from 74.125.79.104: bytes=32 time=16ms TTL=54
Reply from 74.125.79.104: bytes=32 time=32ms TTL=54
Reply from 74.125.79.104: bytes=32 time=15ms TTL=54
Reply from 74.125.79.104: bytes=32 time=15ms TTL=54
Ping statistics for 74.125.79.104:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 15ms, Maximum = 32ms, Average = 19ms
但是我不能ping www.google.com
:
Ping request could not find host www.google.com.
Please check the name and try again.
(这个问题与其他问题不同,因为这个问题有一个 TLD,它不是一个本地域名。)
更新:我在 localhost (127.0.0.1) 上运行 DNS 服务器。即使我将其更改为使用例如 opendns,它仍然可以 nslookup 主机名并 ping ip 地址,但不能 ping 主机名。那么问题出在哪里?
**更新 2:**
以下是 ipconfig /all 的结果:
Windows IP Configuration
Host Name . . . . . . . . . . . . : SERVER
Primary Dns Suffix . . . . . . . : NETWORK.local
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
DNS Suffix Search List. . . . . . : NETWORK.local
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Broadcom NetXtreme Gigabit Ethernet #2
Physical Address. . . . . . . . . : 00-0F-1F-56-3B-AA
DHCP Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.7.2
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.7.1
DNS Servers . . . . . . . . . . . : 127.0.0.1
更新 3:
感谢大家的帮助和建议。我对此表示感谢。
Ipconfig /flushdns 返回:成功刷新 DNS 解析器缓存
Ipconfig /displaydns 返回:
2.7.168.192.in-addr.arpa
----------------------------------------
Record Name . . . . . : 2.7.168.192.in-addr.arpa.
Record Type . . . . . : 12
Time To Live . . . . : 0
Data Length . . . . . : 4
Section . . . . . . . : Answer
PTR Record . . . . . : webserver.mydomainname.com
1.0.0.127.in-addr.arpa
----------------------------------------
Record Name . . . . . : 1.0.0.127.in-addr.arpa.
Record Type . . . . . : 12
Time To Live . . . . : 0
Data Length . . . . . : 4
Section . . . . . . . : Answer
PTR Record . . . . . : localhost
更新 4:
Wireshark 显示以下内容:
3 11.540542 208.67.220.220 192.168.7.2 DNS Standard query response A 74.125.79.99 A 74.125.79.104 A 74.125.79.147
6 42.056794 192.168.7.2 192.168.7.255 NBNS Name query NB WWW.GOOGLE.COM<00>
这很奇怪:当我 时ping
,它会向 192.168.7.255 发送一个数据包,而不是向 DNS 服务器询问地址
更新 5:
以下是 netdig 的说法:
opcode: Query, status: NoError, id: 42
flags: qr rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 0, ADDITIONAL: 0
QUESTION SECTION:
www.google.com. IN A
ANSWER SECTION:
www.google.com. 86324 IN CNAME www.l.google.com.
www.l.google.com. 224 IN A 74.125.79.99
www.l.google.com. 224 IN A 74.125.79.104
www.l.google.com. 224 IN A 74.125.79.147
Query time: 0 ms
Server : 192.168.7.2:53 udp (192.168.7.2)
When : 1/6/2011 12:33:50 PM
Size rcvd : 100
答案1
您正在使用自己 (127.0.0.1) 作为 DNS...您真的是这个意思吗?如果您自己的机器正在运行 DNS 服务器服务,nslookup 将会起作用。
确保网络适配器上的 DNS 设置正确。
答案2
只是好奇,您是否将服务器上的 DNS 设置为 127.0.0.1,因为您在服务器上使用 DNS 并设置了指向 ISP 的 DNS 服务器的 DNS 转发器?
如果是这种情况,您可以尝试这样的测试。将服务器适配器上的 DNS 设置为直接指向您的 ISP 的 DNS 服务器。此时,您可以执行 ipconfig /flushdns 和/或重新启动并重试。您可能会通过这种方式获得更多信息....