]> andersk Git - openssh.git/blob - sshd_config
- Big manpage and config file cleanup from Andre Lucas
[openssh.git] / sshd_config
1 # This is ssh server systemwide configuration file.
2
3 Port 22
4 ListenAddress 0.0.0.0
5 #ListenAddress ::
6 HostKey /etc/ssh_host_key
7 ServerKeyBits 768
8 LoginGraceTime 600
9 KeyRegenerationInterval 3600
10 PermitRootLogin yes
11 #
12 # Don't read ~/.rhosts and ~/.shosts files
13 IgnoreRhosts yes
14 # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
15 #IgnoreUserKnownHosts yes
16 StrictModes yes
17 X11Forwarding no
18 X11DisplayOffset 10
19 PrintMotd yes
20 KeepAlive yes
21
22 # Logging
23 SyslogFacility AUTH
24 LogLevel INFO
25 #obsoletes QuietMode and FascistLogging
26
27 RhostsAuthentication no
28 #
29 # For this to work you will also need host keys in /etc/ssh_known_hosts
30 RhostsRSAAuthentication no
31 #
32 RSAAuthentication yes
33
34 # To disable tunneled clear text passwords, change to no here!
35 PasswordAuthentication yes
36 PermitEmptyPasswords 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 no
50 UseLogin no
This page took 0.048371 seconds and 5 git commands to generate.