Linux默认是允许Ping响应的,系统是否允许Ping由2个因素决定的:A、内核参数,B、防火墙,需要2个因素同时允许才能允许Ping,2个因素有任意一个禁Ping就无法Ping。 A、内核参数
[root
@centos7 ~]# cat /
proc/sys/net/ipv4/icmp_echo_ignore_all
0
B、防火墙(注:此处的方法的前提是内核配置是默认值,也就是没有禁止Ping) 这里以Iptables防火墙为例,其他防火墙操作方法可参考防火墙的官方文档。
允许PING设置
iptables
-A INPUT
-p icmp
--icmp
-type echo
-request -j ACCEPT
iptables
-A OUTPUT
-p icmp
--icmp
-type echo
-reply -j ACCEPT
或者也可以临时停止防火墙操作的。
service iptables stop
禁止PING设置
[root
@centos7 ~]