A32 wrote:
It's still bugging me, though :-)
This is part of being connected to the Internet...and, we all have to get used to it. I allegedly get 250 GB of transfer from Comcast, but 9-10GB of that a month is burnt on ARP for other systems and junk that isn't for me, including SSH scans, vulnerability checks, and so forth.
The only thing you truly have control over is your own system, not anyone else's -- this is the key to becoming enlightened as a sysadmin. Deal with the traffic when it arrives, and don't let it bother you. You'll feel a lot better when you stop worrying about it.
Before someone says
bandwidth quota!:
Google wrote:
((168 bytes) / (30 seconds)) * 31 days = 14.3041992 megabytes
A32 wrote:
I wonder if there's any way I could block all of this without breaking something.
Why, so that it doesn't log? Sure:
Code:
iptables -I INPUT # -s 64.22.109.153 -p udp --dport 17500 -j DROP
What number to replace the "#" with is left as an exercise for the reader, since I don't know your firewall configuration. Read iptables(8). If you use ufw or Shorewall or something, don't use this -- use it instead.