mirror of https://github.com/fail2ban/fail2ban
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
626 B
23 lines
626 B
12 years ago
|
# 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
|
||
|
|