Blame conf/services/sshd.conf

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