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