web-dev-qa-db-ja.com

IPアドレスとnslookupホスト名にpingを実行できますが、ホスト名にpingを実行できません

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があり、ローカルドメインではないという点で、他の質問とは異なります。)

更新:ローカルホスト(127.0.0.1)でDNSサーバーを実行しています。たとえばopendnsを使用するように変更しても、ホスト名とping IPアドレスはnslookupできますが、pinghostnameはできません。では、何が問題なのですか?

**更新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すると、DNSサーバーにアドレスを要求する代わりに、パケットを192.168.7.255に送信します。

更新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
jao

あなたは自分自身(127.0.0.1)をDNSとして使用しています...本当にそれを意味しましたか? nslookupは、ご使用のマシンがDNSサーバーサービスを実行している場合に機能します。

DNSがネットワークアダプタで正しく設定されていることを確認してください。

3
bubu

サーバーでDNSを使用していて、ISPのDNSサーバーを指すDNSフォワーダーを設定しているため、サーバーのDNSを127.0.0.1に設定しましたか?

その場合は、このようなテストを試すことができます。 ISPのDNSサーバーを直接指すようにサーバーアダプターのDNSを設定します。その時点で、ipconfig/flushdnsを実行したり、再起動して再試行したりできます。そうすれば、さらに多くの情報が得られるかもしれません。

0
danbo