IPTABLES可以限制每个ip的最大连接数

 可以限制每个ip的最大连接数
iptables -I INPUT -i eth0 -p tcp --dport 80 -m connlimit --connlimit-above 30 -j REJECT
18
iptables -A INPUT -i eth0 -p tcp --dport 80 -m recent --name bad_80_access --update --seconds 60 --hitcount 150 -j REJECT
19
iptables -A INPUT -i eth0 -p tcp --dport 80 -m recent --name bad_80_access --set -j ACCEPT 

你可能感兴趣的:(LINUX)