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.
56 lines
1.7 KiB
56 lines
1.7 KiB
11 years ago
|
# Fail2Ban configuration file
|
||
|
#
|
||
|
# Author: Steven Hiscocks
|
||
|
#
|
||
|
#
|
||
|
|
||
|
# Action to report IP address to blocklist.de
|
||
|
# Blocklist.de must be signed up to at www.blocklist.de
|
||
|
# Once registered, one or more servers can be added.
|
||
|
# This action requires the server 'email address' and the assoicate apikey.
|
||
|
#
|
||
|
# From blocklist.de:
|
||
|
# www.blocklist.de is a free and voluntary service provided by a
|
||
|
# Fraud/Abuse-specialist, whose servers are often attacked on SSH-,
|
||
|
# Mail-Login-, FTP-, Webserver- and other services.
|
||
|
# The mission is to report all attacks to the abuse deparments of the
|
||
|
# infected PCs/servers to ensure that the responsible provider can inform
|
||
|
# the customer about the infection and disable them
|
||
|
#
|
||
|
|
||
|
[Definition]
|
||
|
|
||
|
# Option: actionstart
|
||
|
# Notes.: command executed once at the start of Fail2Ban.
|
||
|
# Values: CMD
|
||
|
#
|
||
|
actionstart =
|
||
|
|
||
|
# Option: actionstop
|
||
|
# Notes.: command executed once at the end of Fail2Ban
|
||
|
# Values: CMD
|
||
|
#
|
||
|
actionstop =
|
||
|
|
||
|
# Option: actioncheck
|
||
|
# Notes.: command executed once before each actionban command
|
||
|
# Values: CMD
|
||
|
#
|
||
|
actioncheck =
|
||
|
|
||
|
# Option: actionban
|
||
|
# Notes.: command executed when banning an IP. Take care that the
|
||
|
# command is executed with Fail2Ban user rights.
|
||
|
# Tags: See jail.conf(5) man page
|
||
|
# Values: CMD
|
||
|
#
|
||
|
actionban = ! curl --data-urlencode 'server=<email>' --data 'apikey=<apikey>' --data 'service=<service>' --data 'ip=<ip>' --data-urlencode 'logs=<matches>' --data 'format=text' "https://www.blocklist.de/en/httpreports.html" | grep "status: error"
|
||
|
|
||
|
# Option: actionunban
|
||
|
# Notes.: command executed when unbanning an IP. Take care that the
|
||
|
# command is executed with Fail2Ban user rights.
|
||
|
# Tags: See jail.conf(5) man page
|
||
|
# Values: CMD
|
||
|
#
|
||
|
actionunban =
|