ping google.com 没有发送任何响应

ping google.com 没有发送任何响应

我正在使用 Ubuntu 18.04。我尝试通过 ping 检查我的互联网连接,google但只收到以下语句:

PING google.com (216.58.196.78) 56(84) bytes of data.

但Pinglocalhost工作正常。

我也检查了其他 IP 和网站。但是它们都不工作。

答案1

可能是您的 AP 防火墙或设备防火墙的问题。
如果是 ubuntu 设备上的防火墙,则此问题可能可以通过以下 iptables 规则修复:
iptables -I OUTPUT -j ACCEPT ## accept outgoing traffic
iptables -I INPUT -p icmp --icmp-type=echo-reply -j ACCEPT ### accept the input of echo replies

如果此方法无效,则很可能是您的 AP 防火墙(假设您已经确认该设备可以访问互联网)。

相关内容