2 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
3 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 .\" All rights reserved
6 .\" As far as I am concerned, the code I have written for this software
7 .\" can be used freely for any purpose. Any derived versions of this
8 .\" software must be clearly marked as such, and if the derived work is
9 .\" incompatible with the protocol description in the RFC file, it must be
10 .\" called by a name other than "ssh" or "Secure Shell".
12 .\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
13 .\" Copyright (c) 1999 Aaron Campbell. All rights reserved.
14 .\" Copyright (c) 1999 Theo de Raadt. All rights reserved.
16 .\" Redistribution and use in source and binary forms, with or without
17 .\" modification, are permitted provided that the following conditions
19 .\" 1. Redistributions of source code must retain the above copyright
20 .\" notice, this list of conditions and the following disclaimer.
21 .\" 2. Redistributions in binary form must reproduce the above copyright
22 .\" notice, this list of conditions and the following disclaimer in the
23 .\" documentation and/or other materials provided with the distribution.
25 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 .\" $OpenBSD: sshd_config.5,v 1.131 2010/12/08 04:02:47 djm Exp $
37 .Dd $Mdocdate: December 8 2010 $
42 .Nd OpenSSH SSH daemon configuration file
44 .Nm /etc/ssh/sshd_config
47 reads configuration data from
48 .Pa /etc/ssh/sshd_config
49 (or the file specified with
52 The file contains keyword-argument pairs, one per line.
55 and empty lines are interpreted as comments.
56 Arguments may optionally be enclosed in double quotes
58 in order to represent arguments containing spaces.
61 keywords and their meanings are as follows (note that
62 keywords are case-insensitive and arguments are case-sensitive):
65 Specifies what environment variables sent by the client will be copied into
72 for how to configure the client.
73 Note that environment passing is only supported for protocol 2.
74 Variables are specified by name, which may contain the wildcard characters
78 Multiple environment variables may be separated by whitespace or spread
82 Be warned that some environment variables could be used to bypass restricted
84 For this reason, care should be taken in the use of this directive.
85 The default is not to accept any environment variables.
87 Specifies which address family should be used by
97 .It Cm AllowAgentForwarding
100 forwarding is permitted.
103 Note that disabling agent forwarding does not improve security
104 unless users are also denied shell access, as they can always install
105 their own forwarders.
107 This keyword can be followed by a list of group name patterns, separated
109 If specified, login is allowed only for users whose primary
110 group or supplementary group list matches one of the patterns.
111 Only group names are valid; a numerical group ID is not recognized.
112 By default, login is allowed for all groups.
113 The allow/deny directives are processed in the following order:
124 for more information on patterns.
125 .It Cm AllowTcpForwarding
126 Specifies whether TCP forwarding is permitted.
129 Note that disabling TCP forwarding does not improve security unless
130 users are also denied shell access, as they can always install their
133 This keyword can be followed by a list of user name patterns, separated
135 If specified, login is allowed only for user names that
136 match one of the patterns.
137 Only user names are valid; a numerical user ID is not recognized.
138 By default, login is allowed for all users.
139 If the pattern takes the form USER@HOST then USER and HOST
140 are separately checked, restricting logins to particular
141 users from particular hosts.
142 The allow/deny directives are processed in the following order:
153 for more information on patterns.
154 .It Cm AuthorizedKeysFile
155 Specifies the file that contains the public keys that can be used
156 for user authentication.
157 The format is described in the
158 .Sx AUTHORIZED_KEYS FILE FORMAT
161 .Cm AuthorizedKeysFile
162 may contain tokens of the form %T which are substituted during connection
164 The following tokens are defined: %% is replaced by a literal '%',
165 %h is replaced by the home directory of the user being authenticated, and
166 %u is replaced by the username of that user.
168 .Cm AuthorizedKeysFile
169 is taken to be an absolute path or one relative to the user's home
172 .Dq .ssh/authorized_keys .
173 .It Cm AuthorizedPrincipalsFile
174 Specifies a file that lists principal names that are accepted for
175 certificate authentication.
176 When using certificates signed by a key listed in
177 .Cm TrustedUserCAKeys ,
178 this file lists names, one of which must appear in the certificate for it
179 to be accepted for authentication.
180 Names are listed one per line preceded by key options (as described
182 .Sx AUTHORIZED_KEYS FILE FORMAT
185 Empty lines and comments starting with
189 .Cm AuthorizedPrincipalsFile
190 may contain tokens of the form %T which are substituted during connection
192 The following tokens are defined: %% is replaced by a literal '%',
193 %h is replaced by the home directory of the user being authenticated, and
194 %u is replaced by the username of that user.
196 .Cm AuthorizedPrincipalsFile
197 is taken to be an absolute path or one relative to the user's home
200 The default is not to use a principals file \(en in this case, the username
201 of the user must appear in a certificate's principals list for it to be
204 .Cm AuthorizedPrincipalsFile
205 is only used when authentication proceeds using a CA listed in
206 .Cm TrustedUserCAKeys
207 and is not consulted for certification authorities trusted via
208 .Pa ~/.ssh/authorized_keys ,
211 key option offers a similar facility (see
215 The contents of the specified file are sent to the remote user before
216 authentication is allowed.
219 then no banner is displayed.
220 This option is only available for protocol version 2.
221 By default, no banner is displayed.
222 .It Cm ChallengeResponseAuthentication
223 Specifies whether challenge-response authentication is allowed (e.g. via
224 PAM or though authentication styles supported in
228 .It Cm ChrootDirectory
229 Specifies the pathname of a directory to
231 to after authentication.
232 All components of the pathname must be root-owned directories that are
233 not writable by any other user or group.
236 changes the working directory to the user's home directory.
238 The pathname may contain the following tokens that are expanded at runtime once
239 the connecting user has been authenticated: %% is replaced by a literal '%',
240 %h is replaced by the home directory of the user being authenticated, and
241 %u is replaced by the username of that user.
245 must contain the necessary files and directories to support the
247 For an interactive session this requires at least a shell, typically
261 For file transfer sessions using
263 no additional configuration of the environment is necessary if the
264 in-process sftp server is used,
265 though sessions which use logging do require
267 inside the chroot directory (see
271 The default is not to
274 Specifies the ciphers allowed for protocol version 2.
275 Multiple ciphers must be comma-separated.
276 The supported ciphers are
291 .Bd -literal -offset 3n
292 aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
293 aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
296 .It Cm ClientAliveCountMax
297 Sets the number of client alive messages (see below) which may be
300 receiving any messages back from the client.
301 If this threshold is reached while client alive messages are being sent,
302 sshd will disconnect the client, terminating the session.
303 It is important to note that the use of client alive messages is very
307 The client alive messages are sent through the encrypted channel
308 and therefore will not be spoofable.
309 The TCP keepalive option enabled by
312 The client alive mechanism is valuable when the client or
313 server depend on knowing when a connection has become inactive.
315 The default value is 3.
317 .Cm ClientAliveInterval
318 (see below) is set to 15, and
319 .Cm ClientAliveCountMax
320 is left at the default, unresponsive SSH clients
321 will be disconnected after approximately 45 seconds.
322 This option applies to protocol version 2 only.
323 .It Cm ClientAliveInterval
324 Sets a timeout interval in seconds after which if no data has been received
327 will send a message through the encrypted
328 channel to request a response from the client.
330 is 0, indicating that these messages will not be sent to the client.
331 This option applies to protocol version 2 only.
333 Specifies whether compression is allowed, or delayed until
334 the user has authenticated successfully.
343 This keyword can be followed by a list of group name patterns, separated
345 Login is disallowed for users whose primary group or supplementary
346 group list matches one of the patterns.
347 Only group names are valid; a numerical group ID is not recognized.
348 By default, login is allowed for all groups.
349 The allow/deny directives are processed in the following order:
360 for more information on patterns.
362 This keyword can be followed by a list of user name patterns, separated
364 Login is disallowed for user names that match one of the patterns.
365 Only user names are valid; a numerical user ID is not recognized.
366 By default, login is allowed for all users.
367 If the pattern takes the form USER@HOST then USER and HOST
368 are separately checked, restricting logins to particular
369 users from particular hosts.
370 The allow/deny directives are processed in the following order:
381 for more information on patterns.
383 Forces the execution of the command specified by
385 ignoring any command supplied by the client and
388 The command is invoked by using the user's login shell with the -c option.
389 This applies to shell, command, or subsystem execution.
390 It is most useful inside a
393 The command originally supplied by the client is available in the
394 .Ev SSH_ORIGINAL_COMMAND
395 environment variable.
396 Specifying a command of
398 will force the use of an in-process sftp server that requires no support
400 .Cm ChrootDirectory .
402 Specifies whether remote hosts are allowed to connect to ports
403 forwarded for the client.
406 binds remote port forwardings to the loopback address.
407 This prevents other remote hosts from connecting to forwarded ports.
409 can be used to specify that sshd
410 should allow remote port forwardings to bind to non-loopback addresses, thus
411 allowing other hosts to connect.
414 to force remote port forwardings to be available to the local host only,
416 to force remote port forwardings to bind to the wildcard address, or
418 to allow the client to select the address to which the forwarding is bound.
421 .It Cm GSSAPIAuthentication
422 Specifies whether user authentication based on GSSAPI is allowed.
425 Note that this option applies to protocol version 2 only.
426 .It Cm GSSAPICleanupCredentials
427 Specifies whether to automatically destroy the user's credentials cache
431 Note that this option applies to protocol version 2 only.
432 .It Cm HostbasedAuthentication
433 Specifies whether rhosts or /etc/hosts.equiv authentication together
434 with successful public key client host authentication is allowed
435 (host-based authentication).
436 This option is similar to
437 .Cm RhostsRSAAuthentication
438 and applies to protocol version 2 only.
441 .It Cm HostbasedUsesNameFromPacketOnly
442 Specifies whether or not the server will attempt to perform a reverse
443 name lookup when matching the name in the
449 .Cm HostbasedAuthentication .
454 uses the name supplied by the client rather than
455 attempting to resolve the name from the TCP connection itself.
458 .It Cm HostCertificate
459 Specifies a file containing a public host certificate.
460 The certificate's public key must match a private host key already specified
463 The default behaviour of
465 is not to load any certificates.
467 Specifies a file containing a private host key
470 .Pa /etc/ssh/ssh_host_key
471 for protocol version 1, and
472 .Pa /etc/ssh/ssh_host_dsa_key ,
473 .Pa /etc/ssh/ssh_host_ecdsa_key
475 .Pa /etc/ssh/ssh_host_rsa_key
476 for protocol version 2.
479 will refuse to use a file if it is group/world-accessible.
480 It is possible to have multiple host key files.
482 keys are used for version 1 and
487 are used for version 2 of the SSH protocol.
493 files will not be used in
494 .Cm RhostsRSAAuthentication
496 .Cm HostbasedAuthentication .
500 .Pa /etc/shosts.equiv
504 .It Cm IgnoreUserKnownHosts
507 should ignore the user's
508 .Pa ~/.ssh/known_hosts
510 .Cm RhostsRSAAuthentication
512 .Cm HostbasedAuthentication .
516 Specifies the IPv4 type-of-service or DSCP class for the connection.
543 This option may take one or two arguments, separated by whitespace.
544 If one argument is specified, it is used as the packet class unconditionally.
545 If two values are specified, the first is automatically selected for
546 interactive sessions and the second for non-interactive sessions.
549 for interactive sessions and
551 for non-interactive sessions.
552 .It Cm KerberosAuthentication
553 Specifies whether the password provided by the user for
554 .Cm PasswordAuthentication
555 will be validated through the Kerberos KDC.
556 To use this option, the server needs a
557 Kerberos servtab which allows the verification of the KDC's identity.
560 .It Cm KerberosGetAFSToken
561 If AFS is active and the user has a Kerberos 5 TGT, attempt to acquire
562 an AFS token before accessing the user's home directory.
565 .It Cm KerberosOrLocalPasswd
566 If password authentication through Kerberos fails then
567 the password will be validated via any additional local mechanism
572 .It Cm KerberosTicketCleanup
573 Specifies whether to automatically destroy the user's ticket cache
578 Specifies the available KEX (Key Exchange) algorithms.
579 Multiple algorithms must be comma-separated.
581 .Dq ecdh-sha2-nistp256 ,
582 .Dq ecdh-sha2-nistp384 ,
583 .Dq ecdh-sha2-nistp521 ,
584 .Dq diffie-hellman-group-exchange-sha256 ,
585 .Dq diffie-hellman-group-exchange-sha1 ,
586 .Dq diffie-hellman-group14-sha1 ,
587 .Dq diffie-hellman-group1-sha1 .
588 .It Cm KeyRegenerationInterval
589 In protocol version 1, the ephemeral server key is automatically regenerated
590 after this many seconds (if it has been used).
591 The purpose of regeneration is to prevent
592 decrypting captured sessions by later breaking into the machine and
594 The key is never stored anywhere.
595 If the value is 0, the key is never regenerated.
596 The default is 3600 (seconds).
598 Specifies the local addresses
601 The following forms may be used:
603 .Bl -item -offset indent -compact
607 .Ar host No | Ar IPv4_addr No | Ar IPv6_addr
612 .Ar host No | Ar IPv4_addr No : Ar port
618 .Ar host No | Ar IPv6_addr Oc : Ar port
625 sshd will listen on the address and all prior
628 The default is to listen on all local addresses.
631 options are permitted.
634 options must precede this option for non-port qualified addresses.
635 .It Cm LoginGraceTime
636 The server disconnects after this time if the user has not
637 successfully logged in.
638 If the value is 0, there is no time limit.
639 The default is 120 seconds.
641 Gives the verbosity level that is used when logging messages from
643 The possible values are:
644 QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
646 DEBUG and DEBUG1 are equivalent.
647 DEBUG2 and DEBUG3 each specify higher levels of debugging output.
648 Logging with a DEBUG level violates the privacy of users and is not recommended.
650 Specifies the available MAC (message authentication code) algorithms.
651 The MAC algorithm is used in protocol version 2
652 for data integrity protection.
653 Multiple algorithms must be comma-separated.
655 .Bd -literal -offset indent
656 hmac-md5,hmac-sha1,umac-64@openssh.com,
657 hmac-ripemd160,hmac-sha1-96,hmac-md5-96
660 Introduces a conditional block.
661 If all of the criteria on the
663 line are satisfied, the keywords on the following lines override those
664 set in the global section of the config file, until either another
666 line or the end of the file.
670 are one or more criteria-pattern pairs.
671 The available criteria are
677 The match patterns may consist of single entries or comma-separated
678 lists and may use the wildcard and negation operators described in the
685 criteria may additionally contain addresses to match in CIDR
686 address/masklen format, e.g.\&
690 Note that the mask length provided must be consistent with the address -
691 it is an error to specify a mask length that is too long for the address
692 or one with bits set in this host portion of the address.
699 Only a subset of keywords may be used on the lines following a
702 Available keywords are
703 .Cm AllowAgentForwarding ,
704 .Cm AllowTcpForwarding ,
705 .Cm AuthorizedKeysFile ,
706 .Cm AuthorizedPrincipalsFile ,
708 .Cm ChrootDirectory ,
711 .Cm GSSAPIAuthentication ,
712 .Cm HostbasedAuthentication ,
713 .Cm HostbasedUsesNameFromPacketOnly ,
714 .Cm KbdInteractiveAuthentication ,
715 .Cm KerberosAuthentication ,
718 .Cm PasswordAuthentication ,
719 .Cm PermitEmptyPasswords ,
721 .Cm PermitRootLogin ,
723 .Cm PubkeyAuthentication ,
724 .Cm RhostsRSAAuthentication ,
725 .Cm RSAAuthentication ,
726 .Cm X11DisplayOffset ,
729 .Cm X11UseLocalHost .
731 Specifies the maximum number of authentication attempts permitted per
733 Once the number of failures reaches half this value,
734 additional failures are logged.
737 Specifies the maximum number of open sessions permitted per network connection.
740 Specifies the maximum number of concurrent unauthenticated connections to the
742 Additional connections will be dropped until authentication succeeds or the
744 expires for a connection.
747 Alternatively, random early drop can be enabled by specifying
748 the three colon separated values
752 will refuse connection attempts with a probability of
755 if there are currently
758 unauthenticated connections.
759 The probability increases linearly and all connection attempts
760 are refused if the number of unauthenticated connections reaches
763 .It Cm PasswordAuthentication
764 Specifies whether password authentication is allowed.
767 .It Cm PermitEmptyPasswords
768 When password authentication is allowed, it specifies whether the
769 server allows login to accounts with empty password strings.
773 Specifies the destinations to which TCP port forwarding is permitted.
774 The forwarding specification must be one of the following forms:
776 .Bl -item -offset indent -compact
790 .Ar \&[ IPv6_addr \&] : port
794 Multiple forwards may be specified by separating them with whitespace.
797 can be used to remove all restrictions and permit any forwarding requests.
798 By default all port forwarding requests are permitted.
799 .It Cm PermitRootLogin
800 Specifies whether root can log in using
804 .Dq without-password ,
805 .Dq forced-commands-only ,
811 If this option is set to
812 .Dq without-password ,
813 password authentication is disabled for root.
815 If this option is set to
816 .Dq forced-commands-only ,
817 root login with public key authentication will be allowed,
820 option has been specified
821 (which may be useful for taking remote backups even if root login is
822 normally not allowed).
823 All other authentication methods are disabled for root.
825 If this option is set to
827 root is not allowed to log in.
831 device forwarding is allowed.
847 .It Cm PermitUserEnvironment
849 .Pa ~/.ssh/environment
853 .Pa ~/.ssh/authorized_keys
858 Enabling environment processing may enable users to bypass access
859 restrictions in some configurations using mechanisms such as
862 Specifies the file that contains the process ID of the
865 .Pa /var/run/sshd.pid .
867 Specifies the port number that
871 Multiple options of this type are permitted.
877 should print the date and time of the last user login when a user logs
886 when a user logs in interactively.
887 (On some systems it is also printed by the shell,
893 Specifies the protocol versions
896 The possible values are
900 Multiple versions must be comma-separated.
903 Note that the order of the protocol list does not indicate preference,
904 because the client selects among multiple protocol versions offered
910 .It Cm PubkeyAuthentication
911 Specifies whether public key authentication is allowed.
914 Note that this option applies to protocol version 2 only.
916 Specifies a list of revoked public keys.
917 Keys listed in this file will be refused for public key authentication.
918 Note that if this file is not readable, then public key authentication will
919 be refused for all users.
920 .It Cm RhostsRSAAuthentication
921 Specifies whether rhosts or /etc/hosts.equiv authentication together
922 with successful RSA host authentication is allowed.
925 This option applies to protocol version 1 only.
926 .It Cm RSAAuthentication
927 Specifies whether pure RSA authentication is allowed.
930 This option applies to protocol version 1 only.
932 Defines the number of bits in the ephemeral protocol version 1 server key.
933 The minimum value is 512, and the default is 1024.
937 should check file modes and ownership of the
938 user's files and home directory before accepting login.
939 This is normally desirable because novices sometimes accidentally leave their
940 directory or files world-writable.
943 Note that this does not apply to
944 .Cm ChrootDirectory ,
945 whose permissions and ownership are checked unconditionally.
947 Configures an external subsystem (e.g. file transfer daemon).
948 Arguments should be a subsystem name and a command (with optional arguments)
949 to execute upon subsystem request.
955 file transfer subsystem.
959 implements an in-process
962 This may simplify configurations using
964 to force a different filesystem root on clients.
966 By default no subsystems are defined.
967 Note that this option applies to protocol version 2 only.
968 .It Cm SyslogFacility
969 Gives the facility code that is used when logging messages from
971 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
972 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
975 Specifies whether the system should send TCP keepalive messages to the
977 If they are sent, death of the connection or crash of one
978 of the machines will be properly noticed.
979 However, this means that
980 connections will die if the route is down temporarily, and some people
982 On the other hand, if TCP keepalives are not sent,
983 sessions may hang indefinitely on the server, leaving
985 users and consuming server resources.
989 (to send TCP keepalive messages), and the server will notice
990 if the network goes down or the client host crashes.
991 This avoids infinitely hanging sessions.
993 To disable TCP keepalive messages, the value should be set to
995 .It Cm TrustedUserCAKeys
996 Specifies a file containing public keys of certificate authorities that are
997 trusted to sign user certificates for authentication.
998 Keys are listed one per line; empty lines and comments starting with
1001 If a certificate is presented for authentication and has its signing CA key
1002 listed in this file, then it may be used for authentication for any user
1003 listed in the certificate's principals list.
1004 Note that certificates that lack a list of principals will not be permitted
1005 for authentication using
1006 .Cm TrustedUserCAKeys .
1007 For more details on certificates, see the
1014 should look up the remote host name and check that
1015 the resolved host name for the remote IP address maps back to the
1016 very same IP address.
1022 is used for interactive login sessions.
1027 is never used for remote command execution.
1028 Note also, that if this is enabled,
1030 will be disabled because
1032 does not know how to handle
1036 .Cm UsePrivilegeSeparation
1037 is specified, it will be disabled after authentication.
1039 Enables the Pluggable Authentication Module interface.
1042 this will enable PAM authentication using
1043 .Cm ChallengeResponseAuthentication
1045 .Cm PasswordAuthentication
1046 in addition to PAM account and session module processing for all
1047 authentication types.
1049 Because PAM challenge-response authentication usually serves an equivalent
1050 role to password authentication, you should disable either
1051 .Cm PasswordAuthentication
1053 .Cm ChallengeResponseAuthentication.
1057 is enabled, you will not be able to run
1062 .It Cm UsePrivilegeSeparation
1065 separates privileges by creating an unprivileged child process
1066 to deal with incoming network traffic.
1067 After successful authentication, another process will be created that has
1068 the privilege of the authenticated user.
1069 The goal of privilege separation is to prevent privilege
1070 escalation by containing any corruption within the unprivileged processes.
1073 .It Cm X11DisplayOffset
1074 Specifies the first display number available for
1077 This prevents sshd from interfering with real X11 servers.
1079 .It Cm X11Forwarding
1080 Specifies whether X11 forwarding is permitted.
1081 The argument must be
1088 When X11 forwarding is enabled, there may be additional exposure to
1089 the server and to client displays if the
1091 proxy display is configured to listen on the wildcard address (see
1093 below), though this is not the default.
1094 Additionally, the authentication spoofing and authentication data
1095 verification and substitution occur on the client side.
1096 The security risk of using X11 forwarding is that the client's X11
1097 display server may be exposed to attack when the SSH client requests
1098 forwarding (see the warnings for
1101 .Xr ssh_config 5 ) .
1102 A system administrator may have a stance in which they want to
1103 protect clients that may expose themselves to attack by unwittingly
1104 requesting X11 forwarding, which can warrant a
1108 Note that disabling X11 forwarding does not prevent users from
1109 forwarding X11 traffic, as users can always install their own forwarders.
1110 X11 forwarding is automatically disabled if
1113 .It Cm X11UseLocalhost
1116 should bind the X11 forwarding server to the loopback address or to
1117 the wildcard address.
1119 sshd binds the forwarding server to the loopback address and sets the
1120 hostname part of the
1122 environment variable to
1124 This prevents remote hosts from connecting to the proxy display.
1125 However, some older X11 clients may not function with this
1130 to specify that the forwarding server should be bound to the wildcard
1132 The argument must be
1138 .It Cm XAuthLocation
1139 Specifies the full pathname of the
1143 .Pa /usr/X11R6/bin/xauth .
1147 command-line arguments and configuration file options that specify time
1148 may be expressed using a sequence of the form:
1150 .Ar time Op Ar qualifier ,
1154 is a positive integer value and
1156 is one of the following:
1158 .Bl -tag -width Ds -compact -offset indent
1173 Each member of the sequence is added together to calculate
1174 the total time value.
1176 Time format examples:
1178 .Bl -tag -width Ds -compact -offset indent
1180 600 seconds (10 minutes)
1184 1 hour 30 minutes (90 minutes)
1188 .It Pa /etc/ssh/sshd_config
1189 Contains configuration data for
1191 This file should be writable by root only, but it is recommended
1192 (though not necessary) that it be world-readable.
1197 OpenSSH is a derivative of the original and free
1198 ssh 1.2.12 release by Tatu Ylonen.
1199 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1200 Theo de Raadt and Dug Song
1201 removed many bugs, re-added newer features and
1203 Markus Friedl contributed the support for SSH
1204 protocol versions 1.5 and 2.0.
1205 Niels Provos and Markus Friedl contributed support
1206 for privilege separation.