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