Linux安全
踏歌行 2023-06-01
系统
工具
阅读量:
# 防火墙
# iptables
iptables 是集成在 Linux 内核中的包过滤防火墙系统。使用 iptables 可以添加、删除具体的过滤规则。 Archlinux文章 (opens new window) csdn文章 (opens new window) 知乎文章 (opens new window)
iptables -I INPUT -s 1.2.3.4 -j DROP //封禁
iptables -D INPUT -s 1.2.3.4 -j DROP //解封
1
2
2
# 黑名单
查询ip是否被列入黑名单, 大概率为黑客 (opens new window) Filter 表主要实现网络包的过滤。假如我们发现了一个恶意 IP 疯狂请求我们的服务器,就可以用 filter 把它禁掉。