
Originally Posted by
ne0shell
You can try to limit the outbound flow rate of UDP packets:
/sbin/iptables -A OUTPUT -p udp -m state --state NEW -j ACCEPT
/sbin/iptables -A OUTPUT -p udp -m limit --limit 100/s -j ACCEPT
/sbin/iptables -A OUTPUT -p udp -j DROP
(setting limits outbound UDP to 100 packets per second. This setting can interfere with applications which use UDP outbound traffic (if any))
1000 per second would be a fairly high setting - more than enough for legit use, 100 is probably fine too. You can always adjust it if needed.