]> andersk Git - openssh.git/blame - ssh_config.5
- jmc@cvs.openbsd.org 2006/02/24 23:51:17
[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.\"
c5786b30 37.\" $OpenBSD: ssh_config.5,v 1.84 2006/02/24 23:20:07 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.
d20f3c9e 592.It Cm LocalCommand
593Specifies a command to execute on the local machine after successfully
594connecting to the server.
595The command string extends to the end of the line, and is executed with
596.Pa /bin/sh .
597This directive is ignored unless
598.Cm PermitLocalCommand
599has been enabled.
588df31a 600.It Cm LocalForward
0b3950af 601Specifies that a TCP port on the local machine be forwarded over
588df31a 602the secure channel to the specified host and port from the remote machine.
ecda4ffb 603The first argument must be
3867aa0a 604.Sm off
ecda4ffb 605.Oo Ar bind_address : Oc Ar port
3867aa0a 606.Sm on
ecda4ffb 607and the second argument must be
608.Ar host : Ns Ar hostport .
cd8f998c 609IPv6 addresses can be specified by enclosing addresses in square brackets or
3867aa0a 610by using an alternative syntax:
ecda4ffb 611.Oo Ar bind_address Ns / Oc Ns Ar port
612and
613.Ar host Ns / Ns Ar hostport .
cd8f998c 614Multiple forwardings may be specified, and additional forwardings can be
3867aa0a 615given on the command line.
588df31a 616Only the superuser can forward privileged ports.
3867aa0a 617By default, the local port is bound in accordance with the
618.Cm GatewayPorts
619setting.
620However, an explicit
621.Ar bind_address
622may be used to bind the connection to a specific address.
623The
624.Ar bind_address
625of
626.Dq localhost
cd8f998c 627indicates that the listening port be bound for local use only, while an
628empty address or
629.Sq *
3867aa0a 630indicates that the port should be available from all interfaces.
588df31a 631.It Cm LogLevel
632Gives the verbosity level that is used when logging messages from
c5786b30 633.Xr ssh 1 .
588df31a 634The possible values are:
c5786b30 635QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
a4e5acef 636The default is INFO.
637DEBUG and DEBUG1 are equivalent.
638DEBUG2 and DEBUG3 each specify higher levels of verbose output.
588df31a 639.It Cm MACs
640Specifies the MAC (message authentication code) algorithms
641in order of preference.
642The MAC algorithm is used in protocol version 2
643for data integrity protection.
644Multiple algorithms must be comma-separated.
c5786b30 645The default is:
588df31a 646.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
647.It Cm NoHostAuthenticationForLocalhost
648This option can be used if the home directory is shared across machines.
649In this case localhost will refer to a different machine on each of
650the machines and the user will get many warnings about changed host keys.
651However, this option disables host authentication for localhost.
652The argument to this keyword must be
653.Dq yes
654or
655.Dq no .
656The default is to check the host key for localhost.
657.It Cm NumberOfPasswordPrompts
658Specifies the number of password prompts before giving up.
659The argument to this keyword must be an integer.
c5786b30 660The default is 3.
588df31a 661.It Cm PasswordAuthentication
662Specifies whether to use password authentication.
663The argument to this keyword must be
664.Dq yes
665or
666.Dq no .
667The default is
668.Dq yes .
d20f3c9e 669.It Cm PermitLocalCommand
670Allow local command execution via the
671.Ic LocalCommand
672option or using the
64925c6d 673.Ic !\& Ns Ar command
d20f3c9e 674escape sequence in
675.Xr ssh 1 .
676The argument must be
677.Dq yes
678or
679.Dq no .
680The default is
681.Dq no .
030723f9 682.It Cm Port
683Specifies the port number to connect on the remote host.
c5786b30 684The default is 22.
588df31a 685.It Cm PreferredAuthentications
686Specifies the order in which the client should try protocol 2
3cbc677d 687authentication methods.
4e5038f7 688This allows a client to prefer one method (e.g.\&
588df31a 689.Cm keyboard-interactive )
4e5038f7 690over another method (e.g.\&
588df31a 691.Cm password )
692The default for this option is:
693.Dq hostbased,publickey,keyboard-interactive,password .
694.It Cm Protocol
695Specifies the protocol versions
c5786b30 696.Xr ssh 1
588df31a 697should support in order of preference.
698The possible values are
c5786b30 699.Sq 1
588df31a 700and
c5786b30 701.Sq 2 .
588df31a 702Multiple versions must be comma-separated.
703The default is
704.Dq 2,1 .
c5786b30 705This means that ssh
588df31a 706tries version 2 and falls back to version 1
707if version 2 is not available.
708.It Cm ProxyCommand
709Specifies the command to use to connect to the server.
710The command
711string extends to the end of the line, and is executed with
712.Pa /bin/sh .
713In the command string,
714.Ql %h
715will be substituted by the host name to
716connect and
717.Ql %p
718by the port.
719The command can be basically anything,
720and should read from its standard input and write to its standard output.
721It should eventually connect an
722.Xr sshd 8
723server running on some machine, or execute
724.Ic sshd -i
725somewhere.
726Host key management will be done using the
727HostName of the host being connected (defaulting to the name typed by
728the user).
a4e5acef 729Setting the command to
730.Dq none
f78bde70 731disables this option entirely.
588df31a 732Note that
733.Cm CheckHostIP
734is not available for connects with a proxy command.
735.Pp
2b610872 736This directive is useful in conjunction with
737.Xr nc 1
738and its proxy support.
9fa42d41 739For example, the following directive would connect via an HTTP proxy at
2b610872 740192.0.2.0:
741.Bd -literal -offset 3n
742ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p
743.Ed
588df31a 744.It Cm PubkeyAuthentication
745Specifies whether to try public key authentication.
746The argument to this keyword must be
747.Dq yes
748or
749.Dq no .
750The default is
751.Dq yes .
752This option applies to protocol version 2 only.
db175906 753.It Cm RekeyLimit
754Specifies the maximum amount of data that may be transmitted before the
0ce89457 755session key is renegotiated.
db175906 756The argument is the number of bytes, with an optional suffix of
0ce89457 757.Sq K ,
758.Sq M ,
db175906 759or
0ce89457 760.Sq G
db175906 761to indicate Kilobytes, Megabytes, or Gigabytes, respectively.
762The default is between
c5786b30 763.Sq 1G
db175906 764and
c5786b30 765.Sq 4G ,
db175906 766depending on the cipher.
0ce89457 767This option applies to protocol version 2 only.
588df31a 768.It Cm RemoteForward
0b3950af 769Specifies that a TCP port on the remote machine be forwarded over
588df31a 770the secure channel to the specified host and port from the local machine.
ecda4ffb 771The first argument must be
3867aa0a 772.Sm off
ecda4ffb 773.Oo Ar bind_address : Oc Ar port
6d7a9e8f 774.Sm on
ecda4ffb 775and the second argument must be
776.Ar host : Ns Ar hostport .
777IPv6 addresses can be specified by enclosing addresses in square brackets
778or by using an alternative syntax:
779.Oo Ar bind_address Ns / Oc Ns Ar port
780and
781.Ar host Ns / Ns Ar hostport .
588df31a 782Multiple forwardings may be specified, and additional
783forwardings can be given on the command line.
784Only the superuser can forward privileged ports.
3867aa0a 785.Pp
786If the
787.Ar bind_address
788is not specified, the default is to only bind to loopback addresses.
789If the
790.Ar bind_address
791is
792.Ql *
793or an empty string, then the forwarding is requested to listen on all
794interfaces.
795Specifying a remote
796.Ar bind_address
cd8f998c 797will only succeed if the server's
798.Cm GatewayPorts
3867aa0a 799option is enabled (see
cd8f998c 800.Xr sshd_config 5 ) .
588df31a 801.It Cm RhostsRSAAuthentication
802Specifies whether to try rhosts based authentication with RSA host
803authentication.
804The argument must be
805.Dq yes
806or
807.Dq no .
808The default is
809.Dq no .
810This option applies to protocol version 1 only and requires
c5786b30 811.Xr ssh 1
588df31a 812to be setuid root.
813.It Cm RSAAuthentication
814Specifies whether to try RSA authentication.
815The argument to this keyword must be
816.Dq yes
817or
818.Dq no .
819RSA authentication will only be
820attempted if the identity file exists, or an authentication agent is
821running.
822The default is
823.Dq yes .
824Note that this option applies to protocol version 1 only.
61a2c1da 825.It Cm SendEnv
826Specifies what variables from the local
827.Xr environ 7
828should be sent to the server.
c5786b30 829Note that environment passing is only supported for protocol 2.
830The server must also support it, and the server must be configured to
b8b9f2e6 831accept these environment variables.
61a2c1da 832Refer to
833.Cm AcceptEnv
834in
835.Xr sshd_config 5
836for how to configure the server.
95d46d8f 837Variables are specified by name, which may contain wildcard characters.
b8b9f2e6 838Multiple environment variables may be separated by whitespace or spread
61a2c1da 839across multiple
840.Cm SendEnv
841directives.
842The default is not to send any environment variables.
436a5ff9 843.Pp
844See
845.Sx PATTERNS
846for more information on patterns.
5d8d32a3 847.It Cm ServerAliveCountMax
79e46360 848Sets the number of server alive messages (see below) which may be
5d8d32a3 849sent without
c5786b30 850.Xr ssh 1
5d8d32a3 851receiving any messages back from the server.
852If this threshold is reached while server alive messages are being sent,
c5786b30 853ssh will disconnect from the server, terminating the session.
5d8d32a3 854It is important to note that the use of server alive messages is very
855different from
856.Cm TCPKeepAlive
857(below).
858The server alive messages are sent through the encrypted channel
859and therefore will not be spoofable.
860The TCP keepalive option enabled by
861.Cm TCPKeepAlive
862is spoofable.
863The server alive mechanism is valuable when the client or
864server depend on knowing when a connection has become inactive.
865.Pp
866The default value is 3.
867If, for example,
868.Cm ServerAliveInterval
c5786b30 869(see below) is set to 15 and
5d8d32a3 870.Cm ServerAliveCountMax
c5786b30 871is left at the default, if the server becomes unresponsive,
872ssh will disconnect after approximately 45 seconds.
030723f9 873.It Cm ServerAliveInterval
874Sets a timeout interval in seconds after which if no data has been received
875from the server,
c5786b30 876.Xr ssh 1
030723f9 877will send a message through the encrypted
878channel to request a response from the server.
879The default
880is 0, indicating that these messages will not be sent to the server.
881This option applies to protocol version 2 only.
588df31a 882.It Cm SmartcardDevice
3cbc677d 883Specifies which smartcard device to use.
884The argument to this keyword is the device
c5786b30 885.Xr ssh 1
588df31a 886should use to communicate with a smartcard used for storing the user's
3cbc677d 887private RSA key.
888By default, no device is specified and smartcard support is not activated.
588df31a 889.It Cm StrictHostKeyChecking
890If this flag is set to
891.Dq yes ,
c5786b30 892.Xr ssh 1
588df31a 893will never automatically add host keys to the
140e3e97 894.Pa ~/.ssh/known_hosts
588df31a 895file, and refuses to connect to hosts whose host key has changed.
896This provides maximum protection against trojan horse attacks,
c5786b30 897though it can be annoying when the
588df31a 898.Pa /etc/ssh/ssh_known_hosts
c5786b30 899file is poorly maintained or when connections to new hosts are
588df31a 900frequently made.
901This option forces the user to manually
902add all new hosts.
903If this flag is set to
904.Dq no ,
c5786b30 905ssh will automatically add new host keys to the
588df31a 906user known hosts files.
907If this flag is set to
908.Dq ask ,
909new host keys
910will be added to the user known host files only after the user
911has confirmed that is what they really want to do, and
c5786b30 912ssh will refuse to connect to hosts whose host key has changed.
588df31a 913The host keys of
914known hosts will be verified automatically in all cases.
915The argument must be
916.Dq yes ,
c5786b30 917.Dq no ,
588df31a 918or
919.Dq ask .
920The default is
921.Dq ask .
fd573618 922.It Cm TCPKeepAlive
923Specifies whether the system should send TCP keepalive messages to the
924other side.
925If they are sent, death of the connection or crash of one
926of the machines will be properly noticed.
927However, this means that
928connections will die if the route is down temporarily, and some people
929find it annoying.
930.Pp
931The default is
932.Dq yes
933(to send TCP keepalive messages), and the client will notice
934if the network goes down or the remote host dies.
935This is important in scripts, and many users want it too.
936.Pp
937To disable TCP keepalive messages, the value should be set to
938.Dq no .
d20f3c9e 939.It Cm Tunnel
940Request starting
941.Xr tun 4
a274ba38 942device forwarding between the client and the server.
943This option also allows requesting layer 2 (ethernet)
944instead of layer 3 (point-to-point) tunneling from the server.
d20f3c9e 945The argument must be
a4f24bf8 946.Dq yes ,
947.Dq point-to-point ,
c5786b30 948.Dq ethernet ,
d20f3c9e 949or
950.Dq no .
951The default is
952.Dq no .
953.It Cm TunnelDevice
954Force a specified
955.Xr tun 4
956device on the client.
957Without this option, the next available device will be used.
0c9851b1 958.It Cm UsePrivilegedPort
959Specifies whether to use a privileged port for outgoing connections.
960The argument must be
961.Dq yes
962or
963.Dq no .
964The default is
965.Dq no .
966If set to
c5786b30 967.Dq yes ,
968.Xr ssh 1
0c9851b1 969must be setuid root.
970Note that this option must be set to
971.Dq yes
972for
973.Cm RhostsRSAAuthentication
974with older servers.
588df31a 975.It Cm User
976Specifies the user to log in as.
977This can be useful when a different user name is used on different machines.
978This saves the trouble of
979having to remember to give the user name on the command line.
980.It Cm UserKnownHostsFile
981Specifies a file to use for the user
982host key database instead of
140e3e97 983.Pa ~/.ssh/known_hosts .
21289cd0 984.It Cm VerifyHostKeyDNS
985Specifies whether to verify the remote key using DNS and SSHFP resource
986records.
0161a13d 987If this option is set to
988.Dq yes ,
dd376e92 989the client will implicitly trust keys that match a secure fingerprint
0161a13d 990from DNS.
991Insecure fingerprints will be handled as if this option was set to
992.Dq ask .
993If this option is set to
994.Dq ask ,
995information on fingerprint match will be displayed, but the user will still
996need to confirm new host keys according to the
997.Cm StrictHostKeyChecking
998option.
999The argument must be
1000.Dq yes ,
c5786b30 1001.Dq no ,
dd376e92 1002or
1003.Dq ask .
21289cd0 1004The default is
1005.Dq no .
0f92946c 1006Note that this option applies to protocol version 2 only.
c5786b30 1007.Pp
1008See also
1009.Sx VERIFYING HOST KEYS
1010in
1011.Xr ssh 1 .
588df31a 1012.It Cm XAuthLocation
57ff5eeb 1013Specifies the full pathname of the
588df31a 1014.Xr xauth 1
1015program.
1016The default is
1017.Pa /usr/X11R6/bin/xauth .
1018.El
1019.Sh FILES
1020.Bl -tag -width Ds
140e3e97 1021.It Pa ~/.ssh/config
588df31a 1022This is the per-user configuration file.
1023The format of this file is described above.
c5786b30 1024This file is used by the SSH client.
e1520719 1025Because of the potential for abuse, this file must have strict permissions:
1026read/write for the user, and not accessible by others.
588df31a 1027.It Pa /etc/ssh/ssh_config
1028Systemwide configuration file.
1029This file provides defaults for those
1030values that are not specified in the user's configuration file, and
1031for those users who do not have a configuration file.
1032This file must be world-readable.
1033.El
be193d89 1034.Sh SEE ALSO
1035.Xr ssh 1
588df31a 1036.Sh AUTHORS
1037OpenSSH is a derivative of the original and free
1038ssh 1.2.12 release by Tatu Ylonen.
1039Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1040Theo de Raadt and Dug Song
1041removed many bugs, re-added newer features and
1042created OpenSSH.
1043Markus Friedl contributed the support for SSH
1044protocol versions 1.5 and 2.0.
This page took 0.342289 seconds and 5 git commands to generate.