Merge from vendor branch LIBARCHIVE:
[dragonfly.git] / crypto / openssh-5 / sshd_config.5
1 .\"  -*- 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 .\"
37 .\" $OpenBSD: sshd_config.5,v 1.84 2008/03/25 11:58:02 djm Exp $
38 .Dd $Mdocdate: March 27 2008 $
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 .Nm /etc/ssh/sshd_config
46 .Sh DESCRIPTION
47 .Xr sshd 8
48 reads configuration data from
49 .Pa /etc/ssh/sshd_config
50 (or the file specified with
51 .Fl f
52 on the command line).
53 The file contains keyword-argument pairs, one per line.
54 Lines starting with
55 .Ql #
56 and empty lines are interpreted as comments.
57 Arguments may optionally be enclosed in double quotes
58 .Pq \&"
59 in order to represent arguments containing spaces.
60 .Pp
61 The possible
62 keywords and their meanings are as follows (note that
63 keywords are case-insensitive and arguments are case-sensitive):
64 .Bl -tag -width Ds
65 .It Cm AcceptEnv
66 Specifies what environment variables sent by the client will be copied into
67 the session's
68 .Xr environ 7 .
69 See
70 .Cm SendEnv
71 in
72 .Xr ssh_config 5
73 for how to configure the client.
74 Note that environment passing is only supported for protocol 2.
75 Variables are specified by name, which may contain the wildcard characters
76 .Ql *
77 and
78 .Ql \&? .
79 Multiple environment variables may be separated by whitespace or spread
80 across multiple
81 .Cm AcceptEnv
82 directives.
83 Be warned that some environment variables could be used to bypass restricted
84 user environments.
85 For this reason, care should be taken in the use of this directive.
86 The default is not to accept any environment variables.
87 .It Cm AddressFamily
88 Specifies which address family should be used by
89 .Xr sshd 8 .
90 Valid arguments are
91 .Dq any ,
92 .Dq inet
93 (use IPv4 only), or
94 .Dq inet6
95 (use IPv6 only).
96 The default is
97 .Dq any .
98 .It Cm AllowGroups
99 This keyword can be followed by a list of group name patterns, separated
100 by spaces.
101 If specified, login is allowed only for users whose primary
102 group or supplementary group list matches one of the patterns.
103 Only group names are valid; a numerical group ID is not recognized.
104 By default, login is allowed for all groups.
105 The allow/deny directives are processed in the following order:
106 .Cm DenyUsers ,
107 .Cm AllowUsers ,
108 .Cm DenyGroups ,
109 and finally
110 .Cm AllowGroups .
111 .Pp
112 See
113 .Sx PATTERNS
114 in
115 .Xr ssh_config 5
116 for more information on patterns.
117 .It Cm AllowTcpForwarding
118 Specifies whether TCP forwarding is permitted.
119 The default is
120 .Dq yes .
121 Note that disabling TCP forwarding does not improve security unless
122 users are also denied shell access, as they can always install their
123 own forwarders.
124 .It Cm AllowUsers
125 This keyword can be followed by a list of user name patterns, separated
126 by spaces.
127 If specified, login is allowed only for user names that
128 match one of the patterns.
129 Only user names are valid; a numerical user ID is not recognized.
130 By default, login is allowed for all users.
131 If the pattern takes the form USER@HOST then USER and HOST
132 are separately checked, restricting logins to particular
133 users from particular hosts.
134 The allow/deny directives are processed in the following order:
135 .Cm DenyUsers ,
136 .Cm AllowUsers ,
137 .Cm DenyGroups ,
138 and finally
139 .Cm AllowGroups .
140 .Pp
141 See
142 .Sx PATTERNS
143 in
144 .Xr ssh_config 5
145 for more information on patterns.
146 .It Cm AuthorizedKeysFile
147 Specifies the file that contains the public keys that can be used
148 for user authentication.
149 .Cm AuthorizedKeysFile
150 may contain tokens of the form %T which are substituted during connection
151 setup.
152 The following tokens are defined: %% is replaced by a literal '%',
153 %h is replaced by the home directory of the user being authenticated, and
154 %u is replaced by the username of that user.
155 After expansion,
156 .Cm AuthorizedKeysFile
157 is taken to be an absolute path or one relative to the user's home
158 directory.
159 The default is
160 .Dq .ssh/authorized_keys .
161 .It Cm Banner
162 The contents of the specified file are sent to the remote user before
163 authentication is allowed.
164 If the argument is
165 .Dq none
166 then no banner is displayed.
167 This option is only available for protocol version 2.
168 By default, no banner is displayed.
169 .It Cm ChallengeResponseAuthentication
170 Specifies whether challenge-response authentication is allowed.
171 Specifically, in
172 .Dx ,
173 this controls the use of PAM (see
174 .Xr pam 3 )
175 for authentication.
176 Note that this affects the effectiveness of the
177 .Cm PasswordAuthentication
178 and
179 .Cm PermitRootLogin
180 variables.
181 The default is
182 .Dq yes .
183 .It Cm ChrootDirectory
184 Specifies a path to
185 .Xr chroot 2
186 to after authentication.
187 This path, and all its components, must be root-owned directories that are
188 not writable by any other user or group.
189 .Pp
190 The path may contain the following tokens that are expanded at runtime once
191 the connecting user has been authenticated: %% is replaced by a literal '%',
192 %h is replaced by the home directory of the user being authenticated, and
193 %u is replaced by the username of that user.
194 .Pp
195 The
196 .Cm ChrootDirectory
197 must contain the necessary files and directories to support the
198 users' session.
199 For an interactive session this requires at least a shell, typically
200 .Xr sh 1 ,
201 and basic
202 .Pa /dev
203 nodes such as
204 .Xr null 4 ,
205 .Xr zero 4 ,
206 .Xr stdin 4 ,
207 .Xr stdout 4 ,
208 .Xr stderr 4 ,
209 .Xr arandom 4
210 and
211 .Xr tty 4
212 devices.
213 For file transfer sessions using
214 .Dq sftp ,
215 no additional configuration of the environment is necessary if the
216 in-process sftp server is used (see
217 .Cm Subsystem
218 for details).
219 .Pp
220 The default is not to
221 .Xr chroot 2 .
222 .It Cm Ciphers
223 Specifies the ciphers allowed for protocol version 2.
224 Multiple ciphers must be comma-separated.
225 The supported ciphers are
226 .Dq 3des-cbc ,
227 .Dq aes128-cbc ,
228 .Dq aes192-cbc ,
229 .Dq aes256-cbc ,
230 .Dq aes128-ctr ,
231 .Dq aes192-ctr ,
232 .Dq aes256-ctr ,
233 .Dq arcfour128 ,
234 .Dq arcfour256 ,
235 .Dq arcfour ,
236 .Dq blowfish-cbc ,
237 and
238 .Dq cast128-cbc .
239 The default is:
240 .Bd -literal -offset 3n
241 aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,
242 arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr,
243 aes192-ctr,aes256-ctr
244 .Ed
245 .It Cm ClientAliveCountMax
246 Sets the number of client alive messages (see below) which may be
247 sent without
248 .Xr sshd 8
249 receiving any messages back from the client.
250 If this threshold is reached while client alive messages are being sent,
251 sshd will disconnect the client, terminating the session.
252 It is important to note that the use of client alive messages is very
253 different from
254 .Cm TCPKeepAlive
255 (below).
256 The client alive messages are sent through the encrypted channel
257 and therefore will not be spoofable.
258 The TCP keepalive option enabled by
259 .Cm TCPKeepAlive
260 is spoofable.
261 The client alive mechanism is valuable when the client or
262 server depend on knowing when a connection has become inactive.
263 .Pp
264 The default value is 3.
265 If
266 .Cm ClientAliveInterval
267 (see below) is set to 15, and
268 .Cm ClientAliveCountMax
269 is left at the default, unresponsive SSH clients
270 will be disconnected after approximately 45 seconds.
271 This option applies to protocol version 2 only.
272 .It Cm ClientAliveInterval
273 Sets a timeout interval in seconds after which if no data has been received
274 from the client,
275 .Xr sshd 8
276 will send a message through the encrypted
277 channel to request a response from the client.
278 The default
279 is 0, indicating that these messages will not be sent to the client.
280 This option applies to protocol version 2 only.
281 .It Cm Compression
282 Specifies whether compression is allowed, or delayed until
283 the user has authenticated successfully.
284 The argument must be
285 .Dq yes ,
286 .Dq delayed ,
287 or
288 .Dq no .
289 The default is
290 .Dq delayed .
291 .It Cm DenyGroups
292 This keyword can be followed by a list of group name patterns, separated
293 by spaces.
294 Login is disallowed for users whose primary group or supplementary
295 group list matches one of the patterns.
296 Only group names are valid; a numerical group ID is not recognized.
297 By default, login is allowed for all groups.
298 The allow/deny directives are processed in the following order:
299 .Cm DenyUsers ,
300 .Cm AllowUsers ,
301 .Cm DenyGroups ,
302 and finally
303 .Cm AllowGroups .
304 .Pp
305 See
306 .Sx PATTERNS
307 in
308 .Xr ssh_config 5
309 for more information on patterns.
310 .It Cm DenyUsers
311 This keyword can be followed by a list of user name patterns, separated
312 by spaces.
313 Login is disallowed for user names that match one of the patterns.
314 Only user names are valid; a numerical user ID is not recognized.
315 By default, login is allowed for all users.
316 If the pattern takes the form USER@HOST then USER and HOST
317 are separately checked, restricting logins to particular
318 users from particular hosts.
319 The allow/deny directives are processed in the following order:
320 .Cm DenyUsers ,
321 .Cm AllowUsers ,
322 .Cm DenyGroups ,
323 and finally
324 .Cm AllowGroups .
325 .Pp
326 See
327 .Sx PATTERNS
328 in
329 .Xr ssh_config 5
330 for more information on patterns.
331 .It Cm ForceCommand
332 Forces the execution of the command specified by
333 .Cm ForceCommand ,
334 ignoring any command supplied by the client and
335 .Pa ~/.ssh/rc
336 if present.
337 The command is invoked by using the user's login shell with the -c option.
338 This applies to shell, command, or subsystem execution.
339 It is most useful inside a
340 .Cm Match
341 block.
342 The command originally supplied by the client is available in the
343 .Ev SSH_ORIGINAL_COMMAND
344 environment variable.
345 Specifying a command of
346 .Dq internal-sftp
347 will force the use of an in-process sftp server that requires no support
348 files when used with
349 .Cm ChrootDirectory .
350 .It Cm GatewayPorts
351 Specifies whether remote hosts are allowed to connect to ports
352 forwarded for the client.
353 By default,
354 .Xr sshd 8
355 binds remote port forwardings to the loopback address.
356 This prevents other remote hosts from connecting to forwarded ports.
357 .Cm GatewayPorts
358 can be used to specify that sshd
359 should allow remote port forwardings to bind to non-loopback addresses, thus
360 allowing other hosts to connect.
361 The argument may be
362 .Dq no
363 to force remote port forwardings to be available to the local host only,
364 .Dq yes
365 to force remote port forwardings to bind to the wildcard address, or
366 .Dq clientspecified
367 to allow the client to select the address to which the forwarding is bound.
368 The default is
369 .Dq no .
370 .It Cm GSSAPIAuthentication
371 Specifies whether user authentication based on GSSAPI is allowed.
372 The default is
373 .Dq no .
374 Note that this option applies to protocol version 2 only.
375 .It Cm GSSAPICleanupCredentials
376 Specifies whether to automatically destroy the user's credentials cache
377 on logout.
378 The default is
379 .Dq yes .
380 Note that this option applies to protocol version 2 only.
381 .It Cm HostbasedAuthentication
382 Specifies whether rhosts or /etc/hosts.equiv authentication together
383 with successful public key client host authentication is allowed
384 (host-based authentication).
385 This option is similar to
386 .Cm RhostsRSAAuthentication
387 and applies to protocol version 2 only.
388 The default is
389 .Dq no .
390 .It Cm HostbasedUsesNameFromPacketOnly
391 Specifies whether or not the server will attempt to perform a reverse
392 name lookup when matching the name in the
393 .Pa ~/.shosts ,
394 .Pa ~/.rhosts ,
395 and
396 .Pa /etc/hosts.equiv
397 files during
398 .Cm HostbasedAuthentication .
399 A setting of
400 .Dq yes
401 means that
402 .Xr sshd 8
403 uses the name supplied by the client rather than
404 attempting to resolve the name from the TCP connection itself.
405 The default is
406 .Dq no .
407 .It Cm HostKey
408 Specifies a file containing a private host key
409 used by SSH.
410 The default is
411 .Pa /etc/ssh/ssh_host_key
412 for protocol version 1, and
413 .Pa /etc/ssh/ssh_host_dsa_key
414 for protocol version 2.
415 Note that
416 .Xr sshd 8
417 will refuse to use a file if it is group/world-accessible.
418 It is possible to have multiple host key files.
419 .Dq rsa1
420 keys are used for version 1 and
421 .Dq dsa
422 or
423 .Dq rsa
424 are used for version 2 of the SSH protocol.
425 .It Cm IgnoreRhosts
426 Specifies that
427 .Pa .rhosts
428 and
429 .Pa .shosts
430 files will not be used in
431 .Cm RhostsRSAAuthentication
432 or
433 .Cm HostbasedAuthentication .
434 .Pp
435 .Pa /etc/hosts.equiv
436 and
437 .Pa /etc/ssh/shosts.equiv 
438 are still used.
439 The default is
440 .Dq yes .
441 .It Cm IgnoreUserKnownHosts
442 Specifies whether
443 .Xr sshd 8
444 should ignore the user's
445 .Pa ~/.ssh/known_hosts
446 during
447 .Cm RhostsRSAAuthentication
448 or
449 .Cm HostbasedAuthentication .
450 The default is
451 .Dq no .
452 .It Cm KerberosAuthentication
453 Specifies whether the password provided by the user for
454 .Cm PasswordAuthentication
455 will be validated through the Kerberos KDC.
456 To use this option, the server needs a
457 Kerberos servtab which allows the verification of the KDC's identity.
458 The default is
459 .Dq no .
460 .It Cm KerberosGetAFSToken
461 If AFS is active and the user has a Kerberos 5 TGT, attempt to acquire
462 an AFS token before accessing the user's home directory.
463 The default is
464 .Dq no .
465 .It Cm KerberosOrLocalPasswd
466 If password authentication through Kerberos fails then
467 the password will be validated via any additional local mechanism
468 such as
469 .Pa /etc/passwd .
470 The default is
471 .Dq yes .
472 .It Cm KerberosTicketCleanup
473 Specifies whether to automatically destroy the user's ticket cache
474 file on logout.
475 The default is
476 .Dq yes .
477 .It Cm KeyRegenerationInterval
478 In protocol version 1, the ephemeral server key is automatically regenerated
479 after this many seconds (if it has been used).
480 The purpose of regeneration is to prevent
481 decrypting captured sessions by later breaking into the machine and
482 stealing the keys.
483 The key is never stored anywhere.
484 If the value is 0, the key is never regenerated.
485 The default is 3600 (seconds).
486 .It Cm ListenAddress
487 Specifies the local addresses
488 .Xr sshd 8
489 should listen on.
490 The following forms may be used:
491 .Pp
492 .Bl -item -offset indent -compact
493 .It
494 .Cm ListenAddress
495 .Sm off
496 .Ar host No | Ar IPv4_addr No | Ar IPv6_addr
497 .Sm on
498 .It
499 .Cm ListenAddress
500 .Sm off
501 .Ar host No | Ar IPv4_addr No : Ar port
502 .Sm on
503 .It
504 .Cm ListenAddress
505 .Sm off
506 .Oo
507 .Ar host No | Ar IPv6_addr Oc : Ar port
508 .Sm on
509 .El
510 .Pp
511 If
512 .Ar port
513 is not specified,
514 sshd will listen on the address and all prior
515 .Cm Port
516 options specified.
517 The default is to listen on all local addresses.
518 Multiple
519 .Cm ListenAddress
520 options are permitted.
521 Additionally, any
522 .Cm Port
523 options must precede this option for non-port qualified addresses.
524 .It Cm LoginGraceTime
525 The server disconnects after this time if the user has not
526 successfully logged in.
527 If the value is 0, there is no time limit.
528 The default is 120 seconds.
529 .It Cm LogLevel
530 Gives the verbosity level that is used when logging messages from
531 .Xr sshd 8 .
532 The possible values are:
533 QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
534 The default is INFO.
535 DEBUG and DEBUG1 are equivalent.
536 DEBUG2 and DEBUG3 each specify higher levels of debugging output.
537 Logging with a DEBUG level violates the privacy of users and is not recommended.
538 .It Cm MACs
539 Specifies the available MAC (message authentication code) algorithms.
540 The MAC algorithm is used in protocol version 2
541 for data integrity protection.
542 Multiple algorithms must be comma-separated.
543 The default is:
544 .Bd -literal -offset indent
545 hmac-md5,hmac-sha1,umac-64@openssh.com,
546 hmac-ripemd160,hmac-sha1-96,hmac-md5-96
547 .Ed
548 .It Cm Match
549 Introduces a conditional block.
550 If all of the criteria on the
551 .Cm Match
552 line are satisfied, the keywords on the following lines override those
553 set in the global section of the config file, until either another
554 .Cm Match
555 line or the end of the file.
556 The arguments to
557 .Cm Match
558 are one or more criteria-pattern pairs.
559 The available criteria are
560 .Cm User ,
561 .Cm Group ,
562 .Cm Host ,
563 and
564 .Cm Address .
565 Only a subset of keywords may be used on the lines following a
566 .Cm Match
567 keyword.
568 Available keywords are
569 .Cm AllowTcpForwarding ,
570 .Cm Banner ,
571 .Cm ForceCommand ,
572 .Cm GatewayPorts ,
573 .Cm GSSApiAuthentication ,
574 .Cm KbdInteractiveAuthentication ,
575 .Cm KerberosAuthentication ,
576 .Cm PasswordAuthentication ,
577 .Cm PermitOpen ,
578 .Cm PermitRootLogin ,
579 .Cm RhostsRSAAuthentication ,
580 .Cm RSAAuthentication ,
581 .Cm X11DisplayOffset ,
582 .Cm X11Forwarding ,
583 and
584 .Cm X11UseLocalHost .
585 .It Cm MaxAuthTries
586 Specifies the maximum number of authentication attempts permitted per
587 connection.
588 Once the number of failures reaches half this value,
589 additional failures are logged.
590 The default is 6.
591 .It Cm MaxStartups
592 Specifies the maximum number of concurrent unauthenticated connections to the
593 SSH daemon.
594 Additional connections will be dropped until authentication succeeds or the
595 .Cm LoginGraceTime
596 expires for a connection.
597 The default is 10.
598 .Pp
599 Alternatively, random early drop can be enabled by specifying
600 the three colon separated values
601 .Dq start:rate:full
602 (e.g. "10:30:60").
603 .Xr sshd 8
604 will refuse connection attempts with a probability of
605 .Dq rate/100
606 (30%)
607 if there are currently
608 .Dq start
609 (10)
610 unauthenticated connections.
611 The probability increases linearly and all connection attempts
612 are refused if the number of unauthenticated connections reaches
613 .Dq full
614 (60).
615 .It Cm PasswordAuthentication
616 Specifies whether password authentication is allowed.
617 The default is
618 .Dq yes .
619 Note that if
620 .Cm ChallengeResponseAuthentication
621 is
622 .Dq yes ,
623 .Cm UsePAM
624 is
625 .Dq yes ,
626 and the PAM authentication policy for
627 .Nm sshd
628 includes
629 .Xr pam_unix 8 ,
630 password authentication will be allowed through the challenge-response
631 mechanism regardless of the value of
632 .Cm PasswordAuthentication .
633 .It Cm PermitEmptyPasswords
634 When password authentication is allowed, it specifies whether the
635 server allows login to accounts with empty password strings.
636 The default is
637 .Dq no .
638 .It Cm PermitOpen
639 Specifies the destinations to which TCP port forwarding is permitted.
640 The forwarding specification must be one of the following forms:
641 .Pp
642 .Bl -item -offset indent -compact
643 .It
644 .Cm PermitOpen
645 .Sm off
646 .Ar host : port
647 .Sm on
648 .It
649 .Cm PermitOpen
650 .Sm off
651 .Ar IPv4_addr : port
652 .Sm on
653 .It
654 .Cm PermitOpen
655 .Sm off
656 .Ar \&[ IPv6_addr \&] : port
657 .Sm on
658 .El
659 .Pp
660 Multiple forwards may be specified by separating them with whitespace.
661 An argument of
662 .Dq any
663 can be used to remove all restrictions and permit any forwarding requests.
664 By default all port forwarding requests are permitted.
665 .It Cm PermitRootLogin
666 Specifies whether root can log in using
667 .Xr ssh 1 .
668 The argument must be
669 .Dq yes ,
670 .Dq without-password ,
671 .Dq forced-commands-only ,
672 or
673 .Dq no .
674 The default is
675 .Dq no .
676 Note that if
677 .Cm ChallengeResponseAuthentication
678 is
679 .Dq yes ,
680 the root user may be allowed in with its password even if
681 .Cm PermitRootLogin is set to
682 .Dq without-password .
683 .Pp
684 If this option is set to
685 .Dq without-password ,
686 password authentication is disabled for root.
687 .Pp
688 If this option is set to
689 .Dq forced-commands-only ,
690 root login with public key authentication will be allowed,
691 but only if the
692 .Ar command
693 option has been specified
694 (which may be useful for taking remote backups even if root login is
695 normally not allowed).
696 All other authentication methods are disabled for root.
697 .Pp
698 If this option is set to
699 .Dq no ,
700 root is not allowed to log in.
701 .It Cm PermitTunnel
702 Specifies whether
703 .Xr tun 4
704 device forwarding is allowed.
705 The argument must be
706 .Dq yes ,
707 .Dq point-to-point
708 (layer 3),
709 .Dq ethernet
710 (layer 2), or
711 .Dq no .
712 Specifying
713 .Dq yes
714 permits both
715 .Dq point-to-point
716 and
717 .Dq ethernet .
718 The default is
719 .Dq no .
720 .It Cm PermitUserEnvironment
721 Specifies whether
722 .Pa ~/.ssh/environment
723 and
724 .Cm environment=
725 options in
726 .Pa ~/.ssh/authorized_keys
727 are processed by
728 .Xr sshd 8 .
729 The default is
730 .Dq no .
731 Enabling environment processing may enable users to bypass access
732 restrictions in some configurations using mechanisms such as
733 .Ev LD_PRELOAD .
734 .It Cm PidFile
735 Specifies the file that contains the process ID of the
736 SSH daemon.
737 The default is
738 .Pa /var/run/sshd.pid .
739 .It Cm Port
740 Specifies the port number that
741 .Xr sshd 8
742 listens on.
743 The default is 22.
744 Multiple options of this type are permitted.
745 See also
746 .Cm ListenAddress .
747 .It Cm PrintLastLog
748 Specifies whether
749 .Xr sshd 8
750 should print the date and time of the last user login when a user logs
751 in interactively.
752 The default is
753 .Dq yes .
754 .It Cm PrintMotd
755 Specifies whether
756 .Xr sshd 8
757 should print
758 .Pa /etc/motd
759 when a user logs in interactively.
760 (On some systems it is also printed by the shell,
761 .Pa /etc/profile ,
762 or equivalent.)
763 The default is
764 .Dq yes .
765 .It Cm Protocol
766 Specifies the protocol versions
767 .Xr sshd 8
768 supports.
769 The possible values are
770 .Sq 1
771 and
772 .Sq 2 .
773 Multiple versions must be comma-separated.
774 The default is
775 .Dq 2 .
776 Note that the order of the protocol list does not indicate preference,
777 because the client selects among multiple protocol versions offered
778 by the server.
779 Specifying
780 .Dq 2,1
781 is identical to
782 .Dq 1,2 .
783 .It Cm PubkeyAuthentication
784 Specifies whether public key authentication is allowed.
785 The default is
786 .Dq yes .
787 Note that this option applies to protocol version 2 only.
788 .It Cm RhostsRSAAuthentication
789 Specifies whether rhosts or
790 .Pa /etc/hosts.equiv
791 authentication together
792 with successful RSA host authentication is allowed.
793 The default is
794 .Dq no .
795 This option applies to protocol version 1 only.
796 .It Cm RSAAuthentication
797 Specifies whether pure RSA authentication is allowed.
798 The default is
799 .Dq yes .
800 This option applies to protocol version 1 only.
801 .It Cm ServerKeyBits
802 Defines the number of bits in the ephemeral protocol version 1 server key.
803 The minimum value is 512, and the default is 768.
804 .It Cm StrictModes
805 Specifies whether
806 .Xr sshd 8
807 should check file modes and ownership of the
808 user's files and home directory before accepting login.
809 This is normally desirable because novices sometimes accidentally leave their
810 directory or files world-writable.
811 The default is
812 .Dq yes .
813 .It Cm Subsystem
814 Configures an external subsystem (e.g. file transfer daemon).
815 Arguments should be a subsystem name and a command (with optional arguments)
816 to execute upon subsystem request.
817 .Pp
818 The command
819 .Xr sftp-server 8
820 implements the
821 .Dq sftp
822 file transfer subsystem.
823 .Pp
824 Alternately the name
825 .Dq internal-sftp
826 implements an in-process
827 .Dq sftp
828 server.
829 This may simplify configurations using
830 .Cm ChrootDirectory
831 to force a different filesystem root on clients.
832 .Pp
833 By default no subsystems are defined.
834 Note that this option applies to protocol version 2 only.
835 .It Cm SyslogFacility
836 Gives the facility code that is used when logging messages from
837 .Xr sshd 8 .
838 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
839 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
840 The default is AUTH.
841 .It Cm TCPKeepAlive
842 Specifies whether the system should send TCP keepalive messages to the
843 other side.
844 If they are sent, death of the connection or crash of one
845 of the machines will be properly noticed.
846 However, this means that
847 connections will die if the route is down temporarily, and some people
848 find it annoying.
849 On the other hand, if TCP keepalives are not sent,
850 sessions may hang indefinitely on the server, leaving
851 .Dq ghost
852 users and consuming server resources.
853 .Pp
854 The default is
855 .Dq yes
856 (to send TCP keepalive messages), and the server will notice
857 if the network goes down or the client host crashes.
858 This avoids infinitely hanging sessions.
859 .Pp
860 To disable TCP keepalive messages, the value should be set to
861 .Dq no .
862 .It Cm UseDNS
863 Specifies whether
864 .Xr sshd 8
865 should look up the remote host name and check that
866 the resolved host name for the remote IP address maps back to the
867 very same IP address.
868 The default is
869 .Dq yes .
870 .It Cm UseLogin
871 Specifies whether
872 .Xr login 1
873 is used for interactive login sessions.
874 The default is
875 .Dq no .
876 Note that
877 .Xr login 1
878 is never used for remote command execution.
879 Note also, that if this is enabled,
880 .Cm X11Forwarding
881 will be disabled because
882 .Xr login 1
883 does not know how to handle
884 .Xr xauth 1
885 cookies.
886 If
887 .Cm UsePrivilegeSeparation
888 is specified, it will be disabled after authentication.
889 .It Cm UsePAM
890 Enables the Pluggable Authentication Module interface.
891 If set to
892 .Dq yes
893 this will enable PAM authentication using
894 .Cm ChallengeResponseAuthentication
895 and
896 .Cm PasswordAuthentication
897 in addition to PAM account and session module processing for all
898 authentication types.
899 .Pp
900 Because PAM challenge-response authentication usually serves an equivalent
901 role to password authentication, you should disable either
902 .Cm PasswordAuthentication
903 or
904 .Cm ChallengeResponseAuthentication.
905 .Pp
906 If
907 .Cm UsePAM
908 is enabled, you will not be able to run
909 .Xr sshd 8
910 as a non-root user.
911 The default is
912 .Dq no .
913 .It Cm UsePrivilegeSeparation
914 Specifies whether
915 .Xr sshd 8
916 separates privileges by creating an unprivileged child process
917 to deal with incoming network traffic.
918 After successful authentication, another process will be created that has
919 the privilege of the authenticated user.
920 The goal of privilege separation is to prevent privilege
921 escalation by containing any corruption within the unprivileged processes.
922 The default is
923 .Dq yes .
924 .It Cm VersionAddendum
925 Specifies a string to append to the regular version string to identify
926 OS- or site-specific modifications.
927 The default is
928 .Dq DragonFly-20080406 .
929 .It Cm X11DisplayOffset
930 Specifies the first display number available for
931 .Xr sshd 8 Ns 's
932 X11 forwarding.
933 This prevents sshd from interfering with real X11 servers.
934 The default is 10.
935 .It Cm X11Forwarding
936 Specifies whether X11 forwarding is permitted.
937 The argument must be
938 .Dq yes
939 or
940 .Dq no .
941 The default is
942 .Dq yes .
943 .Pp
944 When X11 forwarding is enabled, there may be additional exposure to
945 the server and to client displays if the
946 .Xr sshd 8
947 proxy display is configured to listen on the wildcard address (see
948 .Cm X11UseLocalhost
949 below), though this is not the default.
950 Additionally, the authentication spoofing and authentication data
951 verification and substitution occur on the client side.
952 The security risk of using X11 forwarding is that the client's X11
953 display server may be exposed to attack when the SSH client requests
954 forwarding (see the warnings for
955 .Cm ForwardX11
956 in
957 .Xr ssh_config 5 ) .
958 A system administrator may have a stance in which they want to
959 protect clients that may expose themselves to attack by unwittingly
960 requesting X11 forwarding, which can warrant a
961 .Dq no
962 setting.
963 .Pp
964 Note that disabling X11 forwarding does not prevent users from
965 forwarding X11 traffic, as users can always install their own forwarders.
966 X11 forwarding is automatically disabled if
967 .Cm UseLogin
968 is enabled.
969 .It Cm X11UseLocalhost
970 Specifies whether
971 .Xr sshd 8
972 should bind the X11 forwarding server to the loopback address or to
973 the wildcard address.
974 By default,
975 sshd binds the forwarding server to the loopback address and sets the
976 hostname part of the
977 .Ev DISPLAY
978 environment variable to
979 .Dq localhost .
980 This prevents remote hosts from connecting to the proxy display.
981 However, some older X11 clients may not function with this
982 configuration.
983 .Cm X11UseLocalhost
984 may be set to
985 .Dq no
986 to specify that the forwarding server should be bound to the wildcard
987 address.
988 The argument must be
989 .Dq yes
990 or
991 .Dq no .
992 The default is
993 .Dq yes .
994 .It Cm XAuthLocation
995 Specifies the full pathname of the
996 .Xr xauth 1
997 program.
998 The default is
999 .Pa /usr/X11R6/bin/xauth .
1000 .El
1001 .Sh TIME FORMATS
1002 .Xr sshd 8
1003 command-line arguments and configuration file options that specify time
1004 may be expressed using a sequence of the form:
1005 .Sm off
1006 .Ar time Op Ar qualifier ,
1007 .Sm on
1008 where
1009 .Ar time
1010 is a positive integer value and
1011 .Ar qualifier
1012 is one of the following:
1013 .Pp
1014 .Bl -tag -width Ds -compact -offset indent
1015 .It Aq Cm none
1016 seconds
1017 .It Cm s | Cm S
1018 seconds
1019 .It Cm m | Cm M
1020 minutes
1021 .It Cm h | Cm H
1022 hours
1023 .It Cm d | Cm D
1024 days
1025 .It Cm w | Cm W
1026 weeks
1027 .El
1028 .Pp
1029 Each member of the sequence is added together to calculate
1030 the total time value.
1031 .Pp
1032 Time format examples:
1033 .Pp
1034 .Bl -tag -width Ds -compact -offset indent
1035 .It 600
1036 600 seconds (10 minutes)
1037 .It 10m
1038 10 minutes
1039 .It 1h30m
1040 1 hour 30 minutes (90 minutes)
1041 .El
1042 .Sh FILES
1043 .Bl -tag -width Ds
1044 .It Pa /etc/ssh/sshd_config
1045 Contains configuration data for
1046 .Xr sshd 8 .
1047 This file should be writable by root only, but it is recommended
1048 (though not necessary) that it be world-readable.
1049 .El
1050 .Sh SEE ALSO
1051 .Xr sshd 8
1052 .Sh AUTHORS
1053 OpenSSH is a derivative of the original and free
1054 ssh 1.2.12 release by Tatu Ylonen.
1055 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1056 Theo de Raadt and Dug Song
1057 removed many bugs, re-added newer features and
1058 created OpenSSH.
1059 Markus Friedl contributed the support for SSH
1060 protocol versions 1.5 and 2.0.
1061 Niels Provos and Markus Friedl contributed support
1062 for privilege separation.