]> andersk Git - openssh.git/blob - sshd_config
NB: big update - may break stuff. Please test!
[openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.30 2001/02/03 10:19:51 markus Exp $
2
3 # This is the sshd server system-wide configuration file.  See sshd(8)
4 # for more information.
5
6 Port 22
7 #Protocol 2,1
8 #ListenAddress 0.0.0.0
9 #ListenAddress ::
10 HostKey /etc/ssh_host_key
11 HostKey /etc/ssh_host_dsa_key
12 #HostKey /etc/ssh_host_rsa_key
13 ServerKeyBits 768
14 LoginGraceTime 600
15 KeyRegenerationInterval 3600
16 PermitRootLogin yes
17 #
18 # Don't read ~/.rhosts and ~/.shosts files
19 IgnoreRhosts yes
20 # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
21 #IgnoreUserKnownHosts yes
22 StrictModes yes
23 X11Forwarding no
24 X11DisplayOffset 10
25 PrintMotd yes
26 KeepAlive yes
27
28 # Logging
29 SyslogFacility AUTH
30 LogLevel INFO
31 #obsoletes QuietMode and FascistLogging
32
33 RhostsAuthentication no
34 #
35 # For this to work you will also need host keys in /etc/ssh_known_hosts
36 RhostsRSAAuthentication no
37 #
38 RSAAuthentication yes
39
40 # To disable tunneled clear text passwords, change to no here!
41 PasswordAuthentication yes
42 PermitEmptyPasswords no
43
44 # Uncomment to disable s/key passwords 
45 #ChallengeResposeAuthentication no
46
47 # To change Kerberos options
48 #KerberosAuthentication no
49 #KerberosOrLocalPasswd yes
50 #AFSTokenPassing no
51 #KerberosTicketCleanup no
52
53 # Kerberos TGT Passing does only work with the AFS kaserver
54 #KerberosTgtPassing yes
55
56 #CheckMail yes
57 #UseLogin no
58
59 # Uncomment if you want to enable sftp
60 #Subsystem      sftp    /usr/libexec/sftp-server
61 #MaxStartups 10:30:60
62 #Banner /etc/issue.net
63 #ReverseMappingCheck yes
This page took 0.048783 seconds and 5 git commands to generate.