Я хочу створити автоматичний звіт на abuseipdb.com в fail2ban (Debian Jessie).
Ось мій /etc/fail2ban/action.d/abuseipdb.conf
:
[Definition]
actionstart =
actionstop =
actioncheck =
actionban = curl --data 'key=<apikey>' --data 'category=<category>' --data 'ip=<ip>' --data-urlencode 'comment=<matches>' --user-agent 'fail2ban v0.8.12' 'https://www.abuseipdb.com/report/json'
actionunban =
[Init]
apikey = xxxx
Я редагував /etc/fail2ban/jail.conf
:
...
# Here we use a combination of Netfilter/Iptables and IPsets
# for storing large volumes of banned IPs
#
# IPset comes in two versions. See ipset -V for which one to use
# requires the ipset package and kernel support.
[ssh-iptables-ipset4]
enabled = true
port = ssh
filter = sshd
banaction = iptables-ipset-proto4
abuseipdb[category=18]
logpath = /var/log/auth.log
maxretry = 3
...
Але він не повідомляє належним чином. Хтось може допомогти мені виправити конфігурацію?