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: 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
|
|
|
|
#
|
2013-09-08 22:21:58 +00:00
|
|
|
actionban = printf %%b "Subject: [Fail2Ban] <name>: banned <ip> from `uname -n`
|
2013-04-29 04:10:23 +00:00
|
|
|
Date: `LC_TIME=C date -u +"%%a, %%d %%h %%Y %%T +0000"`
|
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 IP <ip> has just been banned by Fail2Ban after
|
|
|
|
<failures> attempts against <name>.\n\n
|
2013-12-04 11:40:48 +00:00
|
|
|
Here is more information about <ip>:\n
|
2013-12-04 11:43:06 +00:00
|
|
|
`/usr/bin/whois <ip> || echo missing whois program`\n\n
|
2007-07-05 16:10:33 +00:00
|
|
|
Lines containing IP:<ip> in <logpath>\n
|
2013-11-30 07:01:45 +00:00
|
|
|
`grep '[^0-9]<ip>[^0-9]' <logpath>`\n\n
|
2007-07-05 16:10:33 +00:00
|
|
|
Regards,\n
|
|
|
|
Fail2Ban" | /usr/sbin/sendmail -f <sender> <dest>
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-03-10 22:05:33 +00:00
|
|
|
# Default name of the chain
|
2007-07-05 16:10:33 +00:00
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
|
|
|
# Path to the log files which contain relevant lines for the abuser IP
|
|
|
|
#
|
|
|
|
logpath = /dev/null
|
|
|
|
|