Rate-limit connections iptables
Allow max 3 new SSH connections per minute
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m limit --limit 3/min --limit-burst 5 -j ACCEPT
more iptables
all 10 commands →
Allow max 3 new SSH connections per minute
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m limit --limit 3/min --limit-burst 5 -j ACCEPT