1) Add the following line to your /etc/sysctl.conf net.ipv4.icmp_echo_ignore_all=1 Then : sysctl -p 2) Using iptables: iptables -I INPUT -p icmp --icmp-type echo-request -j DROP 3) The cron job way , run crontab -e , then add the following line: @reb…
问题描述 CentOS,但是当执行ping命令的时候,提示name or service not known 解决方法 1.添加DNS服务器 vi /etc/resolv.conf 进入编辑模式,增加如下两行内容,分别是首选DNS服务器和备选DNS服务器.(可以自己选择DNS服务器,包括谷歌的8.8.8.8或者腾讯的119.29.29.29都是可以的) nameserver 114.114.114.114 nameserver 114.114.114.115 保存退出.测试一下,如果还是报错,请…