2013-10-14 11:36:01 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
2013-10-14 11:39:38 +00:00
|
|
|
# Author: Edgar Hoch
|
2013-10-14 11:36:01 +00:00
|
|
|
# Copied from iptables-new.conf and modified for use with firewalld by Edgar Hoch.
|
|
|
|
# It uses "firewall-cmd" instead of "iptables".
|
2013-10-30 22:10:59 +00:00
|
|
|
#
|
2013-11-06 00:37:56 +00:00
|
|
|
# Because of the --remove-rules in stop this action requires firewalld-0.3.8+
|
2013-10-14 11:36:01 +00:00
|
|
|
|
2013-10-14 12:06:38 +00:00
|
|
|
[INCLUDES]
|
|
|
|
|
|
|
|
before = iptables-blocktype.conf
|
|
|
|
|
2013-10-14 11:36:01 +00:00
|
|
|
[Definition]
|
|
|
|
|
|
|
|
actionstart = firewall-cmd --direct --add-chain ipv4 filter fail2ban-<name>
|
|
|
|
firewall-cmd --direct --add-rule ipv4 filter fail2ban-<name> 1000 -j RETURN
|
|
|
|
firewall-cmd --direct --add-rule ipv4 filter <chain> 0 -m state --state NEW -p <protocol> --dport <port> -j fail2ban-<name>
|
|
|
|
|
|
|
|
actionstop = firewall-cmd --direct --remove-rule ipv4 filter <chain> 0 -m state --state NEW -p <protocol> --dport <port> -j fail2ban-<name>
|
2013-10-30 14:23:00 +00:00
|
|
|
firewall-cmd --direct --remove-rules ipv4 filter fail2ban-<name>
|
2013-10-14 11:36:01 +00:00
|
|
|
firewall-cmd --direct --remove-chain ipv4 filter fail2ban-<name>
|
|
|
|
|
|
|
|
actioncheck = firewall-cmd --direct --get-chains ipv4 filter | grep -q 'fail2ban-<name>[ \t]'
|
|
|
|
|
2013-10-14 12:06:38 +00:00
|
|
|
actionban = firewall-cmd --direct --add-rule ipv4 filter fail2ban-<name> 0 -s <ip> -j <blocktype>
|
2013-10-14 11:36:01 +00:00
|
|
|
|
2013-10-14 12:06:38 +00:00
|
|
|
actionunban = firewall-cmd --direct --remove-rule ipv4 filter fail2ban-<name> 0 -s <ip> -j <blocktype>
|
2013-10-14 11:36:01 +00:00
|
|
|
|
|
|
|
[Init]
|
|
|
|
|
2013-10-14 21:34:42 +00:00
|
|
|
# Default name of the chain
|
2013-10-14 11:36:01 +00:00
|
|
|
#
|
|
|
|
name = default
|
|
|
|
|
|
|
|
# Option: port
|
|
|
|
# Notes.: specifies port to monitor
|
2013-10-14 21:34:42 +00:00
|
|
|
# Values: [ NUM | STRING ]
|
2013-10-14 11:36:01 +00:00
|
|
|
#
|
|
|
|
port = ssh
|
|
|
|
|
|
|
|
# Option: protocol
|
|
|
|
# Notes.: internally used by config reader for interpolations.
|
2013-10-14 21:34:42 +00:00
|
|
|
# Values: [ tcp | udp | icmp | all ]
|
2013-10-14 11:36:01 +00:00
|
|
|
#
|
|
|
|
protocol = tcp
|
|
|
|
|
|
|
|
# Option: chain
|
|
|
|
# Notes specifies the iptables chain to which the fail2ban rules should be
|
|
|
|
# added
|
2013-10-14 21:34:42 +00:00
|
|
|
# Values: [ STRING ]
|
|
|
|
#
|
2013-10-14 11:36:01 +00:00
|
|
|
chain = INPUT_direct
|