]> andersk Git - openssh.git/blob - sshd_config
Cleanup of default config for new LogLevel option and better readability
[openssh.git] / sshd_config
1 # This is ssh server systemwide configuration file.
2
3 Port 22
4 ListenAddress 0.0.0.0
5 HostKey /etc/ssh/ssh_host_key
6 ServerKeyBits 768
7 LoginGraceTime 600
8 KeyRegenerationInterval 3600
9 PermitRootLogin yes
10
11 #
12 # Loglevel replaces QuietMode and FascistLogging
13 #
14 LogLevel INFO
15
16 #
17 # Don't read ~/.rhosts and ~/.shosts files
18 IgnoreRhosts yes
19 StrictModes yes
20 X11Forwarding yes
21 X11DisplayOffset 10
22 FascistLogging no
23 PrintMotd yes
24 KeepAlive yes
25 CheckMail no
26 UseLogin no
27 SyslogFacility AUTH
28 RhostsAuthentication no
29
30 #
31 # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
32 #
33 RhostsRSAAuthentication no
34
35 RSAAuthentication yes
36
37 # To disable tunneled clear text passwords, change to no here!
38 PasswordAuthentication yes
39 PermitEmptyPasswords no
40
41 #
42 # Uncomment to disable s/key passwords (must be compiled with s/key support)
43 #
44 #SkeyAuthentication no
45
46 #
47 # To change Kerberos options (must be compiled with Kerberos support)
48 #
49 #KerberosAuthentication no
50 #KerberosOrLocalPasswd yes
51 #AFSTokenPassing no
52 #KerberosTicketCleanup no
53 # Kerberos TGT Passing does only work with the AFS kaserver
54 #KerberosTgtPassing yes
This page took 0.444225 seconds and 5 git commands to generate.