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