新しいDebian 9 VMのPingの問題

新しいDebian 9 VMのPingの問題

ゲートウェイにpingを送信できますが、他に何もありません。私のワークステーションとサーバーからLinux VMをpingして応答を受け取ることができます。これは、実際のIPアドレスをpingすることとドメイン名をpingするために使用されます。

アイデア?これについての情報を見つけましたが、オンラインで見つけたすべての情報にはping機能がないようです。

Linux仮想マシンでpingを実行します。

root@Server:/# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
^C
--- 8.8.8.8 ping statistics ---
6 packets transmitted, 0 received, 100% packet loss, time 5122ms

root@Server:/# traceroute google.ca
traceroute to google.ca (172.217.3.163), 30 hops max, 60 byte packets
 1  206.116.239.129 (206.116.239.129)  0.345 ms  0.292 ms  0.375 ms
 2  208.181.248.85 (208.181.248.85)  2.166 ms  2.846 ms  2.524 ms
 3  154.11.10.11 (154.11.10.11)  6.438 ms  6.431 ms ae0.100.STTLWAWBGR80.bb.telus.com (154.11.10.9)  7.679 ms
 4  72.14.220.60 (72.14.220.60)  6.308 ms  6.412 ms  6.298 ms
 5  108.170.245.113 (108.170.245.113)  9.440 ms  9.573 ms  8.020 ms
 6  108.170.233.159 (108.170.233.159)  9.590 ms  9.387 ms 108.170.233.157 (108.170.233.157)  7.585 ms
 7  sea15s11-in-f3.1e100.net (172.217.3.163)  7.566 ms  7.565 ms  7.653 ms

root@Server:/# ping google.ca
PING google.ca (172.217.3.163) 56(84) bytes of data.
^C
--- google.ca ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3064ms

PingはLinux VMに正常にアクセスできます。

セットアップとインストールの過程で、パッケージをダウンロードしてインストールするためにインターネットにアクセスすることに問題はありませんでした。

Linuxは比較的新しいものなので、まだすべてを追跡しようとしています。

また、追加のping情報を追加することを忘れました。

root@Server:/# ping 192.168.xxx.1
PING 192.168.xxx.1 (192.168.xxx.1) 56(84) bytes of data.
64 bytes from 192.168.xxx.1: icmp_seq=1 ttl=64 time=0.112 ms
64 bytes from 192.168.xxx.1: icmp_seq=2 ttl=64 time=0.146 ms
64 bytes from 192.168.xxx.1: icmp_seq=3 ttl=64 time=0.146 ms
^C
--- 192.168.xxx.1 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2024ms rtt min/avg/max/mdev = 0.112/0.134/0.146/0.020 ms

root@Server:/# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.x.1     0.0.0.0         UG    0      0        0 ens192
192.168.x.0     0.0.0.0         255.255.255.0   U     0      0        0 ens192
192.168.xxx.0   0.0.0.0         255.255.255.0   U     0      0        0 ens192

ベストアンサー1

何らかの理由でサブネットがpingを拒否するように調整されました。問題が修正され、問題が解決しました。

おすすめ記事