2006-08-06 21:20:28 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
[Definition]
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionstart
|
2006-08-06 21:20:28 +00:00
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-08-06 21:20:28 +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-08-06 21:20:28 +00:00
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: started on `uname -n`" <dest>
|
2006-08-06 21:20:28 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2006-08-06 21:20:28 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-08-06 21:20:28 +00:00
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionstop = printf %%b "Hi,\n
|
2006-08-06 21:20:28 +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>
|
2006-08-06 21:20:28 +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-08-06 21:20:28 +00:00
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionban
|
2006-08-06 21:20:28 +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-08-06 21:20:28 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2008-03-04 23:11:28 +00:00
|
|
|
actionban = printf %%b "Hi,\n
|
2006-08-06 21:20:28 +00:00
|
|
|
The IP <ip> has just been banned by Fail2Ban after
|
|
|
|
<failures> attempts against <name>.\n\n
|
2006-08-06 22:15:10 +00:00
|
|
|
Here are more information about <ip>:\n
|
2006-08-06 21:20:28 +00:00
|
|
|
`whois <ip>`\n
|
|
|
|
Regards,\n
|
2013-09-08 22:21:58 +00:00
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: banned <ip> from `uname -n`" <dest>
|
2006-08-06 21:20:28 +00:00
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionunban
|
2006-08-06 21:20:28 +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-08-06 21:20:28 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionunban =
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-03-10 22:05:33 +00:00
|
|
|
# Default name of the chain
|
2006-08-06 21:20:28 +00:00
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
2006-12-07 03:12:28 +00:00
|
|
|
# Destination/Addressee of the mail
|
2006-08-06 21:20:28 +00:00
|
|
|
#
|
|
|
|
dest = root
|
2006-10-01 21:19:56 +00:00
|
|
|
|