2006-07-17 19:26:14 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
2013-07-14 06:20:21 +00:00
|
|
|
# Edited for cross platform by: James Stout, Yaroslav Halchenko and Daniel Black
|
2006-07-17 19:26:14 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2006-07-16 21:35:08 +00:00
|
|
|
[Definition]
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionstart
|
2006-07-16 21:35:08 +00:00
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-07-16 21:35:08 +00:00
|
|
|
#
|
2007-03-07 20:47:41 +00:00
|
|
|
actionstart =
|
2006-07-16 21:35:08 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2006-07-16 21:35:08 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: CMD
|
2006-07-16 21:35:08 +00:00
|
|
|
#
|
2007-03-07 20:47:41 +00:00
|
|
|
actionstop =
|
2006-07-16 21:35:08 +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-07-16 21:35:08 +00:00
|
|
|
#
|
|
|
|
actioncheck =
|
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionban
|
2006-07-16 21:35:08 +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-07-16 21:35:08 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2018-04-17 16:59:24 +00:00
|
|
|
actionban = printf %%b "<daemon_list>: <ip_value>\n" >> <file>
|
2006-07-16 21:35:08 +00:00
|
|
|
|
2006-12-18 22:33:01 +00:00
|
|
|
# Option: actionunban
|
2006-07-16 21:35:08 +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-07-16 21:35:08 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2018-04-17 16:59:24 +00:00
|
|
|
actionunban = IP=$(echo "<ip_value>" | sed 's/[][\.]/\\\0/g') && sed -i "/^<daemon_list>: $IP$/d" <file>
|
2006-07-16 21:35:08 +00:00
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
|
|
|
# Option: file
|
|
|
|
# Notes.: hosts.deny file path.
|
|
|
|
# Values: STR Default: /etc/hosts.deny
|
|
|
|
#
|
|
|
|
file = /etc/hosts.deny
|
2013-07-14 06:20:21 +00:00
|
|
|
|
|
|
|
# Option: daemon_list
|
|
|
|
# Notes: The list of services that this action will deny. See the man page
|
|
|
|
# for hosts.deny/hosts_access. Default is all services.
|
|
|
|
# Values: STR Default: ALL
|
|
|
|
daemon_list = ALL
|
2018-03-05 18:35:10 +00:00
|
|
|
|
|
|
|
# internal variable IP (to differentiate the IPv4 and IPv6 syntax, where it is enclosed in brackets):
|
2018-04-17 16:59:24 +00:00
|
|
|
ip_value = <ip>
|
2018-03-05 18:35:10 +00:00
|
|
|
|
|
|
|
[Init?family=inet6]
|
2018-04-17 16:59:24 +00:00
|
|
|
ip_value = [<ip>]
|