I am using fail2ban v.0.8.2, but I cannot ban IP:
with fail2ban-client I see IP:
fail2ban-client status fail2ban
Status for the jail: fail2ban
|- filter
| |- File list: /var/log/fail2ban.log
| |- Currently failed: 1
| `- Total failed: 8
`- action
|- Currently banned: 2
| `- IP list: 151.10.65.197 151.10.72.169
`- Total banned: 2
from the man page should be enough:
fail2ban-client get fail2ban actionunban 151.10.65.197
the output of the command does not return an error, but:
iptables -L -nv |grep -b2 -a1 151
16262- pkts bytes target prot opt in out source destination
16351: 0 0 DROP all
16440: 0 0 DROP all
16529- 181K 48M RETURN all
and conclusion
fail2ban-client status fail2ban
- this is the same, so the command does not start.
source
share