2006-07-19 21:35:22 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
2007-01-04 12:21:44 +00:00
|
|
|
# $Revision$
|
2006-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
[Definition]
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionstart
|
2006-07-19 21:35:22 +00:00
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
actionstart = echo -en "Hi,\n
|
2007-07-05 16:10:33 +00:00
|
|
|
The jail <name> has been started successfully.\n
|
2006-07-19 21:35:22 +00:00
|
|
|
Regards,\n
|
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: started" <dest>
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionend
|
2006-07-19 21:35:22 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
actionstop = echo -en "Hi,\n
|
|
|
|
The jail <name> has been stopped.\n
|
|
|
|
Regards,\n
|
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: stopped" <dest>
|
|
|
|
|
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-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionban
|
2006-07-19 21:35:22 +00:00
|
|
|
# Notes.: command executed when banning an IP. Take care that the
|
|
|
|
# command is executed with Fail2Ban user rights.
|
|
|
|
# Tags: <ip> IP address
|
|
|
|
# <failures> number of failures
|
2006-11-12 10:56:21 +00:00
|
|
|
# <time> unix timestamp of the ban time
|
2006-07-19 21:35:22 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionban = echo -en "Hi,\n
|
|
|
|
The IP <ip> has just been banned by Fail2Ban after
|
2006-07-31 21:48:13 +00:00
|
|
|
<failures> attempts against <name>.\n
|
2006-07-19 21:35:22 +00:00
|
|
|
Regards,\n
|
|
|
|
Fail2Ban"|mail -s "[Fail2Ban] <name>: banned <ip>" <dest>
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionunban
|
2006-07-19 21:35:22 +00:00
|
|
|
# Notes.: command executed when unbanning an IP. Take care that the
|
|
|
|
# command is executed with Fail2Ban user rights.
|
|
|
|
# Tags: <ip> IP address
|
2006-11-12 10:56:21 +00:00
|
|
|
# <failures> number of failures
|
|
|
|
# <time> unix timestamp of the ban time
|
2006-07-19 21:35:22 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionunban =
|
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
|
|
|
# Defaut name of the chain
|
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
2006-12-07 03:12:28 +00:00
|
|
|
# Destination/Addressee of the mail
|
2006-07-19 21:35:22 +00:00
|
|
|
#
|
|
|
|
dest = root
|
2006-10-01 21:19:56 +00:00
|
|
|
|