• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Programmer [Security - Linux] Paying 50 USD for this job (PayPal)

I used this commands:

Code:
iptables -N conn-flood
iptables -I INPUT 1 -p tcp –syn -j conn-flood
iptables -A conn-flood -m limit –limit 7/s –limit-burst 20 -j RETURN
iptables -A conn-flood -j DROP
iptables -A INPUT -p icmp -m limit --limit 1/s --limit-burst 1 -j ACCEPT
iptables -A INPUT -p icmp -j DROP

I need write this command's already too?

Code:
iptables -I INPUT -p tcp -m state --state NEW,ESTABLISHED -m recent --set -j ACCEPT
iptables -I INPUT -p tcp -m state --state NEW -m recent --update --seconds 3 --hitcount 20 -j DROP
Or it's the same? x]

And after that, I have to restart something that? starts to work?
 
WORKS FINEEEEEE!!! WTF. YOU ARE THE BEST °.°

PD1: Stian, I can create one tutorial of Prevent Flooding attacks on ubuntu?

Credits 90% to you and 10% to me for post? x]


PD2: It work for all ports? Answer: Yea, work for all ports.
 
Last edited:
Back
Top