2006-07-17 19:26:14 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2006-07-16 21:35:08 +00:00
|
|
|
[Definition]
|
2006-06-26 20:05:00 +00:00
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionstart
|
2018-09-12 14:00:40 +00:00
|
|
|
# Notes.: command executed on demand at the first ban (or at the start of Fail2Ban if actionstart_on_demand is set to false).
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-06-26 20:05:00 +00:00
|
|
|
#
|
2017-03-30 11:02:37 +00:00
|
|
|
actionstart = if [ ! -z '<target>' ]; then touch <target>; fi;
|
|
|
|
printf %%b "<init>\n" <to_target>
|
|
|
|
echo "%(debug)s started"
|
|
|
|
|
|
|
|
# Option: actionflush
|
|
|
|
# Notes.: command executed once to flush (clear) all IPS, by shutdown (resp. by stop of the jail or this action)
|
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionflush = printf %%b "-*\n" <to_target>
|
|
|
|
echo "%(debug)s clear all"
|
2006-06-26 20:05:00 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2018-09-12 14:00:40 +00:00
|
|
|
# Notes.: command executed at the stop of jail (or at the end of Fail2Ban)
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-06-26 20:05:00 +00:00
|
|
|
#
|
2017-03-30 11:02:37 +00:00
|
|
|
actionstop = if [ ! -z '<target>' ]; then rm -f <target>; fi;
|
|
|
|
echo "%(debug)s stopped"
|
2006-06-26 20:05:00 +00:00
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actioncheck
|
|
|
|
# Notes.: command executed once before each actionban command
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-06-26 20:05:00 +00:00
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionban
|
2006-06-26 20:05:00 +00:00
|
|
|
# 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
|
2006-06-26 20:05:00 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2017-03-30 11:02:37 +00:00
|
|
|
actionban = printf %%b "+<ip>\n" <to_target>
|
|
|
|
echo "%(debug)s banned <ip> (family: <family>)"
|
2006-06-26 20:05:00 +00:00
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionunban
|
2006-06-26 20:05:00 +00:00
|
|
|
# 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
|
2006-06-26 20:05:00 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2017-03-30 11:02:37 +00:00
|
|
|
actionunban = printf %%b "-<ip>\n" <to_target>
|
|
|
|
echo "%(debug)s unbanned <ip> (family: <family>)"
|
|
|
|
|
|
|
|
|
|
|
|
debug = [<name>] <actname> <target> --
|
2006-07-16 21:35:08 +00:00
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
|
|
|
init = 123
|
2006-10-01 21:19:56 +00:00
|
|
|
|
2017-03-30 11:02:37 +00:00
|
|
|
target = /var/run/fail2ban/fail2ban.dummy
|
|
|
|
to_target = >> <target>
|