|
|
|
@ -26,7 +26,7 @@ before = iptables-common.conf
|
|
|
|
|
# Notes.: command executed on demand at the first ban (or at the start of Fail2Ban if actionstart_on_demand is set to false).
|
|
|
|
|
# Values: CMD
|
|
|
|
|
#
|
|
|
|
|
actionstart = ipset create <ipmset> hash:ip timeout <default-timeout> <familyopt>
|
|
|
|
|
actionstart = ipset create <ipmset> hash:ip timeout <default-ipsettime> <familyopt>
|
|
|
|
|
<iptables> -I <chain> -p <protocol> -m multiport --dports <port> -m set --match-set <ipmset> src -j <blocktype>
|
|
|
|
|
|
|
|
|
|
# Option: actionflush
|
|
|
|
@ -49,7 +49,7 @@ actionstop = <iptables> -D <chain> -p <protocol> -m multiport --dports <port> -m
|
|
|
|
|
# Tags: See jail.conf(5) man page
|
|
|
|
|
# Values: CMD
|
|
|
|
|
#
|
|
|
|
|
actionban = ipset add <ipmset> <ip> timeout <timeout> -exist
|
|
|
|
|
actionban = ipset add <ipmset> <ip> timeout <ipsettime> -exist
|
|
|
|
|
|
|
|
|
|
# Option: actionunban
|
|
|
|
|
# Notes.: command executed when unbanning an IP. Take care that the
|
|
|
|
@ -61,18 +61,18 @@ actionunban = ipset del <ipmset> <ip> -exist
|
|
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
|
|
|
|
|
# Option: default-timeout
|
|
|
|
|
# Option: default-ipsettime
|
|
|
|
|
# Notes: specifies default timeout in seconds (handled default ipset timeout only)
|
|
|
|
|
# Values: [ NUM ] Default: 0 (no timeout, managed by fail2ban by unban)
|
|
|
|
|
default-timeout = 0
|
|
|
|
|
default-ipsettime = 0
|
|
|
|
|
|
|
|
|
|
# Option: timeout
|
|
|
|
|
# Option: ipsettime
|
|
|
|
|
# Notes: specifies ticket timeout (handled ipset timeout only)
|
|
|
|
|
# Values: [ NUM ] Default: 0 (managed by fail2ban by unban)
|
|
|
|
|
timeout = 0
|
|
|
|
|
ipsettime = 0
|
|
|
|
|
|
|
|
|
|
# expresion to caclulate timeout from bantime, example:
|
|
|
|
|
# banaction = %(known/banaction)s[timeout='<timeout-bantime>']
|
|
|
|
|
# banaction = %(known/banaction)s[ipsettime='<timeout-bantime>']
|
|
|
|
|
timeout-bantime = $([ "<bantime>" -le 2147483 ] && echo "<bantime>" || echo 0)
|
|
|
|
|
|
|
|
|
|
ipmset = f2b-<name>
|
|
|
|
|