2006-07-19 21:35:22 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
[Definition]
|
|
|
|
|
2017-01-16 08:40:48 +00:00
|
|
|
# bypass ban/unban for restored tickets
|
|
|
|
norestored = 1
|
|
|
|
|
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-07-19 21:35:22 +00:00
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionstart = printf %%b "Hi,\n
|
2007-07-05 16:10:33 +00:00
|
|
|
The jail <name> has been started successfully.\n
|
2006-07-19 21:35:22 +00:00
|
|
|
Regards,\n
|
2017-04-24 18:17:57 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: started on <fq-hostname>" <dest>
|
2006-07-19 21:35:22 +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-07-19 21:35:22 +00:00
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionstop = printf %%b "Hi,\n
|
2006-07-19 21:35:22 +00:00
|
|
|
The jail <name> has been stopped.\n
|
|
|
|
Regards,\n
|
2017-04-24 18:17:57 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: stopped on <fq-hostname>" <dest>
|
2006-07-19 21:35:22 +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-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionban
|
2006-07-19 21:35:22 +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-07-19 21:35:22 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2017-01-16 08:40:48 +00:00
|
|
|
actionban = printf %%b "Hi,\n
|
2006-07-19 21:35:22 +00:00
|
|
|
The IP <ip> has just been banned by Fail2Ban after
|
2006-07-31 21:48:13 +00:00
|
|
|
<failures> attempts against <name>.\n
|
2006-07-19 21:35:22 +00:00
|
|
|
Regards,\n
|
2017-04-24 18:17:57 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: banned <ip> from <fq-hostname>" <dest>
|
2006-07-19 21:35:22 +00:00
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionunban
|
2006-07-19 21:35:22 +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-07-19 21:35:22 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionunban =
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-03-10 22:05:33 +00:00
|
|
|
# Default name of the chain
|
2006-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
2006-12-07 03:12:28 +00:00
|
|
|
# Destination/Addressee of the mail
|
2006-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
dest = root
|
2006-10-01 21:19:56 +00:00
|
|
|
|