]> git.pld-linux.org Git - packages/openssh.git/blob - opensshd.conf
e5b26f22a5b353579226342b47862424165dd02e
[packages/openssh.git] / opensshd.conf
1 # This is ssh server systemwide configuration file.
2
3 Port 22
4 Protocol 1,2
5 #ListenAddress 0.0.0.0
6 #ListenAddress ::
7 #HostKey /etc/ssh/ssh_host_key
8 #HostKey /etc/ssh/ssh_host_dsa_key
9 ServerKeyBits 768
10 LoginGraceTime 600
11 KeyRegenerationInterval 3600
12 PermitRootLogin no
13 #
14 # Don't read ~/.rhosts and ~/.shosts files
15 IgnoreRhosts yes
16 # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
17 #IgnoreUserKnownHosts yes
18 StrictModes yes
19 X11Forwarding no
20 X11DisplayOffset 10
21 X11UseLocalhost yes
22 PrintMotd yes
23 KeepAlive yes
24
25 # Logging
26 SyslogFacility AUTH
27 LogLevel INFO
28 #obsoletes QuietMode and FascistLogging
29
30 RhostsAuthentication no
31 #
32 # For this to work you will also need host keys in /etc/ssh_known_hosts
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 # 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 UseLogin no
This page took 0.026517 seconds and 2 git commands to generate.