]> andersk Git - openssh.git/blob - sshd_config
- markus@cvs.openbsd.org 2001/06/07 22:25:02
[openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.40 2001/05/31 13:08:04 markus 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
13 # HostKey for protocol version 1
14 HostKey /etc/ssh_host_key
15 # HostKeys for protocol version 2
16 HostKey /etc/ssh_host_rsa_key
17 HostKey /etc/ssh_host_dsa_key
18
19 # Lifetime and size of ephemeral version 1 server key
20 KeyRegenerationInterval 3600
21 ServerKeyBits 768
22
23 # Logging
24 SyslogFacility AUTH
25 LogLevel INFO
26 #obsoletes QuietMode and FascistLogging
27
28 # Authentication:
29
30 LoginGraceTime 600
31 PermitRootLogin yes
32 StrictModes yes
33
34 RSAAuthentication yes
35 PubkeyAuthentication yes
36 #AuthorizedKeysFile     %h/.ssh/authorized_keys
37 #AuthorizedKeysFile2    %h/.ssh/authorized_keys2
38
39 # rhosts authentication should not be used
40 RhostsAuthentication no
41 # Don't read the user's ~/.rhosts and ~/.shosts files
42 IgnoreRhosts yes
43 # For this to work you will also need host keys in /etc/ssh_known_hosts
44 RhostsRSAAuthentication no
45 # similar for protocol version 2
46 HostbasedAuthentication no
47 # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
48 #IgnoreUserKnownHosts yes
49
50 # To disable tunneled clear text passwords, change to no here!
51 PasswordAuthentication yes
52 PermitEmptyPasswords no
53
54 # Uncomment to disable s/key passwords 
55 #ChallengeResponseAuthentication no
56
57 # Uncomment to enable PAM keyboard-interactive authentication 
58 # Warning: enabling this may bypass the setting of 'PasswordAuthentication'
59 #PAMAuthenticationViaKbdInt yes
60
61 # To change Kerberos options
62 #KerberosAuthentication no
63 #KerberosOrLocalPasswd yes
64 #AFSTokenPassing no
65 #KerberosTicketCleanup no
66
67 # Kerberos TGT Passing does only work with the AFS kaserver
68 #KerberosTgtPassing yes
69
70 X11Forwarding no
71 X11DisplayOffset 10
72 PrintMotd yes
73 #PrintLastLog no
74 KeepAlive yes
75 #CheckMail yes
76 #UseLogin no
77
78 #MaxStartups 10:30:60
79 #Banner /etc/issue.net
80 #ReverseMappingCheck yes
81
82 Subsystem       sftp    /usr/libexec/sftp-server
This page took 0.113168 seconds and 5 git commands to generate.