2007-07-05 16:10:33 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2013-07-02 18:30:41 +00:00
|
|
|
[INCLUDES]
|
|
|
|
|
|
|
|
before = sendmail-common.conf
|
|
|
|
|
2007-07-05 16:10:33 +00:00
|
|
|
[Definition]
|
|
|
|
|
|
|
|
# Option: actionstart
|
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-09-08 22:21:58 +00:00
|
|
|
actionstart = printf %%b "Subject: [Fail2Ban] <name>: started on `uname -n`
|
2013-07-02 18:30:41 +00:00
|
|
|
From: <sendername> <<sender>>
|
2007-07-05 16:10:33 +00:00
|
|
|
To: <dest>\n
|
|
|
|
Hi,\n
|
|
|
|
The jail <name> has been started successfully.\n
|
|
|
|
Output will be buffered until <lines> lines are available.\n
|
|
|
|
Regards,\n
|
|
|
|
Fail2Ban" | /usr/sbin/sendmail -f <sender> <dest>
|
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2007-07-05 16:10:33 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionstop = if [ -f <tmpfile> ]; then
|
2013-09-08 22:21:58 +00:00
|
|
|
printf %%b "Subject: [Fail2Ban] <name>: summary from `uname -n`
|
2013-07-02 18:30:41 +00:00
|
|
|
From: <sendername> <<sender>>
|
2007-07-05 16:10:33 +00:00
|
|
|
To: <dest>\n
|
|
|
|
Hi,\n
|
|
|
|
These hosts have been banned by Fail2Ban.\n
|
|
|
|
`cat <tmpfile>`
|
|
|
|
Regards,\n
|
|
|
|
Fail2Ban" | /usr/sbin/sendmail -f <sender> <dest>
|
|
|
|
rm <tmpfile>
|
|
|
|
fi
|
2013-09-08 22:21:58 +00:00
|
|
|
printf %%b "Subject: [Fail2Ban] <name>: stopped on `uname -n`
|
2007-07-05 16:10:33 +00:00
|
|
|
From: Fail2Ban <<sender>>
|
|
|
|
To: <dest>\n
|
|
|
|
Hi,\n
|
|
|
|
The jail <name> has been stopped.\n
|
|
|
|
Regards,\n
|
|
|
|
Fail2Ban" | /usr/sbin/sendmail -f <sender> <dest>
|
|
|
|
|
|
|
|
# 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-07-05 16:10:33 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionban = printf %%b "`date`: <ip> (<failures> failures)\n" >> <tmpfile>
|
2007-07-05 16:10:33 +00:00
|
|
|
LINE=$( wc -l <tmpfile> | awk '{ print $1 }' )
|
2008-07-16 21:11:42 +00:00
|
|
|
if [ $LINE -ge <lines> ]; then
|
2013-09-08 22:21:58 +00:00
|
|
|
printf %%b "Subject: [Fail2Ban] <name>: summary from `uname -n`
|
2013-07-02 18:30:41 +00:00
|
|
|
From: <sendername> <<sender>>
|
2007-07-05 16:10:33 +00:00
|
|
|
To: <dest>\n
|
|
|
|
Hi,\n
|
|
|
|
These hosts have been banned by Fail2Ban.\n
|
|
|
|
`cat <tmpfile>`
|
|
|
|
Regards,\n
|
|
|
|
Fail2Ban" | /usr/sbin/sendmail -f <sender> <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-07-05 16:10:33 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionunban =
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-03-10 22:05:33 +00:00
|
|
|
# Default name of the chain
|
2007-07-05 16:10:33 +00:00
|
|
|
#
|
|
|
|
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-07-05 16:10:33 +00:00
|
|
|
|