fail2ban/config/action.d/firewallcmd-multiport.conf

27 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-01-01 10:32:41 +00:00
# Fail2Ban configuration file
#
# Author: Donald Yandt
# Because of the --remove-rules in stop this action requires firewalld-0.3.8+
[INCLUDES]
2016-05-14 01:36:27 +00:00
before = firewallcmd-common.conf
2015-01-01 10:32:41 +00:00
[Definition]
2016-05-14 01:36:27 +00:00
actionstart = firewall-cmd --direct --add-chain <family> filter f2b-<name>
firewall-cmd --direct --add-rule <family> filter f2b-<name> 1000 -j RETURN
firewall-cmd --direct --add-rule <family> filter <chain> 0 -m conntrack --ctstate NEW -p <protocol> -m multiport --dports "$(echo '<port>' | sed s/:/-/g)" -j f2b-<name>
2015-01-01 10:32:41 +00:00
actionstop = firewall-cmd --direct --remove-rule <family> filter <chain> 0 -m conntrack --ctstate NEW -p <protocol> -m multiport --dports "$(echo '<port>' | sed s/:/-/g)" -j f2b-<name>
2016-05-14 01:36:27 +00:00
firewall-cmd --direct --remove-rules <family> filter f2b-<name>
firewall-cmd --direct --remove-chain <family> filter f2b-<name>
2015-01-01 10:32:41 +00:00
2015-02-14 17:31:33 +00:00
# Example actioncheck: firewall-cmd --direct --get-chains ipv4 filter | sed -e 's, ,\n,g' | grep -q '^f2b-apache-modsecurity$'
2015-01-01 17:46:48 +00:00
2016-05-14 01:36:27 +00:00
actioncheck = firewall-cmd --direct --get-chains <family> filter | sed -e 's, ,\n,g' | grep -q '^f2b-<name>$'
2015-01-01 10:32:41 +00:00
2016-05-14 01:36:27 +00:00
actionban = firewall-cmd --direct --add-rule <family> filter f2b-<name> 0 -s <ip> -j <blocktype>
2015-01-01 10:32:41 +00:00
2016-05-14 01:36:27 +00:00
actionunban = firewall-cmd --direct --remove-rule <family> filter f2b-<name> 0 -s <ip> -j <blocktype>