$ping google.com
データを再インポートできます。
PING google.com (74.125.227.96): 56 data bytes
64 bytes from 74.125.227.96: icmp_seq=0 ttl=56 time=26.939 ms
64 bytes from 74.125.227.96: icmp_seq=1 ttl=56 time=23.739 ms
ただし、wwwサブドメインにはpingを送信できません。
$ ping wwww.google.com
PING wwww.google.com (92.242.140.2): 56 data bytes
Request timeout for icmp_seq 0
Request timeout for icmp_seq 1
^C
--- wwww.google.com ping statistics ---
3 packets transmitted, 0 packets received, 100.0% packet loss
なぜそんなことですか?
答え1
Google はさまざまなサーバーを使用し、異なる DNS エントリを使用してサーバー間の負荷を分散します。あるサーバーが死亡すると、もう一方のサーバーが操作を完了します。
このコマンドを使用してhost
DNS 構成を表示できます。私のISPは現在「www.google.com」を次に確認します。
$ host www.google.com
www.google.com has address 173.194.32.240
www.google.com has address 173.194.32.241
www.google.com has address 173.194.32.242
www.google.com has address 173.194.32.243
www.google.com has address 173.194.32.244
www.google.com has IPv6 address 2a00:1450:4008:801::1011
ただし、DNSサーバーごとに確認方法が異なります。
$ host www.google.com 8.8.8.8
Using domain server:
Name: 8.8.8.8
Address: 8.8.8.8#53
Aliases:
www.google.com has address 74.125.232.19
www.google.com has address 74.125.232.17
www.google.com has address 74.125.232.16
www.google.com has address 74.125.232.20
www.google.com has address 74.125.232.18
www.google.com has IPv6 address 2a00:1450:4016:804::1013
IPアドレス(およびそのサーバー)はDNSサーバーによって異なります。
おそらく、あなたの場合は、DNSサーバーに存在しないサーバーのエントリが含まれています。この場合、あなたのブラウザは通常他のアドレスの1つを試すのに十分スマートです。