]> andersk Git - openssh.git/blob - sshd_config
- markus@cvs.openbsd.org 2001/05/20 17:20:36
[openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.39 2001/05/20 17:20:36 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 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 #PrintLastLog no
29 KeepAlive yes
30
31 # Logging
32 SyslogFacility AUTH
33 LogLevel INFO
34 #obsoletes QuietMode and FascistLogging
35
36 RhostsAuthentication no
37 #
38 # For this to work you will also need host keys in /etc/ssh_known_hosts
39 RhostsRSAAuthentication no
40 # similar for protocol version 2
41 HostbasedAuthentication no
42 #
43 RSAAuthentication yes
44 PubkeyAuthentication yes
45 #AuthorizedKeysFile     %h/.ssh/authorized_keys
46 #AuthorizedKeysFile2    %h/.ssh/authorized_keys2
47
48 # To disable tunneled clear text passwords, change to no here!
49 PasswordAuthentication yes
50 PermitEmptyPasswords no
51
52 # Uncomment to disable s/key passwords 
53 #ChallengeResponseAuthentication no
54
55 # Uncomment to enable PAM keyboard-interactive authentication 
56 # Warning: enabling this may bypass the setting of 'PasswordAuthentication'
57 #PAMAuthenticationViaKbdInt yes
58
59 # To change Kerberos options
60 #KerberosAuthentication no
61 #KerberosOrLocalPasswd yes
62 #AFSTokenPassing no
63 #KerberosTicketCleanup no
64
65 # Kerberos TGT Passing does only work with the AFS kaserver
66 #KerberosTgtPassing yes
67
68 #CheckMail yes
69 #UseLogin no
70
71 #MaxStartups 10:30:60
72 #Banner /etc/issue.net
73 #ReverseMappingCheck yes
74
75 Subsystem       sftp    /usr/libexec/sftp-server
This page took 0.039174 seconds and 5 git commands to generate.