blob: 9677ef079a5f849cbd0fbc751defe20dfffb08ec [file] [log] [blame]
Ben Lindstrom9f049032002-06-21 00:59:05 +00001.\"
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.\"
jmc@openbsd.orgb1ba15f2014-10-09 06:21:31 +000036.\" $OpenBSD: ssh_config.5,v 1.194 2014/10/09 06:21:31 jmc Exp $
37.Dd $Mdocdate: October 9 2014 $
Ben Lindstrom9f049032002-06-21 00:59:05 +000038.Dt SSH_CONFIG 5
39.Os
40.Sh NAME
41.Nm ssh_config
42.Nd OpenSSH SSH client configuration files
43.Sh SYNOPSIS
Darren Tuckerbf6b3282007-02-19 22:08:17 +110044.Nm ~/.ssh/config
45.Nm /etc/ssh/ssh_config
Ben Lindstrom9f049032002-06-21 00:59:05 +000046.Sh DESCRIPTION
Damien Miller45ee2b92006-03-15 11:56:18 +110047.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +000048obtains configuration data from the following sources in
49the following order:
Damien Miller5c853b52006-03-15 11:37:02 +110050.Pp
Ben Lindstrom479b4762002-08-20 19:04:51 +000051.Bl -enum -offset indent -compact
52.It
53command-line options
54.It
55user's configuration file
Damien Miller167ea5d2005-05-26 12:04:02 +100056.Pq Pa ~/.ssh/config
Ben Lindstrom479b4762002-08-20 19:04:51 +000057.It
58system-wide configuration file
59.Pq Pa /etc/ssh/ssh_config
60.El
Ben Lindstrom9f049032002-06-21 00:59:05 +000061.Pp
62For each parameter, the first obtained value
63will be used.
Darren Tucker43d8e282005-02-09 09:51:08 +110064The configuration files contain sections separated by
Ben Lindstrom9f049032002-06-21 00:59:05 +000065.Dq Host
66specifications, and that section is only applied for hosts that
67match one of the patterns given in the specification.
djm@openbsd.org957fbce2014-10-08 22:20:25 +000068The matched host name is usually the one given on the command line
69(see the
70.Cm CanonicalizeHostname
71option for exceptions.)
Ben Lindstrom9f049032002-06-21 00:59:05 +000072.Pp
73Since the first obtained value for each parameter is used, more
74host-specific declarations should be given near the beginning of the
75file, and general defaults at the end.
76.Pp
77The configuration file has the following format:
78.Pp
79Empty lines and lines starting with
80.Ql #
81are comments.
Ben Lindstrom9f049032002-06-21 00:59:05 +000082Otherwise a line is of the format
83.Dq keyword arguments .
84Configuration options may be separated by whitespace or
85optional whitespace and exactly one
86.Ql = ;
87the latter format is useful to avoid the need to quote whitespace
88when specifying configuration options using the
89.Nm ssh ,
Damien Miller4aea9742006-03-15 11:59:39 +110090.Nm scp ,
Ben Lindstrom9f049032002-06-21 00:59:05 +000091and
92.Nm sftp
93.Fl o
94option.
Damien Miller306d1182006-03-15 12:05:59 +110095Arguments may optionally be enclosed in double quotes
96.Pq \&"
97in order to represent arguments containing spaces.
Ben Lindstrom9f049032002-06-21 00:59:05 +000098.Pp
99The possible
100keywords and their meanings are as follows (note that
101keywords are case-insensitive and arguments are case-sensitive):
102.Bl -tag -width Ds
103.It Cm Host
104Restricts the following declarations (up to the next
105.Cm Host
Damien Miller194fd902013-10-15 12:13:05 +1100106or
107.Cm Match
Ben Lindstrom9f049032002-06-21 00:59:05 +0000108keyword) to be only for those hosts that match one of the patterns
109given after the keyword.
Damien Millerfa51b162008-11-03 19:17:33 +1100110If more than one pattern is provided, they should be separated by whitespace.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000111A single
Damien Miller208f1ed2006-03-15 11:56:03 +1100112.Ql *
Ben Lindstrom9f049032002-06-21 00:59:05 +0000113as a pattern can be used to provide global
114defaults for all hosts.
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000115The host is usually the
Ben Lindstrom9f049032002-06-21 00:59:05 +0000116.Ar hostname
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000117argument given on the command line
118(see the
119.Cm CanonicalizeHostname
120option for exceptions.)
Damien Millerf54a4b92006-03-15 11:54:36 +1100121.Pp
Damien Millerfe924212011-05-15 08:44:45 +1000122A pattern entry may be negated by prefixing it with an exclamation mark
123.Pq Sq !\& .
124If a negated entry is matched, then the
125.Cm Host
126entry is ignored, regardless of whether any other patterns on the line
127match.
128Negated matches are therefore useful to provide exceptions for wildcard
129matches.
130.Pp
Damien Millerf54a4b92006-03-15 11:54:36 +1100131See
132.Sx PATTERNS
133for more information on patterns.
Damien Millerd77b81f2013-10-17 11:39:00 +1100134.It Cm Match
Damien Miller194fd902013-10-15 12:13:05 +1100135Restricts the following declarations (up to the next
136.Cm Host
137or
138.Cm Match
139keyword) to be used only when the conditions following the
140.Cm Match
141keyword are satisfied.
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000142Match conditions are specified using one or more critera
Damien Millercf31f382013-10-24 21:02:56 +1100143or the single token
144.Cm all
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000145which always matches.
146The available criteria keywords are:
147.Cm canonical ,
Damien Miller8a04be72013-10-23 16:29:40 +1100148.Cm exec ,
Damien Miller194fd902013-10-15 12:13:05 +1100149.Cm host ,
150.Cm originalhost ,
151.Cm user ,
152and
153.Cm localuser .
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000154The
155.Cm all
156criteria must appear alone or immediately after
jmc@openbsd.orgb1ba15f2014-10-09 06:21:31 +0000157.Cm canonical .
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000158Other criteria may be combined arbitrarily.
159All criteria but
160.Cm all
161and
162.Cm canonical
163require an argument.
164Criteria may be negated by prepending an exclamation mark
165.Pq Sq !\& .
Damien Miller194fd902013-10-15 12:13:05 +1100166.Pp
Damien Miller8e5a67f2013-10-23 16:30:25 +1100167The
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000168.Cm canonical
169keywork matches only when the configuration file is being re-parsed
170after hostname canonicalization (see the
171.Cm CanonicalizeHostname
172option.)
173This may be useful to specify conditions that work with canonical host
174names only.
175The
Damien Miller8a04be72013-10-23 16:29:40 +1100176.Cm exec
Damien Miller8e5a67f2013-10-23 16:30:25 +1100177keyword executes the specified command under the user's shell.
Damien Miller194fd902013-10-15 12:13:05 +1100178If the command returns a zero exit status then the condition is considered true.
179Commands containing whitespace characters must be quoted.
Damien Miller5c86ebd2013-10-23 16:29:12 +1100180The following character sequences in the command will be expanded prior to
181execution:
182.Ql %L
183will be substituted by the first component of the local host name,
184.Ql %l
185will be substituted by the local host name (including any domain name),
186.Ql %h
187will be substituted by the target host name,
188.Ql %n
189will be substituted by the original target host name
Damien Miller8a04be72013-10-23 16:29:40 +1100190specified on the command-line,
Damien Miller5c86ebd2013-10-23 16:29:12 +1100191.Ql %p
192the destination port,
193.Ql %r
194by the remote login username, and
195.Ql %u
196by the username of the user running
197.Xr ssh 1 .
Damien Miller194fd902013-10-15 12:13:05 +1100198.Pp
199The other keywords' criteria must be single entries or comma-separated
200lists and may use the wildcard and negation operators described in the
201.Sx PATTERNS
202section.
203The criteria for the
204.Cm host
205keyword are matched against the target hostname, after any substitution
206by the
207.Cm Hostname
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000208or
209.Cm CanonicalizeHostname
210options.
Damien Miller194fd902013-10-15 12:13:05 +1100211The
212.Cm originalhost
213keyword matches against the hostname as it was specified on the command-line.
214The
215.Cm user
216keyword matches against the target username on the remote host.
217The
218.Cm localuser
219keyword matches against the name of the local user running
220.Xr ssh 1
221(this keyword may be useful in system-wide
222.Nm
223files).
Damien Miller20a8f972003-05-18 20:50:30 +1000224.It Cm AddressFamily
Damien Millerfbf486b2003-05-23 18:44:23 +1000225Specifies which address family to use when connecting.
226Valid arguments are
Damien Miller20a8f972003-05-18 20:50:30 +1000227.Dq any ,
228.Dq inet
Damien Miller45ee2b92006-03-15 11:56:18 +1100229(use IPv4 only), or
Damien Miller20a8f972003-05-18 20:50:30 +1000230.Dq inet6
Darren Tucker79a7acf2005-02-09 09:48:57 +1100231(use IPv6 only).
Ben Lindstrom9f049032002-06-21 00:59:05 +0000232.It Cm BatchMode
233If set to
234.Dq yes ,
235passphrase/password querying will be disabled.
236This option is useful in scripts and other batch jobs where no user
237is present to supply the password.
238The argument must be
239.Dq yes
240or
241.Dq no .
242The default is
243.Dq no .
244.It Cm BindAddress
Darren Tucker89f4d472005-07-14 17:06:21 +1000245Use the specified address on the local machine as the source address of
Darren Tucker6c71d202005-07-14 17:06:50 +1000246the connection.
247Only useful on systems with more than one address.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000248Note that this option does not work if
249.Cm UsePrivilegedPort
250is set to
251.Dq yes .
Damien Miller0faf7472013-10-17 11:47:23 +1100252.It Cm CanonicalDomains
Damien Miller607af342013-10-17 11:47:51 +1100253When
Damien Miller38505592013-10-17 11:48:13 +1100254.Cm CanonicalizeHostname
Damien Miller0faf7472013-10-17 11:47:23 +1100255is enabled, this option specifies the list of domain suffixes in which to
256search for the specified destination host.
Damien Miller38505592013-10-17 11:48:13 +1100257.It Cm CanonicalizeFallbackLocal
Damien Miller51682fa2013-10-17 11:48:31 +1100258Specifies whether to fail with an error when hostname canonicalization fails.
Damien Miller607af342013-10-17 11:47:51 +1100259The default,
Darren Tuckerb7e01c02014-01-19 22:36:13 +1100260.Dq yes ,
Damien Miller607af342013-10-17 11:47:51 +1100261will attempt to look up the unqualified hostname using the system resolver's
Damien Miller0faf7472013-10-17 11:47:23 +1100262search rules.
263A value of
Darren Tuckerb7e01c02014-01-19 22:36:13 +1100264.Dq no
Damien Miller0faf7472013-10-17 11:47:23 +1100265will cause
266.Xr ssh 1
267to fail instantly if
Damien Miller38505592013-10-17 11:48:13 +1100268.Cm CanonicalizeHostname
Damien Miller0faf7472013-10-17 11:47:23 +1100269is enabled and the target hostname cannot be found in any of the domains
270specified by
271.Cm CanonicalDomains .
Damien Miller38505592013-10-17 11:48:13 +1100272.It Cm CanonicalizeHostname
Damien Miller51682fa2013-10-17 11:48:31 +1100273Controls whether explicit hostname canonicalization is performed.
Damien Miller607af342013-10-17 11:47:51 +1100274The default,
275.Dq no ,
Damien Miller0faf7472013-10-17 11:47:23 +1100276is not to perform any name rewriting and let the system resolver handle all
277hostname lookups.
278If set to
279.Dq yes
280then, for connections that do not use a
281.Cm ProxyCommand ,
282.Xr ssh 1
Damien Miller38505592013-10-17 11:48:13 +1100283will attempt to canonicalize the hostname specified on the command line
Damien Miller0faf7472013-10-17 11:47:23 +1100284using the
285.Cm CanonicalDomains
286suffixes and
Damien Miller38505592013-10-17 11:48:13 +1100287.Cm CanonicalizePermittedCNAMEs
Damien Miller0faf7472013-10-17 11:47:23 +1100288rules.
289If
Damien Miller38505592013-10-17 11:48:13 +1100290.Cm CanonicalizeHostname
Damien Miller0faf7472013-10-17 11:47:23 +1100291is set to
292.Dq always ,
Damien Miller51682fa2013-10-17 11:48:31 +1100293then canonicalization is applied to proxied connections too.
Damien Miller13f97b22014-02-24 15:57:55 +1100294.Pp
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000295If this option is enabled, then the configuration files are processed
296again using the new target name to pick up any new configuration in matching
Damien Miller13f97b22014-02-24 15:57:55 +1100297.Cm Host
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000298and
299.Cm Match
Damien Miller13f97b22014-02-24 15:57:55 +1100300stanzas.
Damien Miller38505592013-10-17 11:48:13 +1100301.It Cm CanonicalizeMaxDots
Damien Miller607af342013-10-17 11:47:51 +1100302Specifies the maximum number of dot characters in a hostname before
Damien Miller51682fa2013-10-17 11:48:31 +1100303canonicalization is disabled.
Damien Miller607af342013-10-17 11:47:51 +1100304The default,
305.Dq 1 ,
306allows a single dot (i.e. hostname.subdomain).
Damien Miller38505592013-10-17 11:48:13 +1100307.It Cm CanonicalizePermittedCNAMEs
Damien Miller607af342013-10-17 11:47:51 +1100308Specifies rules to determine whether CNAMEs should be followed when
Damien Miller38505592013-10-17 11:48:13 +1100309canonicalizing hostnames.
Damien Miller0faf7472013-10-17 11:47:23 +1100310The rules consist of one or more arguments of
Damien Miller607af342013-10-17 11:47:51 +1100311.Ar source_domain_list : Ns Ar target_domain_list ,
Damien Miller0faf7472013-10-17 11:47:23 +1100312where
313.Ar source_domain_list
Damien Miller51682fa2013-10-17 11:48:31 +1100314is a pattern-list of domains that may follow CNAMEs in canonicalization,
Damien Miller0faf7472013-10-17 11:47:23 +1100315and
316.Ar target_domain_list
Damien Miller607af342013-10-17 11:47:51 +1100317is a pattern-list of domains that they may resolve to.
Damien Miller0faf7472013-10-17 11:47:23 +1100318.Pp
319For example,
320.Dq *.a.example.com:*.b.example.com,*.c.example.com
321will allow hostnames matching
322.Dq *.a.example.com
Damien Miller38505592013-10-17 11:48:13 +1100323to be canonicalized to names in the
Damien Miller0faf7472013-10-17 11:47:23 +1100324.Dq *.b.example.com
325or
326.Dq *.c.example.com
327domains.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000328.It Cm ChallengeResponseAuthentication
Damien Miller1faa7132006-03-15 11:55:31 +1100329Specifies whether to use challenge-response authentication.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000330The argument to this keyword must be
331.Dq yes
332or
333.Dq no .
334The default is
335.Dq yes .
336.It Cm CheckHostIP
337If this flag is set to
338.Dq yes ,
Damien Miller45ee2b92006-03-15 11:56:18 +1100339.Xr ssh 1
340will additionally check the host IP address in the
Ben Lindstrom9f049032002-06-21 00:59:05 +0000341.Pa known_hosts
342file.
343This allows ssh to detect if a host key changed due to DNS spoofing.
344If the option is set to
345.Dq no ,
346the check will not be executed.
347The default is
348.Dq yes .
349.It Cm Cipher
350Specifies the cipher to use for encrypting the session
351in protocol version 1.
352Currently,
353.Dq blowfish ,
354.Dq 3des ,
355and
356.Dq des
357are supported.
358.Ar des
359is only supported in the
Damien Miller45ee2b92006-03-15 11:56:18 +1100360.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +0000361client for interoperability with legacy protocol 1 implementations
362that do not support the
363.Ar 3des
Damien Miller495dca32003-04-01 21:42:14 +1000364cipher.
365Its use is strongly discouraged due to cryptographic weaknesses.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000366The default is
367.Dq 3des .
368.It Cm Ciphers
369Specifies the ciphers allowed for protocol version 2
370in order of preference.
371Multiple ciphers must be comma-separated.
Damien Miller0fde8ac2013-11-21 14:12:23 +1100372The supported ciphers are:
373.Pp
Damien Millerc1621c82014-04-20 13:22:46 +1000374.Bl -item -compact -offset indent
375.It
3763des-cbc
377.It
378aes128-cbc
379.It
380aes192-cbc
381.It
382aes256-cbc
383.It
384aes128-ctr
385.It
386aes192-ctr
387.It
388aes256-ctr
389.It
390aes128-gcm@openssh.com
391.It
392aes256-gcm@openssh.com
393.It
394arcfour
395.It
396arcfour128
397.It
398arcfour256
399.It
400blowfish-cbc
401.It
402cast128-cbc
403.It
404chacha20-poly1305@openssh.com
405.El
Damien Miller0fde8ac2013-11-21 14:12:23 +1100406.Pp
Damien Miller45ee2b92006-03-15 11:56:18 +1100407The default is:
Damien Millerc1621c82014-04-20 13:22:46 +1000408.Bd -literal -offset indent
409aes128-ctr,aes192-ctr,aes256-ctr,
Damien Miller1d75abf2013-01-09 16:12:19 +1100410aes128-gcm@openssh.com,aes256-gcm@openssh.com,
Damien Miller0fde8ac2013-11-21 14:12:23 +1100411chacha20-poly1305@openssh.com,
Damien Millerc1621c82014-04-20 13:22:46 +1000412arcfour256,arcfour128,
413aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,
414aes192-cbc,aes256-cbc,arcfour
Ben Lindstrom9f049032002-06-21 00:59:05 +0000415.Ed
Damien Miller0fde8ac2013-11-21 14:12:23 +1100416.Pp
417The list of available ciphers may also be obtained using the
418.Fl Q
419option of
420.Xr ssh 1 .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000421.It Cm ClearAllForwardings
Damien Miller45ee2b92006-03-15 11:56:18 +1100422Specifies that all local, remote, and dynamic port forwardings
Ben Lindstrom9f049032002-06-21 00:59:05 +0000423specified in the configuration files or on the command line be
Damien Miller495dca32003-04-01 21:42:14 +1000424cleared.
425This option is primarily useful when used from the
Damien Miller45ee2b92006-03-15 11:56:18 +1100426.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +0000427command line to clear port forwardings set in
428configuration files, and is automatically set by
429.Xr scp 1
430and
431.Xr sftp 1 .
432The argument must be
433.Dq yes
434or
435.Dq no .
436The default is
437.Dq no .
438.It Cm Compression
439Specifies whether to use compression.
440The argument must be
441.Dq yes
442or
443.Dq no .
444The default is
445.Dq no .
446.It Cm CompressionLevel
447Specifies the compression level to use if compression is enabled.
448The argument must be an integer from 1 (fast) to 9 (slow, best).
449The default level is 6, which is good for most applications.
450The meaning of the values is the same as in
451.Xr gzip 1 .
452Note that this option applies to protocol version 1 only.
453.It Cm ConnectionAttempts
454Specifies the number of tries (one per second) to make before exiting.
455The argument must be an integer.
456This may be useful in scripts if the connection sometimes fails.
457The default is 1.
Damien Millerb78d5eb2003-05-16 11:39:04 +1000458.It Cm ConnectTimeout
Damien Miller45ee2b92006-03-15 11:56:18 +1100459Specifies the timeout (in seconds) used when connecting to the
460SSH server, instead of using the default system TCP timeout.
Damien Millerfbf486b2003-05-23 18:44:23 +1000461This value is used only when the target is down or really unreachable,
462not when it refuses the connection.
Damien Miller0e220db2004-06-15 10:34:08 +1000463.It Cm ControlMaster
464Enables the sharing of multiple sessions over a single network connection.
465When set to
Damien Miller45ee2b92006-03-15 11:56:18 +1100466.Dq yes ,
467.Xr ssh 1
Damien Miller0e220db2004-06-15 10:34:08 +1000468will listen for connections on a control socket specified using the
469.Cm ControlPath
470argument.
471Additional sessions can connect to this socket using the same
472.Cm ControlPath
473with
474.Cm ControlMaster
475set to
476.Dq no
Damien Miller2234bac2004-06-30 22:38:52 +1000477(the default).
Damien Miller713de762005-11-05 15:13:49 +1100478These sessions will try to reuse the master instance's network connection
Damien Millerb3bfbb72005-11-05 15:11:48 +1100479rather than initiating new ones, but will fall back to connecting normally
480if the control socket does not exist, or is not listening.
481.Pp
Damien Miller23f07702004-06-18 01:19:03 +1000482Setting this to
483.Dq ask
Damien Miller45ee2b92006-03-15 11:56:18 +1100484will cause ssh
Damien Miller23f07702004-06-18 01:19:03 +1000485to listen for control connections, but require confirmation using the
486.Ev SSH_ASKPASS
487program before they are accepted (see
488.Xr ssh-add 1
Damien Miller2234bac2004-06-30 22:38:52 +1000489for details).
Damien Millerdadfd4d2005-05-26 12:07:13 +1000490If the
491.Cm ControlPath
Damien Miller45ee2b92006-03-15 11:56:18 +1100492cannot be opened,
493ssh will continue without connecting to a master instance.
Damien Millerd14b1e72005-06-16 13:19:41 +1000494.Pp
Damien Miller13390022005-07-06 09:44:19 +1000495X11 and
Damien Millerfd94fba2005-07-06 09:44:59 +1000496.Xr ssh-agent 1
Damien Miller13390022005-07-06 09:44:19 +1000497forwarding is supported over these multiplexed connections, however the
Darren Tucker63551872005-12-20 16:14:15 +1100498display and agent forwarded will be the one belonging to the master
Damien Millerfd94fba2005-07-06 09:44:59 +1000499connection i.e. it is not possible to forward multiple displays or agents.
Damien Miller13390022005-07-06 09:44:19 +1000500.Pp
Damien Millerd14b1e72005-06-16 13:19:41 +1000501Two additional options allow for opportunistic multiplexing: try to use a
502master connection but fall back to creating a new one if one does not already
503exist.
504These options are:
505.Dq auto
506and
507.Dq autoask .
508The latter requires confirmation like the
509.Dq ask
510option.
Damien Miller0e220db2004-06-15 10:34:08 +1000511.It Cm ControlPath
Damien Miller6476cad2005-06-16 13:18:34 +1000512Specify the path to the control socket used for connection sharing as described
513in the
Damien Miller0e220db2004-06-15 10:34:08 +1000514.Cm ControlMaster
Damien Miller8f74c8f2005-06-26 08:56:03 +1000515section above or the string
516.Dq none
517to disable connection sharing.
Damien Miller6476cad2005-06-16 13:18:34 +1000518In the path,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000519.Ql %L
520will be substituted by the first component of the local host name,
Damien Miller3ec54c72006-03-15 11:30:13 +1100521.Ql %l
Damien Millerdfc85fa2011-05-15 08:44:02 +1000522will be substituted by the local host name (including any domain name),
Damien Miller6476cad2005-06-16 13:18:34 +1000523.Ql %h
524will be substituted by the target host name,
Damien Miller486dd2e2011-05-15 08:47:18 +1000525.Ql %n
526will be substituted by the original target host name
527specified on the command line,
Damien Miller6476cad2005-06-16 13:18:34 +1000528.Ql %p
Damien Miller5c86ebd2013-10-23 16:29:12 +1100529the destination port,
Damien Miller6476cad2005-06-16 13:18:34 +1000530.Ql %r
Damien Miller9c386432014-07-03 21:27:46 +1000531by the remote login username,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000532.Ql %u
533by the username of the user running
Damien Miller9c386432014-07-03 21:27:46 +1000534.Xr ssh 1 , and
Damien Miller0f123412014-07-03 21:28:09 +1000535.Ql \&%C
Damien Miller9c386432014-07-03 21:27:46 +1000536by a hash of the concatenation: %l%h%p%r.
Damien Millerd14b1e72005-06-16 13:19:41 +1000537It is recommended that any
538.Cm ControlPath
539used for opportunistic connection sharing include
Damien Miller9c386432014-07-03 21:27:46 +1000540at least %h, %p, and %r (or alternatively %C).
Damien Millerd14b1e72005-06-16 13:19:41 +1000541This ensures that shared connections are uniquely identified.
Damien Millere11e1ea2010-08-03 16:04:46 +1000542.It Cm ControlPersist
543When used in conjunction with
544.Cm ControlMaster ,
545specifies that the master connection should remain open
546in the background (waiting for future client connections)
547after the initial client connection has been closed.
548If set to
549.Dq no ,
550then the master connection will not be placed into the background,
551and will close as soon as the initial client connection is closed.
552If set to
553.Dq yes ,
554then the master connection will remain in the background indefinitely
555(until killed or closed via a mechanism such as the
556.Xr ssh 1
557.Dq Fl O No exit
558option).
559If set to a time in seconds, or a time in any of the formats documented in
560.Xr sshd_config 5 ,
561then the backgrounded master connection will automatically terminate
562after it has remained idle (with no client connections) for the
563specified time.
Damien Miller2234bac2004-06-30 22:38:52 +1000564.It Cm DynamicForward
Damien Millere9d001e2006-01-14 10:10:17 +1100565Specifies that a TCP port on the local machine be forwarded
Damien Miller2234bac2004-06-30 22:38:52 +1000566over the secure channel, and the application
567protocol is then used to determine where to connect to from the
568remote machine.
Darren Tuckerc8d64212005-10-03 18:13:42 +1000569.Pp
570The argument must be
571.Sm off
572.Oo Ar bind_address : Oc Ar port .
573.Sm on
Damien Miller7fa96602010-08-05 13:03:13 +1000574IPv6 addresses can be specified by enclosing addresses in square brackets.
Darren Tuckerc8d64212005-10-03 18:13:42 +1000575By default, the local port is bound in accordance with the
576.Cm GatewayPorts
577setting.
578However, an explicit
579.Ar bind_address
580may be used to bind the connection to a specific address.
581The
582.Ar bind_address
583of
584.Dq localhost
585indicates that the listening port be bound for local use only, while an
586empty address or
587.Sq *
588indicates that the port should be available from all interfaces.
589.Pp
Damien Miller2234bac2004-06-30 22:38:52 +1000590Currently the SOCKS4 and SOCKS5 protocols are supported, and
Damien Miller45ee2b92006-03-15 11:56:18 +1100591.Xr ssh 1
Damien Miller2234bac2004-06-30 22:38:52 +1000592will act as a SOCKS server.
593Multiple forwardings may be specified, and
594additional forwardings can be given on the command line.
595Only the superuser can forward privileged ports.
Darren Tucker674f71d2003-06-28 12:33:12 +1000596.It Cm EnableSSHKeysign
597Setting this option to
598.Dq yes
599in the global client configuration file
600.Pa /etc/ssh/ssh_config
601enables the use of the helper program
602.Xr ssh-keysign 8
603during
604.Cm HostbasedAuthentication .
605The argument must be
606.Dq yes
607or
608.Dq no .
609The default is
610.Dq no .
Darren Tuckerf132c672003-10-15 15:58:18 +1000611This option should be placed in the non-hostspecific section.
Darren Tucker674f71d2003-06-28 12:33:12 +1000612See
613.Xr ssh-keysign 8
614for more information.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000615.It Cm EscapeChar
616Sets the escape character (default:
617.Ql ~ ) .
618The escape character can also
619be set on the command line.
620The argument should be a single character,
621.Ql ^
622followed by a letter, or
623.Dq none
624to disable the escape
625character entirely (making the connection transparent for binary
626data).
Darren Tuckere7d4b192006-07-12 22:17:10 +1000627.It Cm ExitOnForwardFailure
628Specifies whether
629.Xr ssh 1
630should terminate the connection if it cannot set up all requested
Darren Tuckerfc5d1882007-08-15 22:20:22 +1000631dynamic, tunnel, local, and remote port forwardings.
Darren Tuckere7d4b192006-07-12 22:17:10 +1000632The argument must be
633.Dq yes
634or
635.Dq no .
636The default is
637.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000638.It Cm ForwardAgent
639Specifies whether the connection to the authentication agent (if any)
640will be forwarded to the remote machine.
641The argument must be
642.Dq yes
643or
644.Dq no .
645The default is
646.Dq no .
Damien Milleraf653042002-09-04 16:40:37 +1000647.Pp
Damien Miller495dca32003-04-01 21:42:14 +1000648Agent forwarding should be enabled with caution.
649Users with the ability to bypass file permissions on the remote host
650(for the agent's Unix-domain socket)
651can access the local agent through the forwarded connection.
652An attacker cannot obtain key material from the agent,
Damien Milleraf653042002-09-04 16:40:37 +1000653however they can perform operations on the keys that enable them to
654authenticate using the identities loaded into the agent.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000655.It Cm ForwardX11
656Specifies whether X11 connections will be automatically redirected
657over the secure channel and
658.Ev DISPLAY
659set.
660The argument must be
661.Dq yes
662or
663.Dq no .
664The default is
665.Dq no .
Damien Milleraf653042002-09-04 16:40:37 +1000666.Pp
Damien Miller495dca32003-04-01 21:42:14 +1000667X11 forwarding should be enabled with caution.
668Users with the ability to bypass file permissions on the remote host
Darren Tucker0a118da2003-10-15 15:54:32 +1000669(for the user's X11 authorization database)
Damien Miller495dca32003-04-01 21:42:14 +1000670can access the local X11 display through the forwarded connection.
Darren Tucker0a118da2003-10-15 15:54:32 +1000671An attacker may then be able to perform activities such as keystroke monitoring
672if the
673.Cm ForwardX11Trusted
674option is also enabled.
Damien Miller1ab6a512010-06-26 10:02:24 +1000675.It Cm ForwardX11Timeout
Damien Millercede1db2010-07-02 13:33:48 +1000676Specify a timeout for untrusted X11 forwarding
677using the format described in the
Damien Millerfecfd112013-07-18 16:11:50 +1000678TIME FORMATS section of
Damien Miller1ab6a512010-06-26 10:02:24 +1000679.Xr sshd_config 5 .
680X11 connections received by
681.Xr ssh 1
682after this time will be refused.
683The default is to disable untrusted X11 forwarding after twenty minutes has
684elapsed.
Darren Tucker0a118da2003-10-15 15:54:32 +1000685.It Cm ForwardX11Trusted
Darren Tuckerdcf6ec42004-05-13 13:03:56 +1000686If this option is set to
Damien Miller45ee2b92006-03-15 11:56:18 +1100687.Dq yes ,
688remote X11 clients will have full access to the original X11 display.
Damien Miller1717fd42005-03-01 21:17:31 +1100689.Pp
Darren Tucker0a118da2003-10-15 15:54:32 +1000690If this option is set to
Damien Miller45ee2b92006-03-15 11:56:18 +1100691.Dq no ,
692remote X11 clients will be considered untrusted and prevented
Darren Tucker0a118da2003-10-15 15:54:32 +1000693from stealing or tampering with data belonging to trusted X11
694clients.
Damien Miller1717fd42005-03-01 21:17:31 +1100695Furthermore, the
696.Xr xauth 1
697token used for the session will be set to expire after 20 minutes.
698Remote clients will be refused access after this time.
Darren Tucker0a118da2003-10-15 15:54:32 +1000699.Pp
700The default is
701.Dq no .
702.Pp
703See the X11 SECURITY extension specification for full details on
704the restrictions imposed on untrusted clients.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000705.It Cm GatewayPorts
706Specifies whether remote hosts are allowed to connect to local
707forwarded ports.
708By default,
Damien Miller45ee2b92006-03-15 11:56:18 +1100709.Xr ssh 1
Damien Miller495dca32003-04-01 21:42:14 +1000710binds local port forwardings to the loopback address.
711This prevents other remote hosts from connecting to forwarded ports.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000712.Cm GatewayPorts
Damien Miller45ee2b92006-03-15 11:56:18 +1100713can be used to specify that ssh
Ben Lindstrom9f049032002-06-21 00:59:05 +0000714should bind local port forwardings to the wildcard address,
715thus allowing remote hosts to connect to forwarded ports.
716The argument must be
717.Dq yes
718or
719.Dq no .
720The default is
721.Dq no .
722.It Cm GlobalKnownHostsFile
Damien Miller295ee632011-05-29 21:42:31 +1000723Specifies one or more files to use for the global
724host key database, separated by whitespace.
725The default is
726.Pa /etc/ssh/ssh_known_hosts ,
727.Pa /etc/ssh/ssh_known_hosts2 .
Darren Tucker0efd1552003-08-26 11:49:55 +1000728.It Cm GSSAPIAuthentication
Damien Millerbaafb982003-12-17 16:32:23 +1100729Specifies whether user authentication based on GSSAPI is allowed.
Damien Millerc2b98272003-09-03 12:13:30 +1000730The default is
Darren Tuckera044f472003-10-15 15:52:03 +1000731.Dq no .
Darren Tucker0efd1552003-08-26 11:49:55 +1000732Note that this option applies to protocol version 2 only.
733.It Cm GSSAPIDelegateCredentials
734Forward (delegate) credentials to the server.
735The default is
736.Dq no .
737Note that this option applies to protocol version 2 only.
Damien Millere1776152005-03-01 21:47:37 +1100738.It Cm HashKnownHosts
739Indicates that
Damien Miller45ee2b92006-03-15 11:56:18 +1100740.Xr ssh 1
Damien Millere1776152005-03-01 21:47:37 +1100741should hash host names and addresses when they are added to
Damien Miller167ea5d2005-05-26 12:04:02 +1000742.Pa ~/.ssh/known_hosts .
Damien Millere1776152005-03-01 21:47:37 +1100743These hashed names may be used normally by
Damien Miller45ee2b92006-03-15 11:56:18 +1100744.Xr ssh 1
Damien Millere1776152005-03-01 21:47:37 +1100745and
Damien Miller45ee2b92006-03-15 11:56:18 +1100746.Xr sshd 8 ,
Damien Millere1776152005-03-01 21:47:37 +1100747but they do not reveal identifying information should the file's contents
748be disclosed.
749The default is
750.Dq no .
Damien Miller858bb7d2006-08-05 11:34:51 +1000751Note that existing names and addresses in known hosts files
752will not be converted automatically,
753but may be manually hashed using
Damien Miller4b42d7f2005-03-01 21:48:35 +1100754.Xr ssh-keygen 1 .
Ben Lindstrom9f049032002-06-21 00:59:05 +0000755.It Cm HostbasedAuthentication
756Specifies whether to try rhosts based authentication with public key
757authentication.
758The argument must be
759.Dq yes
760or
761.Dq no .
762The default is
763.Dq no .
764This option applies to protocol version 2 only and
765is similar to
766.Cm RhostsRSAAuthentication .
767.It Cm HostKeyAlgorithms
768Specifies the protocol version 2 host key algorithms
769that the client wants to use in order of preference.
770The default for this option is:
Damien Millereb8b60e2010-08-31 22:41:14 +1000771.Bd -literal -offset 3n
772ecdsa-sha2-nistp256-cert-v01@openssh.com,
773ecdsa-sha2-nistp384-cert-v01@openssh.com,
774ecdsa-sha2-nistp521-cert-v01@openssh.com,
Damien Miller8ba0ead2013-12-18 17:46:27 +1100775ssh-ed25519-cert-v01@openssh.com,
Damien Millereb8b60e2010-08-31 22:41:14 +1000776ssh-rsa-cert-v01@openssh.com,ssh-dss-cert-v01@openssh.com,
777ssh-rsa-cert-v00@openssh.com,ssh-dss-cert-v00@openssh.com,
778ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
Damien Miller5be9d9e2013-12-07 11:24:01 +1100779ssh-ed25519,ssh-rsa,ssh-dss
Damien Millereb8b60e2010-08-31 22:41:14 +1000780.Ed
Damien Millerd925dcd2010-12-01 12:21:51 +1100781.Pp
782If hostkeys are known for the destination host then this default is modified
783to prefer their algorithms.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000784.It Cm HostKeyAlias
785Specifies an alias that should be used instead of the
786real host name when looking up or saving the host key
787in the host key database files.
Damien Miller45ee2b92006-03-15 11:56:18 +1100788This option is useful for tunneling SSH connections
Ben Lindstrom9f049032002-06-21 00:59:05 +0000789or for multiple servers running on a single host.
790.It Cm HostName
791Specifies the real host name to log into.
792This can be used to specify nicknames or abbreviations for hosts.
Damien Millerd0244d42010-07-16 13:56:43 +1000793If the hostname contains the character sequence
794.Ql %h ,
Damien Miller486dd2e2011-05-15 08:47:18 +1000795then this will be replaced with the host name specified on the command line
Damien Millerd0244d42010-07-16 13:56:43 +1000796(this is useful for manipulating unqualified names).
Damien Milleref9f13b2014-07-03 21:26:21 +1000797The character sequence
798.Ql %%
799will be replaced by a single
800.Ql %
801character, which may be used when specifying IPv6 link-local addresses.
802.Pp
Damien Miller45ee2b92006-03-15 11:56:18 +1100803The default is the name given on the command line.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000804Numeric IP addresses are also permitted (both on the command line and in
805.Cm HostName
806specifications).
Damien Millerbd394c32004-03-08 23:12:36 +1100807.It Cm IdentitiesOnly
808Specifies that
Damien Miller45ee2b92006-03-15 11:56:18 +1100809.Xr ssh 1
Damien Millerbd394c32004-03-08 23:12:36 +1100810should only use the authentication identity files configured in the
Damien Miller1a812582004-04-20 20:13:32 +1000811.Nm
Damien Millerbd394c32004-03-08 23:12:36 +1100812files,
Damien Miller45ee2b92006-03-15 11:56:18 +1100813even if
814.Xr ssh-agent 1
Damien Millercb6b68b2012-12-03 09:49:52 +1100815or a
816.Cm PKCS11Provider
Damien Millerbd394c32004-03-08 23:12:36 +1100817offers more identities.
818The argument to this keyword must be
819.Dq yes
820or
821.Dq no .
Damien Miller45ee2b92006-03-15 11:56:18 +1100822This option is intended for situations where ssh-agent
Damien Millerbd394c32004-03-08 23:12:36 +1100823offers many different identities.
824The default is
825.Dq no .
Damien Miller957d4e42005-12-13 19:30:45 +1100826.It Cm IdentityFile
sobrado@openbsd.orgf70b22b2014-08-30 15:33:50 +0000827Specifies a file from which the user's DSA, ECDSA, Ed25519 or RSA authentication
Damien Millereb8b60e2010-08-31 22:41:14 +1000828identity is read.
Damien Miller957d4e42005-12-13 19:30:45 +1100829The default is
830.Pa ~/.ssh/identity
831for protocol version 1, and
Damien Millereb8b60e2010-08-31 22:41:14 +1000832.Pa ~/.ssh/id_dsa ,
Damien Miller8ba0ead2013-12-18 17:46:27 +1100833.Pa ~/.ssh/id_ecdsa ,
834.Pa ~/.ssh/id_ed25519
Damien Miller957d4e42005-12-13 19:30:45 +1100835and
Damien Millereb8b60e2010-08-31 22:41:14 +1000836.Pa ~/.ssh/id_rsa
Damien Miller957d4e42005-12-13 19:30:45 +1100837for protocol version 2.
838Additionally, any identities represented by the authentication agent
Damien Miller7f2b4382013-07-18 16:10:29 +1000839will be used for authentication unless
840.Cm IdentitiesOnly
841is set.
Damien Miller5059d8d2010-03-05 21:31:11 +1100842.Xr ssh 1
843will try to load certificate information from the filename obtained by
844appending
845.Pa -cert.pub
846to the path of a specified
847.Cm IdentityFile .
Damien Miller6b1d53c2006-03-31 23:13:21 +1100848.Pp
Damien Miller957d4e42005-12-13 19:30:45 +1100849The file name may use the tilde
Damien Millerc6437cf2006-03-31 23:14:41 +1100850syntax to refer to a user's home directory or one of the following
Damien Miller6b1d53c2006-03-31 23:13:21 +1100851escape characters:
852.Ql %d
853(local user's home directory),
854.Ql %u
855(local user name),
856.Ql %l
857(local host name),
858.Ql %h
859(remote host name) or
Damien Millerdfc61832006-03-31 23:14:57 +1100860.Ql %r
Damien Miller6b1d53c2006-03-31 23:13:21 +1100861(remote user name).
862.Pp
Damien Miller957d4e42005-12-13 19:30:45 +1100863It is possible to have
864multiple identity files specified in configuration files; all these
865identities will be tried in sequence.
Damien Miller6029e072011-06-20 14:22:49 +1000866Multiple
867.Cm IdentityFile
868directives will add to the list of identities tried (this behaviour
869differs from that of other configuration directives).
Damien Miller7f2b4382013-07-18 16:10:29 +1000870.Pp
871.Cm IdentityFile
872may be used in conjunction with
873.Cm IdentitiesOnly
874to select which identities in an agent are offered during authentication.
Darren Tucker63e0df22013-05-16 20:30:31 +1000875.It Cm IgnoreUnknown
876Specifies a pattern-list of unknown options to be ignored if they are
877encountered in configuration parsing.
878This may be used to suppress errors if
879.Nm
880contains options that are unrecognised by
881.Xr ssh 1 .
882It is recommended that
883.Cm IgnoreUnknown
884be listed early in the configuration file as it will not be applied
885to unknown options that appear before it.
Damien Miller0dac6fb2010-11-20 15:19:38 +1100886.It Cm IPQoS
887Specifies the IPv4 type-of-service or DSCP class for connections.
888Accepted values are
889.Dq af11 ,
890.Dq af12 ,
891.Dq af13 ,
Damien Millerf6e758c2011-09-22 21:37:13 +1000892.Dq af21 ,
Damien Miller0dac6fb2010-11-20 15:19:38 +1100893.Dq af22 ,
894.Dq af23 ,
895.Dq af31 ,
896.Dq af32 ,
897.Dq af33 ,
898.Dq af41 ,
899.Dq af42 ,
900.Dq af43 ,
901.Dq cs0 ,
902.Dq cs1 ,
903.Dq cs2 ,
904.Dq cs3 ,
905.Dq cs4 ,
906.Dq cs5 ,
907.Dq cs6 ,
908.Dq cs7 ,
909.Dq ef ,
910.Dq lowdelay ,
911.Dq throughput ,
912.Dq reliability ,
913or a numeric value.
Damien Miller928362d2010-12-26 14:26:45 +1100914This option may take one or two arguments, separated by whitespace.
Damien Miller0dac6fb2010-11-20 15:19:38 +1100915If one argument is specified, it is used as the packet class unconditionally.
916If two values are specified, the first is automatically selected for
917interactive sessions and the second for non-interactive sessions.
918The default is
919.Dq lowdelay
920for interactive sessions and
921.Dq throughput
922for non-interactive sessions.
Damien Millercfb606c2007-10-26 14:24:48 +1000923.It Cm KbdInteractiveAuthentication
924Specifies whether to use keyboard-interactive authentication.
925The argument to this keyword must be
926.Dq yes
927or
928.Dq no .
929The default is
930.Dq yes .
Darren Tucker636ca902004-11-05 20:22:00 +1100931.It Cm KbdInteractiveDevices
932Specifies the list of methods to use in keyboard-interactive authentication.
933Multiple method names must be comma-separated.
934The default is to use the server specified list.
Damien Miller9cfbaec2006-03-15 11:57:55 +1100935The methods available vary depending on what the server supports.
936For an OpenSSH server,
937it may be zero or more of:
938.Dq bsdauth ,
939.Dq pam ,
940and
941.Dq skey .
Damien Millerd5f62bf2010-09-24 22:11:14 +1000942.It Cm KexAlgorithms
943Specifies the available KEX (Key Exchange) algorithms.
944Multiple algorithms must be comma-separated.
Damien Miller7fe2b1f2010-09-24 22:11:53 +1000945The default is:
946.Bd -literal -offset indent
Damien Miller0bd8f152013-11-04 08:55:43 +1100947curve25519-sha256@libssh.org,
Damien Miller7fe2b1f2010-09-24 22:11:53 +1000948ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,
949diffie-hellman-group-exchange-sha256,
Damien Miller7fe2b1f2010-09-24 22:11:53 +1000950diffie-hellman-group14-sha1,
Damien Millerc1621c82014-04-20 13:22:46 +1000951diffie-hellman-group-exchange-sha1,
Damien Miller7fe2b1f2010-09-24 22:11:53 +1000952diffie-hellman-group1-sha1
953.Ed
Damien Millerd27b9472005-12-13 19:29:02 +1100954.It Cm LocalCommand
955Specifies a command to execute on the local machine after successfully
956connecting to the server.
957The command string extends to the end of the line, and is executed with
Darren Tucker63b31cb2007-12-02 23:09:30 +1100958the user's shell.
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000959The following escape character substitutions will be performed:
960.Ql %d
961(local user's home directory),
962.Ql %h
963(remote host name),
964.Ql %l
965(local host name),
966.Ql %n
967(host name as provided on the command line),
968.Ql %p
969(remote port),
970.Ql %r
971(remote user name) or
972.Ql %u
Damien Miller9c386432014-07-03 21:27:46 +1000973(local user name) or
Damien Miller0f123412014-07-03 21:28:09 +1000974.Ql \&%C
Damien Miller9c386432014-07-03 21:27:46 +1000975by a hash of the concatenation: %l%h%p%r.
Darren Tucker78be8c52010-01-08 17:05:59 +1100976.Pp
977The command is run synchronously and does not have access to the
978session of the
979.Xr ssh 1
980that spawned it.
981It should not be used for interactive commands.
982.Pp
Damien Millerd27b9472005-12-13 19:29:02 +1100983This directive is ignored unless
984.Cm PermitLocalCommand
985has been enabled.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000986.It Cm LocalForward
Damien Millere9d001e2006-01-14 10:10:17 +1100987Specifies that a TCP port on the local machine be forwarded over
Ben Lindstrom9f049032002-06-21 00:59:05 +0000988the secure channel to the specified host and port from the remote machine.
Darren Tucker5ede2ad2005-03-31 21:31:10 +1000989The first argument must be
Damien Millerf91ee4c2005-03-01 21:24:33 +1100990.Sm off
Darren Tucker5ede2ad2005-03-31 21:31:10 +1000991.Oo Ar bind_address : Oc Ar port
Damien Millerf91ee4c2005-03-01 21:24:33 +1100992.Sm on
Darren Tucker5ede2ad2005-03-31 21:31:10 +1000993and the second argument must be
994.Ar host : Ns Ar hostport .
Damien Miller7fa96602010-08-05 13:03:13 +1000995IPv6 addresses can be specified by enclosing addresses in square brackets.
Damien Millerf8c55462005-03-02 12:03:05 +1100996Multiple forwardings may be specified, and additional forwardings can be
Damien Millerf91ee4c2005-03-01 21:24:33 +1100997given on the command line.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000998Only the superuser can forward privileged ports.
Damien Millerf91ee4c2005-03-01 21:24:33 +1100999By default, the local port is bound in accordance with the
1000.Cm GatewayPorts
1001setting.
1002However, an explicit
1003.Ar bind_address
1004may be used to bind the connection to a specific address.
1005The
1006.Ar bind_address
1007of
1008.Dq localhost
Damien Millerf8c55462005-03-02 12:03:05 +11001009indicates that the listening port be bound for local use only, while an
1010empty address or
1011.Sq *
Damien Millerf91ee4c2005-03-01 21:24:33 +11001012indicates that the port should be available from all interfaces.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001013.It Cm LogLevel
1014Gives the verbosity level that is used when logging messages from
Damien Miller45ee2b92006-03-15 11:56:18 +11001015.Xr ssh 1 .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001016The possible values are:
Damien Miller45ee2b92006-03-15 11:56:18 +11001017QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
Damien Miller495dca32003-04-01 21:42:14 +10001018The default is INFO.
1019DEBUG and DEBUG1 are equivalent.
1020DEBUG2 and DEBUG3 each specify higher levels of verbose output.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001021.It Cm MACs
1022Specifies the MAC (message authentication code) algorithms
1023in order of preference.
1024The MAC algorithm is used in protocol version 2
1025for data integrity protection.
1026Multiple algorithms must be comma-separated.
Damien Milleraf43a7a2012-12-12 10:46:31 +11001027The algorithms that contain
1028.Dq -etm
1029calculate the MAC after encryption (encrypt-then-mac).
1030These are considered safer and their use recommended.
Damien Miller45ee2b92006-03-15 11:56:18 +11001031The default is:
Damien Miller5e7c30b2007-06-11 14:06:32 +10001032.Bd -literal -offset indent
Damien Milleraf43a7a2012-12-12 10:46:31 +11001033umac-64-etm@openssh.com,umac-128-etm@openssh.com,
1034hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,
Damien Millerc1621c82014-04-20 13:22:46 +10001035umac-64@openssh.com,umac-128@openssh.com,
1036hmac-sha2-256,hmac-sha2-512,
1037hmac-md5-etm@openssh.com,hmac-sha1-etm@openssh.com,
1038hmac-ripemd160-etm@openssh.com,
1039hmac-sha1-96-etm@openssh.com,hmac-md5-96-etm@openssh.com,
1040hmac-md5,hmac-sha1,hmac-ripemd160,
Darren Tuckerecbf14a2012-07-02 18:53:37 +10001041hmac-sha1-96,hmac-md5-96
Damien Miller5e7c30b2007-06-11 14:06:32 +10001042.Ed
Ben Lindstrom9f049032002-06-21 00:59:05 +00001043.It Cm NoHostAuthenticationForLocalhost
1044This option can be used if the home directory is shared across machines.
1045In this case localhost will refer to a different machine on each of
1046the machines and the user will get many warnings about changed host keys.
1047However, this option disables host authentication for localhost.
1048The argument to this keyword must be
1049.Dq yes
1050or
1051.Dq no .
1052The default is to check the host key for localhost.
1053.It Cm NumberOfPasswordPrompts
1054Specifies the number of password prompts before giving up.
1055The argument to this keyword must be an integer.
Damien Miller45ee2b92006-03-15 11:56:18 +11001056The default is 3.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001057.It Cm PasswordAuthentication
1058Specifies whether to use password authentication.
1059The argument to this keyword must be
1060.Dq yes
1061or
1062.Dq no .
1063The default is
1064.Dq yes .
Damien Millerd27b9472005-12-13 19:29:02 +11001065.It Cm PermitLocalCommand
1066Allow local command execution via the
1067.Ic LocalCommand
1068option or using the
Damien Miller4b2319f2005-12-13 19:30:27 +11001069.Ic !\& Ns Ar command
Damien Millerd27b9472005-12-13 19:29:02 +11001070escape sequence in
1071.Xr ssh 1 .
1072The argument must be
1073.Dq yes
1074or
1075.Dq no .
1076The default is
1077.Dq no .
Damien Miller7ea845e2010-02-12 09:21:02 +11001078.It Cm PKCS11Provider
1079Specifies which PKCS#11 provider to use.
Damien Miller8e1ea4e2010-11-20 15:20:10 +11001080The argument to this keyword is the PKCS#11 shared library
Damien Miller7ea845e2010-02-12 09:21:02 +11001081.Xr ssh 1
Damien Millera7618442010-02-12 09:26:02 +11001082should use to communicate with a PKCS#11 token providing the user's
Damien Miller7ea845e2010-02-12 09:21:02 +11001083private RSA key.
Damien Miller957d4e42005-12-13 19:30:45 +11001084.It Cm Port
1085Specifies the port number to connect on the remote host.
Damien Miller45ee2b92006-03-15 11:56:18 +11001086The default is 22.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001087.It Cm PreferredAuthentications
1088Specifies the order in which the client should try protocol 2
Damien Millerfbf486b2003-05-23 18:44:23 +10001089authentication methods.
Darren Tucker1adc2bd2005-03-14 23:14:20 +11001090This allows a client to prefer one method (e.g.\&
Ben Lindstrom9f049032002-06-21 00:59:05 +00001091.Cm keyboard-interactive )
Darren Tucker1adc2bd2005-03-14 23:14:20 +11001092over another method (e.g.\&
Damien Miller544378d2010-04-16 15:52:24 +10001093.Cm password ) .
1094The default is:
1095.Bd -literal -offset indent
1096gssapi-with-mic,hostbased,publickey,
1097keyboard-interactive,password
1098.Ed
Ben Lindstrom9f049032002-06-21 00:59:05 +00001099.It Cm Protocol
1100Specifies the protocol versions
Damien Miller45ee2b92006-03-15 11:56:18 +11001101.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +00001102should support in order of preference.
1103The possible values are
Damien Miller45ee2b92006-03-15 11:56:18 +11001104.Sq 1
Ben Lindstrom9f049032002-06-21 00:59:05 +00001105and
Damien Miller45ee2b92006-03-15 11:56:18 +11001106.Sq 2 .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001107Multiple versions must be comma-separated.
Darren Tuckerbad50762009-10-11 21:51:08 +11001108When this option is set to
Darren Tucker7a4a7652009-10-11 21:51:40 +11001109.Dq 2,1
Darren Tuckerbad50762009-10-11 21:51:08 +11001110.Nm ssh
1111will try version 2 and fall back to version 1
Ben Lindstrom9f049032002-06-21 00:59:05 +00001112if version 2 is not available.
Darren Tuckerbad50762009-10-11 21:51:08 +11001113The default is
Darren Tucker7a4a7652009-10-11 21:51:40 +11001114.Sq 2 .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001115.It Cm ProxyCommand
1116Specifies the command to use to connect to the server.
1117The command
Damien Miller079bac22014-07-09 13:06:25 +10001118string extends to the end of the line, and is executed
1119using the user's shell
1120.Ql exec
1121directive to avoid a lingering shell process.
1122.Pp
Damien Millerc4eddee2010-04-18 08:07:43 +10001123In the command string, any occurrence of
Ben Lindstrom9f049032002-06-21 00:59:05 +00001124.Ql %h
1125will be substituted by the host name to
Damien Millerb1b17042010-04-16 15:54:19 +10001126connect,
Ben Lindstrom9f049032002-06-21 00:59:05 +00001127.Ql %p
Damien Millerc4eddee2010-04-18 08:07:43 +10001128by the port, and
1129.Ql %r
Damien Millerb1b17042010-04-16 15:54:19 +10001130by the remote user name.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001131The command can be basically anything,
1132and should read from its standard input and write to its standard output.
1133It should eventually connect an
1134.Xr sshd 8
1135server running on some machine, or execute
1136.Ic sshd -i
1137somewhere.
1138Host key management will be done using the
1139HostName of the host being connected (defaulting to the name typed by
1140the user).
Damien Miller495dca32003-04-01 21:42:14 +10001141Setting the command to
1142.Dq none
Damien Miller9f1e33a2003-02-24 11:57:32 +11001143disables this option entirely.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001144Note that
1145.Cm CheckHostIP
1146is not available for connects with a proxy command.
1147.Pp
Damien Millerebcfedc2005-05-26 12:13:56 +10001148This directive is useful in conjunction with
1149.Xr nc 1
1150and its proxy support.
Damien Millerdfec2942005-05-26 12:14:32 +10001151For example, the following directive would connect via an HTTP proxy at
Damien Millerebcfedc2005-05-26 12:13:56 +10001152192.0.2.0:
1153.Bd -literal -offset 3n
1154ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p
1155.Ed
Damien Miller1262b662013-08-21 02:44:24 +10001156.It Cm ProxyUseFdpass
Damien Millerf2f6c312013-08-21 02:44:58 +10001157Specifies that
Damien Miller1262b662013-08-21 02:44:24 +10001158.Cm ProxyCommand
1159will pass a connected file descriptor back to
Damien Millerf2f6c312013-08-21 02:44:58 +10001160.Xr ssh 1
Damien Miller1262b662013-08-21 02:44:24 +10001161instead of continuing to execute and pass data.
1162The default is
1163.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001164.It Cm PubkeyAuthentication
1165Specifies whether to try public key authentication.
1166The argument to this keyword must be
1167.Dq yes
1168or
1169.Dq no .
1170The default is
1171.Dq yes .
1172This option applies to protocol version 2 only.
Darren Tucker62388b22006-01-20 11:31:47 +11001173.It Cm RekeyLimit
1174Specifies the maximum amount of data that may be transmitted before the
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001175session key is renegotiated, optionally followed a maximum amount of
1176time that may pass before the session key is renegotiated.
1177The first argument is specified in bytes and may have a suffix of
Damien Millerddfddf12006-01-31 21:39:03 +11001178.Sq K ,
1179.Sq M ,
Darren Tucker62388b22006-01-20 11:31:47 +11001180or
Damien Millerddfddf12006-01-31 21:39:03 +11001181.Sq G
Darren Tucker62388b22006-01-20 11:31:47 +11001182to indicate Kilobytes, Megabytes, or Gigabytes, respectively.
1183The default is between
Damien Miller45ee2b92006-03-15 11:56:18 +11001184.Sq 1G
Darren Tucker62388b22006-01-20 11:31:47 +11001185and
Damien Miller45ee2b92006-03-15 11:56:18 +11001186.Sq 4G ,
Darren Tucker62388b22006-01-20 11:31:47 +11001187depending on the cipher.
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001188The optional second value is specified in seconds and may use any of the
1189units documented in the
Damien Millerfecfd112013-07-18 16:11:50 +10001190TIME FORMATS section of
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001191.Xr sshd_config 5 .
1192The default value for
1193.Cm RekeyLimit
1194is
1195.Dq default none ,
1196which means that rekeying is performed after the cipher's default amount
1197of data has been sent or received and no time based rekeying is done.
Damien Millerddfddf12006-01-31 21:39:03 +11001198This option applies to protocol version 2 only.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001199.It Cm RemoteForward
Damien Millere9d001e2006-01-14 10:10:17 +11001200Specifies that a TCP port on the remote machine be forwarded over
Ben Lindstrom9f049032002-06-21 00:59:05 +00001201the secure channel to the specified host and port from the local machine.
Darren Tucker5ede2ad2005-03-31 21:31:10 +10001202The first argument must be
Damien Millerf91ee4c2005-03-01 21:24:33 +11001203.Sm off
Darren Tucker5ede2ad2005-03-31 21:31:10 +10001204.Oo Ar bind_address : Oc Ar port
Damien Millerf91ee4c2005-03-01 21:24:33 +11001205.Sm on
Darren Tucker5ede2ad2005-03-31 21:31:10 +10001206and the second argument must be
1207.Ar host : Ns Ar hostport .
Damien Miller7fa96602010-08-05 13:03:13 +10001208IPv6 addresses can be specified by enclosing addresses in square brackets.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001209Multiple forwardings may be specified, and additional
1210forwardings can be given on the command line.
Damien Millerde7532e2008-11-03 19:24:45 +11001211Privileged ports can be forwarded only when
1212logging in as root on the remote machine.
Damien Millere379e102009-02-14 16:34:39 +11001213.Pp
Damien Miller85c6d8a2009-02-14 16:34:21 +11001214If the
1215.Ar port
1216argument is
1217.Ql 0 ,
1218the listen port will be dynamically allocated on the server and reported
1219to the client at run time.
Damien Millerf91ee4c2005-03-01 21:24:33 +11001220.Pp
1221If the
1222.Ar bind_address
1223is not specified, the default is to only bind to loopback addresses.
1224If the
1225.Ar bind_address
1226is
1227.Ql *
1228or an empty string, then the forwarding is requested to listen on all
1229interfaces.
1230Specifying a remote
1231.Ar bind_address
Damien Millerf8c55462005-03-02 12:03:05 +11001232will only succeed if the server's
1233.Cm GatewayPorts
Damien Millerf91ee4c2005-03-01 21:24:33 +11001234option is enabled (see
Damien Millerf8c55462005-03-02 12:03:05 +11001235.Xr sshd_config 5 ) .
Damien Miller21771e22011-05-15 08:45:50 +10001236.It Cm RequestTTY
1237Specifies whether to request a pseudo-tty for the session.
1238The argument may be one of:
1239.Dq no
1240(never request a TTY),
1241.Dq yes
1242(always request a TTY when standard input is a TTY),
1243.Dq force
1244(always request a TTY) or
1245.Dq auto
1246(request a TTY when opening a login session).
1247This option mirrors the
1248.Fl t
1249and
1250.Fl T
1251flags for
1252.Xr ssh 1 .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001253.It Cm RhostsRSAAuthentication
1254Specifies whether to try rhosts based authentication with RSA host
1255authentication.
1256The argument must be
1257.Dq yes
1258or
1259.Dq no .
1260The default is
1261.Dq no .
1262This option applies to protocol version 1 only and requires
Damien Miller45ee2b92006-03-15 11:56:18 +11001263.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +00001264to be setuid root.
1265.It Cm RSAAuthentication
1266Specifies whether to try RSA authentication.
1267The argument to this keyword must be
1268.Dq yes
1269or
1270.Dq no .
1271RSA authentication will only be
1272attempted if the identity file exists, or an authentication agent is
1273running.
1274The default is
1275.Dq yes .
1276Note that this option applies to protocol version 1 only.
Darren Tucker46bc0752004-05-02 22:11:30 +10001277.It Cm SendEnv
1278Specifies what variables from the local
1279.Xr environ 7
1280should be sent to the server.
Damien Miller45ee2b92006-03-15 11:56:18 +11001281Note that environment passing is only supported for protocol 2.
1282The server must also support it, and the server must be configured to
Darren Tucker1e0c9bf2004-05-02 22:12:48 +10001283accept these environment variables.
Darren Tucker46bc0752004-05-02 22:11:30 +10001284Refer to
1285.Cm AcceptEnv
1286in
1287.Xr sshd_config 5
1288for how to configure the server.
Damien Miller6def5512006-03-15 11:54:05 +11001289Variables are specified by name, which may contain wildcard characters.
Darren Tucker1e0c9bf2004-05-02 22:12:48 +10001290Multiple environment variables may be separated by whitespace or spread
Darren Tucker46bc0752004-05-02 22:11:30 +10001291across multiple
1292.Cm SendEnv
1293directives.
1294The default is not to send any environment variables.
Damien Millerf54a4b92006-03-15 11:54:36 +11001295.Pp
1296See
1297.Sx PATTERNS
1298for more information on patterns.
Damien Miller509b0102003-12-17 16:33:10 +11001299.It Cm ServerAliveCountMax
Damien Millerb7977702006-01-03 18:47:31 +11001300Sets the number of server alive messages (see below) which may be
Damien Miller509b0102003-12-17 16:33:10 +11001301sent without
Damien Miller45ee2b92006-03-15 11:56:18 +11001302.Xr ssh 1
Damien Miller509b0102003-12-17 16:33:10 +11001303receiving any messages back from the server.
1304If this threshold is reached while server alive messages are being sent,
Damien Miller45ee2b92006-03-15 11:56:18 +11001305ssh will disconnect from the server, terminating the session.
Damien Miller509b0102003-12-17 16:33:10 +11001306It is important to note that the use of server alive messages is very
1307different from
1308.Cm TCPKeepAlive
1309(below).
1310The server alive messages are sent through the encrypted channel
1311and therefore will not be spoofable.
1312The TCP keepalive option enabled by
1313.Cm TCPKeepAlive
1314is spoofable.
1315The server alive mechanism is valuable when the client or
1316server depend on knowing when a connection has become inactive.
1317.Pp
1318The default value is 3.
1319If, for example,
1320.Cm ServerAliveInterval
Damien Miller45ee2b92006-03-15 11:56:18 +11001321(see below) is set to 15 and
Damien Miller509b0102003-12-17 16:33:10 +11001322.Cm ServerAliveCountMax
Damien Miller45ee2b92006-03-15 11:56:18 +11001323is left at the default, if the server becomes unresponsive,
1324ssh will disconnect after approximately 45 seconds.
Damien Millercc3e8ba2006-03-15 12:06:55 +11001325This option applies to protocol version 2 only.
Damien Miller957d4e42005-12-13 19:30:45 +11001326.It Cm ServerAliveInterval
1327Sets a timeout interval in seconds after which if no data has been received
1328from the server,
Damien Miller45ee2b92006-03-15 11:56:18 +11001329.Xr ssh 1
Damien Miller957d4e42005-12-13 19:30:45 +11001330will send a message through the encrypted
1331channel to request a response from the server.
1332The default
1333is 0, indicating that these messages will not be sent to the server.
1334This option applies to protocol version 2 only.
Damien Miller7acefbb2014-07-18 14:11:24 +10001335.It Cm StreamLocalBindMask
1336Sets the octal file creation mode mask
1337.Pq umask
1338used when creating a Unix-domain socket file for local or remote
1339port forwarding.
1340This option is only used for port forwarding to a Unix-domain socket file.
1341.Pp
1342The default value is 0177, which creates a Unix-domain socket file that is
1343readable and writable only by the owner.
1344Note that not all operating systems honor the file mode on Unix-domain
1345socket files.
1346.It Cm StreamLocalBindUnlink
1347Specifies whether to remove an existing Unix-domain socket file for local
1348or remote port forwarding before creating a new one.
1349If the socket file already exists and
1350.Cm StreamLocalBindUnlink
1351is not enabled,
1352.Nm ssh
1353will be unable to forward the port to the Unix-domain socket file.
1354This option is only used for port forwarding to a Unix-domain socket file.
1355.Pp
1356The argument must be
1357.Dq yes
1358or
1359.Dq no .
1360The default is
1361.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001362.It Cm StrictHostKeyChecking
1363If this flag is set to
1364.Dq yes ,
Damien Miller45ee2b92006-03-15 11:56:18 +11001365.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +00001366will never automatically add host keys to the
Damien Miller167ea5d2005-05-26 12:04:02 +10001367.Pa ~/.ssh/known_hosts
Ben Lindstrom9f049032002-06-21 00:59:05 +00001368file, and refuses to connect to hosts whose host key has changed.
1369This provides maximum protection against trojan horse attacks,
Damien Miller45ee2b92006-03-15 11:56:18 +11001370though it can be annoying when the
Ben Lindstrom9f049032002-06-21 00:59:05 +00001371.Pa /etc/ssh/ssh_known_hosts
Damien Miller45ee2b92006-03-15 11:56:18 +11001372file is poorly maintained or when connections to new hosts are
Ben Lindstrom9f049032002-06-21 00:59:05 +00001373frequently made.
1374This option forces the user to manually
1375add all new hosts.
1376If this flag is set to
1377.Dq no ,
Damien Miller45ee2b92006-03-15 11:56:18 +11001378ssh will automatically add new host keys to the
Ben Lindstrom9f049032002-06-21 00:59:05 +00001379user known hosts files.
1380If this flag is set to
1381.Dq ask ,
1382new host keys
1383will be added to the user known host files only after the user
1384has confirmed that is what they really want to do, and
Damien Miller45ee2b92006-03-15 11:56:18 +11001385ssh will refuse to connect to hosts whose host key has changed.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001386The host keys of
1387known hosts will be verified automatically in all cases.
1388The argument must be
1389.Dq yes ,
Damien Miller45ee2b92006-03-15 11:56:18 +11001390.Dq no ,
Ben Lindstrom9f049032002-06-21 00:59:05 +00001391or
1392.Dq ask .
1393The default is
1394.Dq ask .
Damien Miller12c150e2003-12-17 16:31:10 +11001395.It Cm TCPKeepAlive
1396Specifies whether the system should send TCP keepalive messages to the
1397other side.
1398If they are sent, death of the connection or crash of one
1399of the machines will be properly noticed.
1400However, this means that
1401connections will die if the route is down temporarily, and some people
1402find it annoying.
1403.Pp
1404The default is
1405.Dq yes
1406(to send TCP keepalive messages), and the client will notice
1407if the network goes down or the remote host dies.
1408This is important in scripts, and many users want it too.
1409.Pp
1410To disable TCP keepalive messages, the value should be set to
1411.Dq no .
Damien Millerd27b9472005-12-13 19:29:02 +11001412.It Cm Tunnel
Damien Miller991dba42006-07-10 20:16:27 +10001413Request
Damien Millerd27b9472005-12-13 19:29:02 +11001414.Xr tun 4
Damien Miller7746c392005-12-13 19:33:37 +11001415device forwarding between the client and the server.
Damien Millerd27b9472005-12-13 19:29:02 +11001416The argument must be
Damien Miller7b58e802005-12-13 19:33:19 +11001417.Dq yes ,
Damien Miller991dba42006-07-10 20:16:27 +10001418.Dq point-to-point
1419(layer 3),
1420.Dq ethernet
1421(layer 2),
Damien Millerd27b9472005-12-13 19:29:02 +11001422or
1423.Dq no .
Damien Miller991dba42006-07-10 20:16:27 +10001424Specifying
1425.Dq yes
1426requests the default tunnel mode, which is
1427.Dq point-to-point .
Damien Millerd27b9472005-12-13 19:29:02 +11001428The default is
1429.Dq no .
1430.It Cm TunnelDevice
Damien Miller991dba42006-07-10 20:16:27 +10001431Specifies the
Damien Millerd27b9472005-12-13 19:29:02 +11001432.Xr tun 4
Damien Miller991dba42006-07-10 20:16:27 +10001433devices to open on the client
1434.Pq Ar local_tun
1435and the server
1436.Pq Ar remote_tun .
1437.Pp
1438The argument must be
1439.Sm off
1440.Ar local_tun Op : Ar remote_tun .
1441.Sm on
1442The devices may be specified by numerical ID or the keyword
1443.Dq any ,
1444which uses the next available tunnel device.
1445If
1446.Ar remote_tun
1447is not specified, it defaults to
1448.Dq any .
1449The default is
1450.Dq any:any .
Damien Millere8cd7412005-12-24 14:55:47 +11001451.It Cm UsePrivilegedPort
1452Specifies whether to use a privileged port for outgoing connections.
1453The argument must be
1454.Dq yes
1455or
1456.Dq no .
1457The default is
1458.Dq no .
1459If set to
Damien Miller45ee2b92006-03-15 11:56:18 +11001460.Dq yes ,
1461.Xr ssh 1
Damien Millere8cd7412005-12-24 14:55:47 +11001462must be setuid root.
1463Note that this option must be set to
1464.Dq yes
1465for
1466.Cm RhostsRSAAuthentication
1467with older servers.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001468.It Cm User
1469Specifies the user to log in as.
1470This can be useful when a different user name is used on different machines.
1471This saves the trouble of
1472having to remember to give the user name on the command line.
1473.It Cm UserKnownHostsFile
Damien Miller295ee632011-05-29 21:42:31 +10001474Specifies one or more files to use for the user
1475host key database, separated by whitespace.
1476The default is
1477.Pa ~/.ssh/known_hosts ,
1478.Pa ~/.ssh/known_hosts2 .
Damien Miller37876e92003-05-15 10:19:46 +10001479.It Cm VerifyHostKeyDNS
1480Specifies whether to verify the remote key using DNS and SSHFP resource
1481records.
Damien Miller150b5572003-11-17 21:19:29 +11001482If this option is set to
1483.Dq yes ,
Damien Millerfe448472003-11-17 21:19:49 +11001484the client will implicitly trust keys that match a secure fingerprint
Damien Miller150b5572003-11-17 21:19:29 +11001485from DNS.
1486Insecure fingerprints will be handled as if this option was set to
1487.Dq ask .
1488If this option is set to
1489.Dq ask ,
1490information on fingerprint match will be displayed, but the user will still
1491need to confirm new host keys according to the
1492.Cm StrictHostKeyChecking
1493option.
1494The argument must be
1495.Dq yes ,
Damien Miller45ee2b92006-03-15 11:56:18 +11001496.Dq no ,
Damien Millerfe448472003-11-17 21:19:49 +11001497or
1498.Dq ask .
Damien Miller37876e92003-05-15 10:19:46 +10001499The default is
1500.Dq no .
Damien Millereacbb4f2003-06-02 19:10:41 +10001501Note that this option applies to protocol version 2 only.
Damien Miller45ee2b92006-03-15 11:56:18 +11001502.Pp
Damien Millerfecfd112013-07-18 16:11:50 +10001503See also VERIFYING HOST KEYS in
Damien Miller45ee2b92006-03-15 11:56:18 +11001504.Xr ssh 1 .
Damien Miller10288242008-06-30 00:04:03 +10001505.It Cm VisualHostKey
1506If this flag is set to
1507.Dq yes ,
1508an ASCII art representation of the remote host key fingerprint is
Damien Millera414cd32008-11-03 19:25:21 +11001509printed in addition to the hex fingerprint string at login and
1510for unknown host keys.
Damien Miller10288242008-06-30 00:04:03 +10001511If this flag is set to
1512.Dq no ,
Damien Millera414cd32008-11-03 19:25:21 +11001513no fingerprint strings are printed at login and
1514only the hex fingerprint string will be printed for unknown host keys.
Damien Miller10288242008-06-30 00:04:03 +10001515The default is
1516.Dq no .
Ben Lindstrom9f049032002-06-21 00:59:05 +00001517.It Cm XAuthLocation
Damien Miller05913ba2002-09-04 16:51:03 +10001518Specifies the full pathname of the
Ben Lindstrom9f049032002-06-21 00:59:05 +00001519.Xr xauth 1
1520program.
1521The default is
1522.Pa /usr/X11R6/bin/xauth .
1523.El
Damien Millerb5282c22006-03-15 11:59:08 +11001524.Sh PATTERNS
1525A
1526.Em pattern
1527consists of zero or more non-whitespace characters,
1528.Sq *
1529(a wildcard that matches zero or more characters),
1530or
1531.Sq ?\&
1532(a wildcard that matches exactly one character).
1533For example, to specify a set of declarations for any host in the
1534.Dq .co.uk
1535set of domains,
1536the following pattern could be used:
1537.Pp
1538.Dl Host *.co.uk
1539.Pp
1540The following pattern
1541would match any host in the 192.168.0.[0-9] network range:
1542.Pp
1543.Dl Host 192.168.0.?
1544.Pp
1545A
1546.Em pattern-list
1547is a comma-separated list of patterns.
1548Patterns within pattern-lists may be negated
1549by preceding them with an exclamation mark
1550.Pq Sq !\& .
1551For example,
Damien Miller51682fa2013-10-17 11:48:31 +11001552to allow a key to be used from anywhere within an organization
Damien Millerb5282c22006-03-15 11:59:08 +11001553except from the
1554.Dq dialup
1555pool,
1556the following entry (in authorized_keys) could be used:
1557.Pp
1558.Dl from=\&"!*.dialup.example.com,*.example.com\&"
Ben Lindstrom9f049032002-06-21 00:59:05 +00001559.Sh FILES
1560.Bl -tag -width Ds
Damien Miller167ea5d2005-05-26 12:04:02 +10001561.It Pa ~/.ssh/config
Ben Lindstrom9f049032002-06-21 00:59:05 +00001562This is the per-user configuration file.
1563The format of this file is described above.
Damien Miller45ee2b92006-03-15 11:56:18 +11001564This file is used by the SSH client.
Damien Millerc970cb92004-04-20 20:12:53 +10001565Because of the potential for abuse, this file must have strict permissions:
1566read/write for the user, and not accessible by others.
Ben Lindstrom9f049032002-06-21 00:59:05 +00001567.It Pa /etc/ssh/ssh_config
1568Systemwide configuration file.
1569This file provides defaults for those
1570values that are not specified in the user's configuration file, and
1571for those users who do not have a configuration file.
1572This file must be world-readable.
1573.El
Damien Millerf1ce5052003-06-11 22:04:39 +10001574.Sh SEE ALSO
1575.Xr ssh 1
Ben Lindstrom9f049032002-06-21 00:59:05 +00001576.Sh AUTHORS
1577OpenSSH is a derivative of the original and free
1578ssh 1.2.12 release by Tatu Ylonen.
1579Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1580Theo de Raadt and Dug Song
1581removed many bugs, re-added newer features and
1582created OpenSSH.
1583Markus Friedl contributed the support for SSH
1584protocol versions 1.5 and 2.0.