diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-11 21:07:00 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-11 21:07:00 +1100 |
commit | 9ba3024ec3196a2e59c8af7dd80c64b53409489a (patch) | |
tree | ba61e17f84b6b1ddd31ab7b88ee643b84cff964a | |
parent | 9fa19b633de1f0037772e0ce9f8f5baac3823695 (diff) |
Cleanup of default config for new LogLevel option and better readability
-rw-r--r-- | sshd_config | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/sshd_config b/sshd_config index 97f6f8e1c..42c3244b6 100644 --- a/sshd_config +++ b/sshd_config | |||
@@ -7,38 +7,48 @@ ServerKeyBits 768 | |||
7 | LoginGraceTime 600 | 7 | LoginGraceTime 600 |
8 | KeyRegenerationInterval 3600 | 8 | KeyRegenerationInterval 3600 |
9 | PermitRootLogin yes | 9 | PermitRootLogin yes |
10 | |||
11 | # | ||
12 | # Loglevel replaces QuietMode and FascistLogging | ||
13 | # | ||
14 | LogLevel INFO | ||
15 | |||
10 | # | 16 | # |
11 | # Don't read ~/.rhosts and ~/.shosts files | 17 | # Don't read ~/.rhosts and ~/.shosts files |
12 | IgnoreRhosts yes | 18 | IgnoreRhosts yes |
13 | StrictModes yes | 19 | StrictModes yes |
14 | QuietMode no | ||
15 | X11Forwarding yes | 20 | X11Forwarding yes |
16 | X11DisplayOffset 10 | 21 | X11DisplayOffset 10 |
17 | FascistLogging no | 22 | FascistLogging no |
18 | PrintMotd yes | 23 | PrintMotd yes |
19 | KeepAlive yes | 24 | KeepAlive yes |
25 | CheckMail no | ||
26 | UseLogin no | ||
20 | SyslogFacility AUTH | 27 | SyslogFacility AUTH |
21 | RhostsAuthentication no | 28 | RhostsAuthentication no |
29 | |||
22 | # | 30 | # |
23 | # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts | 31 | # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts |
24 | RhostsRSAAuthentication no | ||
25 | # | 32 | # |
33 | RhostsRSAAuthentication no | ||
34 | |||
26 | RSAAuthentication yes | 35 | RSAAuthentication yes |
27 | 36 | ||
28 | # To disable tunneled clear text passwords, change to no here! | 37 | # To disable tunneled clear text passwords, change to no here! |
29 | PasswordAuthentication yes | 38 | PasswordAuthentication yes |
30 | PermitEmptyPasswords no | 39 | PermitEmptyPasswords no |
31 | # Uncomment to disable s/key passwords | 40 | |
41 | # | ||
42 | # Uncomment to disable s/key passwords (must be compiled with s/key support) | ||
43 | # | ||
32 | #SkeyAuthentication no | 44 | #SkeyAuthentication no |
33 | 45 | ||
34 | # To change Kerberos options | 46 | # |
47 | # To change Kerberos options (must be compiled with Kerberos support) | ||
48 | # | ||
35 | #KerberosAuthentication no | 49 | #KerberosAuthentication no |
36 | #KerberosOrLocalPasswd yes | 50 | #KerberosOrLocalPasswd yes |
37 | #AFSTokenPassing no | 51 | #AFSTokenPassing no |
38 | #KerberosTicketCleanup no | 52 | #KerberosTicketCleanup no |
39 | |||
40 | # Kerberos TGT Passing does only work with the AFS kaserver | 53 | # Kerberos TGT Passing does only work with the AFS kaserver |
41 | #KerberosTgtPassing yes | 54 | #KerberosTgtPassing yes |
42 | |||
43 | #CheckMail yes | ||
44 | #UseLogin no | ||