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