web-dev-qa-db-ja.com

IPv6 pingがgoogle.comにアクセスできないのはなぜですか?

Windows7ボックスからのpinggoogle.comが機能しなくなったことがわかりました。

以下は出力です-IPv4pingが機能し、Yahooが機能することに注意してください。私のローカルルーターはここで故障していますか?

C:\Users\Jeff>ping google.com

Pinging google.com [2001:4860:4007:801::1007] with 32 bytes of data:
Destination net unreachable.
Destination net unreachable.
Destination net unreachable.
Destination net unreachable.

Ping statistics for 2001:4860:4007:801::1007:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

C:\Users\Jeff>ping -4 google.com

Pinging google.com [74.125.224.206] with 32 bytes of data:
Reply from 74.125.224.206: bytes=32 time=5ms TTL=55
Reply from 74.125.224.206: bytes=32 time=5ms TTL=55

Ping statistics for 74.125.224.206:
    Packets: Sent = 2, Received = 2, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 5ms, Maximum = 5ms, Average = 5ms
Control-C
^C
C:\Users\Jeff>ping yahoo.com

Pinging yahoo.com [98.139.183.24] with 32 bytes of data:
Reply from 98.139.183.24: bytes=32 time=98ms TTL=46
Reply from 98.139.183.24: bytes=32 time=86ms TTL=46

Ping statistics for 98.139.183.24:
    Packets: Sent = 2, Received = 2, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 86ms, Maximum = 98ms, Average = 92ms
Control-C

C:\Users\Jeff>ping -6 google.com

Pinging google.com [2001:4860:4007:801::1005] with 32 bytes of data:
Destination net unreachable.
Destination net unreachable.
Destination net unreachable.

C:\Users\Jeff>tracert google.com

Tracing route to google.com [2001:4860:4007:801::1008]
over a maximum of 30 Hops:

  1  Destination net unreachable.

Trace complete.
2
Jeff

PCはIPv6接続があると考えているようですが、ローカルルーターが正しく機能していないようです。ネットワークインターフェイスでIPv6アドレスを手動で構成しましたか?その場合、おそらくその固定構成を削除する必要があります。残りは、ISPがIPv6をどのように提供するか、およびルーターがIPv6を処理するかどうか/どのように処理するかによって異なります。

1
Sander Steffann