mirror of https://github.com/fail2ban/fail2ban
- Defined default values in .conf. Should fix Debian bug #398758
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@464 a942ae1a-1317-0410-a47c-b1dcaea8d6050.x
parent
f8c0c60c2c
commit
0fd9865172
|
@ -17,4 +17,4 @@ failregex = [[]client (?P<host>\S*)[]] user .*(?:: authentication failure|not fo
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = [[]client (?P<host>\S*)[]] File does not exist: .*(\.php|\.asp)
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -18,4 +18,4 @@ failregex = LOGIN FAILED, ip=\[::ffff:(?P<host>\S*)\]$
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = error,relay=(?:::f{4,6}:)?(?P<host>\S*),.*550 User unknown
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = reject: RCPT from (.*)\[(?P<host>\S*)\]: 554
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = USER \S+: no such user found from \S* ?\[(?P<host>\S+)\] to \S+\s*$
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = (?:[\d,.]+[\d,.] rblsmtpd: |421 badiprbl: ip )(?P<host>\S*)
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = : warning: [-._\w]+\[(?P<host>[.\d]+)\]: SASL (?:LOGIN|PLAIN|(?:CRAM
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = (?:(?:Authentication failure|Failed [-/\w+]+) for(?: [iI](?:llegal|n
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -17,4 +17,4 @@ failregex = vsftpd: \(pam_unix\) authentication failure; .* rhost=(?P<host>\S*)
|
|||
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
||||
# Values: TEXT
|
||||
#
|
||||
#ignoreregex = user: myusername
|
||||
ignoreregex =
|
||||
|
|
|
@ -10,9 +10,14 @@
|
|||
|
||||
[DEFAULT]
|
||||
|
||||
# "ignoreip" can be an IP address, a CIDR mask or a DNS host
|
||||
# "ignoreip" can be an IP address, a CIDR mask or a DNS host.
|
||||
ignoreip = 127.0.0.1
|
||||
# "bantime" is the number of seconds that a host is banned.
|
||||
bantime = 600
|
||||
# A host is banned if it has generated "maxretry" during the
|
||||
# last "maxtime" seconds.
|
||||
maxtime = 3600
|
||||
# "maxretry" is the number of failures before a host get banned.
|
||||
maxretry = 3
|
||||
|
||||
# "backend" specifies the backend used to get files modification. Available
|
||||
|
|
Loading…
Reference in New Issue