sshd_config revision 60578
1# This is ssh server systemwide configuration file.
2#
3# $FreeBSD: head/crypto/openssh/sshd_config 60578 2000-05-15 05:40:27Z kris $
4
5Port 22
6#Protocol 2,1
7#ListenAddress 0.0.0.0
8#ListenAddress ::
9HostKey /etc/ssh/ssh_host_key
10HostKey /etc/ssh/ssh_dsa_host_key
11ServerKeyBits 768
12LoginGraceTime 60
13KeyRegenerationInterval 3600
14PermitRootLogin no
15# Rate-limit sshd connections to 5 connections per 10 seconds
16ConnectionsPerPeriod 5/10
17# Don't read ~/.rhosts and ~/.shosts files
18IgnoreRhosts yes
19# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
20#IgnoreUserKnownHosts yes
21StrictModes yes
22X11Forwarding no
23X11DisplayOffset 10
24PrintMotd yes
25KeepAlive yes
26
27# Logging
28SyslogFacility AUTH
29LogLevel INFO
30#obsoletes QuietMode and FascistLogging
31
32RhostsAuthentication no
33#
34# For this to work you will also need host keys in /etc/ssh_known_hosts
35RhostsRSAAuthentication no
36#
37RSAAuthentication yes
38
39# To disable tunneled clear text passwords, change to no here!
40PasswordAuthentication yes
41PermitEmptyPasswords no
42# Uncomment to disable s/key passwords 
43#SkeyAuthentication no
44
45# To change Kerberos options
46#KerberosAuthentication no
47#KerberosOrLocalPasswd yes
48#AFSTokenPassing no
49#KerberosTicketCleanup no
50
51# Kerberos TGT Passing does only work with the AFS kaserver
52#KerberosTgtPassing yes
53
54#CheckMail yes
55#UseLogin no
56