Windows:
使用命令行方式开启Ping设置
- 打开cmd运行窗口
- 执行如下命令开启Ping设置
netsh firewall set icmpsetting 8
Linux:
检查云服务器的内核参数
- 检査文件/etc/sysctl.conf中配置项“net.ipv4.icmp_echo_ignore_all"的值,0表示允许Ping,1表示禁止Ping
- 允许PING设置
- 临时允许PING操作的命令:
#echo 0>/proc/sys/net/ipv4/icmp_echo_ignore_all
- 永久允许PING配置方法:
net.ipv4.icmp echo_ignore_all=0