Blame conf/services/sshd.conf

Packit 57988d
###########################################################################
Packit 57988d
# $Id$
Packit 57988d
###########################################################################
Packit 57988d
Packit 57988d
# You can put comments anywhere you want to.  They are effective for the
Packit 57988d
# rest of the line.
Packit 57988d
Packit 57988d
# this is in the format of <name> = <value>.  Whitespace at the beginning
Packit 57988d
# and end of the lines is removed.  Whitespace before and after the = sign
Packit 57988d
# is removed.  Everything is case *insensitive*.
Packit 57988d
Packit 57988d
# Yes = True  = On  = 1
Packit 57988d
# No  = False = Off = 0
Packit 57988d
Packit 57988d
Title = "SSHD"
Packit 57988d
Packit 57988d
# Which logfile group...
Packit 57988d
LogFile = secure
Packit 57988d
LogFile = messages
Packit 57988d
Packit 57988d
# Only give lines pertaining to the sshd service...
Packit 57988d
*OnlyService = sshd
Packit 57988d
*RemoveHeaders
Packit 57988d
Packit 57988d
# Variable $sshd_ignore_host is used to filter out hosts that login
Packit 57988d
# successfully.  This commented-out example filters out reserved local
Packit 57988d
# addresses (IETF RFC 1918 and RFC 3330).
Packit 57988d
#$sshd_ignore_host="^10\.|^172\.(1[6-9]|2[0-9]|3[01])\.|^192\.168\.|^127\."
Packit 57988d
Packit 57988d
# The refused connections report lists every ip that is refused even if
Packit 57988d
# it was only refused 1 or 2 times.  In a case like that I don't care
Packit 57988d
# to see the information.  It is just noise.  I want to know when a
Packit 57988d
# a connection has been refused 10, 20, 30 times because that is an
Packit 57988d
# indication of an attack or a problem.
Packit 57988d
#   Set this variable to a positive integer to trim out the lower count
Packit 57988d
# refused connections from the report. i.e. 10 would not show any hosts
Packit 57988d
# with less than 10 refusals.
Packit 57988d
#   This has no effect if the $Detail variable is greater than 5.
Packit 57988d
#$refused_connections_threshold = 10
Packit 57988d
Packit 57988d
########################################################
Packit 57988d
# This was written and is maintained by:
Packit 57988d
#    Kirk Bauer <kirk@kaybee.org>
Packit 57988d
#
Packit 57988d
# Please send all comments, suggestions, bug reports,
Packit 57988d
#    etc, to kirk@kaybee.org.
Packit 57988d
########################################################
Packit 57988d
Packit 57988d
# vi: shiftwidth=3 tabstop=3 et