]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/ssh_config.5
Make linux_ptrace() use linux_msg() instead of printf().
[FreeBSD/FreeBSD.git] / crypto / openssh / ssh_config.5
1 .\"
2 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
3 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 .\"                    All rights reserved
5 .\"
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".
11 .\"
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.
15 .\"
16 .\" Redistribution and use in source and binary forms, with or without
17 .\" modification, are permitted provided that the following conditions
18 .\" are met:
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.
24 .\"
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.
35 .\"
36 .\" $OpenBSD: ssh_config.5,v 1.281 2018/07/23 19:02:49 kn Exp $
37 .\" $FreeBSD$
38 .Dd $Mdocdate: July 23 2018 $
39 .Dt SSH_CONFIG 5
40 .Os
41 .Sh NAME
42 .Nm ssh_config
43 .Nd OpenSSH SSH client configuration files
44 .Sh DESCRIPTION
45 .Xr ssh 1
46 obtains configuration data from the following sources in
47 the following order:
48 .Pp
49 .Bl -enum -offset indent -compact
50 .It
51 command-line options
52 .It
53 user's configuration file
54 .Pq Pa ~/.ssh/config
55 .It
56 system-wide configuration file
57 .Pq Pa /etc/ssh/ssh_config
58 .El
59 .Pp
60 For each parameter, the first obtained value
61 will be used.
62 The configuration files contain sections separated by
63 .Cm Host
64 specifications, and that section is only applied for hosts that
65 match one of the patterns given in the specification.
66 The matched host name is usually the one given on the command line
67 (see the
68 .Cm CanonicalizeHostname
69 option for exceptions).
70 .Pp
71 Since the first obtained value for each parameter is used, more
72 host-specific declarations should be given near the beginning of the
73 file, and general defaults at the end.
74 .Pp
75 The file contains keyword-argument pairs, one per line.
76 Lines starting with
77 .Ql #
78 and empty lines are interpreted as comments.
79 Arguments may optionally be enclosed in double quotes
80 .Pq \&"
81 in order to represent arguments containing spaces.
82 Configuration options may be separated by whitespace or
83 optional whitespace and exactly one
84 .Ql = ;
85 the latter format is useful to avoid the need to quote whitespace
86 when specifying configuration options using the
87 .Nm ssh ,
88 .Nm scp ,
89 and
90 .Nm sftp
91 .Fl o
92 option.
93 .Pp
94 The possible
95 keywords and their meanings are as follows (note that
96 keywords are case-insensitive and arguments are case-sensitive):
97 .Bl -tag -width Ds
98 .It Cm Host
99 Restricts the following declarations (up to the next
100 .Cm Host
101 or
102 .Cm Match
103 keyword) to be only for those hosts that match one of the patterns
104 given after the keyword.
105 If more than one pattern is provided, they should be separated by whitespace.
106 A single
107 .Ql *
108 as a pattern can be used to provide global
109 defaults for all hosts.
110 The host is usually the
111 .Ar hostname
112 argument given on the command line
113 (see the
114 .Cm CanonicalizeHostname
115 keyword for exceptions).
116 .Pp
117 A pattern entry may be negated by prefixing it with an exclamation mark
118 .Pq Sq !\& .
119 If a negated entry is matched, then the
120 .Cm Host
121 entry is ignored, regardless of whether any other patterns on the line
122 match.
123 Negated matches are therefore useful to provide exceptions for wildcard
124 matches.
125 .Pp
126 See
127 .Sx PATTERNS
128 for more information on patterns.
129 .It Cm Match
130 Restricts the following declarations (up to the next
131 .Cm Host
132 or
133 .Cm Match
134 keyword) to be used only when the conditions following the
135 .Cm Match
136 keyword are satisfied.
137 Match conditions are specified using one or more criteria
138 or the single token
139 .Cm all
140 which always matches.
141 The available criteria keywords are:
142 .Cm canonical ,
143 .Cm exec ,
144 .Cm host ,
145 .Cm originalhost ,
146 .Cm user ,
147 and
148 .Cm localuser .
149 The
150 .Cm all
151 criteria must appear alone or immediately after
152 .Cm canonical .
153 Other criteria may be combined arbitrarily.
154 All criteria but
155 .Cm all
156 and
157 .Cm canonical
158 require an argument.
159 Criteria may be negated by prepending an exclamation mark
160 .Pq Sq !\& .
161 .Pp
162 The
163 .Cm canonical
164 keyword matches only when the configuration file is being re-parsed
165 after hostname canonicalization (see the
166 .Cm CanonicalizeHostname
167 option.)
168 This may be useful to specify conditions that work with canonical host
169 names only.
170 The
171 .Cm exec
172 keyword executes the specified command under the user's shell.
173 If the command returns a zero exit status then the condition is considered true.
174 Commands containing whitespace characters must be quoted.
175 Arguments to
176 .Cm exec
177 accept the tokens described in the
178 .Sx TOKENS
179 section.
180 .Pp
181 The other keywords' criteria must be single entries or comma-separated
182 lists and may use the wildcard and negation operators described in the
183 .Sx PATTERNS
184 section.
185 The criteria for the
186 .Cm host
187 keyword are matched against the target hostname, after any substitution
188 by the
189 .Cm Hostname
190 or
191 .Cm CanonicalizeHostname
192 options.
193 The
194 .Cm originalhost
195 keyword matches against the hostname as it was specified on the command-line.
196 The
197 .Cm user
198 keyword matches against the target username on the remote host.
199 The
200 .Cm localuser
201 keyword matches against the name of the local user running
202 .Xr ssh 1
203 (this keyword may be useful in system-wide
204 .Nm
205 files).
206 .It Cm AddKeysToAgent
207 Specifies whether keys should be automatically added to a running
208 .Xr ssh-agent 1 .
209 If this option is set to
210 .Cm yes
211 and a key is loaded from a file, the key and its passphrase are added to
212 the agent with the default lifetime, as if by
213 .Xr ssh-add 1 .
214 If this option is set to
215 .Cm ask ,
216 .Xr ssh 1
217 will require confirmation using the
218 .Ev SSH_ASKPASS
219 program before adding a key (see
220 .Xr ssh-add 1
221 for details).
222 If this option is set to
223 .Cm confirm ,
224 each use of the key must be confirmed, as if the
225 .Fl c
226 option was specified to
227 .Xr ssh-add 1 .
228 If this option is set to
229 .Cm no ,
230 no keys are added to the agent.
231 The argument must be
232 .Cm yes ,
233 .Cm confirm ,
234 .Cm ask ,
235 or
236 .Cm no
237 (the default).
238 .It Cm AddressFamily
239 Specifies which address family to use when connecting.
240 Valid arguments are
241 .Cm any
242 (the default),
243 .Cm inet
244 (use IPv4 only), or
245 .Cm inet6
246 (use IPv6 only).
247 .It Cm BatchMode
248 If set to
249 .Cm yes ,
250 passphrase/password querying will be disabled.
251 This option is useful in scripts and other batch jobs where no user
252 is present to supply the password.
253 The argument must be
254 .Cm yes
255 or
256 .Cm no
257 (the default).
258 .It Cm BindAddress
259 Use the specified address on the local machine as the source address of
260 the connection.
261 Only useful on systems with more than one address.
262 .It Cm BindInterface
263 Use the address of the specified interface on the local machine as the
264 source address of the connection.
265 .It Cm CanonicalDomains
266 When
267 .Cm CanonicalizeHostname
268 is enabled, this option specifies the list of domain suffixes in which to
269 search for the specified destination host.
270 .It Cm CanonicalizeFallbackLocal
271 Specifies whether to fail with an error when hostname canonicalization fails.
272 The default,
273 .Cm yes ,
274 will attempt to look up the unqualified hostname using the system resolver's
275 search rules.
276 A value of
277 .Cm no
278 will cause
279 .Xr ssh 1
280 to fail instantly if
281 .Cm CanonicalizeHostname
282 is enabled and the target hostname cannot be found in any of the domains
283 specified by
284 .Cm CanonicalDomains .
285 .It Cm CanonicalizeHostname
286 Controls whether explicit hostname canonicalization is performed.
287 The default,
288 .Cm no ,
289 is not to perform any name rewriting and let the system resolver handle all
290 hostname lookups.
291 If set to
292 .Cm yes
293 then, for connections that do not use a
294 .Cm ProxyCommand ,
295 .Xr ssh 1
296 will attempt to canonicalize the hostname specified on the command line
297 using the
298 .Cm CanonicalDomains
299 suffixes and
300 .Cm CanonicalizePermittedCNAMEs
301 rules.
302 If
303 .Cm CanonicalizeHostname
304 is set to
305 .Cm always ,
306 then canonicalization is applied to proxied connections too.
307 .Pp
308 If this option is enabled, then the configuration files are processed
309 again using the new target name to pick up any new configuration in matching
310 .Cm Host
311 and
312 .Cm Match
313 stanzas.
314 .It Cm CanonicalizeMaxDots
315 Specifies the maximum number of dot characters in a hostname before
316 canonicalization is disabled.
317 The default, 1,
318 allows a single dot (i.e. hostname.subdomain).
319 .It Cm CanonicalizePermittedCNAMEs
320 Specifies rules to determine whether CNAMEs should be followed when
321 canonicalizing hostnames.
322 The rules consist of one or more arguments of
323 .Ar source_domain_list : Ns Ar target_domain_list ,
324 where
325 .Ar source_domain_list
326 is a pattern-list of domains that may follow CNAMEs in canonicalization,
327 and
328 .Ar target_domain_list
329 is a pattern-list of domains that they may resolve to.
330 .Pp
331 For example,
332 .Qq *.a.example.com:*.b.example.com,*.c.example.com
333 will allow hostnames matching
334 .Qq *.a.example.com
335 to be canonicalized to names in the
336 .Qq *.b.example.com
337 or
338 .Qq *.c.example.com
339 domains.
340 .It Cm CertificateFile
341 Specifies a file from which the user's certificate is read.
342 A corresponding private key must be provided separately in order
343 to use this certificate either
344 from an
345 .Cm IdentityFile
346 directive or
347 .Fl i
348 flag to
349 .Xr ssh 1 ,
350 via
351 .Xr ssh-agent 1 ,
352 or via a
353 .Cm PKCS11Provider .
354 .Pp
355 Arguments to
356 .Cm CertificateFile
357 may use the tilde syntax to refer to a user's home directory
358 or the tokens described in the
359 .Sx TOKENS
360 section.
361 .Pp
362 It is possible to have multiple certificate files specified in
363 configuration files; these certificates will be tried in sequence.
364 Multiple
365 .Cm CertificateFile
366 directives will add to the list of certificates used for
367 authentication.
368 .It Cm ChallengeResponseAuthentication
369 Specifies whether to use challenge-response authentication.
370 The argument to this keyword must be
371 .Cm yes
372 (the default)
373 or
374 .Cm no .
375 .It Cm CheckHostIP
376 If set to
377 .Cm yes ,
378 .Xr ssh 1
379 will additionally check the host IP address in the
380 .Pa known_hosts
381 file.
382 This allows it to detect if a host key changed due to DNS spoofing
383 and will add addresses of destination hosts to
384 .Pa ~/.ssh/known_hosts
385 in the process, regardless of the setting of
386 .Cm StrictHostKeyChecking .
387 If the option is set to
388 .Cm no ,
389 the check will not be executed.
390 The default is
391 .Cm no .
392 .It Cm Ciphers
393 Specifies the ciphers allowed and their order of preference.
394 Multiple ciphers must be comma-separated.
395 If the specified value begins with a
396 .Sq +
397 character, then the specified ciphers will be appended to the default set
398 instead of replacing them.
399 If the specified value begins with a
400 .Sq -
401 character, then the specified ciphers (including wildcards) will be removed
402 from the default set instead of replacing them.
403 .Pp
404 The supported ciphers are:
405 .Bd -literal -offset indent
406 3des-cbc
407 aes128-cbc
408 aes192-cbc
409 aes256-cbc
410 aes128-ctr
411 aes192-ctr
412 aes256-ctr
413 aes128-gcm@openssh.com
414 aes256-gcm@openssh.com
415 chacha20-poly1305@openssh.com
416 .Ed
417 .Pp
418 The default is:
419 .Bd -literal -offset indent
420 chacha20-poly1305@openssh.com,
421 aes128-ctr,aes192-ctr,aes256-ctr,
422 aes128-gcm@openssh.com,aes256-gcm@openssh.com
423 .Ed
424 .Pp
425 The list of available ciphers may also be obtained using
426 .Qq ssh -Q cipher .
427 .It Cm ClearAllForwardings
428 Specifies that all local, remote, and dynamic port forwardings
429 specified in the configuration files or on the command line be
430 cleared.
431 This option is primarily useful when used from the
432 .Xr ssh 1
433 command line to clear port forwardings set in
434 configuration files, and is automatically set by
435 .Xr scp 1
436 and
437 .Xr sftp 1 .
438 The argument must be
439 .Cm yes
440 or
441 .Cm no
442 (the default).
443 .It Cm Compression
444 Specifies whether to use compression.
445 The argument must be
446 .Cm yes
447 or
448 .Cm no
449 (the default).
450 .It Cm ConnectionAttempts
451 Specifies the number of tries (one per second) to make before exiting.
452 The argument must be an integer.
453 This may be useful in scripts if the connection sometimes fails.
454 The default is 1.
455 .It Cm ConnectTimeout
456 Specifies the timeout (in seconds) used when connecting to the
457 SSH server, instead of using the default system TCP timeout.
458 This value is used only when the target is down or really unreachable,
459 not when it refuses the connection.
460 .It Cm ControlMaster
461 Enables the sharing of multiple sessions over a single network connection.
462 When set to
463 .Cm yes ,
464 .Xr ssh 1
465 will listen for connections on a control socket specified using the
466 .Cm ControlPath
467 argument.
468 Additional sessions can connect to this socket using the same
469 .Cm ControlPath
470 with
471 .Cm ControlMaster
472 set to
473 .Cm no
474 (the default).
475 These sessions will try to reuse the master instance's network connection
476 rather than initiating new ones, but will fall back to connecting normally
477 if the control socket does not exist, or is not listening.
478 .Pp
479 Setting this to
480 .Cm ask
481 will cause
482 .Xr ssh 1
483 to listen for control connections, but require confirmation using
484 .Xr ssh-askpass 1 .
485 If the
486 .Cm ControlPath
487 cannot be opened,
488 .Xr ssh 1
489 will continue without connecting to a master instance.
490 .Pp
491 X11 and
492 .Xr ssh-agent 1
493 forwarding is supported over these multiplexed connections, however the
494 display and agent forwarded will be the one belonging to the master
495 connection i.e. it is not possible to forward multiple displays or agents.
496 .Pp
497 Two additional options allow for opportunistic multiplexing: try to use a
498 master connection but fall back to creating a new one if one does not already
499 exist.
500 These options are:
501 .Cm auto
502 and
503 .Cm autoask .
504 The latter requires confirmation like the
505 .Cm ask
506 option.
507 .It Cm ControlPath
508 Specify the path to the control socket used for connection sharing as described
509 in the
510 .Cm ControlMaster
511 section above or the string
512 .Cm none
513 to disable connection sharing.
514 Arguments to
515 .Cm ControlPath
516 may use the tilde syntax to refer to a user's home directory
517 or the tokens described in the
518 .Sx TOKENS
519 section.
520 It is recommended that any
521 .Cm ControlPath
522 used for opportunistic connection sharing include
523 at least %h, %p, and %r (or alternatively %C) and be placed in a directory
524 that is not writable by other users.
525 This ensures that shared connections are uniquely identified.
526 .It Cm ControlPersist
527 When used in conjunction with
528 .Cm ControlMaster ,
529 specifies that the master connection should remain open
530 in the background (waiting for future client connections)
531 after the initial client connection has been closed.
532 If set to
533 .Cm no ,
534 then the master connection will not be placed into the background,
535 and will close as soon as the initial client connection is closed.
536 If set to
537 .Cm yes
538 or 0,
539 then the master connection will remain in the background indefinitely
540 (until killed or closed via a mechanism such as the
541 .Qq ssh -O exit ) .
542 If set to a time in seconds, or a time in any of the formats documented in
543 .Xr sshd_config 5 ,
544 then the backgrounded master connection will automatically terminate
545 after it has remained idle (with no client connections) for the
546 specified time.
547 .It Cm DynamicForward
548 Specifies that a TCP port on the local machine be forwarded
549 over the secure channel, and the application
550 protocol is then used to determine where to connect to from the
551 remote machine.
552 .Pp
553 The argument must be
554 .Sm off
555 .Oo Ar bind_address : Oc Ar port .
556 .Sm on
557 IPv6 addresses can be specified by enclosing addresses in square brackets.
558 By default, the local port is bound in accordance with the
559 .Cm GatewayPorts
560 setting.
561 However, an explicit
562 .Ar bind_address
563 may be used to bind the connection to a specific address.
564 The
565 .Ar bind_address
566 of
567 .Cm localhost
568 indicates that the listening port be bound for local use only, while an
569 empty address or
570 .Sq *
571 indicates that the port should be available from all interfaces.
572 .Pp
573 Currently the SOCKS4 and SOCKS5 protocols are supported, and
574 .Xr ssh 1
575 will act as a SOCKS server.
576 Multiple forwardings may be specified, and
577 additional forwardings can be given on the command line.
578 Only the superuser can forward privileged ports.
579 .It Cm EnableSSHKeysign
580 Setting this option to
581 .Cm yes
582 in the global client configuration file
583 .Pa /etc/ssh/ssh_config
584 enables the use of the helper program
585 .Xr ssh-keysign 8
586 during
587 .Cm HostbasedAuthentication .
588 The argument must be
589 .Cm yes
590 or
591 .Cm no
592 (the default).
593 This option should be placed in the non-hostspecific section.
594 See
595 .Xr ssh-keysign 8
596 for more information.
597 .It Cm EscapeChar
598 Sets the escape character (default:
599 .Ql ~ ) .
600 The escape character can also
601 be set on the command line.
602 The argument should be a single character,
603 .Ql ^
604 followed by a letter, or
605 .Cm none
606 to disable the escape
607 character entirely (making the connection transparent for binary
608 data).
609 .It Cm ExitOnForwardFailure
610 Specifies whether
611 .Xr ssh 1
612 should terminate the connection if it cannot set up all requested
613 dynamic, tunnel, local, and remote port forwardings, (e.g.\&
614 if either end is unable to bind and listen on a specified port).
615 Note that
616 .Cm ExitOnForwardFailure
617 does not apply to connections made over port forwardings and will not,
618 for example, cause
619 .Xr ssh 1
620 to exit if TCP connections to the ultimate forwarding destination fail.
621 The argument must be
622 .Cm yes
623 or
624 .Cm no
625 (the default).
626 .It Cm FingerprintHash
627 Specifies the hash algorithm used when displaying key fingerprints.
628 Valid options are:
629 .Cm md5
630 and
631 .Cm sha256
632 (the default).
633 .It Cm ForwardAgent
634 Specifies whether the connection to the authentication agent (if any)
635 will be forwarded to the remote machine.
636 The argument must be
637 .Cm yes
638 or
639 .Cm no
640 (the default).
641 .Pp
642 Agent forwarding should be enabled with caution.
643 Users with the ability to bypass file permissions on the remote host
644 (for the agent's Unix-domain socket)
645 can access the local agent through the forwarded connection.
646 An attacker cannot obtain key material from the agent,
647 however they can perform operations on the keys that enable them to
648 authenticate using the identities loaded into the agent.
649 .It Cm ForwardX11
650 Specifies whether X11 connections will be automatically redirected
651 over the secure channel and
652 .Ev DISPLAY
653 set.
654 The argument must be
655 .Cm yes
656 or
657 .Cm no
658 (the default).
659 .Pp
660 X11 forwarding should be enabled with caution.
661 Users with the ability to bypass file permissions on the remote host
662 (for the user's X11 authorization database)
663 can access the local X11 display through the forwarded connection.
664 An attacker may then be able to perform activities such as keystroke monitoring
665 if the
666 .Cm ForwardX11Trusted
667 option is also enabled.
668 .It Cm ForwardX11Timeout
669 Specify a timeout for untrusted X11 forwarding
670 using the format described in the
671 .Sx TIME FORMATS
672 section of
673 .Xr sshd_config 5 .
674 X11 connections received by
675 .Xr ssh 1
676 after this time will be refused.
677 The default is to disable untrusted X11 forwarding after twenty minutes has
678 elapsed.
679 .It Cm ForwardX11Trusted
680 If this option is set to
681 .Cm yes ,
682 remote X11 clients will have full access to the original X11 display.
683 .Pp
684 If this option is set to
685 .Cm no
686 (the default),
687 remote X11 clients will be considered untrusted and prevented
688 from stealing or tampering with data belonging to trusted X11
689 clients.
690 Furthermore, the
691 .Xr xauth 1
692 token used for the session will be set to expire after 20 minutes.
693 Remote clients will be refused access after this time.
694 .Pp
695 See the X11 SECURITY extension specification for full details on
696 the restrictions imposed on untrusted clients.
697 .It Cm GatewayPorts
698 Specifies whether remote hosts are allowed to connect to local
699 forwarded ports.
700 By default,
701 .Xr ssh 1
702 binds local port forwardings to the loopback address.
703 This prevents other remote hosts from connecting to forwarded ports.
704 .Cm GatewayPorts
705 can be used to specify that ssh
706 should bind local port forwardings to the wildcard address,
707 thus allowing remote hosts to connect to forwarded ports.
708 The argument must be
709 .Cm yes
710 or
711 .Cm no
712 (the default).
713 .It Cm GlobalKnownHostsFile
714 Specifies one or more files to use for the global
715 host key database, separated by whitespace.
716 The default is
717 .Pa /etc/ssh/ssh_known_hosts ,
718 .Pa /etc/ssh/ssh_known_hosts2 .
719 .It Cm GSSAPIAuthentication
720 Specifies whether user authentication based on GSSAPI is allowed.
721 The default is
722 .Cm no .
723 .It Cm GSSAPIDelegateCredentials
724 Forward (delegate) credentials to the server.
725 The default is
726 .Cm no .
727 .It Cm HashKnownHosts
728 Indicates that
729 .Xr ssh 1
730 should hash host names and addresses when they are added to
731 .Pa ~/.ssh/known_hosts .
732 These hashed names may be used normally by
733 .Xr ssh 1
734 and
735 .Xr sshd 8 ,
736 but they do not reveal identifying information should the file's contents
737 be disclosed.
738 The default is
739 .Cm no .
740 Note that existing names and addresses in known hosts files
741 will not be converted automatically,
742 but may be manually hashed using
743 .Xr ssh-keygen 1 .
744 .It Cm HostbasedAuthentication
745 Specifies whether to try rhosts based authentication with public key
746 authentication.
747 The argument must be
748 .Cm yes
749 or
750 .Cm no
751 (the default).
752 .It Cm HostbasedKeyTypes
753 Specifies the key types that will be used for hostbased authentication
754 as a comma-separated list of patterns.
755 Alternately if the specified value begins with a
756 .Sq +
757 character, then the specified key types will be appended to the default set
758 instead of replacing them.
759 If the specified value begins with a
760 .Sq -
761 character, then the specified key types (including wildcards) will be removed
762 from the default set instead of replacing them.
763 The default for this option is:
764 .Bd -literal -offset 3n
765 ecdsa-sha2-nistp256-cert-v01@openssh.com,
766 ecdsa-sha2-nistp384-cert-v01@openssh.com,
767 ecdsa-sha2-nistp521-cert-v01@openssh.com,
768 ssh-ed25519-cert-v01@openssh.com,
769 rsa-sha2-512-cert-v01@openssh.com,rsa-sha2-256-cert-v01@openssh.com,
770 ssh-rsa-cert-v01@openssh.com,
771 ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
772 ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa
773 .Ed
774 .Pp
775 The
776 .Fl Q
777 option of
778 .Xr ssh 1
779 may be used to list supported key types.
780 .It Cm HostKeyAlgorithms
781 Specifies the host key algorithms
782 that the client wants to use in order of preference.
783 Alternately if the specified value begins with a
784 .Sq +
785 character, then the specified key types will be appended to the default set
786 instead of replacing them.
787 If the specified value begins with a
788 .Sq -
789 character, then the specified key types (including wildcards) will be removed
790 from the default set instead of replacing them.
791 The default for this option is:
792 .Bd -literal -offset 3n
793 ecdsa-sha2-nistp256-cert-v01@openssh.com,
794 ecdsa-sha2-nistp384-cert-v01@openssh.com,
795 ecdsa-sha2-nistp521-cert-v01@openssh.com,
796 ssh-ed25519-cert-v01@openssh.com,
797 rsa-sha2-512-cert-v01@openssh.com,rsa-sha2-256-cert-v01@openssh.com,
798 ssh-rsa-cert-v01@openssh.com,
799 ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
800 ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa
801 .Ed
802 .Pp
803 If hostkeys are known for the destination host then this default is modified
804 to prefer their algorithms.
805 .Pp
806 The list of available key types may also be obtained using
807 .Qq ssh -Q key .
808 .It Cm HostKeyAlias
809 Specifies an alias that should be used instead of the
810 real host name when looking up or saving the host key
811 in the host key database files and when validating host certificates.
812 This option is useful for tunneling SSH connections
813 or for multiple servers running on a single host.
814 .It Cm HostName
815 Specifies the real host name to log into.
816 This can be used to specify nicknames or abbreviations for hosts.
817 Arguments to
818 .Cm HostName
819 accept the tokens described in the
820 .Sx TOKENS
821 section.
822 Numeric IP addresses are also permitted (both on the command line and in
823 .Cm HostName
824 specifications).
825 The default is the name given on the command line.
826 .It Cm IdentitiesOnly
827 Specifies that
828 .Xr ssh 1
829 should only use the authentication identity and certificate files explicitly
830 configured in the
831 .Nm
832 files
833 or passed on the
834 .Xr ssh 1
835 command-line,
836 even if
837 .Xr ssh-agent 1
838 or a
839 .Cm PKCS11Provider
840 offers more identities.
841 The argument to this keyword must be
842 .Cm yes
843 or
844 .Cm no
845 (the default).
846 This option is intended for situations where ssh-agent
847 offers many different identities.
848 .It Cm IdentityAgent
849 Specifies the
850 .Ux Ns -domain
851 socket used to communicate with the authentication agent.
852 .Pp
853 This option overrides the
854 .Ev SSH_AUTH_SOCK
855 environment variable and can be used to select a specific agent.
856 Setting the socket name to
857 .Cm none
858 disables the use of an authentication agent.
859 If the string
860 .Qq SSH_AUTH_SOCK
861 is specified, the location of the socket will be read from the
862 .Ev SSH_AUTH_SOCK
863 environment variable.
864 .Pp
865 Arguments to
866 .Cm IdentityAgent
867 may use the tilde syntax to refer to a user's home directory
868 or the tokens described in the
869 .Sx TOKENS
870 section.
871 .It Cm IdentityFile
872 Specifies a file from which the user's DSA, ECDSA, Ed25519 or RSA authentication
873 identity is read.
874 The default is
875 .Pa ~/.ssh/id_dsa ,
876 .Pa ~/.ssh/id_ecdsa ,
877 .Pa ~/.ssh/id_ed25519
878 and
879 .Pa ~/.ssh/id_rsa .
880 Additionally, any identities represented by the authentication agent
881 will be used for authentication unless
882 .Cm IdentitiesOnly
883 is set.
884 If no certificates have been explicitly specified by
885 .Cm CertificateFile ,
886 .Xr ssh 1
887 will try to load certificate information from the filename obtained by
888 appending
889 .Pa -cert.pub
890 to the path of a specified
891 .Cm IdentityFile .
892 .Pp
893 Arguments to
894 .Cm IdentityFile
895 may use the tilde syntax to refer to a user's home directory
896 or the tokens described in the
897 .Sx TOKENS
898 section.
899 .Pp
900 It is possible to have
901 multiple identity files specified in configuration files; all these
902 identities will be tried in sequence.
903 Multiple
904 .Cm IdentityFile
905 directives will add to the list of identities tried (this behaviour
906 differs from that of other configuration directives).
907 .Pp
908 .Cm IdentityFile
909 may be used in conjunction with
910 .Cm IdentitiesOnly
911 to select which identities in an agent are offered during authentication.
912 .Cm IdentityFile
913 may also be used in conjunction with
914 .Cm CertificateFile
915 in order to provide any certificate also needed for authentication with
916 the identity.
917 .It Cm IgnoreUnknown
918 Specifies a pattern-list of unknown options to be ignored if they are
919 encountered in configuration parsing.
920 This may be used to suppress errors if
921 .Nm
922 contains options that are unrecognised by
923 .Xr ssh 1 .
924 It is recommended that
925 .Cm IgnoreUnknown
926 be listed early in the configuration file as it will not be applied
927 to unknown options that appear before it.
928 .It Cm Include
929 Include the specified configuration file(s).
930 Multiple pathnames may be specified and each pathname may contain
931 .Xr glob 7
932 wildcards and, for user configurations, shell-like
933 .Sq ~
934 references to user home directories.
935 Files without absolute paths are assumed to be in
936 .Pa ~/.ssh
937 if included in a user configuration file or
938 .Pa /etc/ssh
939 if included from the system configuration file.
940 .Cm Include
941 directive may appear inside a
942 .Cm Match
943 or
944 .Cm Host
945 block
946 to perform conditional inclusion.
947 .It Cm IPQoS
948 Specifies the IPv4 type-of-service or DSCP class for connections.
949 Accepted values are
950 .Cm af11 ,
951 .Cm af12 ,
952 .Cm af13 ,
953 .Cm af21 ,
954 .Cm af22 ,
955 .Cm af23 ,
956 .Cm af31 ,
957 .Cm af32 ,
958 .Cm af33 ,
959 .Cm af41 ,
960 .Cm af42 ,
961 .Cm af43 ,
962 .Cm cs0 ,
963 .Cm cs1 ,
964 .Cm cs2 ,
965 .Cm cs3 ,
966 .Cm cs4 ,
967 .Cm cs5 ,
968 .Cm cs6 ,
969 .Cm cs7 ,
970 .Cm ef ,
971 .Cm lowdelay ,
972 .Cm throughput ,
973 .Cm reliability ,
974 a numeric value, or
975 .Cm none
976 to use the operating system default.
977 This option may take one or two arguments, separated by whitespace.
978 If one argument is specified, it is used as the packet class unconditionally.
979 If two values are specified, the first is automatically selected for
980 interactive sessions and the second for non-interactive sessions.
981 The default is
982 .Cm af21
983 (Low-Latency Data)
984 for interactive sessions and
985 .Cm cs1
986 (Lower Effort)
987 for non-interactive sessions.
988 .It Cm KbdInteractiveAuthentication
989 Specifies whether to use keyboard-interactive authentication.
990 The argument to this keyword must be
991 .Cm yes
992 (the default)
993 or
994 .Cm no .
995 .It Cm KbdInteractiveDevices
996 Specifies the list of methods to use in keyboard-interactive authentication.
997 Multiple method names must be comma-separated.
998 The default is to use the server specified list.
999 The methods available vary depending on what the server supports.
1000 For an OpenSSH server,
1001 it may be zero or more of:
1002 .Cm bsdauth
1003 and
1004 .Cm pam .
1005 .It Cm KexAlgorithms
1006 Specifies the available KEX (Key Exchange) algorithms.
1007 Multiple algorithms must be comma-separated.
1008 Alternately if the specified value begins with a
1009 .Sq +
1010 character, then the specified methods will be appended to the default set
1011 instead of replacing them.
1012 If the specified value begins with a
1013 .Sq -
1014 character, then the specified methods (including wildcards) will be removed
1015 from the default set instead of replacing them.
1016 The default is:
1017 .Bd -literal -offset indent
1018 curve25519-sha256,curve25519-sha256@libssh.org,
1019 ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,
1020 diffie-hellman-group-exchange-sha256,
1021 diffie-hellman-group16-sha512,
1022 diffie-hellman-group18-sha512,
1023 diffie-hellman-group-exchange-sha1,
1024 diffie-hellman-group14-sha256,
1025 diffie-hellman-group14-sha1
1026 .Ed
1027 .Pp
1028 The list of available key exchange algorithms may also be obtained using
1029 .Qq ssh -Q kex .
1030 .It Cm LocalCommand
1031 Specifies a command to execute on the local machine after successfully
1032 connecting to the server.
1033 The command string extends to the end of the line, and is executed with
1034 the user's shell.
1035 Arguments to
1036 .Cm LocalCommand
1037 accept the tokens described in the
1038 .Sx TOKENS
1039 section.
1040 .Pp
1041 The command is run synchronously and does not have access to the
1042 session of the
1043 .Xr ssh 1
1044 that spawned it.
1045 It should not be used for interactive commands.
1046 .Pp
1047 This directive is ignored unless
1048 .Cm PermitLocalCommand
1049 has been enabled.
1050 .It Cm LocalForward
1051 Specifies that a TCP port on the local machine be forwarded over
1052 the secure channel to the specified host and port from the remote machine.
1053 The first argument must be
1054 .Sm off
1055 .Oo Ar bind_address : Oc Ar port
1056 .Sm on
1057 and the second argument must be
1058 .Ar host : Ns Ar hostport .
1059 IPv6 addresses can be specified by enclosing addresses in square brackets.
1060 Multiple forwardings may be specified, and additional forwardings can be
1061 given on the command line.
1062 Only the superuser can forward privileged ports.
1063 By default, the local port is bound in accordance with the
1064 .Cm GatewayPorts
1065 setting.
1066 However, an explicit
1067 .Ar bind_address
1068 may be used to bind the connection to a specific address.
1069 The
1070 .Ar bind_address
1071 of
1072 .Cm localhost
1073 indicates that the listening port be bound for local use only, while an
1074 empty address or
1075 .Sq *
1076 indicates that the port should be available from all interfaces.
1077 .It Cm LogLevel
1078 Gives the verbosity level that is used when logging messages from
1079 .Xr ssh 1 .
1080 The possible values are:
1081 QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
1082 The default is INFO.
1083 DEBUG and DEBUG1 are equivalent.
1084 DEBUG2 and DEBUG3 each specify higher levels of verbose output.
1085 .It Cm MACs
1086 Specifies the MAC (message authentication code) algorithms
1087 in order of preference.
1088 The MAC algorithm is used for data integrity protection.
1089 Multiple algorithms must be comma-separated.
1090 If the specified value begins with a
1091 .Sq +
1092 character, then the specified algorithms will be appended to the default set
1093 instead of replacing them.
1094 If the specified value begins with a
1095 .Sq -
1096 character, then the specified algorithms (including wildcards) will be removed
1097 from the default set instead of replacing them.
1098 .Pp
1099 The algorithms that contain
1100 .Qq -etm
1101 calculate the MAC after encryption (encrypt-then-mac).
1102 These are considered safer and their use recommended.
1103 .Pp
1104 The default is:
1105 .Bd -literal -offset indent
1106 umac-64-etm@openssh.com,umac-128-etm@openssh.com,
1107 hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,
1108 hmac-sha1-etm@openssh.com,
1109 umac-64@openssh.com,umac-128@openssh.com,
1110 hmac-sha2-256,hmac-sha2-512,hmac-sha1
1111 .Ed
1112 .Pp
1113 The list of available MAC algorithms may also be obtained using
1114 .Qq ssh -Q mac .
1115 .It Cm NoHostAuthenticationForLocalhost
1116 Disable host authentication for localhost (loopback addresses).
1117 The argument to this keyword must be
1118 .Cm yes
1119 or
1120 .Cm no
1121 (the default).
1122 .It Cm NumberOfPasswordPrompts
1123 Specifies the number of password prompts before giving up.
1124 The argument to this keyword must be an integer.
1125 The default is 3.
1126 .It Cm PasswordAuthentication
1127 Specifies whether to use password authentication.
1128 The argument to this keyword must be
1129 .Cm yes
1130 (the default)
1131 or
1132 .Cm no .
1133 .It Cm PermitLocalCommand
1134 Allow local command execution via the
1135 .Ic LocalCommand
1136 option or using the
1137 .Ic !\& Ns Ar command
1138 escape sequence in
1139 .Xr ssh 1 .
1140 The argument must be
1141 .Cm yes
1142 or
1143 .Cm no
1144 (the default).
1145 .It Cm PKCS11Provider
1146 Specifies which PKCS#11 provider to use.
1147 The argument to this keyword is the PKCS#11 shared library
1148 .Xr ssh 1
1149 should use to communicate with a PKCS#11 token providing the user's
1150 private RSA key.
1151 .It Cm Port
1152 Specifies the port number to connect on the remote host.
1153 The default is 22.
1154 .It Cm PreferredAuthentications
1155 Specifies the order in which the client should try authentication methods.
1156 This allows a client to prefer one method (e.g.\&
1157 .Cm keyboard-interactive )
1158 over another method (e.g.\&
1159 .Cm password ) .
1160 The default is:
1161 .Bd -literal -offset indent
1162 gssapi-with-mic,hostbased,publickey,
1163 keyboard-interactive,password
1164 .Ed
1165 .It Cm ProxyCommand
1166 Specifies the command to use to connect to the server.
1167 The command
1168 string extends to the end of the line, and is executed
1169 using the user's shell
1170 .Ql exec
1171 directive to avoid a lingering shell process.
1172 .Pp
1173 Arguments to
1174 .Cm ProxyCommand
1175 accept the tokens described in the
1176 .Sx TOKENS
1177 section.
1178 The command can be basically anything,
1179 and should read from its standard input and write to its standard output.
1180 It should eventually connect an
1181 .Xr sshd 8
1182 server running on some machine, or execute
1183 .Ic sshd -i
1184 somewhere.
1185 Host key management will be done using the
1186 HostName of the host being connected (defaulting to the name typed by
1187 the user).
1188 Setting the command to
1189 .Cm none
1190 disables this option entirely.
1191 Note that
1192 .Cm CheckHostIP
1193 is not available for connects with a proxy command.
1194 .Pp
1195 This directive is useful in conjunction with
1196 .Xr nc 1
1197 and its proxy support.
1198 For example, the following directive would connect via an HTTP proxy at
1199 192.0.2.0:
1200 .Bd -literal -offset 3n
1201 ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p
1202 .Ed
1203 .It Cm ProxyJump
1204 Specifies one or more jump proxies as either
1205 .Xo
1206 .Sm off
1207 .Op Ar user No @
1208 .Ar host
1209 .Op : Ns Ar port
1210 .Sm on
1211 or an ssh URI
1212 .Xc .
1213 Multiple proxies may be separated by comma characters and will be visited
1214 sequentially.
1215 Setting this option will cause
1216 .Xr ssh 1
1217 to connect to the target host by first making a
1218 .Xr ssh 1
1219 connection to the specified
1220 .Cm ProxyJump
1221 host and then establishing a
1222 TCP forwarding to the ultimate target from there.
1223 .Pp
1224 Note that this option will compete with the
1225 .Cm ProxyCommand
1226 option - whichever is specified first will prevent later instances of the
1227 other from taking effect.
1228 .It Cm ProxyUseFdpass
1229 Specifies that
1230 .Cm ProxyCommand
1231 will pass a connected file descriptor back to
1232 .Xr ssh 1
1233 instead of continuing to execute and pass data.
1234 The default is
1235 .Cm no .
1236 .It Cm PubkeyAcceptedKeyTypes
1237 Specifies the key types that will be used for public key authentication
1238 as a comma-separated list of patterns.
1239 Alternately if the specified value begins with a
1240 .Sq +
1241 character, then the key types after it will be appended to the default
1242 instead of replacing it.
1243 If the specified value begins with a
1244 .Sq -
1245 character, then the specified key types (including wildcards) will be removed
1246 from the default set instead of replacing them.
1247 The default for this option is:
1248 .Bd -literal -offset 3n
1249 ecdsa-sha2-nistp256-cert-v01@openssh.com,
1250 ecdsa-sha2-nistp384-cert-v01@openssh.com,
1251 ecdsa-sha2-nistp521-cert-v01@openssh.com,
1252 ssh-ed25519-cert-v01@openssh.com,
1253 rsa-sha2-512-cert-v01@openssh.com,rsa-sha2-256-cert-v01@openssh.com,
1254 ssh-rsa-cert-v01@openssh.com,
1255 ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
1256 ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa
1257 .Ed
1258 .Pp
1259 The list of available key types may also be obtained using
1260 .Qq ssh -Q key .
1261 .It Cm PubkeyAuthentication
1262 Specifies whether to try public key authentication.
1263 The argument to this keyword must be
1264 .Cm yes
1265 (the default)
1266 or
1267 .Cm no .
1268 .It Cm RekeyLimit
1269 Specifies the maximum amount of data that may be transmitted before the
1270 session key is renegotiated, optionally followed a maximum amount of
1271 time that may pass before the session key is renegotiated.
1272 The first argument is specified in bytes and may have a suffix of
1273 .Sq K ,
1274 .Sq M ,
1275 or
1276 .Sq G
1277 to indicate Kilobytes, Megabytes, or Gigabytes, respectively.
1278 The default is between
1279 .Sq 1G
1280 and
1281 .Sq 4G ,
1282 depending on the cipher.
1283 The optional second value is specified in seconds and may use any of the
1284 units documented in the
1285 .Sx TIME FORMATS
1286 section of
1287 .Xr sshd_config 5 .
1288 The default value for
1289 .Cm RekeyLimit
1290 is
1291 .Cm default none ,
1292 which means that rekeying is performed after the cipher's default amount
1293 of data has been sent or received and no time based rekeying is done.
1294 .It Cm RemoteCommand
1295 Specifies a command to execute on the remote machine after successfully
1296 connecting to the server.
1297 The command string extends to the end of the line, and is executed with
1298 the user's shell.
1299 Arguments to
1300 .Cm RemoteCommand
1301 accept the tokens described in the
1302 .Sx TOKENS
1303 section.
1304 .It Cm RemoteForward
1305 Specifies that a TCP port on the remote machine be forwarded over
1306 the secure channel.
1307 The remote port may either be forwarded to a specified host and port
1308 from the local machine, or may act as a SOCKS 4/5 proxy that allows a remote
1309 client to connect to arbitrary destinations from the local machine.
1310 The first argument must be
1311 .Sm off
1312 .Oo Ar bind_address : Oc Ar port
1313 .Sm on
1314 If forwarding to a specific destination then the second argument must be
1315 .Ar host : Ns Ar hostport ,
1316 otherwise if no destination argument is specified then the remote forwarding
1317 will be established as a SOCKS proxy.
1318 .Pp
1319 IPv6 addresses can be specified by enclosing addresses in square brackets.
1320 Multiple forwardings may be specified, and additional
1321 forwardings can be given on the command line.
1322 Privileged ports can be forwarded only when
1323 logging in as root on the remote machine.
1324 .Pp
1325 If the
1326 .Ar port
1327 argument is 0,
1328 the listen port will be dynamically allocated on the server and reported
1329 to the client at run time.
1330 .Pp
1331 If the
1332 .Ar bind_address
1333 is not specified, the default is to only bind to loopback addresses.
1334 If the
1335 .Ar bind_address
1336 is
1337 .Ql *
1338 or an empty string, then the forwarding is requested to listen on all
1339 interfaces.
1340 Specifying a remote
1341 .Ar bind_address
1342 will only succeed if the server's
1343 .Cm GatewayPorts
1344 option is enabled (see
1345 .Xr sshd_config 5 ) .
1346 .It Cm RequestTTY
1347 Specifies whether to request a pseudo-tty for the session.
1348 The argument may be one of:
1349 .Cm no
1350 (never request a TTY),
1351 .Cm yes
1352 (always request a TTY when standard input is a TTY),
1353 .Cm force
1354 (always request a TTY) or
1355 .Cm auto
1356 (request a TTY when opening a login session).
1357 This option mirrors the
1358 .Fl t
1359 and
1360 .Fl T
1361 flags for
1362 .Xr ssh 1 .
1363 .It Cm RevokedHostKeys
1364 Specifies revoked host public keys.
1365 Keys listed in this file will be refused for host authentication.
1366 Note that if this file does not exist or is not readable,
1367 then host authentication will be refused for all hosts.
1368 Keys may be specified as a text file, listing one public key per line, or as
1369 an OpenSSH Key Revocation List (KRL) as generated by
1370 .Xr ssh-keygen 1 .
1371 For more information on KRLs, see the KEY REVOCATION LISTS section in
1372 .Xr ssh-keygen 1 .
1373 .It Cm SendEnv
1374 Specifies what variables from the local
1375 .Xr environ 7
1376 should be sent to the server.
1377 The server must also support it, and the server must be configured to
1378 accept these environment variables.
1379 Note that the
1380 .Ev TERM
1381 environment variable is always sent whenever a
1382 pseudo-terminal is requested as it is required by the protocol.
1383 Refer to
1384 .Cm AcceptEnv
1385 in
1386 .Xr sshd_config 5
1387 for how to configure the server.
1388 Variables are specified by name, which may contain wildcard characters.
1389 Multiple environment variables may be separated by whitespace or spread
1390 across multiple
1391 .Cm SendEnv
1392 directives.
1393 .Pp
1394 See
1395 .Sx PATTERNS
1396 for more information on patterns.
1397 .Pp
1398 It is possible to clear previously set
1399 .Cm SendEnv
1400 variable names by prefixing patterns with
1401 .Pa - .
1402 The default is not to send any environment variables.
1403 .It Cm ServerAliveCountMax
1404 Sets the number of server alive messages (see below) which may be
1405 sent without
1406 .Xr ssh 1
1407 receiving any messages back from the server.
1408 If this threshold is reached while server alive messages are being sent,
1409 ssh will disconnect from the server, terminating the session.
1410 It is important to note that the use of server alive messages is very
1411 different from
1412 .Cm TCPKeepAlive
1413 (below).
1414 The server alive messages are sent through the encrypted channel
1415 and therefore will not be spoofable.
1416 The TCP keepalive option enabled by
1417 .Cm TCPKeepAlive
1418 is spoofable.
1419 The server alive mechanism is valuable when the client or
1420 server depend on knowing when a connection has become inactive.
1421 .Pp
1422 The default value is 3.
1423 If, for example,
1424 .Cm ServerAliveInterval
1425 (see below) is set to 15 and
1426 .Cm ServerAliveCountMax
1427 is left at the default, if the server becomes unresponsive,
1428 ssh will disconnect after approximately 45 seconds.
1429 .It Cm ServerAliveInterval
1430 Sets a timeout interval in seconds after which if no data has been received
1431 from the server,
1432 .Xr ssh 1
1433 will send a message through the encrypted
1434 channel to request a response from the server.
1435 The default
1436 is 0, indicating that these messages will not be sent to the server.
1437 .It Cm SetEnv
1438 Directly specify one or more environment variables and their contents to
1439 be sent to the server.
1440 Similarly to
1441 .Cm SendEnv ,
1442 the server must be prepared to accept the environment variable.
1443 .It Cm StreamLocalBindMask
1444 Sets the octal file creation mode mask
1445 .Pq umask
1446 used when creating a Unix-domain socket file for local or remote
1447 port forwarding.
1448 This option is only used for port forwarding to a Unix-domain socket file.
1449 .Pp
1450 The default value is 0177, which creates a Unix-domain socket file that is
1451 readable and writable only by the owner.
1452 Note that not all operating systems honor the file mode on Unix-domain
1453 socket files.
1454 .It Cm StreamLocalBindUnlink
1455 Specifies whether to remove an existing Unix-domain socket file for local
1456 or remote port forwarding before creating a new one.
1457 If the socket file already exists and
1458 .Cm StreamLocalBindUnlink
1459 is not enabled,
1460 .Nm ssh
1461 will be unable to forward the port to the Unix-domain socket file.
1462 This option is only used for port forwarding to a Unix-domain socket file.
1463 .Pp
1464 The argument must be
1465 .Cm yes
1466 or
1467 .Cm no
1468 (the default).
1469 .It Cm StrictHostKeyChecking
1470 If this flag is set to
1471 .Cm yes ,
1472 .Xr ssh 1
1473 will never automatically add host keys to the
1474 .Pa ~/.ssh/known_hosts
1475 file, and refuses to connect to hosts whose host key has changed.
1476 This provides maximum protection against man-in-the-middle (MITM) attacks,
1477 though it can be annoying when the
1478 .Pa /etc/ssh/ssh_known_hosts
1479 file is poorly maintained or when connections to new hosts are
1480 frequently made.
1481 This option forces the user to manually
1482 add all new hosts.
1483 .Pp
1484 If this flag is set to
1485 .Dq accept-new
1486 then ssh will automatically add new host keys to the user
1487 known hosts files, but will not permit connections to hosts with
1488 changed host keys.
1489 If this flag is set to
1490 .Dq no
1491 or
1492 .Dq off ,
1493 ssh will automatically add new host keys to the user known hosts files
1494 and allow connections to hosts with changed hostkeys to proceed,
1495 subject to some restrictions.
1496 If this flag is set to
1497 .Cm ask
1498 (the default),
1499 new host keys
1500 will be added to the user known host files only after the user
1501 has confirmed that is what they really want to do, and
1502 ssh will refuse to connect to hosts whose host key has changed.
1503 The host keys of
1504 known hosts will be verified automatically in all cases.
1505 .It Cm SyslogFacility
1506 Gives the facility code that is used when logging messages from
1507 .Xr ssh 1 .
1508 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
1509 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
1510 The default is USER.
1511 .It Cm TCPKeepAlive
1512 Specifies whether the system should send TCP keepalive messages to the
1513 other side.
1514 If they are sent, death of the connection or crash of one
1515 of the machines will be properly noticed.
1516 However, this means that
1517 connections will die if the route is down temporarily, and some people
1518 find it annoying.
1519 .Pp
1520 The default is
1521 .Cm yes
1522 (to send TCP keepalive messages), and the client will notice
1523 if the network goes down or the remote host dies.
1524 This is important in scripts, and many users want it too.
1525 .Pp
1526 To disable TCP keepalive messages, the value should be set to
1527 .Cm no .
1528 See also
1529 .Cm ServerAliveInterval
1530 for protocol-level keepalives.
1531 .It Cm Tunnel
1532 Request
1533 .Xr tun 4
1534 device forwarding between the client and the server.
1535 The argument must be
1536 .Cm yes ,
1537 .Cm point-to-point
1538 (layer 3),
1539 .Cm ethernet
1540 (layer 2),
1541 or
1542 .Cm no
1543 (the default).
1544 Specifying
1545 .Cm yes
1546 requests the default tunnel mode, which is
1547 .Cm point-to-point .
1548 .It Cm TunnelDevice
1549 Specifies the
1550 .Xr tun 4
1551 devices to open on the client
1552 .Pq Ar local_tun
1553 and the server
1554 .Pq Ar remote_tun .
1555 .Pp
1556 The argument must be
1557 .Sm off
1558 .Ar local_tun Op : Ar remote_tun .
1559 .Sm on
1560 The devices may be specified by numerical ID or the keyword
1561 .Cm any ,
1562 which uses the next available tunnel device.
1563 If
1564 .Ar remote_tun
1565 is not specified, it defaults to
1566 .Cm any .
1567 The default is
1568 .Cm any:any .
1569 .It Cm UpdateHostKeys
1570 Specifies whether
1571 .Xr ssh 1
1572 should accept notifications of additional hostkeys from the server sent
1573 after authentication has completed and add them to
1574 .Cm UserKnownHostsFile .
1575 The argument must be
1576 .Cm yes ,
1577 .Cm no
1578 (the default) or
1579 .Cm ask .
1580 Enabling this option allows learning alternate hostkeys for a server
1581 and supports graceful key rotation by allowing a server to send replacement
1582 public keys before old ones are removed.
1583 Additional hostkeys are only accepted if the key used to authenticate the
1584 host was already trusted or explicitly accepted by the user.
1585 If
1586 .Cm UpdateHostKeys
1587 is set to
1588 .Cm ask ,
1589 then the user is asked to confirm the modifications to the known_hosts file.
1590 Confirmation is currently incompatible with
1591 .Cm ControlPersist ,
1592 and will be disabled if it is enabled.
1593 .Pp
1594 Presently, only
1595 .Xr sshd 8
1596 from OpenSSH 6.8 and greater support the
1597 .Qq hostkeys@openssh.com
1598 protocol extension used to inform the client of all the server's hostkeys.
1599 .It Cm User
1600 Specifies the user to log in as.
1601 This can be useful when a different user name is used on different machines.
1602 This saves the trouble of
1603 having to remember to give the user name on the command line.
1604 .It Cm UserKnownHostsFile
1605 Specifies one or more files to use for the user
1606 host key database, separated by whitespace.
1607 The default is
1608 .Pa ~/.ssh/known_hosts ,
1609 .Pa ~/.ssh/known_hosts2 .
1610 .It Cm VerifyHostKeyDNS
1611 Specifies whether to verify the remote key using DNS and SSHFP resource
1612 records.
1613 If this option is set to
1614 .Cm yes ,
1615 the client will implicitly trust keys that match a secure fingerprint
1616 from DNS.
1617 Insecure fingerprints will be handled as if this option was set to
1618 .Cm ask .
1619 If this option is set to
1620 .Cm ask ,
1621 information on fingerprint match will be displayed, but the user will still
1622 need to confirm new host keys according to the
1623 .Cm StrictHostKeyChecking
1624 option.
1625 The default is
1626 .Cm yes
1627 if compiled with LDNS and
1628 .Cm no
1629 otherwise.
1630 .Pp
1631 See also
1632 .Sx VERIFYING HOST KEYS
1633 in
1634 .Xr ssh 1 .
1635 .It Cm VersionAddendum
1636 Specifies a string to append to the regular version string to identify
1637 OS- or site-specific modifications.
1638 The default is
1639 .Dq FreeBSD-20180909 .
1640 The value
1641 .Cm none
1642 may be used to disable this.
1643 .It Cm VisualHostKey
1644 If this flag is set to
1645 .Cm yes ,
1646 an ASCII art representation of the remote host key fingerprint is
1647 printed in addition to the fingerprint string at login and
1648 for unknown host keys.
1649 If this flag is set to
1650 .Cm no
1651 (the default),
1652 no fingerprint strings are printed at login and
1653 only the fingerprint string will be printed for unknown host keys.
1654 .It Cm XAuthLocation
1655 Specifies the full pathname of the
1656 .Xr xauth 1
1657 program.
1658 The default is
1659 .Pa /usr/local/bin/xauth .
1660 .El
1661 .Sh PATTERNS
1662 A
1663 .Em pattern
1664 consists of zero or more non-whitespace characters,
1665 .Sq *
1666 (a wildcard that matches zero or more characters),
1667 or
1668 .Sq ?\&
1669 (a wildcard that matches exactly one character).
1670 For example, to specify a set of declarations for any host in the
1671 .Qq .co.uk
1672 set of domains,
1673 the following pattern could be used:
1674 .Pp
1675 .Dl Host *.co.uk
1676 .Pp
1677 The following pattern
1678 would match any host in the 192.168.0.[0-9] network range:
1679 .Pp
1680 .Dl Host 192.168.0.?
1681 .Pp
1682 A
1683 .Em pattern-list
1684 is a comma-separated list of patterns.
1685 Patterns within pattern-lists may be negated
1686 by preceding them with an exclamation mark
1687 .Pq Sq !\& .
1688 For example,
1689 to allow a key to be used from anywhere within an organization
1690 except from the
1691 .Qq dialup
1692 pool,
1693 the following entry (in authorized_keys) could be used:
1694 .Pp
1695 .Dl from=\&"!*.dialup.example.com,*.example.com\&"
1696 .Pp
1697 Note that a negated match will never produce a positive result by itself.
1698 For example, attempting to match
1699 .Qq host3
1700 against the following pattern-list will fail:
1701 .Pp
1702 .Dl from=\&"!host1,!host2\&"
1703 .Pp
1704 The solution here is to include a term that will yield a positive match,
1705 such as a wildcard:
1706 .Pp
1707 .Dl from=\&"!host1,!host2,*\&"
1708 .Sh TOKENS
1709 Arguments to some keywords can make use of tokens,
1710 which are expanded at runtime:
1711 .Pp
1712 .Bl -tag -width XXXX -offset indent -compact
1713 .It %%
1714 A literal
1715 .Sq % .
1716 .It \&%C
1717 Hash of %l%h%p%r.
1718 .It %d
1719 Local user's home directory.
1720 .It %h
1721 The remote hostname.
1722 .It %i
1723 The local user ID.
1724 .It %L
1725 The local hostname.
1726 .It %l
1727 The local hostname, including the domain name.
1728 .It %n
1729 The original remote hostname, as given on the command line.
1730 .It %p
1731 The remote port.
1732 .It %r
1733 The remote username.
1734 .It \&%T
1735 The local
1736 .Xr tun 4
1737 or
1738 .Xr tap 4
1739 network interface assigned if
1740 tunnel forwarding was requested, or
1741 .Qq NONE
1742 otherwise.
1743 .It %u
1744 The local username.
1745 .El
1746 .Pp
1747 .Cm Match exec
1748 accepts the tokens %%, %h, %i, %L, %l, %n, %p, %r, and %u.
1749 .Pp
1750 .Cm CertificateFile
1751 accepts the tokens %%, %d, %h, %i, %l, %r, and %u.
1752 .Pp
1753 .Cm ControlPath
1754 accepts the tokens %%, %C, %h, %i, %L, %l, %n, %p, %r, and %u.
1755 .Pp
1756 .Cm HostName
1757 accepts the tokens %% and %h.
1758 .Pp
1759 .Cm IdentityAgent
1760 and
1761 .Cm IdentityFile
1762 accept the tokens %%, %d, %h, %i, %l, %r, and %u.
1763 .Pp
1764 .Cm LocalCommand
1765 accepts the tokens %%, %C, %d, %h, %i, %l, %n, %p, %r, %T, and %u.
1766 .Pp
1767 .Cm ProxyCommand
1768 accepts the tokens %%, %h, %p, and %r.
1769 .Pp
1770 .Cm RemoteCommand
1771 accepts the tokens %%, %C, %d, %h, %i, %l, %n, %p, %r, and %u.
1772 .Sh FILES
1773 .Bl -tag -width Ds
1774 .It Pa ~/.ssh/config
1775 This is the per-user configuration file.
1776 The format of this file is described above.
1777 This file is used by the SSH client.
1778 Because of the potential for abuse, this file must have strict permissions:
1779 read/write for the user, and not accessible by others.
1780 .It Pa /etc/ssh/ssh_config
1781 Systemwide configuration file.
1782 This file provides defaults for those
1783 values that are not specified in the user's configuration file, and
1784 for those users who do not have a configuration file.
1785 This file must be world-readable.
1786 .El
1787 .Sh SEE ALSO
1788 .Xr ssh 1
1789 .Sh AUTHORS
1790 .An -nosplit
1791 OpenSSH is a derivative of the original and free
1792 ssh 1.2.12 release by
1793 .An Tatu Ylonen .
1794 .An Aaron Campbell , Bob Beck , Markus Friedl ,
1795 .An Niels Provos , Theo de Raadt
1796 and
1797 .An Dug Song
1798 removed many bugs, re-added newer features and
1799 created OpenSSH.
1800 .An Markus Friedl
1801 contributed the support for SSH protocol versions 1.5 and 2.0.