pythonindia / magudi

Salt stack based config for Python India servers
https://in.pycon.org
5 stars 9 forks source link

Block following IP for junction #17

Open kracekumar opened 7 years ago

kracekumar commented 7 years ago

After looking in the Spam, following IPs are causing the problem. 207.244.89.91, 117.224.149.188, 106.67.97.54

ChillarAnand commented 7 years ago

It better to drop packets from these ip's instead of processing the requests which will waste resources.

iptables -A INPUT -s 207.244.89.91 -j DROP

We can maintain spam list in text file and add salt task to block them?