blob: 3a377ca74ffec0cf5916a6477bc452a1716bb896 [file] [log] [blame]
Ben Lindstrom9f049032002-06-21 00:59:05 +00001.\" -*- nroff -*-
2.\"
3.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\" All rights reserved
6.\"
7.\" As far as I am concerned, the code I have written for this software
8.\" can be used freely for any purpose. Any derived versions of this
9.\" software must be clearly marked as such, and if the derived work is
10.\" incompatible with the protocol description in the RFC file, it must be
11.\" called by a name other than "ssh" or "Secure Shell".
12.\"
13.\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
14.\" Copyright (c) 1999 Aaron Campbell. All rights reserved.
15.\" Copyright (c) 1999 Theo de Raadt. All rights reserved.
16.\"
17.\" Redistribution and use in source and binary forms, with or without
18.\" modification, are permitted provided that the following conditions
19.\" are met:
20.\" 1. Redistributions of source code must retain the above copyright
21.\" notice, this list of conditions and the following disclaimer.
22.\" 2. Redistributions in binary form must reproduce the above copyright
23.\" notice, this list of conditions and the following disclaimer in the
24.\" documentation and/or other materials provided with the distribution.
25.\"
26.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\"
Damien Miller05202ff2004-06-15 10:30:39 +100037.\" $OpenBSD: sshd_config.5,v 1.34 2004/06/13 14:01:42 dtucker Exp $
Ben Lindstrom9f049032002-06-21 00:59:05 +000038.Dd September 25, 1999
39.Dt SSHD_CONFIG 5
40.Os
41.Sh NAME
42.Nm sshd_config
43.Nd OpenSSH SSH daemon configuration file
44.Sh SYNOPSIS
45.Bl -tag -width Ds -compact
46.It Pa /etc/ssh/sshd_config
47.El
48.Sh DESCRIPTION
49.Nm sshd
50reads configuration data from
51.Pa /etc/ssh/sshd_config
52(or the file specified with
53.Fl f
54on the command line).
55The file contains keyword-argument pairs, one per line.
56Lines starting with
57.Ql #
58and empty lines are interpreted as comments.
59.Pp
60The possible
61keywords and their meanings are as follows (note that
62keywords are case-insensitive and arguments are case-sensitive):
63.Bl -tag -width Ds
Darren Tucker46bc0752004-05-02 22:11:30 +100064.It Cm AcceptEnv
65Specifies what environment variables sent by the client will be copied into
66the session's
67.Xr environ 7 .
68See
69.Cm SendEnv
70in
71.Xr ssh_config 5
72for how to configure the client.
Darren Tucker1e0c9bf2004-05-02 22:12:48 +100073Note that environment passing is only supported for protocol 2.
Darren Tucker46bc0752004-05-02 22:11:30 +100074Variables are specified by name, which may contain the wildcard characters
75.Ql \&*
76and
77.Ql \&? .
Darren Tucker1e0c9bf2004-05-02 22:12:48 +100078Multiple environment variables may be separated by whitespace or spread
Darren Tucker46bc0752004-05-02 22:11:30 +100079across multiple
80.Cm AcceptEnv
81directives.
Darren Tucker1e0c9bf2004-05-02 22:12:48 +100082Be warned that some environment variables could be used to bypass restricted
Darren Tucker46bc0752004-05-02 22:11:30 +100083user environments.
84For this reason, care should be taken in the use of this directive.
85The default is not to accept any environment variables.
Ben Lindstrom9f049032002-06-21 00:59:05 +000086.It Cm AllowGroups
87This keyword can be followed by a list of group name patterns, separated
88by spaces.
89If specified, login is allowed only for users whose primary
90group or supplementary group list matches one of the patterns.
91.Ql \&*
92and
Damien Miller049245d2003-05-14 13:44:42 +100093.Ql \&?
Ben Lindstrom9f049032002-06-21 00:59:05 +000094can be used as
95wildcards in the patterns.
96Only group names are valid; a numerical group ID is not recognized.
97By default, login is allowed for all groups.
Ben Lindstrom9f049032002-06-21 00:59:05 +000098.It Cm AllowTcpForwarding
99Specifies whether TCP forwarding is permitted.
100The default is
101.Dq yes .
102Note that disabling TCP forwarding does not improve security unless
103users are also denied shell access, as they can always install their
104own forwarders.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000105.It Cm AllowUsers
106This keyword can be followed by a list of user name patterns, separated
107by spaces.
Damien Miller5a93add2003-01-24 11:34:52 +1100108If specified, login is allowed only for user names that
Ben Lindstrom9f049032002-06-21 00:59:05 +0000109match one of the patterns.
110.Ql \&*
111and
Damien Miller049245d2003-05-14 13:44:42 +1000112.Ql \&?
Ben Lindstrom9f049032002-06-21 00:59:05 +0000113can be used as
114wildcards in the patterns.
115Only user names are valid; a numerical user ID is not recognized.
116By default, login is allowed for all users.
117If the pattern takes the form USER@HOST then USER and HOST
118are separately checked, restricting logins to particular
119users from particular hosts.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000120.It Cm AuthorizedKeysFile
121Specifies the file that contains the public keys that can be used
122for user authentication.
123.Cm AuthorizedKeysFile
124may contain tokens of the form %T which are substituted during connection
Damien Millerfbf486b2003-05-23 18:44:23 +1000125set-up.
126The following tokens are defined: %% is replaced by a literal '%',
Ben Lindstrom9f049032002-06-21 00:59:05 +0000127%h is replaced by the home directory of the user being authenticated and
128%u is replaced by the username of that user.
129After expansion,
130.Cm AuthorizedKeysFile
131is taken to be an absolute path or one relative to the user's home
132directory.
133The default is
134.Dq .ssh/authorized_keys .
135.It Cm Banner
136In some jurisdictions, sending a warning message before authentication
137may be relevant for getting legal protection.
138The contents of the specified file are sent to the remote user before
139authentication is allowed.
140This option is only available for protocol version 2.
141By default, no banner is displayed.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000142.It Cm ChallengeResponseAuthentication
143Specifies whether challenge response authentication is allowed.
144All authentication styles from
145.Xr login.conf 5
146are supported.
147The default is
148.Dq yes .
149.It Cm Ciphers
150Specifies the ciphers allowed for protocol version 2.
151Multiple ciphers must be comma-separated.
Damien Miller05202ff2004-06-15 10:30:39 +1000152The supported ciphers are
153.Dq 3des-cbc ,
154.Dq aes128-cbc ,
155.Dq aes192-cbc ,
156.Dq aes256-cbc ,
157.Dq aes128-ctr ,
158.Dq aes192-ctr ,
159.Dq aes256-ctr ,
160.Dq arcfour ,
161.Dq blowfish-cbc ,
162and
163.Dq cast128-cbc .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000164The default is
Ben Lindstrom9f049032002-06-21 00:59:05 +0000165.Bd -literal
166 ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
Darren Tucker91cf2612003-06-22 20:46:53 +1000167 aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr''
Ben Lindstrom9f049032002-06-21 00:59:05 +0000168.Ed
169.It Cm ClientAliveInterval
170Sets a timeout interval in seconds after which if no data has been received
171from the client,
172.Nm sshd
173will send a message through the encrypted
174channel to request a response from the client.
175The default
176is 0, indicating that these messages will not be sent to the client.
177This option applies to protocol version 2 only.
178.It Cm ClientAliveCountMax
179Sets the number of client alive messages (see above) which may be
180sent without
181.Nm sshd
Damien Millerfbf486b2003-05-23 18:44:23 +1000182receiving any messages back from the client.
183If this threshold is reached while client alive messages are being sent,
Ben Lindstrom9f049032002-06-21 00:59:05 +0000184.Nm sshd
Damien Millerfbf486b2003-05-23 18:44:23 +1000185will disconnect the client, terminating the session.
186It is important to note that the use of client alive messages is very
187different from
Damien Miller12c150e2003-12-17 16:31:10 +1100188.Cm TCPKeepAlive
Damien Millerfbf486b2003-05-23 18:44:23 +1000189(below).
190The client alive messages are sent through the encrypted channel
191and therefore will not be spoofable.
192The TCP keepalive option enabled by
Damien Miller12c150e2003-12-17 16:31:10 +1100193.Cm TCPKeepAlive
Damien Millerfbf486b2003-05-23 18:44:23 +1000194is spoofable.
195The client alive mechanism is valuable when the client or
Ben Lindstrom9f049032002-06-21 00:59:05 +0000196server depend on knowing when a connection has become inactive.
197.Pp
Damien Millerfbf486b2003-05-23 18:44:23 +1000198The default value is 3.
199If
Ben Lindstrom9f049032002-06-21 00:59:05 +0000200.Cm ClientAliveInterval
201(above) is set to 15, and
202.Cm ClientAliveCountMax
203is left at the default, unresponsive ssh clients
204will be disconnected after approximately 45 seconds.
205.It Cm Compression
206Specifies whether compression is allowed.
207The argument must be
208.Dq yes
209or
210.Dq no .
211The default is
212.Dq yes .
213.It Cm DenyGroups
214This keyword can be followed by a list of group name patterns, separated
215by spaces.
216Login is disallowed for users whose primary group or supplementary
217group list matches one of the patterns.
218.Ql \&*
219and
Damien Miller049245d2003-05-14 13:44:42 +1000220.Ql \&?
Ben Lindstrom9f049032002-06-21 00:59:05 +0000221can be used as
222wildcards in the patterns.
223Only group names are valid; a numerical group ID is not recognized.
224By default, login is allowed for all groups.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000225.It Cm DenyUsers
226This keyword can be followed by a list of user name patterns, separated
227by spaces.
228Login is disallowed for user names that match one of the patterns.
229.Ql \&*
230and
Damien Miller049245d2003-05-14 13:44:42 +1000231.Ql \&?
Ben Lindstrom9f049032002-06-21 00:59:05 +0000232can be used as wildcards in the patterns.
233Only user names are valid; a numerical user ID is not recognized.
234By default, login is allowed for all users.
235If the pattern takes the form USER@HOST then USER and HOST
236are separately checked, restricting logins to particular
237users from particular hosts.
238.It Cm GatewayPorts
239Specifies whether remote hosts are allowed to connect to ports
240forwarded for the client.
241By default,
242.Nm sshd
Damien Miller495dca32003-04-01 21:42:14 +1000243binds remote port forwardings to the loopback address.
244This prevents other remote hosts from connecting to forwarded ports.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000245.Cm GatewayPorts
246can be used to specify that
247.Nm sshd
248should bind remote port forwardings to the wildcard address,
249thus allowing remote hosts to connect to forwarded ports.
250The argument must be
251.Dq yes
252or
253.Dq no .
254The default is
255.Dq no .
Darren Tucker0efd1552003-08-26 11:49:55 +1000256.It Cm GSSAPIAuthentication
Damien Miller9b7b03b2003-09-02 22:57:05 +1000257Specifies whether user authentication based on GSSAPI is allowed.
Damien Millera8e06ce2003-11-21 23:48:55 +1100258The default is
Darren Tucker0efd1552003-08-26 11:49:55 +1000259.Dq no .
260Note that this option applies to protocol version 2 only.
261.It Cm GSSAPICleanupCredentials
262Specifies whether to automatically destroy the user's credentials cache
263on logout.
264The default is
265.Dq yes .
266Note that this option applies to protocol version 2 only.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000267.It Cm HostbasedAuthentication
268Specifies whether rhosts or /etc/hosts.equiv authentication together
269with successful public key client host authentication is allowed
270(hostbased authentication).
271This option is similar to
272.Cm RhostsRSAAuthentication
273and applies to protocol version 2 only.
274The default is
275.Dq no .
276.It Cm HostKey
277Specifies a file containing a private host key
278used by SSH.
279The default is
280.Pa /etc/ssh/ssh_host_key
281for protocol version 1, and
282.Pa /etc/ssh/ssh_host_rsa_key
283and
284.Pa /etc/ssh/ssh_host_dsa_key
285for protocol version 2.
286Note that
287.Nm sshd
288will refuse to use a file if it is group/world-accessible.
289It is possible to have multiple host key files.
290.Dq rsa1
291keys are used for version 1 and
292.Dq dsa
293or
294.Dq rsa
295are used for version 2 of the SSH protocol.
296.It Cm IgnoreRhosts
297Specifies that
298.Pa .rhosts
299and
300.Pa .shosts
301files will not be used in
Ben Lindstrom9f049032002-06-21 00:59:05 +0000302.Cm RhostsRSAAuthentication
303or
304.Cm HostbasedAuthentication .
305.Pp
306.Pa /etc/hosts.equiv
307and
308.Pa /etc/shosts.equiv
309are still used.
310The default is
311.Dq yes .
312.It Cm IgnoreUserKnownHosts
313Specifies whether
314.Nm sshd
315should ignore the user's
316.Pa $HOME/.ssh/known_hosts
317during
318.Cm RhostsRSAAuthentication
319or
320.Cm HostbasedAuthentication .
321The default is
322.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000323.It Cm KerberosAuthentication
Damien Miller1a0c0b92003-09-02 22:51:17 +1000324Specifies whether the password provided by the user for
Ben Lindstrom9f049032002-06-21 00:59:05 +0000325.Cm PasswordAuthentication
Damien Miller1a0c0b92003-09-02 22:51:17 +1000326will be validated through the Kerberos KDC.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000327To use this option, the server needs a
328Kerberos servtab which allows the verification of the KDC's identity.
329Default is
330.Dq no .
Damien Miller8448e662004-03-08 23:13:15 +1100331.It Cm KerberosGetAFSToken
332If AFS is active and the user has a Kerberos 5 TGT, attempt to aquire
333an AFS token before accessing the user's home directory.
334Default is
335.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000336.It Cm KerberosOrLocalPasswd
337If set then if password authentication through Kerberos fails then
338the password will be validated via any additional local mechanism
339such as
340.Pa /etc/passwd .
341Default is
342.Dq yes .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000343.It Cm KerberosTicketCleanup
344Specifies whether to automatically destroy the user's ticket cache
345file on logout.
346Default is
347.Dq yes .
348.It Cm KeyRegenerationInterval
349In protocol version 1, the ephemeral server key is automatically regenerated
350after this many seconds (if it has been used).
351The purpose of regeneration is to prevent
352decrypting captured sessions by later breaking into the machine and
353stealing the keys.
354The key is never stored anywhere.
355If the value is 0, the key is never regenerated.
356The default is 3600 (seconds).
357.It Cm ListenAddress
358Specifies the local addresses
359.Nm sshd
360should listen on.
361The following forms may be used:
362.Pp
363.Bl -item -offset indent -compact
364.It
365.Cm ListenAddress
366.Sm off
367.Ar host No | Ar IPv4_addr No | Ar IPv6_addr
368.Sm on
369.It
370.Cm ListenAddress
371.Sm off
372.Ar host No | Ar IPv4_addr No : Ar port
373.Sm on
374.It
375.Cm ListenAddress
376.Sm off
377.Oo
378.Ar host No | Ar IPv6_addr Oc : Ar port
379.Sm on
380.El
381.Pp
382If
383.Ar port
384is not specified,
385.Nm sshd
386will listen on the address and all prior
387.Cm Port
Damien Millerfbf486b2003-05-23 18:44:23 +1000388options specified.
389The default is to listen on all local addresses.
Damien Miller495dca32003-04-01 21:42:14 +1000390Multiple
Ben Lindstrom9f049032002-06-21 00:59:05 +0000391.Cm ListenAddress
Damien Millerfbf486b2003-05-23 18:44:23 +1000392options are permitted.
393Additionally, any
Ben Lindstrom9f049032002-06-21 00:59:05 +0000394.Cm Port
395options must precede this option for non port qualified addresses.
396.It Cm LoginGraceTime
397The server disconnects after this time if the user has not
398successfully logged in.
399If the value is 0, there is no time limit.
Damien Millerc1348632002-09-05 14:35:14 +1000400The default is 120 seconds.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000401.It Cm LogLevel
402Gives the verbosity level that is used when logging messages from
403.Nm sshd .
404The possible values are:
405QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2 and DEBUG3.
Damien Miller495dca32003-04-01 21:42:14 +1000406The default is INFO.
407DEBUG and DEBUG1 are equivalent.
408DEBUG2 and DEBUG3 each specify higher levels of debugging output.
409Logging with a DEBUG level violates the privacy of users and is not recommended.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000410.It Cm MACs
411Specifies the available MAC (message authentication code) algorithms.
412The MAC algorithm is used in protocol version 2
413for data integrity protection.
414Multiple algorithms must be comma-separated.
415The default is
416.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
Darren Tucker89413db2004-05-24 10:36:23 +1000417.It Cm MaxAuthTries
418Specifies the maximum number of authentication attempts permitted per
419connection. Once the number of failures reaches half this value, additional
420failures are logged. The default is 6.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000421.It Cm MaxStartups
422Specifies the maximum number of concurrent unauthenticated connections to the
423.Nm sshd
424daemon.
425Additional connections will be dropped until authentication succeeds or the
426.Cm LoginGraceTime
427expires for a connection.
428The default is 10.
429.Pp
430Alternatively, random early drop can be enabled by specifying
431the three colon separated values
432.Dq start:rate:full
433(e.g., "10:30:60").
434.Nm sshd
435will refuse connection attempts with a probability of
436.Dq rate/100
437(30%)
438if there are currently
439.Dq start
440(10)
441unauthenticated connections.
442The probability increases linearly and all connection attempts
443are refused if the number of unauthenticated connections reaches
444.Dq full
445(60).
446.It Cm PasswordAuthentication
447Specifies whether password authentication is allowed.
448The default is
449.Dq yes .
450.It Cm PermitEmptyPasswords
451When password authentication is allowed, it specifies whether the
452server allows login to accounts with empty password strings.
453The default is
454.Dq no .
455.It Cm PermitRootLogin
456Specifies whether root can login using
457.Xr ssh 1 .
458The argument must be
459.Dq yes ,
460.Dq without-password ,
461.Dq forced-commands-only
462or
463.Dq no .
464The default is
465.Dq yes .
466.Pp
467If this option is set to
468.Dq without-password
Darren Tucker96cc26b2004-04-14 13:04:35 +1000469password authentication is disabled for root. Note that other authentication
470methods (e.g., keyboard-interactive/PAM) may still allow root to login using
471a password.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000472.Pp
473If this option is set to
474.Dq forced-commands-only
475root login with public key authentication will be allowed,
476but only if the
477.Ar command
478option has been specified
479(which may be useful for taking remote backups even if root login is
Damien Millerfbf486b2003-05-23 18:44:23 +1000480normally not allowed).
481All other authentication methods are disabled for root.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000482.Pp
483If this option is set to
484.Dq no
485root is not allowed to login.
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000486.It Cm PermitUserEnvironment
487Specifies whether
488.Pa ~/.ssh/environment
Ben Lindstrombd9bf382002-08-20 18:54:20 +0000489and
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000490.Cm environment=
491options in
492.Pa ~/.ssh/authorized_keys
Ben Lindstrombd9bf382002-08-20 18:54:20 +0000493are processed by
494.Nm sshd .
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000495The default is
496.Dq no .
Ben Lindstrombd9bf382002-08-20 18:54:20 +0000497Enabling environment processing may enable users to bypass access
498restrictions in some configurations using mechanisms such as
499.Ev LD_PRELOAD .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000500.It Cm PidFile
Ben Lindstrom959de992002-06-23 00:35:25 +0000501Specifies the file that contains the process ID of the
Ben Lindstrom9f049032002-06-21 00:59:05 +0000502.Nm sshd
503daemon.
504The default is
505.Pa /var/run/sshd.pid .
506.It Cm Port
507Specifies the port number that
508.Nm sshd
509listens on.
510The default is 22.
511Multiple options of this type are permitted.
512See also
513.Cm ListenAddress .
514.It Cm PrintLastLog
515Specifies whether
516.Nm sshd
517should print the date and time when the user last logged in.
518The default is
519.Dq yes .
520.It Cm PrintMotd
521Specifies whether
522.Nm sshd
523should print
524.Pa /etc/motd
525when a user logs in interactively.
526(On some systems it is also printed by the shell,
527.Pa /etc/profile ,
528or equivalent.)
529The default is
530.Dq yes .
531.It Cm Protocol
532Specifies the protocol versions
533.Nm sshd
Ben Lindstrom9c445542002-07-11 03:59:18 +0000534supports.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000535The possible values are
536.Dq 1
537and
538.Dq 2 .
539Multiple versions must be comma-separated.
540The default is
541.Dq 2,1 .
Ben Lindstrom9c445542002-07-11 03:59:18 +0000542Note that the order of the protocol list does not indicate preference,
543because the client selects among multiple protocol versions offered
544by the server.
545Specifying
546.Dq 2,1
547is identical to
548.Dq 1,2 .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000549.It Cm PubkeyAuthentication
550Specifies whether public key authentication is allowed.
551The default is
552.Dq yes .
553Note that this option applies to protocol version 2 only.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000554.It Cm RhostsRSAAuthentication
555Specifies whether rhosts or /etc/hosts.equiv authentication together
556with successful RSA host authentication is allowed.
557The default is
558.Dq no .
559This option applies to protocol version 1 only.
560.It Cm RSAAuthentication
561Specifies whether pure RSA authentication is allowed.
562The default is
563.Dq yes .
564This option applies to protocol version 1 only.
565.It Cm ServerKeyBits
566Defines the number of bits in the ephemeral protocol version 1 server key.
567The minimum value is 512, and the default is 768.
568.It Cm StrictModes
569Specifies whether
570.Nm sshd
571should check file modes and ownership of the
572user's files and home directory before accepting login.
573This is normally desirable because novices sometimes accidentally leave their
574directory or files world-writable.
575The default is
576.Dq yes .
577.It Cm Subsystem
578Configures an external subsystem (e.g., file transfer daemon).
579Arguments should be a subsystem name and a command to execute upon subsystem
580request.
581The command
582.Xr sftp-server 8
583implements the
584.Dq sftp
585file transfer subsystem.
586By default no subsystems are defined.
587Note that this option applies to protocol version 2 only.
588.It Cm SyslogFacility
589Gives the facility code that is used when logging messages from
590.Nm sshd .
591The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
592LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
593The default is AUTH.
Damien Miller12c150e2003-12-17 16:31:10 +1100594.It Cm TCPKeepAlive
595Specifies whether the system should send TCP keepalive messages to the
596other side.
597If they are sent, death of the connection or crash of one
598of the machines will be properly noticed.
599However, this means that
600connections will die if the route is down temporarily, and some people
601find it annoying.
602On the other hand, if TCP keepalives are not sent,
603sessions may hang indefinitely on the server, leaving
604.Dq ghost
605users and consuming server resources.
606.Pp
607The default is
608.Dq yes
609(to send TCP keepalive messages), and the server will notice
610if the network goes down or the client host crashes.
611This avoids infinitely hanging sessions.
612.Pp
613To disable TCP keepalive messages, the value should be set to
614.Dq no .
Damien Miller3a961dc2003-06-03 10:25:48 +1000615.It Cm UseDNS
616Specifies whether
617.Nm sshd
618should lookup the remote host name and check that
619the resolved host name for the remote IP address maps back to the
620very same IP address.
621The default is
622.Dq yes .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000623.It Cm UseLogin
624Specifies whether
625.Xr login 1
626is used for interactive login sessions.
627The default is
628.Dq no .
629Note that
630.Xr login 1
631is never used for remote command execution.
632Note also, that if this is enabled,
633.Cm X11Forwarding
634will be disabled because
635.Xr login 1
636does not know how to handle
637.Xr xauth 1
Damien Miller495dca32003-04-01 21:42:14 +1000638cookies.
639If
Ben Lindstrom9f049032002-06-21 00:59:05 +0000640.Cm UsePrivilegeSeparation
641is specified, it will be disabled after authentication.
Damien Miller2e193e22003-05-14 15:13:03 +1000642.It Cm UsePAM
Darren Tucker1dcff9a2004-05-13 16:51:40 +1000643Enables the Pluggable Authentication Module interface.
644If set to
645.Dq yes
646this will enable PAM authentication using
647.Cm ChallengeResponseAuthentication
648and PAM account and session module processing for all authentication types.
649.Pp
650Because PAM challenge-response authentication usually serves an equivalent
651role to password authentication, you should disable either
652.Cm PasswordAuthentication
653or
654.Cm ChallengeResponseAuthentication.
655.Pp
656If
657.Cm UsePAM
658is enabled, you will not be able to run
659.Xr sshd 8
660as a non-root user.
661The default is
Darren Tucker6c0c0702003-10-09 14:13:53 +1000662.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000663.It Cm UsePrivilegeSeparation
664Specifies whether
665.Nm sshd
666separates privileges by creating an unprivileged child process
Damien Miller495dca32003-04-01 21:42:14 +1000667to deal with incoming network traffic.
668After successful authentication, another process will be created that has
669the privilege of the authenticated user.
670The goal of privilege separation is to prevent privilege
Ben Lindstrom9f049032002-06-21 00:59:05 +0000671escalation by containing any corruption within the unprivileged processes.
672The default is
673.Dq yes .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000674.It Cm X11DisplayOffset
675Specifies the first display number available for
676.Nm sshd Ns 's
677X11 forwarding.
678This prevents
679.Nm sshd
680from interfering with real X11 servers.
681The default is 10.
682.It Cm X11Forwarding
683Specifies whether X11 forwarding is permitted.
Damien Miller101c4a72002-09-19 11:51:21 +1000684The argument must be
685.Dq yes
686or
687.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000688The default is
689.Dq no .
Damien Miller101c4a72002-09-19 11:51:21 +1000690.Pp
691When X11 forwarding is enabled, there may be additional exposure to
692the server and to client displays if the
693.Nm sshd
694proxy display is configured to listen on the wildcard address (see
695.Cm X11UseLocalhost
696below), however this is not the default.
697Additionally, the authentication spoofing and authentication data
698verification and substitution occur on the client side.
699The security risk of using X11 forwarding is that the client's X11
700display server may be exposed to attack when the ssh client requests
701forwarding (see the warnings for
702.Cm ForwardX11
703in
Damien Millerf1ce5052003-06-11 22:04:39 +1000704.Xr ssh_config 5 ) .
Damien Miller101c4a72002-09-19 11:51:21 +1000705A system administrator may have a stance in which they want to
706protect clients that may expose themselves to attack by unwittingly
707requesting X11 forwarding, which can warrant a
708.Dq no
709setting.
710.Pp
711Note that disabling X11 forwarding does not prevent users from
712forwarding X11 traffic, as users can always install their own forwarders.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000713X11 forwarding is automatically disabled if
714.Cm UseLogin
715is enabled.
716.It Cm X11UseLocalhost
717Specifies whether
718.Nm sshd
719should bind the X11 forwarding server to the loopback address or to
Damien Miller495dca32003-04-01 21:42:14 +1000720the wildcard address.
721By default,
Ben Lindstrom9f049032002-06-21 00:59:05 +0000722.Nm sshd
723binds the forwarding server to the loopback address and sets the
724hostname part of the
725.Ev DISPLAY
726environment variable to
727.Dq localhost .
Ben Lindstrom15b61202002-08-20 18:44:24 +0000728This prevents remote hosts from connecting to the proxy display.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000729However, some older X11 clients may not function with this
730configuration.
731.Cm X11UseLocalhost
732may be set to
733.Dq no
734to specify that the forwarding server should be bound to the wildcard
735address.
736The argument must be
737.Dq yes
738or
739.Dq no .
740The default is
741.Dq yes .
742.It Cm XAuthLocation
Damien Miller05913ba2002-09-04 16:51:03 +1000743Specifies the full pathname of the
Ben Lindstrom9f049032002-06-21 00:59:05 +0000744.Xr xauth 1
745program.
746The default is
747.Pa /usr/X11R6/bin/xauth .
748.El
749.Ss Time Formats
Ben Lindstrom9f049032002-06-21 00:59:05 +0000750.Nm sshd
751command-line arguments and configuration file options that specify time
752may be expressed using a sequence of the form:
753.Sm off
Ben Lindstrom1f8cf4f2002-08-20 18:43:27 +0000754.Ar time Op Ar qualifier ,
Ben Lindstrom9f049032002-06-21 00:59:05 +0000755.Sm on
756where
757.Ar time
758is a positive integer value and
759.Ar qualifier
760is one of the following:
761.Pp
762.Bl -tag -width Ds -compact -offset indent
763.It Cm <none>
764seconds
765.It Cm s | Cm S
766seconds
767.It Cm m | Cm M
768minutes
769.It Cm h | Cm H
770hours
771.It Cm d | Cm D
772days
773.It Cm w | Cm W
774weeks
775.El
776.Pp
777Each member of the sequence is added together to calculate
778the total time value.
779.Pp
780Time format examples:
781.Pp
782.Bl -tag -width Ds -compact -offset indent
783.It 600
784600 seconds (10 minutes)
785.It 10m
78610 minutes
787.It 1h30m
7881 hour 30 minutes (90 minutes)
789.El
790.Sh FILES
791.Bl -tag -width Ds
792.It Pa /etc/ssh/sshd_config
793Contains configuration data for
794.Nm sshd .
795This file should be writable by root only, but it is recommended
796(though not necessary) that it be world-readable.
797.El
Damien Millerf1ce5052003-06-11 22:04:39 +1000798.Sh SEE ALSO
799.Xr sshd 8
Ben Lindstrom9f049032002-06-21 00:59:05 +0000800.Sh AUTHORS
801OpenSSH is a derivative of the original and free
802ssh 1.2.12 release by Tatu Ylonen.
803Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
804Theo de Raadt and Dug Song
805removed many bugs, re-added newer features and
806created OpenSSH.
807Markus Friedl contributed the support for SSH
808protocol versions 1.5 and 2.0.
809Niels Provos and Markus Friedl contributed support
810for privilege separation.