服务器的攻与防(firewall 禁止指定Ip)
Posted cidgur
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了服务器的攻与防(firewall 禁止指定Ip)相关的知识,希望对你有一定的参考价值。
今天上午登陆服务器,随手看了一下sshd 的状态
systemctl status sshd
结果发现大量异常的ip登陆
然后就没敢耽误,赶紧把 防火墙打开,(因为这服务器是我自己测试用的,平时都没有开过防火墙)
systemctl start firewalld
将这个 陌生ip "58.218.92.32" 禁掉
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="58.218.92.32" port port="22" protocol="tcp" drop"
重新加载防火墙
firewall-cmd --reload
ok, 再执行 journalctl -ex 查看,已经没有这个Ip 的异常登录信息了。。。
以上是关于服务器的攻与防(firewall 禁止指定Ip)的主要内容,如果未能解决你的问题,请参考以下文章