linux禁止被ping的方法:
禁止ping的方法:
用根用户登录系统,然后输入命令:
echo "1" >/proc/sys/net/ipv4/icmp_echo_ignore_all
为了确保配置更改,使用命令:
cat /proc/sys/net/ipv4/icmp_echo_ignore_all
查看配置文件,可以看出值已为1。
再次在本地利用ping命令进行测试,发现本机计算机无法再ping通Linux服务器了。
允许ping的方法:
接下来打开Linux服务器ICMP协议。同样在根用户下输入命令:
echo "0" >/proc/sys/net/ipv4/icmp_echo_ignore_all
编辑配置文件,然后使用命令:文章来源:https://www.toymoban.com/news/detail-838491.html
cat /proc/sys/net/ipv4/icmp_echo_ignore_all
查看配置文件,可以看出值已改为0。文章来源地址https://www.toymoban.com/news/detail-838491.html
到了这里,关于linux禁止被ping的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!