2006-07-17 19:26:14 +00:00
|
|
|
# Fail2Ban configuration file
|
|
|
|
#
|
|
|
|
# Author: Cyril Jaquier
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2007-09-12 21:38:51 +00:00
|
|
|
[INCLUDES]
|
|
|
|
|
|
|
|
# Read common prefixes. If any customizations available -- read them from
|
|
|
|
# common.local
|
2008-03-04 00:17:56 +00:00
|
|
|
before = common.conf
|
2007-09-12 21:38:51 +00:00
|
|
|
|
|
|
|
|
2006-07-16 21:35:08 +00:00
|
|
|
[Definition]
|
2006-06-26 20:05:00 +00:00
|
|
|
|
2007-09-12 21:38:51 +00:00
|
|
|
_daemon = sshd
|
|
|
|
|
2006-06-26 20:05:00 +00:00
|
|
|
# Option: failregex
|
2006-11-19 21:25:51 +00:00
|
|
|
# Notes.: regex to match the password failures messages in the logfile. The
|
|
|
|
# host must be matched by a group named "host". The tag "<HOST>" can
|
2006-12-18 22:35:34 +00:00
|
|
|
# be used for standard IP/hostname matching and is only an alias for
|
2009-02-08 17:31:24 +00:00
|
|
|
# (?:::f{4,6}:)?(?P<host>[\w\-.^_]+)
|
2006-10-01 21:19:56 +00:00
|
|
|
# Values: TEXT
|
2006-06-26 20:05:00 +00:00
|
|
|
#
|
2013-05-07 16:22:49 +00:00
|
|
|
failregex = ^%(__prefix_line)s(?:error: PAM: )?[aA]uthentication (?:failure|error) for .* from <HOST>( via \S+)?\s*$
|
2008-07-22 22:29:57 +00:00
|
|
|
^%(__prefix_line)s(?:error: PAM: )?User not known to the underlying authentication module for .* from <HOST>\s*$
|
2013-04-16 14:03:36 +00:00
|
|
|
^%(__prefix_line)sFailed \S+ for .* from <HOST>(?: port \d*)?(?: ssh\d*)?\s*$
|
2007-09-12 21:38:51 +00:00
|
|
|
^%(__prefix_line)sROOT LOGIN REFUSED.* FROM <HOST>\s*$
|
|
|
|
^%(__prefix_line)s[iI](?:llegal|nvalid) user .* from <HOST>\s*$
|
2012-02-11 02:14:51 +00:00
|
|
|
^%(__prefix_line)sUser .+ from <HOST> not allowed because not listed in AllowUsers\s*$
|
2012-04-17 00:36:53 +00:00
|
|
|
^%(__prefix_line)sUser .+ from <HOST> not allowed because listed in DenyUsers\s*$
|
2013-04-16 14:03:36 +00:00
|
|
|
^%(__prefix_line)sUser .+ from <HOST> not allowed because not in any group\s*$
|
2008-03-04 22:41:28 +00:00
|
|
|
^%(__prefix_line)srefused connect from \S+ \(<HOST>\)\s*$
|
2013-04-16 14:03:36 +00:00
|
|
|
^%(__prefix_line)sUser .+ from <HOST> not allowed because a group is listed in DenyGroups\s*$
|
2011-11-18 15:07:13 +00:00
|
|
|
^%(__prefix_line)sUser .+ from <HOST> not allowed because none of user's groups are listed in AllowGroups\s*$
|
2006-06-26 20:05:00 +00:00
|
|
|
|
2006-11-12 14:52:36 +00:00
|
|
|
# Option: ignoreregex
|
|
|
|
# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
|
|
|
# Values: TEXT
|
|
|
|
#
|
2006-11-15 18:44:28 +00:00
|
|
|
ignoreregex =
|