I'm getting a ton of traffic from one ip - 188.165.225.12
All my attempts to reject traffic from this ip aren't successful.
try this
restart server and if i check established connection i view this
any advice
All my attempts to reject traffic from this ip aren't successful.
try this
Code:
route add -host 188.165.225.12 reject
iptables -A INPUT -s 188.165.225.12 -j DROP
even put this in .htaccess file
Deny from 188.165.225.12
restart server and if i check established connection i view this
Code:
[root@mydrug ~]# netstat -natu | grep 'ESTABLISHED'
tcp 0 22470 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64293 ESTABLISHED
tcp 0 471 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64289 ESTABLISHED
tcp 0 0 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64303 ESTABLISHED
tcp 0 37960 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64265 ESTABLISHED
tcp 0 20673 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64337 ESTABLISHED
tcp 0 0 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64669 ESTABLISHED
tcp 0 77380 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64489 ESTABLISHED
tcp 0 12294 ::ffff:my-server-ip:80 ::ffff:188.165.225.12:64206 ESTABLISHED
any advice