2007-01-08 21:40:37 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
# Copied from iptables.conf and modified by Yaroslav Halchenko
|
|
|
|
# to fullfill the needs of bugreporter dbts#350746.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2013-05-07 21:52:08 +00:00
|
|
|
[INCLUDES]
|
|
|
|
|
|
|
|
before = iptables-blocktype.conf
|
|
|
|
|
|
|
|
|
2007-01-08 21:40:37 +00:00
|
|
|
[Definition]
|
|
|
|
|
|
|
|
# Option: actionstart
|
|
|
|
# Notes.: command executed once at the start of Fail2Ban.
|
|
|
|
# Values: CMD
|
|
|
|
#
|
|
|
|
actionstart = iptables -N fail2ban-<name>
|
|
|
|
iptables -A fail2ban-<name> -j RETURN
|
2011-03-23 20:36:41 +00:00
|
|
|
iptables -I <chain> -m state --state NEW -p <protocol> --dport <port> -j fail2ban-<name>
|
2007-01-08 21:40:37 +00:00
|
|
|
|
2008-03-04 22:41:28 +00:00
|
|
|
# Option: actionstop
|
2007-01-08 21:40:37 +00:00
|
|
|
# Notes.: command executed once at the end of Fail2Ban
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2011-03-23 20:36:41 +00:00
|
|
|
actionstop = iptables -D <chain> -m state --state NEW -p <protocol> --dport <port> -j fail2ban-<name>
|
2007-01-08 21:40:37 +00:00
|
|
|
iptables -F fail2ban-<name>
|
|
|
|
iptables -X fail2ban-<name>
|
|
|
|
|
|
|
|
# Option: actioncheck
|
|
|
|
# Notes.: command executed once before each actionban command
|
|
|
|
# Values: CMD
|
|
|
|
#
|
2012-07-31 19:27:05 +00:00
|
|
|
actioncheck = iptables -n -L <chain> | grep -q 'fail2ban-<name>[ \t]'
|
2007-01-08 21:40:37 +00:00
|
|
|
|
|
|
|
# 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-01-08 21:40:37 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-05-05 05:43:18 +00:00
|
|
|
actionban = iptables -I fail2ban-<name> 1 -s <ip> -j <blocktype>
|
2007-01-08 21:40:37 +00:00
|
|
|
|
|
|
|
# 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-01-08 21:40:37 +00:00
|
|
|
# Values: CMD
|
|
|
|
#
|
2013-05-05 05:43:18 +00:00
|
|
|
actionunban = iptables -D fail2ban-<name> -s <ip> -j <blocktype>
|
2007-01-08 21:40:37 +00:00
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-03-10 22:05:33 +00:00
|
|
|
# Default name of the chain
|
2007-01-08 21:40:37 +00:00
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
|
|
|
# Option: port
|
|
|
|
# Notes.: specifies port to monitor
|
|
|
|
# Values: [ NUM | STRING ] Default:
|
|
|
|
#
|
|
|
|
port = ssh
|
|
|
|
|
|
|
|
# Option: protocol
|
|
|
|
# Notes.: internally used by config reader for interpolations.
|
|
|
|
# Values: [ tcp | udp | icmp | all ] Default: tcp
|
|
|
|
#
|
|
|
|
protocol = tcp
|
|
|
|
|
2011-03-23 20:36:41 +00:00
|
|
|
# Option: chain
|
|
|
|
# Notes specifies the iptables chain to which the fail2ban rules should be
|
|
|
|
# added
|
|
|
|
# Values: STRING Default: INPUT
|
|
|
|
chain = INPUT
|