2007-02-12 21:50:50 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
[Definition]
|
|
|
|
|
|
|
|
# Option: actionstart
|
|
|
|
# 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-02-12 21:50:50 +00:00
|
|
|
Output will be buffered until <lines> lines are available.\n
|
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: started on `uname -n`" <dest>
|
2007-02-12 21:50:50 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2007-02-12 21:50:50 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2007-04-19 21:43:45 +00:00
|
|
|
actionstop = if [ -f <tmpfile> ]; then
|
2008-03-04 23:11:28 +00:00
|
|
|
printf %%b "Hi,\n
|
2007-02-12 21:50:50 +00:00
|
|
|
These hosts have been banned by Fail2Ban.\n
|
|
|
|
`cat <tmpfile>`
|
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: Summary from `uname -n`" <dest>
|
2007-02-12 21:50:50 +00:00
|
|
|
rm <tmpfile>
|
|
|
|
fi
|
2008-03-04 23:11:28 +00:00
|
|
|
printf %%b "Hi,\n
|
2007-02-12 21:50:50 +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-02-12 21:50:50 +00:00
|
|
|
|
|
|
|
# Option: actioncheck
|
|
|
|
# Notes.: command executed once before each actionban command
|
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
|
|
|
# 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-02-12 21:50:50 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionban = printf %%b "`date`: <ip> (<failures> failures)\n" >> <tmpfile>
|
2007-02-12 21:50:50 +00:00
|
|
|
LINE=$( wc -l <tmpfile> | awk '{ print $1 }' )
|
2008-07-16 21:11:42 +00:00
|
|
|
if [ $LINE -ge <lines> ]; then
|
2008-03-04 23:11:28 +00:00
|
|
|
printf %%b "Hi,\n
|
2007-02-12 21:50:50 +00:00
|
|
|
These hosts have been banned by Fail2Ban.\n
|
|
|
|
`cat <tmpfile>`
|
2007-03-26 21:08:09 +00:00
|
|
|
\nRegards,\n
|
2007-02-12 21:50:50 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: Summary" <dest>
|
|
|
|
rm <tmpfile>
|
|
|
|
fi
|
|
|
|
|
|
|
|
# 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-02-12 21:50:50 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionunban =
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
|
|
|
# Default name of the chain
|
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
|
|
|
# Default number of lines that are buffered
|
|
|
|
#
|
|
|
|
lines = 5
|
|
|
|
|
|
|
|
# Default temporary file
|
|
|
|
#
|
2011-03-23 20:35:56 +00:00
|
|
|
tmpfile = /var/run/fail2ban/tmp-mail.txt
|
2007-02-12 21:50:50 +00:00
|
|
|
|
|
|
|
# Destination/Addressee of the mail
|
|
|
|
#
|
|
|
|
dest = root
|