update version
[openssh.git] / sshd_config
1 #       $OpenBSD: sshd_config,v 1.84 2011/05/23 03:30:07 djm Exp $
2
3 # This is the sshd server system-wide configuration file.  See
4 # sshd_config(5) for more information.
5
6 # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
7
8 # The strategy used for options in the default sshd_config shipped with
9 # OpenSSH is to specify options with their default value where
10 # possible, but leave them commented.  Uncommented options override the
11 # default value.
12
13 #Port 22
14 #AddressFamily any
15 #ListenAddress 0.0.0.0
16 #ListenAddress ::
17
18 # The default requires explicit activation of protocol 1
19 #Protocol 2
20
21 # HostKey for protocol version 1
22 #HostKey /etc/ssh/ssh_host_key
23 # HostKeys for protocol version 2
24 #HostKey /etc/ssh/ssh_host_rsa_key
25 #HostKey /etc/ssh/ssh_host_dsa_key
26 #HostKey /etc/ssh/ssh_host_ecdsa_key
27
28 # Lifetime and size of ephemeral version 1 server key
29 #KeyRegenerationInterval 1h
30 #ServerKeyBits 1024
31
32 # Logging
33 # obsoletes QuietMode and FascistLogging
34 #SyslogFacility AUTH
35 #LogLevel INFO
36
37 # Authentication:
38
39 #LoginGraceTime 2m
40 # See /usr/share/doc/openssh-server/README.Debian.gz.
41 #PermitRootLogin yes
42 #StrictModes yes
43 #MaxAuthTries 6
44 #MaxSessions 10
45
46 #RSAAuthentication yes
47 #PubkeyAuthentication yes
48
49 # The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
50 # but this is overridden so installations will only check .ssh/authorized_keys
51 AuthorizedKeysFile      .ssh/authorized_keys
52
53 # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
54 #RhostsRSAAuthentication no
55 # similar for protocol version 2
56 #HostbasedAuthentication no
57 # Change to yes if you don't trust ~/.ssh/known_hosts for
58 # RhostsRSAAuthentication and HostbasedAuthentication
59 #IgnoreUserKnownHosts no
60 # Don't read the user's ~/.rhosts and ~/.shosts files
61 #IgnoreRhosts yes
62
63 # To disable tunneled clear text passwords, change to no here!
64 #PasswordAuthentication yes
65 #PermitEmptyPasswords no
66
67 # Change to no to disable s/key passwords
68 #ChallengeResponseAuthentication yes
69
70 # Kerberos options
71 #KerberosAuthentication no
72 #KerberosOrLocalPasswd yes
73 #KerberosTicketCleanup yes
74 #KerberosGetAFSToken no
75
76 # GSSAPI options
77 #GSSAPIAuthentication no
78 #GSSAPICleanupCredentials yes
79 #GSSAPIStrictAcceptorCheck yes
80 #GSSAPIKeyExchange no
81 #GSSAPIRequireMIC yes
82
83 # Set this to 'yes' to enable PAM authentication, account processing, 
84 # and session processing. If this is enabled, PAM authentication will 
85 # be allowed through the ChallengeResponseAuthentication and
86 # PasswordAuthentication.  Depending on your PAM configuration,
87 # PAM authentication via ChallengeResponseAuthentication may bypass
88 # the setting of "PermitRootLogin without-password".
89 # If you just want the PAM account and session checks to run without
90 # PAM authentication, then enable this but set PasswordAuthentication
91 # and ChallengeResponseAuthentication to 'no'.
92 #UsePAM no
93
94 #AllowAgentForwarding yes
95 #AllowTcpForwarding yes
96 #GatewayPorts no
97 #X11Forwarding no
98 #X11DisplayOffset 10
99 #X11UseLocalhost yes
100 #PrintMotd yes
101 #PrintLastLog yes
102 #TCPKeepAlive yes
103 #UseLogin no
104 #UsePrivilegeSeparation yes
105 #PermitUserEnvironment no
106 #Compression delayed
107 #ClientAliveInterval 0
108 #ClientAliveCountMax 3
109 #UseDNS yes
110 #PidFile /var/run/sshd.pid
111 #MaxStartups 10
112 #PermitTunnel no
113 #ChrootDirectory none
114
115 # no default banner path
116 #Banner none
117
118 # override default of no subsystems
119 Subsystem       sftp    /usr/libexec/sftp-server
120
121 # Example of overriding settings on a per-user basis
122 #Match User anoncvs
123 #       X11Forwarding no
124 #       AllowTcpForwarding no
125 #       ForceCommand cvs server