Advertisement
Guest User

Ipt

a guest
Mar 19th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. iptables -N syn_flood
  2. iptables -A INPUT -p tcp --syn -j syn_flood
  3. iptables -A syn_flood -m limit --limit 500/s --limit-burst 2000 -j RETURN
  4. iptables -A syn_flood -j DROP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement