3 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
4 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 .\" All rights reserved
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".
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.
17 .\" Redistribution and use in source and binary forms, with or without
18 .\" modification, are permitted provided that the following conditions
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.
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.
37 .\" $OpenBSD: sshd_config.5,v 1.127 2010/09/22 05:01:30 djm Exp $
38 .Dd $Mdocdate: September 22 2010 $
43 .Nd OpenSSH SSH daemon configuration file
45 .Nm /etc/ssh/sshd_config
48 reads configuration data from
49 .Pa /etc/ssh/sshd_config
50 (or the file specified with
53 The file contains keyword-argument pairs, one per line.
56 and empty lines are interpreted as comments.
57 Arguments may optionally be enclosed in double quotes
59 in order to represent arguments containing spaces.
62 keywords and their meanings are as follows (note that
63 keywords are case-insensitive and arguments are case-sensitive):
66 Specifies what environment variables sent by the client will be copied into
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
79 Multiple environment variables may be separated by whitespace or spread
83 Be warned that some environment variables could be used to bypass restricted
85 For this reason, care should be taken in the use of this directive.
86 The default is not to accept any environment variables.
88 Specifies which address family should be used by
98 .It Cm AllowAgentForwarding
101 forwarding is permitted.
104 Note that disabling agent forwarding does not improve security
105 unless users are also denied shell access, as they can always install
106 their own forwarders.
108 This keyword can be followed by a list of group name patterns, separated
110 If specified, login is allowed only for users whose primary
111 group or supplementary group list matches one of the patterns.
112 Only group names are valid; a numerical group ID is not recognized.
113 By default, login is allowed for all groups.
114 The allow/deny directives are processed in the following order:
125 for more information on patterns.
126 .It Cm AllowTcpForwarding
127 Specifies whether TCP forwarding is permitted.
130 Note that disabling TCP forwarding does not improve security unless
131 users are also denied shell access, as they can always install their
134 This keyword can be followed by a list of user name patterns, separated
136 If specified, login is allowed only for user names that
137 match one of the patterns.
138 Only user names are valid; a numerical user ID is not recognized.
139 By default, login is allowed for all users.
140 If the pattern takes the form USER@HOST then USER and HOST
141 are separately checked, restricting logins to particular
142 users from particular hosts.
143 The allow/deny directives are processed in the following order:
154 for more information on patterns.
155 .It Cm AuthorizedKeysFile
156 Specifies the file that contains the public keys that can be used
157 for user authentication.
158 The format is described in the
159 .Sx AUTHORIZED_KEYS FILE FORMAT
162 .Cm AuthorizedKeysFile
163 may contain tokens of the form %T which are substituted during connection
165 The following tokens are defined: %% is replaced by a literal '%',
166 %h is replaced by the home directory of the user being authenticated, and
167 %u is replaced by the username of that user.
169 .Cm AuthorizedKeysFile
170 is taken to be an absolute path or one relative to the user's home
173 .Dq .ssh/authorized_keys .
174 .It Cm AuthorizedPrincipalsFile
175 Specifies a file that lists principal names that are accepted for
176 certificate authentication.
177 When using certificates signed by a key listed in
178 .Cm TrustedUserCAKeys ,
179 this file lists names, one of which must appear in the certificate for it
180 to be accepted for authentication.
181 Names are listed one per line preceded by key options (as described
183 .Sx AUTHORIZED_KEYS FILE FORMAT
186 Empty lines and comments starting with
190 .Cm AuthorizedPrincipalsFile
191 may contain tokens of the form %T which are substituted during connection
193 The following tokens are defined: %% is replaced by a literal '%',
194 %h is replaced by the home directory of the user being authenticated, and
195 %u is replaced by the username of that user.
197 .Cm AuthorizedPrincipalsFile
198 is taken to be an absolute path or one relative to the user's home
201 The default is not to use a principals file \(en in this case, the username
202 of the user must appear in a certificate's principals list for it to be
205 .Cm AuthorizedPrincipalsFile
206 is only used when authentication proceeds using a CA listed in
207 .Cm TrustedUserCAKeys
208 and is not consulted for certification authorities trusted via
209 .Pa ~/.ssh/authorized_keys ,
212 key option offers a similar facility (see
216 The contents of the specified file are sent to the remote user before
217 authentication is allowed.
220 then no banner is displayed.
221 This option is only available for protocol version 2.
222 By default, no banner is displayed.
223 .It Cm ChallengeResponseAuthentication
224 Specifies whether challenge-response authentication is allowed (e.g. via
225 PAM or though authentication styles supported in
229 .It Cm ChrootDirectory
230 Specifies the pathname of a directory to
232 to after authentication.
233 All components of the pathname must be root-owned directories that are
234 not writable by any other user or group.
237 changes the working directory to the user's home directory.
239 The pathname may contain the following tokens that are expanded at runtime once
240 the connecting user has been authenticated: %% is replaced by a literal '%',
241 %h is replaced by the home directory of the user being authenticated, and
242 %u is replaced by the username of that user.
246 must contain the necessary files and directories to support the
248 For an interactive session this requires at least a shell, typically
262 For file transfer sessions using
264 no additional configuration of the environment is necessary if the
265 in-process sftp server is used,
266 though sessions which use logging do require
268 inside the chroot directory (see
272 The default is not to
275 Specifies the ciphers allowed for protocol version 2.
276 Multiple ciphers must be comma-separated.
277 The supported ciphers are
292 .Bd -literal -offset 3n
293 aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
294 aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
297 .It Cm ClientAliveCountMax
298 Sets the number of client alive messages (see below) which may be
301 receiving any messages back from the client.
302 If this threshold is reached while client alive messages are being sent,
303 sshd will disconnect the client, terminating the session.
304 It is important to note that the use of client alive messages is very
308 The client alive messages are sent through the encrypted channel
309 and therefore will not be spoofable.
310 The TCP keepalive option enabled by
313 The client alive mechanism is valuable when the client or
314 server depend on knowing when a connection has become inactive.
316 The default value is 3.
318 .Cm ClientAliveInterval
319 (see below) is set to 15, and
320 .Cm ClientAliveCountMax
321 is left at the default, unresponsive SSH clients
322 will be disconnected after approximately 45 seconds.
323 This option applies to protocol version 2 only.
324 .It Cm ClientAliveInterval
325 Sets a timeout interval in seconds after which if no data has been received
328 will send a message through the encrypted
329 channel to request a response from the client.
331 is 0, indicating that these messages will not be sent to the client.
332 This option applies to protocol version 2 only.
334 Specifies whether compression is allowed, or delayed until
335 the user has authenticated successfully.
344 This keyword can be followed by a list of group name patterns, separated
346 Login is disallowed for users whose primary group or supplementary
347 group list matches one of the patterns.
348 Only group names are valid; a numerical group ID is not recognized.
349 By default, login is allowed for all groups.
350 The allow/deny directives are processed in the following order:
361 for more information on patterns.
363 This keyword can be followed by a list of user name patterns, separated
365 Login is disallowed for user names that match one of the patterns.
366 Only user names are valid; a numerical user ID is not recognized.
367 By default, login is allowed for all users.
368 If the pattern takes the form USER@HOST then USER and HOST
369 are separately checked, restricting logins to particular
370 users from particular hosts.
371 The allow/deny directives are processed in the following order:
382 for more information on patterns.
384 Forces the execution of the command specified by
386 ignoring any command supplied by the client and
389 The command is invoked by using the user's login shell with the -c option.
390 This applies to shell, command, or subsystem execution.
391 It is most useful inside a
394 The command originally supplied by the client is available in the
395 .Ev SSH_ORIGINAL_COMMAND
396 environment variable.
397 Specifying a command of
399 will force the use of an in-process sftp server that requires no support
401 .Cm ChrootDirectory .
403 Specifies whether remote hosts are allowed to connect to ports
404 forwarded for the client.
407 binds remote port forwardings to the loopback address.
408 This prevents other remote hosts from connecting to forwarded ports.
410 can be used to specify that sshd
411 should allow remote port forwardings to bind to non-loopback addresses, thus
412 allowing other hosts to connect.
415 to force remote port forwardings to be available to the local host only,
417 to force remote port forwardings to bind to the wildcard address, or
419 to allow the client to select the address to which the forwarding is bound.
422 .It Cm GSSAPIAuthentication
423 Specifies whether user authentication based on GSSAPI is allowed.
426 Note that this option applies to protocol version 2 only.
427 .It Cm GSSAPICleanupCredentials
428 Specifies whether to automatically destroy the user's credentials cache
432 Note that this option applies to protocol version 2 only.
433 .It Cm HostbasedAuthentication
434 Specifies whether rhosts or /etc/hosts.equiv authentication together
435 with successful public key client host authentication is allowed
436 (host-based authentication).
437 This option is similar to
438 .Cm RhostsRSAAuthentication
439 and applies to protocol version 2 only.
442 .It Cm HostbasedUsesNameFromPacketOnly
443 Specifies whether or not the server will attempt to perform a reverse
444 name lookup when matching the name in the
450 .Cm HostbasedAuthentication .
455 uses the name supplied by the client rather than
456 attempting to resolve the name from the TCP connection itself.
459 .It Cm HostCertificate
460 Specifies a file containing a public host certificate.
461 The certificate's public key must match a private host key already specified
464 The default behaviour of
466 is not to load any certificates.
468 Specifies a file containing a private host key
471 .Pa /etc/ssh/ssh_host_key
472 for protocol version 1, and
473 .Pa /etc/ssh/ssh_host_dsa_key ,
474 .Pa /etc/ssh/ssh_host_ecdsa_key
476 .Pa /etc/ssh/ssh_host_rsa_key
477 for protocol version 2.
480 will refuse to use a file if it is group/world-accessible.
481 It is possible to have multiple host key files.
483 keys are used for version 1 and
488 are used for version 2 of the SSH protocol.
494 files will not be used in
495 .Cm RhostsRSAAuthentication
497 .Cm HostbasedAuthentication .
501 .Pa /etc/shosts.equiv
505 .It Cm IgnoreUserKnownHosts
508 should ignore the user's
509 .Pa ~/.ssh/known_hosts
511 .Cm RhostsRSAAuthentication
513 .Cm HostbasedAuthentication .
516 .It Cm KerberosAuthentication
517 Specifies whether the password provided by the user for
518 .Cm PasswordAuthentication
519 will be validated through the Kerberos KDC.
520 To use this option, the server needs a
521 Kerberos servtab which allows the verification of the KDC's identity.
524 .It Cm KerberosGetAFSToken
525 If AFS is active and the user has a Kerberos 5 TGT, attempt to acquire
526 an AFS token before accessing the user's home directory.
529 .It Cm KerberosOrLocalPasswd
530 If password authentication through Kerberos fails then
531 the password will be validated via any additional local mechanism
536 .It Cm KerberosTicketCleanup
537 Specifies whether to automatically destroy the user's ticket cache
542 Specifies the available KEX (Key Exchange) algorithms.
543 Multiple algorithms must be comma-separated.
545 .Dq ecdh-sha2-nistp256 ,
546 .Dq ecdh-sha2-nistp384 ,
547 .Dq ecdh-sha2-nistp521 ,
548 .Dq diffie-hellman-group-exchange-sha256 ,
549 .Dq diffie-hellman-group-exchange-sha1 ,
550 .Dq diffie-hellman-group14-sha1 ,
551 .Dq diffie-hellman-group1-sha1 .
552 .It Cm KeyRegenerationInterval
553 In protocol version 1, the ephemeral server key is automatically regenerated
554 after this many seconds (if it has been used).
555 The purpose of regeneration is to prevent
556 decrypting captured sessions by later breaking into the machine and
558 The key is never stored anywhere.
559 If the value is 0, the key is never regenerated.
560 The default is 3600 (seconds).
562 Specifies the local addresses
565 The following forms may be used:
567 .Bl -item -offset indent -compact
571 .Ar host No | Ar IPv4_addr No | Ar IPv6_addr
576 .Ar host No | Ar IPv4_addr No : Ar port
582 .Ar host No | Ar IPv6_addr Oc : Ar port
589 sshd will listen on the address and all prior
592 The default is to listen on all local addresses.
595 options are permitted.
598 options must precede this option for non-port qualified addresses.
599 .It Cm LoginGraceTime
600 The server disconnects after this time if the user has not
601 successfully logged in.
602 If the value is 0, there is no time limit.
603 The default is 120 seconds.
605 Gives the verbosity level that is used when logging messages from
607 The possible values are:
608 QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
610 DEBUG and DEBUG1 are equivalent.
611 DEBUG2 and DEBUG3 each specify higher levels of debugging output.
612 Logging with a DEBUG level violates the privacy of users and is not recommended.
614 Specifies the available MAC (message authentication code) algorithms.
615 The MAC algorithm is used in protocol version 2
616 for data integrity protection.
617 Multiple algorithms must be comma-separated.
619 .Bd -literal -offset indent
620 hmac-md5,hmac-sha1,umac-64@openssh.com,
621 hmac-ripemd160,hmac-sha1-96,hmac-md5-96
624 Introduces a conditional block.
625 If all of the criteria on the
627 line are satisfied, the keywords on the following lines override those
628 set in the global section of the config file, until either another
630 line or the end of the file.
634 are one or more criteria-pattern pairs.
635 The available criteria are
641 The match patterns may consist of single entries or comma-separated
642 lists and may use the wildcard and negation operators described in the
649 criteria may additionally contain addresses to match in CIDR
650 address/masklen format, e.g.\&
654 Note that the mask length provided must be consistent with the address -
655 it is an error to specify a mask length that is too long for the address
656 or one with bits set in this host portion of the address.
663 Only a subset of keywords may be used on the lines following a
666 Available keywords are
667 .Cm AllowAgentForwarding ,
668 .Cm AllowTcpForwarding ,
669 .Cm AuthorizedKeysFile ,
670 .Cm AuthorizedPrincipalsFile ,
672 .Cm ChrootDirectory ,
675 .Cm GSSAPIAuthentication ,
676 .Cm HostbasedAuthentication ,
677 .Cm HostbasedUsesNameFromPacketOnly ,
678 .Cm KbdInteractiveAuthentication ,
679 .Cm KerberosAuthentication ,
682 .Cm PasswordAuthentication ,
683 .Cm PermitEmptyPasswords ,
685 .Cm PermitRootLogin ,
687 .Cm PubkeyAuthentication ,
688 .Cm RhostsRSAAuthentication ,
689 .Cm RSAAuthentication ,
690 .Cm X11DisplayOffset ,
693 .Cm X11UseLocalHost .
695 Specifies the maximum number of authentication attempts permitted per
697 Once the number of failures reaches half this value,
698 additional failures are logged.
701 Specifies the maximum number of open sessions permitted per network connection.
704 Specifies the maximum number of concurrent unauthenticated connections to the
706 Additional connections will be dropped until authentication succeeds or the
708 expires for a connection.
711 Alternatively, random early drop can be enabled by specifying
712 the three colon separated values
716 will refuse connection attempts with a probability of
719 if there are currently
722 unauthenticated connections.
723 The probability increases linearly and all connection attempts
724 are refused if the number of unauthenticated connections reaches
727 .It Cm PasswordAuthentication
728 Specifies whether password authentication is allowed.
731 .It Cm PermitEmptyPasswords
732 When password authentication is allowed, it specifies whether the
733 server allows login to accounts with empty password strings.
737 Specifies the destinations to which TCP port forwarding is permitted.
738 The forwarding specification must be one of the following forms:
740 .Bl -item -offset indent -compact
754 .Ar \&[ IPv6_addr \&] : port
758 Multiple forwards may be specified by separating them with whitespace.
761 can be used to remove all restrictions and permit any forwarding requests.
762 By default all port forwarding requests are permitted.
763 .It Cm PermitRootLogin
764 Specifies whether root can log in using
768 .Dq without-password ,
769 .Dq forced-commands-only ,
775 If this option is set to
776 .Dq without-password ,
777 password authentication is disabled for root.
779 If this option is set to
780 .Dq forced-commands-only ,
781 root login with public key authentication will be allowed,
784 option has been specified
785 (which may be useful for taking remote backups even if root login is
786 normally not allowed).
787 All other authentication methods are disabled for root.
789 If this option is set to
791 root is not allowed to log in.
795 device forwarding is allowed.
811 .It Cm PermitUserEnvironment
813 .Pa ~/.ssh/environment
817 .Pa ~/.ssh/authorized_keys
822 Enabling environment processing may enable users to bypass access
823 restrictions in some configurations using mechanisms such as
826 Specifies the file that contains the process ID of the
829 .Pa /var/run/sshd.pid .
831 Specifies the port number that
835 Multiple options of this type are permitted.
841 should print the date and time of the last user login when a user logs
850 when a user logs in interactively.
851 (On some systems it is also printed by the shell,
857 Specifies the protocol versions
860 The possible values are
864 Multiple versions must be comma-separated.
867 Note that the order of the protocol list does not indicate preference,
868 because the client selects among multiple protocol versions offered
874 .It Cm PubkeyAuthentication
875 Specifies whether public key authentication is allowed.
878 Note that this option applies to protocol version 2 only.
880 Specifies a list of revoked public keys.
881 Keys listed in this file will be refused for public key authentication.
882 Note that if this file is not readable, then public key authentication will
883 be refused for all users.
884 .It Cm RhostsRSAAuthentication
885 Specifies whether rhosts or /etc/hosts.equiv authentication together
886 with successful RSA host authentication is allowed.
889 This option applies to protocol version 1 only.
890 .It Cm RSAAuthentication
891 Specifies whether pure RSA authentication is allowed.
894 This option applies to protocol version 1 only.
896 Defines the number of bits in the ephemeral protocol version 1 server key.
897 The minimum value is 512, and the default is 1024.
901 should check file modes and ownership of the
902 user's files and home directory before accepting login.
903 This is normally desirable because novices sometimes accidentally leave their
904 directory or files world-writable.
907 Note that this does not apply to
908 .Cm ChrootDirectory ,
909 whose permissions and ownership are checked unconditionally.
911 Configures an external subsystem (e.g. file transfer daemon).
912 Arguments should be a subsystem name and a command (with optional arguments)
913 to execute upon subsystem request.
919 file transfer subsystem.
923 implements an in-process
926 This may simplify configurations using
928 to force a different filesystem root on clients.
930 By default no subsystems are defined.
931 Note that this option applies to protocol version 2 only.
932 .It Cm SyslogFacility
933 Gives the facility code that is used when logging messages from
935 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
936 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
939 Specifies whether the system should send TCP keepalive messages to the
941 If they are sent, death of the connection or crash of one
942 of the machines will be properly noticed.
943 However, this means that
944 connections will die if the route is down temporarily, and some people
946 On the other hand, if TCP keepalives are not sent,
947 sessions may hang indefinitely on the server, leaving
949 users and consuming server resources.
953 (to send TCP keepalive messages), and the server will notice
954 if the network goes down or the client host crashes.
955 This avoids infinitely hanging sessions.
957 To disable TCP keepalive messages, the value should be set to
959 .It Cm TrustedUserCAKeys
960 Specifies a file containing public keys of certificate authorities that are
961 trusted to sign user certificates for authentication.
962 Keys are listed one per line; empty lines and comments starting with
965 If a certificate is presented for authentication and has its signing CA key
966 listed in this file, then it may be used for authentication for any user
967 listed in the certificate's principals list.
968 Note that certificates that lack a list of principals will not be permitted
969 for authentication using
970 .Cm TrustedUserCAKeys .
971 For more details on certificates, see the
978 should look up the remote host name and check that
979 the resolved host name for the remote IP address maps back to the
980 very same IP address.
986 is used for interactive login sessions.
991 is never used for remote command execution.
992 Note also, that if this is enabled,
994 will be disabled because
996 does not know how to handle
1000 .Cm UsePrivilegeSeparation
1001 is specified, it will be disabled after authentication.
1003 Enables the Pluggable Authentication Module interface.
1006 this will enable PAM authentication using
1007 .Cm ChallengeResponseAuthentication
1009 .Cm PasswordAuthentication
1010 in addition to PAM account and session module processing for all
1011 authentication types.
1013 Because PAM challenge-response authentication usually serves an equivalent
1014 role to password authentication, you should disable either
1015 .Cm PasswordAuthentication
1017 .Cm ChallengeResponseAuthentication.
1021 is enabled, you will not be able to run
1026 .It Cm UsePrivilegeSeparation
1029 separates privileges by creating an unprivileged child process
1030 to deal with incoming network traffic.
1031 After successful authentication, another process will be created that has
1032 the privilege of the authenticated user.
1033 The goal of privilege separation is to prevent privilege
1034 escalation by containing any corruption within the unprivileged processes.
1037 .It Cm X11DisplayOffset
1038 Specifies the first display number available for
1041 This prevents sshd from interfering with real X11 servers.
1043 .It Cm X11Forwarding
1044 Specifies whether X11 forwarding is permitted.
1045 The argument must be
1052 When X11 forwarding is enabled, there may be additional exposure to
1053 the server and to client displays if the
1055 proxy display is configured to listen on the wildcard address (see
1057 below), though this is not the default.
1058 Additionally, the authentication spoofing and authentication data
1059 verification and substitution occur on the client side.
1060 The security risk of using X11 forwarding is that the client's X11
1061 display server may be exposed to attack when the SSH client requests
1062 forwarding (see the warnings for
1065 .Xr ssh_config 5 ) .
1066 A system administrator may have a stance in which they want to
1067 protect clients that may expose themselves to attack by unwittingly
1068 requesting X11 forwarding, which can warrant a
1072 Note that disabling X11 forwarding does not prevent users from
1073 forwarding X11 traffic, as users can always install their own forwarders.
1074 X11 forwarding is automatically disabled if
1077 .It Cm X11UseLocalhost
1080 should bind the X11 forwarding server to the loopback address or to
1081 the wildcard address.
1083 sshd binds the forwarding server to the loopback address and sets the
1084 hostname part of the
1086 environment variable to
1088 This prevents remote hosts from connecting to the proxy display.
1089 However, some older X11 clients may not function with this
1094 to specify that the forwarding server should be bound to the wildcard
1096 The argument must be
1102 .It Cm XAuthLocation
1103 Specifies the full pathname of the
1107 .Pa /usr/X11R6/bin/xauth .
1111 command-line arguments and configuration file options that specify time
1112 may be expressed using a sequence of the form:
1114 .Ar time Op Ar qualifier ,
1118 is a positive integer value and
1120 is one of the following:
1122 .Bl -tag -width Ds -compact -offset indent
1137 Each member of the sequence is added together to calculate
1138 the total time value.
1140 Time format examples:
1142 .Bl -tag -width Ds -compact -offset indent
1144 600 seconds (10 minutes)
1148 1 hour 30 minutes (90 minutes)
1152 .It Pa /etc/ssh/sshd_config
1153 Contains configuration data for
1155 This file should be writable by root only, but it is recommended
1156 (though not necessary) that it be world-readable.
1161 OpenSSH is a derivative of the original and free
1162 ssh 1.2.12 release by Tatu Ylonen.
1163 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1164 Theo de Raadt and Dug Song
1165 removed many bugs, re-added newer features and
1167 Markus Friedl contributed the support for SSH
1168 protocol versions 1.5 and 2.0.
1169 Niels Provos and Markus Friedl contributed support
1170 for privilege separation.