Ubuntu 16.04を実行すると、他のWebサイトに正常に接続できます。
ping google.com
PING google.com (172.217.25.206) 56(84) bytes of data.
64 bytes from nrt12s13-in-f14.1e100.net (172.217.25.206): icmp_seq=1 ttl=54 time=42.6 ms
ping yahoo.com
PING yahoo.com (98.137.246.7) 56(84) bytes of data.
64 bytes from media-router-fp1.prod1.media.vip.gq1.yahoo.com (98.137.246.7): icmp_seq=1 ttl=49 time=252 ms
ただし、Githubをpingしたりブラウザからアクセスしたりすることはできません。
ping github.com
PING github.com (192.30.255.112) 56(84) bytes of data.
From 192.168.0.60 icmp_seq=1 Destination Host Unreachable
ただし、同じネットワーク上の他のコンピュータでは、すべてがうまく機能します。
ping github.com
PING github.com (192.30.255.112) 56(84) bytes of data.
64 bytes from lb-192-30-255-112-sea.github.com (192.30.255.112): icmp_seq=1 ttl=48 time=141 ms
ここで何が起こっているのでしょうか?私はこれがGithub IPアドレスの最初のオクテットがローカルIPアドレスと同じであるという事実に関連していると思います192.xxx.xxx.xxx
。
編集:出力sudo route -n
:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.179.1 0.0.0.0 UG 600 0 0 wlp3s0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 enp0s31f6
172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0
192.0.0.0 0.0.0.0 255.0.0.0 U 100 0 0 enp0s31f6
192.168.179.0 0.0.0.0 255.255.255.0 U 600 0 0 wlp3s0
答え1
ビットマスクがに設定されているローカルネットワーク(アドレス192.168.xxx.xxx)に異なるインターフェイスがあることがわかりました255.0.0.0
。一度、nmtui
そのインターフェイスのビットマスクを255.255.0.0
次に変更して問題を解決しました。