]> andersk Git - openssh.git/blame - ssh_config.5
- jmc@cvs.openbsd.org 2006/02/25 12:28:34
[openssh.git] / ssh_config.5
CommitLineData
588df31a 1.\" -*- nroff -*-
2.\"
3.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\" All rights reserved
6.\"
7.\" As far as I am concerned, the code I have written for this software
8.\" can be used freely for any purpose. Any derived versions of this
9.\" software must be clearly marked as such, and if the derived work is
10.\" incompatible with the protocol description in the RFC file, it must be
11.\" called by a name other than "ssh" or "Secure Shell".
12.\"
13.\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
14.\" Copyright (c) 1999 Aaron Campbell. All rights reserved.
15.\" Copyright (c) 1999 Theo de Raadt. All rights reserved.
16.\"
17.\" Redistribution and use in source and binary forms, with or without
18.\" modification, are permitted provided that the following conditions
19.\" are met:
20.\" 1. Redistributions of source code must retain the above copyright
21.\" notice, this list of conditions and the following disclaimer.
22.\" 2. Redistributions in binary form must reproduce the above copyright
23.\" notice, this list of conditions and the following disclaimer in the
24.\" documentation and/or other materials provided with the distribution.
25.\"
26.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\"
2963b207 37.\" $OpenBSD: ssh_config.5,v 1.85 2006/02/25 12:26:17 jmc Exp $
588df31a 38.Dd September 25, 1999
39.Dt SSH_CONFIG 5
40.Os
41.Sh NAME
42.Nm ssh_config
43.Nd OpenSSH SSH client configuration files
44.Sh SYNOPSIS
45.Bl -tag -width Ds -compact
140e3e97 46.It Pa ~/.ssh/config
588df31a 47.It Pa /etc/ssh/ssh_config
48.El
49.Sh DESCRIPTION
c5786b30 50.Xr ssh 1
588df31a 51obtains configuration data from the following sources in
52the following order:
922f8f17 53.Pp
4dcbbeea 54.Bl -enum -offset indent -compact
55.It
56command-line options
57.It
58user's configuration file
140e3e97 59.Pq Pa ~/.ssh/config
4dcbbeea 60.It
61system-wide configuration file
62.Pq Pa /etc/ssh/ssh_config
63.El
588df31a 64.Pp
65For each parameter, the first obtained value
66will be used.
7034edae 67The configuration files contain sections separated by
588df31a 68.Dq Host
69specifications, and that section is only applied for hosts that
70match one of the patterns given in the specification.
71The matched host name is the one given on the command line.
72.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.
95d46d8f 76.Sh PATTERNS
77A
78.Em pattern
79consists of zero or more non-whitespace characters,
80.Sq *
81(a wildcard that matches zero or more characters),
82or
83.Sq ?\&
84(a wildcard that matches exactly one character).
85For example, to specify a set of declarations for any host in the
86.Dq .co.uk
87set of domains,
88the following pattern could be used:
89.Pp
90.Dl Host *.co.uk
91.Pp
92The following pattern
93would match any host in the 192.168.0.[0-9] network range:
588df31a 94.Pp
95d46d8f 95.Dl Host 192.168.0.?
96.Pp
97A
98.Em pattern-list
99is a comma-separated list of patterns.
100Patterns within pattern-lists may be negated
101by preceding them with an exclamation mark
102.Pq Sq !\& .
103For example,
104to allow a key to be used from anywhere within an organisation
105except from the
106.Dq dialup
107pool,
108the following entry (in authorized_keys) could be used:
109.Pp
110.Dl from=\&"!*.dialup.example.com,*.example.com\&"
111.Sh FILE FORMAT
588df31a 112The configuration file has the following format:
113.Pp
114Empty lines and lines starting with
115.Ql #
116are comments.
588df31a 117Otherwise a line is of the format
118.Dq keyword arguments .
119Configuration options may be separated by whitespace or
120optional whitespace and exactly one
121.Ql = ;
122the latter format is useful to avoid the need to quote whitespace
123when specifying configuration options using the
124.Nm ssh ,
125.Nm scp
126and
127.Nm sftp
128.Fl o
129option.
130.Pp
131The possible
132keywords and their meanings are as follows (note that
133keywords are case-insensitive and arguments are case-sensitive):
134.Bl -tag -width Ds
135.It Cm Host
136Restricts the following declarations (up to the next
137.Cm Host
138keyword) to be only for those hosts that match one of the patterns
139given after the keyword.
588df31a 140A single
f09ffbdb 141.Ql *
588df31a 142as a pattern can be used to provide global
143defaults for all hosts.
144The host is the
145.Ar hostname
f09ffbdb 146argument given on the command line (i.e. the name is not converted to
588df31a 147a canonicalized host name before matching).
436a5ff9 148.Pp
149See
150.Sx PATTERNS
151for more information on patterns.
f811e52a 152.It Cm AddressFamily
3cbc677d 153Specifies which address family to use when connecting.
154Valid arguments are
f811e52a 155.Dq any ,
156.Dq inet
c5786b30 157(use IPv4 only), or
f811e52a 158.Dq inet6
0d6cbe2c 159(use IPv6 only).
588df31a 160.It Cm BatchMode
161If set to
162.Dq yes ,
163passphrase/password querying will be disabled.
164This option is useful in scripts and other batch jobs where no user
165is present to supply the password.
166The argument must be
167.Dq yes
168or
169.Dq no .
170The default is
171.Dq no .
172.It Cm BindAddress
1a8521be 173Use the specified address on the local machine as the source address of
82b7531b 174the connection.
175Only useful on systems with more than one address.
588df31a 176Note that this option does not work if
177.Cm UsePrivilegedPort
178is set to
179.Dq yes .
180.It Cm ChallengeResponseAuthentication
340a4caf 181Specifies whether to use challenge-response authentication.
588df31a 182The argument to this keyword must be
183.Dq yes
184or
185.Dq no .
186The default is
187.Dq yes .
188.It Cm CheckHostIP
189If this flag is set to
190.Dq yes ,
c5786b30 191.Xr ssh 1
192will additionally check the host IP address in the
588df31a 193.Pa known_hosts
194file.
195This allows ssh to detect if a host key changed due to DNS spoofing.
196If the option is set to
197.Dq no ,
198the check will not be executed.
199The default is
200.Dq yes .
201.It Cm Cipher
202Specifies the cipher to use for encrypting the session
203in protocol version 1.
204Currently,
205.Dq blowfish ,
206.Dq 3des ,
207and
208.Dq des
209are supported.
210.Ar des
211is only supported in the
c5786b30 212.Xr ssh 1
588df31a 213client for interoperability with legacy protocol 1 implementations
214that do not support the
215.Ar 3des
a4e5acef 216cipher.
217Its use is strongly discouraged due to cryptographic weaknesses.
588df31a 218The default is
219.Dq 3des .
220.It Cm Ciphers
221Specifies the ciphers allowed for protocol version 2
222in order of preference.
223Multiple ciphers must be comma-separated.
3b9baa7b 224The supported ciphers are
225.Dq 3des-cbc ,
226.Dq aes128-cbc ,
227.Dq aes192-cbc ,
228.Dq aes256-cbc ,
229.Dq aes128-ctr ,
230.Dq aes192-ctr ,
231.Dq aes256-ctr ,
74a66cc8 232.Dq arcfour128 ,
233.Dq arcfour256 ,
3b9baa7b 234.Dq arcfour ,
235.Dq blowfish-cbc ,
236and
237.Dq cast128-cbc .
c5786b30 238The default is:
239.Bd -literal -offset 3n
240aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,
241arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr,
242aes192-ctr,aes256-ctr
588df31a 243.Ed
244.It Cm ClearAllForwardings
c5786b30 245Specifies that all local, remote, and dynamic port forwardings
588df31a 246specified in the configuration files or on the command line be
a4e5acef 247cleared.
248This option is primarily useful when used from the
c5786b30 249.Xr ssh 1
588df31a 250command line to clear port forwardings set in
251configuration files, and is automatically set by
252.Xr scp 1
253and
254.Xr sftp 1 .
255The argument must be
256.Dq yes
257or
258.Dq no .
259The default is
260.Dq no .
261.It Cm Compression
262Specifies whether to use compression.
263The argument must be
264.Dq yes
265or
266.Dq no .
267The default is
268.Dq no .
269.It Cm CompressionLevel
270Specifies the compression level to use if compression is enabled.
271The argument must be an integer from 1 (fast) to 9 (slow, best).
272The default level is 6, which is good for most applications.
273The meaning of the values is the same as in
274.Xr gzip 1 .
275Note that this option applies to protocol version 1 only.
276.It Cm ConnectionAttempts
277Specifies the number of tries (one per second) to make before exiting.
278The argument must be an integer.
279This may be useful in scripts if the connection sometimes fails.
280The default is 1.
09ab3296 281.It Cm ConnectTimeout
c5786b30 282Specifies the timeout (in seconds) used when connecting to the
283SSH server, instead of using the default system TCP timeout.
3cbc677d 284This value is used only when the target is down or really unreachable,
285not when it refuses the connection.
5e96b616 286.It Cm ControlMaster
287Enables the sharing of multiple sessions over a single network connection.
288When set to
c5786b30 289.Dq yes ,
290.Xr ssh 1
5e96b616 291will listen for connections on a control socket specified using the
292.Cm ControlPath
293argument.
294Additional sessions can connect to this socket using the same
295.Cm ControlPath
296with
297.Cm ControlMaster
298set to
299.Dq no
9a5cfb58 300(the default).
db98627d 301These sessions will try to reuse the master instance's network connection
6b0b0d65 302rather than initiating new ones, but will fall back to connecting normally
303if the control socket does not exist, or is not listening.
304.Pp
0d34d6ce 305Setting this to
306.Dq ask
c5786b30 307will cause ssh
0d34d6ce 308to listen for control connections, but require confirmation using the
309.Ev SSH_ASKPASS
310program before they are accepted (see
311.Xr ssh-add 1
9a5cfb58 312for details).
cc8ca1e6 313If the
314.Cm ControlPath
c5786b30 315cannot be opened,
316ssh will continue without connecting to a master instance.
9dfd96d6 317.Pp
ef07103c 318X11 and
d313869b 319.Xr ssh-agent 1
ef07103c 320forwarding is supported over these multiplexed connections, however the
8918b906 321display and agent forwarded will be the one belonging to the master
d313869b 322connection i.e. it is not possible to forward multiple displays or agents.
ef07103c 323.Pp
9dfd96d6 324Two additional options allow for opportunistic multiplexing: try to use a
325master connection but fall back to creating a new one if one does not already
326exist.
327These options are:
328.Dq auto
329and
330.Dq autoask .
331The latter requires confirmation like the
332.Dq ask
333option.
5e96b616 334.It Cm ControlPath
a980cbd7 335Specify the path to the control socket used for connection sharing as described
336in the
5e96b616 337.Cm ControlMaster
699255b5 338section above or the string
339.Dq none
340to disable connection sharing.
a980cbd7 341In the path,
f7b8224d 342.Ql %l
343will be substituted by the local host name,
a980cbd7 344.Ql %h
345will be substituted by the target host name,
346.Ql %p
c5786b30 347the port, and
a980cbd7 348.Ql %r
349by the remote login username.
9dfd96d6 350It is recommended that any
351.Cm ControlPath
352used for opportunistic connection sharing include
5e7007ea 353at least %h, %p, and %r.
9dfd96d6 354This ensures that shared connections are uniquely identified.
9a5cfb58 355.It Cm DynamicForward
0b3950af 356Specifies that a TCP port on the local machine be forwarded
9a5cfb58 357over the secure channel, and the application
358protocol is then used to determine where to connect to from the
359remote machine.
5ddc5eb4 360.Pp
361The argument must be
362.Sm off
363.Oo Ar bind_address : Oc Ar port .
364.Sm on
365IPv6 addresses can be specified by enclosing addresses in square brackets or
366by using an alternative syntax:
367.Oo Ar bind_address Ns / Oc Ns Ar port .
368By default, the local port is bound in accordance with the
369.Cm GatewayPorts
370setting.
371However, an explicit
372.Ar bind_address
373may be used to bind the connection to a specific address.
374The
375.Ar bind_address
376of
377.Dq localhost
378indicates that the listening port be bound for local use only, while an
379empty address or
380.Sq *
381indicates that the port should be available from all interfaces.
382.Pp
9a5cfb58 383Currently the SOCKS4 and SOCKS5 protocols are supported, and
c5786b30 384.Xr ssh 1
9a5cfb58 385will act as a SOCKS server.
386Multiple forwardings may be specified, and
387additional forwardings can be given on the command line.
388Only the superuser can forward privileged ports.
f0677b69 389.It Cm EnableSSHKeysign
390Setting this option to
391.Dq yes
392in the global client configuration file
393.Pa /etc/ssh/ssh_config
394enables the use of the helper program
395.Xr ssh-keysign 8
396during
397.Cm HostbasedAuthentication .
398The argument must be
399.Dq yes
400or
401.Dq no .
402The default is
403.Dq no .
246bb171 404This option should be placed in the non-hostspecific section.
f0677b69 405See
406.Xr ssh-keysign 8
407for more information.
588df31a 408.It Cm EscapeChar
409Sets the escape character (default:
410.Ql ~ ) .
411The escape character can also
412be set on the command line.
413The argument should be a single character,
414.Ql ^
415followed by a letter, or
416.Dq none
417to disable the escape
418character entirely (making the connection transparent for binary
419data).
420.It Cm ForwardAgent
421Specifies whether the connection to the authentication agent (if any)
422will be forwarded to the remote machine.
423The argument must be
424.Dq yes
425or
426.Dq no .
427The default is
428.Dq no .
dbcdea68 429.Pp
a4e5acef 430Agent forwarding should be enabled with caution.
431Users with the ability to bypass file permissions on the remote host
432(for the agent's Unix-domain socket)
433can access the local agent through the forwarded connection.
434An attacker cannot obtain key material from the agent,
dbcdea68 435however they can perform operations on the keys that enable them to
436authenticate using the identities loaded into the agent.
588df31a 437.It Cm ForwardX11
438Specifies whether X11 connections will be automatically redirected
439over the secure channel and
440.Ev DISPLAY
441set.
442The argument must be
443.Dq yes
444or
445.Dq no .
446The default is
447.Dq no .
dbcdea68 448.Pp
a4e5acef 449X11 forwarding should be enabled with caution.
450Users with the ability to bypass file permissions on the remote host
d73a67d7 451(for the user's X11 authorization database)
a4e5acef 452can access the local X11 display through the forwarded connection.
d73a67d7 453An attacker may then be able to perform activities such as keystroke monitoring
454if the
455.Cm ForwardX11Trusted
456option is also enabled.
457.It Cm ForwardX11Trusted
b2e90ab5 458If this option is set to
c5786b30 459.Dq yes ,
460remote X11 clients will have full access to the original X11 display.
9a6b3b7a 461.Pp
d73a67d7 462If this option is set to
c5786b30 463.Dq no ,
464remote X11 clients will be considered untrusted and prevented
d73a67d7 465from stealing or tampering with data belonging to trusted X11
466clients.
9a6b3b7a 467Furthermore, the
468.Xr xauth 1
469token used for the session will be set to expire after 20 minutes.
470Remote clients will be refused access after this time.
d73a67d7 471.Pp
472The default is
473.Dq no .
474.Pp
475See the X11 SECURITY extension specification for full details on
476the restrictions imposed on untrusted clients.
588df31a 477.It Cm GatewayPorts
478Specifies whether remote hosts are allowed to connect to local
479forwarded ports.
480By default,
c5786b30 481.Xr ssh 1
a4e5acef 482binds local port forwardings to the loopback address.
483This prevents other remote hosts from connecting to forwarded ports.
588df31a 484.Cm GatewayPorts
c5786b30 485can be used to specify that ssh
588df31a 486should bind local port forwardings to the wildcard address,
487thus allowing remote hosts to connect to forwarded ports.
488The argument must be
489.Dq yes
490or
491.Dq no .
492The default is
493.Dq no .
494.It Cm GlobalKnownHostsFile
495Specifies a file to use for the global
496host key database instead of
497.Pa /etc/ssh/ssh_known_hosts .
7364bd04 498.It Cm GSSAPIAuthentication
e8dd24a8 499Specifies whether user authentication based on GSSAPI is allowed.
d0445371 500The default is
2ecb78df 501.Dq no .
7364bd04 502Note that this option applies to protocol version 2 only.
503.It Cm GSSAPIDelegateCredentials
504Forward (delegate) credentials to the server.
505The default is
506.Dq no .
507Note that this option applies to protocol version 2 only.
5c63c2ab 508.It Cm HashKnownHosts
509Indicates that
c5786b30 510.Xr ssh 1
5c63c2ab 511should hash host names and addresses when they are added to
140e3e97 512.Pa ~/.ssh/known_hosts .
5c63c2ab 513These hashed names may be used normally by
c5786b30 514.Xr ssh 1
5c63c2ab 515and
c5786b30 516.Xr sshd 8 ,
5c63c2ab 517but they do not reveal identifying information should the file's contents
518be disclosed.
519The default is
520.Dq no .
cd8f998c 521Note that hashing of names and addresses will not be retrospectively applied
bdffbcdc 522to existing known hosts files, but these may be manually hashed using
523.Xr ssh-keygen 1 .
588df31a 524.It Cm HostbasedAuthentication
525Specifies whether to try rhosts based authentication with public key
526authentication.
527The argument must be
528.Dq yes
529or
530.Dq no .
531The default is
532.Dq no .
533This option applies to protocol version 2 only and
534is similar to
535.Cm RhostsRSAAuthentication .
536.It Cm HostKeyAlgorithms
537Specifies the protocol version 2 host key algorithms
538that the client wants to use in order of preference.
539The default for this option is:
540.Dq ssh-rsa,ssh-dss .
541.It Cm HostKeyAlias
542Specifies an alias that should be used instead of the
543real host name when looking up or saving the host key
544in the host key database files.
c5786b30 545This option is useful for tunneling SSH connections
588df31a 546or for multiple servers running on a single host.
547.It Cm HostName
548Specifies the real host name to log into.
549This can be used to specify nicknames or abbreviations for hosts.
c5786b30 550The default is the name given on the command line.
588df31a 551Numeric IP addresses are also permitted (both on the command line and in
552.Cm HostName
553specifications).
3a065ed0 554.It Cm IdentitiesOnly
555Specifies that
c5786b30 556.Xr ssh 1
3a065ed0 557should only use the authentication identity files configured in the
1e9b1b82 558.Nm
3a065ed0 559files,
c5786b30 560even if
561.Xr ssh-agent 1
3a065ed0 562offers more identities.
563The argument to this keyword must be
564.Dq yes
565or
566.Dq no .
c5786b30 567This option is intended for situations where ssh-agent
3a065ed0 568offers many different identities.
569The default is
570.Dq no .
030723f9 571.It Cm IdentityFile
572Specifies a file from which the user's RSA or DSA authentication identity
573is read.
574The default is
575.Pa ~/.ssh/identity
576for protocol version 1, and
577.Pa ~/.ssh/id_rsa
578and
579.Pa ~/.ssh/id_dsa
580for protocol version 2.
581Additionally, any identities represented by the authentication agent
582will be used for authentication.
583The file name may use the tilde
584syntax to refer to a user's home directory.
585It is possible to have
586multiple identity files specified in configuration files; all these
587identities will be tried in sequence.
396070f8 588.It Cm KbdInteractiveDevices
589Specifies the list of methods to use in keyboard-interactive authentication.
590Multiple method names must be comma-separated.
591The default is to use the server specified list.
2963b207 592The methods available vary depending on what the server supports.
593For an OpenSSH server,
594it may be zero or more of:
595.Dq bsdauth ,
596.Dq pam ,
597and
598.Dq skey .
d20f3c9e 599.It Cm LocalCommand
600Specifies a command to execute on the local machine after successfully
601connecting to the server.
602The command string extends to the end of the line, and is executed with
603.Pa /bin/sh .
604This directive is ignored unless
605.Cm PermitLocalCommand
606has been enabled.
588df31a 607.It Cm LocalForward
0b3950af 608Specifies that a TCP port on the local machine be forwarded over
588df31a 609the secure channel to the specified host and port from the remote machine.
ecda4ffb 610The first argument must be
3867aa0a 611.Sm off
ecda4ffb 612.Oo Ar bind_address : Oc Ar port
3867aa0a 613.Sm on
ecda4ffb 614and the second argument must be
615.Ar host : Ns Ar hostport .
cd8f998c 616IPv6 addresses can be specified by enclosing addresses in square brackets or
3867aa0a 617by using an alternative syntax:
ecda4ffb 618.Oo Ar bind_address Ns / Oc Ns Ar port
619and
620.Ar host Ns / Ns Ar hostport .
cd8f998c 621Multiple forwardings may be specified, and additional forwardings can be
3867aa0a 622given on the command line.
588df31a 623Only the superuser can forward privileged ports.
3867aa0a 624By default, the local port is bound in accordance with the
625.Cm GatewayPorts
626setting.
627However, an explicit
628.Ar bind_address
629may be used to bind the connection to a specific address.
630The
631.Ar bind_address
632of
633.Dq localhost
cd8f998c 634indicates that the listening port be bound for local use only, while an
635empty address or
636.Sq *
3867aa0a 637indicates that the port should be available from all interfaces.
588df31a 638.It Cm LogLevel
639Gives the verbosity level that is used when logging messages from
c5786b30 640.Xr ssh 1 .
588df31a 641The possible values are:
c5786b30 642QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
a4e5acef 643The default is INFO.
644DEBUG and DEBUG1 are equivalent.
645DEBUG2 and DEBUG3 each specify higher levels of verbose output.
588df31a 646.It Cm MACs
647Specifies the MAC (message authentication code) algorithms
648in order of preference.
649The MAC algorithm is used in protocol version 2
650for data integrity protection.
651Multiple algorithms must be comma-separated.
c5786b30 652The default is:
588df31a 653.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
654.It Cm NoHostAuthenticationForLocalhost
655This option can be used if the home directory is shared across machines.
656In this case localhost will refer to a different machine on each of
657the machines and the user will get many warnings about changed host keys.
658However, this option disables host authentication for localhost.
659The argument to this keyword must be
660.Dq yes
661or
662.Dq no .
663The default is to check the host key for localhost.
664.It Cm NumberOfPasswordPrompts
665Specifies the number of password prompts before giving up.
666The argument to this keyword must be an integer.
c5786b30 667The default is 3.
588df31a 668.It Cm PasswordAuthentication
669Specifies whether to use password authentication.
670The argument to this keyword must be
671.Dq yes
672or
673.Dq no .
674The default is
675.Dq yes .
d20f3c9e 676.It Cm PermitLocalCommand
677Allow local command execution via the
678.Ic LocalCommand
679option or using the
64925c6d 680.Ic !\& Ns Ar command
d20f3c9e 681escape sequence in
682.Xr ssh 1 .
683The argument must be
684.Dq yes
685or
686.Dq no .
687The default is
688.Dq no .
030723f9 689.It Cm Port
690Specifies the port number to connect on the remote host.
c5786b30 691The default is 22.
588df31a 692.It Cm PreferredAuthentications
693Specifies the order in which the client should try protocol 2
3cbc677d 694authentication methods.
4e5038f7 695This allows a client to prefer one method (e.g.\&
588df31a 696.Cm keyboard-interactive )
4e5038f7 697over another method (e.g.\&
588df31a 698.Cm password )
699The default for this option is:
700.Dq hostbased,publickey,keyboard-interactive,password .
701.It Cm Protocol
702Specifies the protocol versions
c5786b30 703.Xr ssh 1
588df31a 704should support in order of preference.
705The possible values are
c5786b30 706.Sq 1
588df31a 707and
c5786b30 708.Sq 2 .
588df31a 709Multiple versions must be comma-separated.
710The default is
711.Dq 2,1 .
c5786b30 712This means that ssh
588df31a 713tries version 2 and falls back to version 1
714if version 2 is not available.
715.It Cm ProxyCommand
716Specifies the command to use to connect to the server.
717The command
718string extends to the end of the line, and is executed with
719.Pa /bin/sh .
720In the command string,
721.Ql %h
722will be substituted by the host name to
723connect and
724.Ql %p
725by the port.
726The command can be basically anything,
727and should read from its standard input and write to its standard output.
728It should eventually connect an
729.Xr sshd 8
730server running on some machine, or execute
731.Ic sshd -i
732somewhere.
733Host key management will be done using the
734HostName of the host being connected (defaulting to the name typed by
735the user).
a4e5acef 736Setting the command to
737.Dq none
f78bde70 738disables this option entirely.
588df31a 739Note that
740.Cm CheckHostIP
741is not available for connects with a proxy command.
742.Pp
2b610872 743This directive is useful in conjunction with
744.Xr nc 1
745and its proxy support.
9fa42d41 746For example, the following directive would connect via an HTTP proxy at
2b610872 747192.0.2.0:
748.Bd -literal -offset 3n
749ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p
750.Ed
588df31a 751.It Cm PubkeyAuthentication
752Specifies whether to try public key authentication.
753The argument to this keyword must be
754.Dq yes
755or
756.Dq no .
757The default is
758.Dq yes .
759This option applies to protocol version 2 only.
db175906 760.It Cm RekeyLimit
761Specifies the maximum amount of data that may be transmitted before the
0ce89457 762session key is renegotiated.
db175906 763The argument is the number of bytes, with an optional suffix of
0ce89457 764.Sq K ,
765.Sq M ,
db175906 766or
0ce89457 767.Sq G
db175906 768to indicate Kilobytes, Megabytes, or Gigabytes, respectively.
769The default is between
c5786b30 770.Sq 1G
db175906 771and
c5786b30 772.Sq 4G ,
db175906 773depending on the cipher.
0ce89457 774This option applies to protocol version 2 only.
588df31a 775.It Cm RemoteForward
0b3950af 776Specifies that a TCP port on the remote machine be forwarded over
588df31a 777the secure channel to the specified host and port from the local machine.
ecda4ffb 778The first argument must be
3867aa0a 779.Sm off
ecda4ffb 780.Oo Ar bind_address : Oc Ar port
6d7a9e8f 781.Sm on
ecda4ffb 782and the second argument must be
783.Ar host : Ns Ar hostport .
784IPv6 addresses can be specified by enclosing addresses in square brackets
785or by using an alternative syntax:
786.Oo Ar bind_address Ns / Oc Ns Ar port
787and
788.Ar host Ns / Ns Ar hostport .
588df31a 789Multiple forwardings may be specified, and additional
790forwardings can be given on the command line.
791Only the superuser can forward privileged ports.
3867aa0a 792.Pp
793If the
794.Ar bind_address
795is not specified, the default is to only bind to loopback addresses.
796If the
797.Ar bind_address
798is
799.Ql *
800or an empty string, then the forwarding is requested to listen on all
801interfaces.
802Specifying a remote
803.Ar bind_address
cd8f998c 804will only succeed if the server's
805.Cm GatewayPorts
3867aa0a 806option is enabled (see
cd8f998c 807.Xr sshd_config 5 ) .
588df31a 808.It Cm RhostsRSAAuthentication
809Specifies whether to try rhosts based authentication with RSA host
810authentication.
811The argument must be
812.Dq yes
813or
814.Dq no .
815The default is
816.Dq no .
817This option applies to protocol version 1 only and requires
c5786b30 818.Xr ssh 1
588df31a 819to be setuid root.
820.It Cm RSAAuthentication
821Specifies whether to try RSA authentication.
822The argument to this keyword must be
823.Dq yes
824or
825.Dq no .
826RSA authentication will only be
827attempted if the identity file exists, or an authentication agent is
828running.
829The default is
830.Dq yes .
831Note that this option applies to protocol version 1 only.
61a2c1da 832.It Cm SendEnv
833Specifies what variables from the local
834.Xr environ 7
835should be sent to the server.
c5786b30 836Note that environment passing is only supported for protocol 2.
837The server must also support it, and the server must be configured to
b8b9f2e6 838accept these environment variables.
61a2c1da 839Refer to
840.Cm AcceptEnv
841in
842.Xr sshd_config 5
843for how to configure the server.
95d46d8f 844Variables are specified by name, which may contain wildcard characters.
b8b9f2e6 845Multiple environment variables may be separated by whitespace or spread
61a2c1da 846across multiple
847.Cm SendEnv
848directives.
849The default is not to send any environment variables.
436a5ff9 850.Pp
851See
852.Sx PATTERNS
853for more information on patterns.
5d8d32a3 854.It Cm ServerAliveCountMax
79e46360 855Sets the number of server alive messages (see below) which may be
5d8d32a3 856sent without
c5786b30 857.Xr ssh 1
5d8d32a3 858receiving any messages back from the server.
859If this threshold is reached while server alive messages are being sent,
c5786b30 860ssh will disconnect from the server, terminating the session.
5d8d32a3 861It is important to note that the use of server alive messages is very
862different from
863.Cm TCPKeepAlive
864(below).
865The server alive messages are sent through the encrypted channel
866and therefore will not be spoofable.
867The TCP keepalive option enabled by
868.Cm TCPKeepAlive
869is spoofable.
870The server alive mechanism is valuable when the client or
871server depend on knowing when a connection has become inactive.
872.Pp
873The default value is 3.
874If, for example,
875.Cm ServerAliveInterval
c5786b30 876(see below) is set to 15 and
5d8d32a3 877.Cm ServerAliveCountMax
c5786b30 878is left at the default, if the server becomes unresponsive,
879ssh will disconnect after approximately 45 seconds.
030723f9 880.It Cm ServerAliveInterval
881Sets a timeout interval in seconds after which if no data has been received
882from the server,
c5786b30 883.Xr ssh 1
030723f9 884will send a message through the encrypted
885channel to request a response from the server.
886The default
887is 0, indicating that these messages will not be sent to the server.
888This option applies to protocol version 2 only.
588df31a 889.It Cm SmartcardDevice
3cbc677d 890Specifies which smartcard device to use.
891The argument to this keyword is the device
c5786b30 892.Xr ssh 1
588df31a 893should use to communicate with a smartcard used for storing the user's
3cbc677d 894private RSA key.
895By default, no device is specified and smartcard support is not activated.
588df31a 896.It Cm StrictHostKeyChecking
897If this flag is set to
898.Dq yes ,
c5786b30 899.Xr ssh 1
588df31a 900will never automatically add host keys to the
140e3e97 901.Pa ~/.ssh/known_hosts
588df31a 902file, and refuses to connect to hosts whose host key has changed.
903This provides maximum protection against trojan horse attacks,
c5786b30 904though it can be annoying when the
588df31a 905.Pa /etc/ssh/ssh_known_hosts
c5786b30 906file is poorly maintained or when connections to new hosts are
588df31a 907frequently made.
908This option forces the user to manually
909add all new hosts.
910If this flag is set to
911.Dq no ,
c5786b30 912ssh will automatically add new host keys to the
588df31a 913user known hosts files.
914If this flag is set to
915.Dq ask ,
916new host keys
917will be added to the user known host files only after the user
918has confirmed that is what they really want to do, and
c5786b30 919ssh will refuse to connect to hosts whose host key has changed.
588df31a 920The host keys of
921known hosts will be verified automatically in all cases.
922The argument must be
923.Dq yes ,
c5786b30 924.Dq no ,
588df31a 925or
926.Dq ask .
927The default is
928.Dq ask .
fd573618 929.It Cm TCPKeepAlive
930Specifies whether the system should send TCP keepalive messages to the
931other side.
932If they are sent, death of the connection or crash of one
933of the machines will be properly noticed.
934However, this means that
935connections will die if the route is down temporarily, and some people
936find it annoying.
937.Pp
938The default is
939.Dq yes
940(to send TCP keepalive messages), and the client will notice
941if the network goes down or the remote host dies.
942This is important in scripts, and many users want it too.
943.Pp
944To disable TCP keepalive messages, the value should be set to
945.Dq no .
d20f3c9e 946.It Cm Tunnel
947Request starting
948.Xr tun 4
a274ba38 949device forwarding between the client and the server.
950This option also allows requesting layer 2 (ethernet)
951instead of layer 3 (point-to-point) tunneling from the server.
d20f3c9e 952The argument must be
a4f24bf8 953.Dq yes ,
954.Dq point-to-point ,
c5786b30 955.Dq ethernet ,
d20f3c9e 956or
957.Dq no .
958The default is
959.Dq no .
960.It Cm TunnelDevice
961Force a specified
962.Xr tun 4
963device on the client.
964Without this option, the next available device will be used.
0c9851b1 965.It Cm UsePrivilegedPort
966Specifies whether to use a privileged port for outgoing connections.
967The argument must be
968.Dq yes
969or
970.Dq no .
971The default is
972.Dq no .
973If set to
c5786b30 974.Dq yes ,
975.Xr ssh 1
0c9851b1 976must be setuid root.
977Note that this option must be set to
978.Dq yes
979for
980.Cm RhostsRSAAuthentication
981with older servers.
588df31a 982.It Cm User
983Specifies the user to log in as.
984This can be useful when a different user name is used on different machines.
985This saves the trouble of
986having to remember to give the user name on the command line.
987.It Cm UserKnownHostsFile
988Specifies a file to use for the user
989host key database instead of
140e3e97 990.Pa ~/.ssh/known_hosts .
21289cd0 991.It Cm VerifyHostKeyDNS
992Specifies whether to verify the remote key using DNS and SSHFP resource
993records.
0161a13d 994If this option is set to
995.Dq yes ,
dd376e92 996the client will implicitly trust keys that match a secure fingerprint
0161a13d 997from DNS.
998Insecure fingerprints will be handled as if this option was set to
999.Dq ask .
1000If this option is set to
1001.Dq ask ,
1002information on fingerprint match will be displayed, but the user will still
1003need to confirm new host keys according to the
1004.Cm StrictHostKeyChecking
1005option.
1006The argument must be
1007.Dq yes ,
c5786b30 1008.Dq no ,
dd376e92 1009or
1010.Dq ask .
21289cd0 1011The default is
1012.Dq no .
0f92946c 1013Note that this option applies to protocol version 2 only.
c5786b30 1014.Pp
1015See also
1016.Sx VERIFYING HOST KEYS
1017in
1018.Xr ssh 1 .
588df31a 1019.It Cm XAuthLocation
57ff5eeb 1020Specifies the full pathname of the
588df31a 1021.Xr xauth 1
1022program.
1023The default is
1024.Pa /usr/X11R6/bin/xauth .
1025.El
1026.Sh FILES
1027.Bl -tag -width Ds
140e3e97 1028.It Pa ~/.ssh/config
588df31a 1029This is the per-user configuration file.
1030The format of this file is described above.
c5786b30 1031This file is used by the SSH client.
e1520719 1032Because of the potential for abuse, this file must have strict permissions:
1033read/write for the user, and not accessible by others.
588df31a 1034.It Pa /etc/ssh/ssh_config
1035Systemwide configuration file.
1036This file provides defaults for those
1037values that are not specified in the user's configuration file, and
1038for those users who do not have a configuration file.
1039This file must be world-readable.
1040.El
be193d89 1041.Sh SEE ALSO
1042.Xr ssh 1
588df31a 1043.Sh AUTHORS
1044OpenSSH is a derivative of the original and free
1045ssh 1.2.12 release by Tatu Ylonen.
1046Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1047Theo de Raadt and Dug Song
1048removed many bugs, re-added newer features and
1049created OpenSSH.
1050Markus Friedl contributed the support for SSH
1051protocol versions 1.5 and 2.0.
This page took 4.848116 seconds and 5 git commands to generate.