Quote:
|
Originally Posted by AbeFroman
I am getting 25mbps traffic on UDP port 80. What is the best way to block this?
|
The best way would be to have your upstream provider block it - and best at the router closest to the source. You can block it locally, but that wont stop the data actually hitting your box, so it will count against any data allowances your provider may give.
To block it locally, iptables -I INPUT -p udp --dport 80 -j DROP
would block all UDP traffic on port 80. If you know where it is coming from add -s xxx.xxx.xxx.xxx to the rule.
Remember though, the data will still hit your box, unless you have your provider block the traffic.