Articles & Code Snippets


Find and remove IP blocked in Linux

Find and remove IP blocked in Linux


Find:

iptables -L -n | grep 63.227.119.xx
DROP       all  --  63.227.119.xx        0.0.0.0/0
DROP       all  --  63.227.119.xx        0.0.0.0/0

Remove

iptables -D fail2ban-SSH -s 63.227.119.xx -j DROP
web


Archives