07.12.2009, 19:37
Use tcpdump to find the attacker.
Find a suspicious IP (lots of packets of length 2)
If it does indeed send a lot of those packets, ban it.
Код:
tcpdump -n | grep SERVER_PORT | grep "length 2"
Код:
tcpdump -n | grep SUSPICIOUS_IP
Код:
iptables -A INPUT -s SUSPICIOUS_IP -j DROP