0%

Linux下开启FireWall禁止某网段访问

起因

图1
某IP不断的向博客写入垃圾信息。

禁止某网段访问


查看防火墙状态

systemctl status firewalld

启动防火墙

systemctl start firewalld

查看iptables已有规则

iptables -L -n

清空已有规则(若不是首次启用请谨慎操作)

iptables -F
iptables -X

添加规则

iptables -I INPUT -s 146.185.223.0/24 -j DROP //禁止该网段访问服务器