Skip to content

Instantly share code, notes, and snippets.

@spy86
Created November 25, 2018 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spy86/171cb0d371ee7b4d8543c9e8ee426b63 to your computer and use it in GitHub Desktop.
Save spy86/171cb0d371ee7b4d8543c9e8ee426b63 to your computer and use it in GitHub Desktop.
Prevent UDP flood
# Outbound UDP Flood protection in a user defined chain.
iptables -N udp-flood
iptables -A OUTPUT -p udp -j udp-flood
iptables -A udp-flood -p udp -m limit --limit 50/s -j RETURN
iptables -A udp-flood -j LOG --log-level 4 --log-prefix 'UDP-flood attempt: '
iptables -A udp-flood -j DROP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment