2007-01-08 21:40:37 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
# Modified-By: Yaroslav Halchenko to include grepping on IP over log files
|
|
|
|
#
|
|
|
|
|
|
|
|
[Definition]
|
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstart
|
2007-01-08 21:40:37 +00:00
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
|
|
|
# Values: CMD
|
|
|
|
#
|
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
|
2007-01-08 21:40:37 +00:00
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: started on `uname -n`" <dest>
|
2007-01-08 21:40:37 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2007-01-08 21:40:37 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionstop = printf %%b "Hi,\n
|
2007-01-08 21:40:37 +00:00
|
|
|
The jail <name> has been stopped.\n
|
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: stopped on `uname -n`" <dest>
|
2007-01-08 21:40:37 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actioncheck
|
|
|
|
# Notes.: command executed once before each actionban command
|
2007-01-08 21:40:37 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionban
|
2007-01-08 21:40:37 +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
|
2007-01-08 21:40:37 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionban = printf %%b "Hi,\n
|
2007-01-08 21:40:37 +00:00
|
|
|
The IP <ip> has just been banned by Fail2Ban after
|
|
|
|
<failures> attempts against <name>.\n\n
|
|
|
|
Here are more information about <ip>:\n
|
|
|
|
`whois <ip>`\n\n
|
|
|
|
Lines containing IP:<ip> in <logpath>\n
|
|
|
|
`grep '\<<ip>\>' <logpath>`\n\n
|
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: banned <ip> from `uname -n`" <dest>
|
2007-01-08 21:40:37 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionunban
|
2007-01-08 21:40:37 +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
|
2007-01-08 21:40:37 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionunban =
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-03-10 22:05:33 +00:00
|
|
|
# Default name of the chain
|
2007-01-08 21:40:37 +00:00
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
|
|
|
# Destinataire of the mail
|
|
|
|
#
|
|
|
|
dest = root
|
|
|
|
|
|
|
|
# Path to the log files which contain relevant lines for the abuser IP
|
|
|
|
#
|
|
|
|
logpath = /dev/null
|