]> andersk Git - openssh.git/blob - sshd_config
- Document PAM ChallengeResponseAuthentication in sshd.8
[openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.32 2001/02/06 22:07:50 deraadt 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 # Comment to enable s/key passwords or PAM interactive authentication
45 # NB. Neither of these are compiled in by default.
46 ChallengeResponseAuthentication no
47
48 # To change Kerberos options
49 #KerberosAuthentication no
50 #KerberosOrLocalPasswd yes
51 #AFSTokenPassing no
52 #KerberosTicketCleanup no
53
54 # Kerberos TGT Passing does only work with the AFS kaserver
55 #KerberosTgtPassing yes
56
57 #CheckMail yes
58 #UseLogin no
59
60 #MaxStartups 10:30:60
61 #Banner /etc/issue.net
62 #ReverseMappingCheck yes
63
64 Subsystem       sftp    /usr/libexec/sftp-server
This page took 1.401309 seconds and 5 git commands to generate.