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