2007-08-08 22:13:09 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
# Modified: Yaroslav O. Halchenko <debian@onerussian.com>
|
|
|
|
# made active on all ports from original iptables.conf
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2013-05-07 21:52:08 +00:00
|
|
|
[INCLUDES]
|
|
|
|
|
2014-06-18 10:04:57 +00:00
|
|
|
before = iptables-common.conf
|
2013-05-07 21:52:08 +00:00
|
|
|
|
|
|
|
|
2007-08-08 22:13:09 +00:00
|
|
|
[Definition]
|
|
|
|
|
|
|
|
# Option: actionstart
|
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-11-29 08:08:38 +00:00
|
|
|
actionstart = iptables -N f2b-<name>
|
|
|
|
iptables -A f2b-<name> -j RETURN
|
|
|
|
iptables -I <chain> -p <protocol> -j f2b-<name>
|
2007-08-08 22:13:09 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2007-08-08 22:13:09 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-11-29 08:08:38 +00:00
|
|
|
actionstop = iptables -D <chain> -p <protocol> -j f2b-<name>
|
|
|
|
iptables -F f2b-<name>
|
|
|
|
iptables -X f2b-<name>
|
2007-08-08 22:13:09 +00:00
|
|
|
|
|
|
|
# Option: actioncheck
|
|
|
|
# Notes.: command executed once before each actionban command
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-11-29 08:08:38 +00:00
|
|
|
actioncheck = iptables -n -L <chain> | grep -q 'f2b-<name>[ \t]'
|
2007-08-08 22:13:09 +00:00
|
|
|
|
|
|
|
# Option: actionban
|
|
|
|
# Notes.: command executed when banning an IP. Take care that the
|
|
|
|
# command is executed with Fail2Ban user rights.
|
2013-03-16 23:52:49 +00:00
|
|
|
# Tags: See jail.conf(5) man page
|
2007-08-08 22:13:09 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-11-29 08:08:38 +00:00
|
|
|
actionban = iptables -I f2b-<name> 1 -s <ip> -j <blocktype>
|
2007-08-08 22:13:09 +00:00
|
|
|
|
|
|
|
# Option: actionunban
|
|
|
|
# Notes.: command executed when unbanning an IP. Take care that the
|
|
|
|
# command is executed with Fail2Ban user rights.
|
2013-03-16 23:52:49 +00:00
|
|
|
# Tags: See jail.conf(5) man page
|
2007-08-08 22:13:09 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-11-29 08:08:38 +00:00
|
|
|
actionunban = iptables -D f2b-<name> -s <ip> -j <blocktype>
|
2007-08-08 22:13:09 +00:00
|
|
|
|
|
|
|
[Init]
|
|
|
|
|