Articles & Code Snippets


Unblock IP from Fail2Ban

Unblock IP from Fail2Ban


Search for IP 192.168.1.1 to see its been blocked by firewall
iptables -L -n | grep 192.168.1.1
DROP       all  --  192.168.1.1        0.0.0.0/0           
Remove 192.168.1.1
iptables -D fail2ban-sasl -s 192.168.1.1 -j DROP
web


Archives