mirror of https://github.com/fail2ban/fail2ban
23 lines
626 B
Plaintext
23 lines
626 B
Plaintext
# Fail2Ban configuration file
|
|
#
|
|
# Author: Daniel Black
|
|
#
|
|
# This is a included configuration file and includes the defination for the blocktype
|
|
# used in all iptables based actions by default.
|
|
#
|
|
# The user can override the default in iptables-blocktype.local
|
|
|
|
[INCLUDES]
|
|
|
|
after = iptables-blocktype.local
|
|
|
|
[Init]
|
|
|
|
# Option: blocktype
|
|
# Note: This is what the action does with rules. This can be any jump target
|
|
# as per the iptables man page (section 8). Common values are DROP
|
|
# REJECT, REJECT --reject-with icmp-port-unreachable
|
|
# Values: STRING
|
|
blocktype = REJECT --reject-with icmp-port-unreachable
|
|
|