]> andersk Git - openssh.git/blame - ssh_config.5
- markus@cvs.openbsd.org 2003/06/23 09:02:44
[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.\"
f0677b69 37.\" $OpenBSD: ssh_config.5,v 1.14 2003/06/23 09:02:44 markus 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
46.It Pa $HOME/.ssh/config
47.It Pa /etc/ssh/ssh_config
48.El
49.Sh DESCRIPTION
50.Nm ssh
51obtains configuration data from the following sources in
52the following order:
4dcbbeea 53.Bl -enum -offset indent -compact
54.It
55command-line options
56.It
57user's configuration file
58.Pq Pa $HOME/.ssh/config
59.It
60system-wide configuration file
61.Pq Pa /etc/ssh/ssh_config
62.El
588df31a 63.Pp
64For each parameter, the first obtained value
65will be used.
66The configuration files contain sections bracketed by
67.Dq Host
68specifications, and that section is only applied for hosts that
69match one of the patterns given in the specification.
70The matched host name is the one given on the command line.
71.Pp
72Since the first obtained value for each parameter is used, more
73host-specific declarations should be given near the beginning of the
74file, and general defaults at the end.
75.Pp
76The configuration file has the following format:
77.Pp
78Empty lines and lines starting with
79.Ql #
80are comments.
81.Pp
82Otherwise 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 ,
90.Nm scp
91and
92.Nm sftp
93.Fl o
94option.
95.Pp
96The possible
97keywords and their meanings are as follows (note that
98keywords are case-insensitive and arguments are case-sensitive):
99.Bl -tag -width Ds
100.It Cm Host
101Restricts the following declarations (up to the next
102.Cm Host
103keyword) to be only for those hosts that match one of the patterns
104given after the keyword.
105.Ql \&*
106and
107.Ql ?
108can be used as wildcards in the
109patterns.
110A single
111.Ql \&*
112as a pattern can be used to provide global
113defaults for all hosts.
114The host is the
115.Ar hostname
116argument given on the command line (i.e., the name is not converted to
117a canonicalized host name before matching).
f811e52a 118.It Cm AddressFamily
3cbc677d 119Specifies which address family to use when connecting.
120Valid arguments are
f811e52a 121.Dq any ,
122.Dq inet
123(Use IPv4 only) or
124.Dq inet6
125(Use IPv6 only.)
588df31a 126.It Cm AFSTokenPassing
127Specifies whether to pass AFS tokens to remote host.
128The argument to this keyword must be
129.Dq yes
130or
131.Dq no .
132This option applies to protocol version 1 only.
133.It Cm BatchMode
134If set to
135.Dq yes ,
136passphrase/password querying will be disabled.
137This option is useful in scripts and other batch jobs where no user
138is present to supply the password.
139The argument must be
140.Dq yes
141or
142.Dq no .
143The default is
144.Dq no .
145.It Cm BindAddress
146Specify the interface to transmit from on machines with multiple
147interfaces or aliased addresses.
148Note that this option does not work if
149.Cm UsePrivilegedPort
150is set to
151.Dq yes .
152.It Cm ChallengeResponseAuthentication
153Specifies whether to use challenge response authentication.
154The argument to this keyword must be
155.Dq yes
156or
157.Dq no .
158The default is
159.Dq yes .
160.It Cm CheckHostIP
161If this flag is set to
162.Dq yes ,
163ssh will additionally check the host IP address in the
164.Pa known_hosts
165file.
166This allows ssh to detect if a host key changed due to DNS spoofing.
167If the option is set to
168.Dq no ,
169the check will not be executed.
170The default is
171.Dq yes .
172.It Cm Cipher
173Specifies the cipher to use for encrypting the session
174in protocol version 1.
175Currently,
176.Dq blowfish ,
177.Dq 3des ,
178and
179.Dq des
180are supported.
181.Ar des
182is only supported in the
183.Nm ssh
184client for interoperability with legacy protocol 1 implementations
185that do not support the
186.Ar 3des
a4e5acef 187cipher.
188Its use is strongly discouraged due to cryptographic weaknesses.
588df31a 189The default is
190.Dq 3des .
191.It Cm Ciphers
192Specifies the ciphers allowed for protocol version 2
193in order of preference.
194Multiple ciphers must be comma-separated.
195The default is
196.Pp
197.Bd -literal
198 ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
199 aes192-cbc,aes256-cbc''
200.Ed
201.It Cm ClearAllForwardings
202Specifies that all local, remote and dynamic port forwardings
203specified in the configuration files or on the command line be
a4e5acef 204cleared.
205This option is primarily useful when used from the
588df31a 206.Nm ssh
207command line to clear port forwardings set in
208configuration files, and is automatically set by
209.Xr scp 1
210and
211.Xr sftp 1 .
212The argument must be
213.Dq yes
214or
215.Dq no .
216The default is
217.Dq no .
218.It Cm Compression
219Specifies whether to use compression.
220The argument must be
221.Dq yes
222or
223.Dq no .
224The default is
225.Dq no .
226.It Cm CompressionLevel
227Specifies the compression level to use if compression is enabled.
228The argument must be an integer from 1 (fast) to 9 (slow, best).
229The default level is 6, which is good for most applications.
230The meaning of the values is the same as in
231.Xr gzip 1 .
232Note that this option applies to protocol version 1 only.
233.It Cm ConnectionAttempts
234Specifies the number of tries (one per second) to make before exiting.
235The argument must be an integer.
236This may be useful in scripts if the connection sometimes fails.
237The default is 1.
09ab3296 238.It Cm ConnectTimeout
239Specifies the timeout (in seconds) used when connecting to the ssh
3cbc677d 240server, instead of using the default system TCP timeout.
241This value is used only when the target is down or really unreachable,
242not when it refuses the connection.
588df31a 243.It Cm DynamicForward
244Specifies that a TCP/IP port on the local machine be forwarded
245over the secure channel, and the application
246protocol is then used to determine where to connect to from the
a4e5acef 247remote machine.
248The argument must be a port number.
588df31a 249Currently the SOCKS4 protocol is supported, and
250.Nm ssh
251will act as a SOCKS4 server.
252Multiple forwardings may be specified, and
a4e5acef 253additional forwardings can be given on the command line.
254Only the superuser can forward privileged ports.
f0677b69 255.It Cm EnableSSHKeysign
256Setting this option to
257.Dq yes
258in the global client configuration file
259.Pa /etc/ssh/ssh_config
260enables the use of the helper program
261.Xr ssh-keysign 8
262during
263.Cm HostbasedAuthentication .
264The argument must be
265.Dq yes
266or
267.Dq no .
268The default is
269.Dq no .
270See
271.Xr ssh-keysign 8
272for more information.
588df31a 273.It Cm EscapeChar
274Sets the escape character (default:
275.Ql ~ ) .
276The escape character can also
277be set on the command line.
278The argument should be a single character,
279.Ql ^
280followed by a letter, or
281.Dq none
282to disable the escape
283character entirely (making the connection transparent for binary
284data).
285.It Cm ForwardAgent
286Specifies whether the connection to the authentication agent (if any)
287will be forwarded to the remote machine.
288The argument must be
289.Dq yes
290or
291.Dq no .
292The default is
293.Dq no .
dbcdea68 294.Pp
a4e5acef 295Agent forwarding should be enabled with caution.
296Users with the ability to bypass file permissions on the remote host
297(for the agent's Unix-domain socket)
298can access the local agent through the forwarded connection.
299An attacker cannot obtain key material from the agent,
dbcdea68 300however they can perform operations on the keys that enable them to
301authenticate using the identities loaded into the agent.
588df31a 302.It Cm ForwardX11
303Specifies whether X11 connections will be automatically redirected
304over the secure channel and
305.Ev DISPLAY
306set.
307The argument must be
308.Dq yes
309or
310.Dq no .
311The default is
312.Dq no .
dbcdea68 313.Pp
a4e5acef 314X11 forwarding should be enabled with caution.
315Users with the ability to bypass file permissions on the remote host
316(for the user's X authorization database)
317can access the local X11 display through the forwarded connection.
318An attacker may then be able to perform activities such as keystroke monitoring.
588df31a 319.It Cm GatewayPorts
320Specifies whether remote hosts are allowed to connect to local
321forwarded ports.
322By default,
323.Nm ssh
a4e5acef 324binds local port forwardings to the loopback address.
325This prevents other remote hosts from connecting to forwarded ports.
588df31a 326.Cm GatewayPorts
327can be used to specify that
328.Nm ssh
329should bind local port forwardings to the wildcard address,
330thus allowing remote hosts to connect to forwarded ports.
331The argument must be
332.Dq yes
333or
334.Dq no .
335The default is
336.Dq no .
337.It Cm GlobalKnownHostsFile
338Specifies a file to use for the global
339host key database instead of
340.Pa /etc/ssh/ssh_known_hosts .
341.It Cm HostbasedAuthentication
342Specifies whether to try rhosts based authentication with public key
343authentication.
344The argument must be
345.Dq yes
346or
347.Dq no .
348The default is
349.Dq no .
350This option applies to protocol version 2 only and
351is similar to
352.Cm RhostsRSAAuthentication .
353.It Cm HostKeyAlgorithms
354Specifies the protocol version 2 host key algorithms
355that the client wants to use in order of preference.
356The default for this option is:
357.Dq ssh-rsa,ssh-dss .
358.It Cm HostKeyAlias
359Specifies an alias that should be used instead of the
360real host name when looking up or saving the host key
361in the host key database files.
362This option is useful for tunneling ssh connections
363or for multiple servers running on a single host.
364.It Cm HostName
365Specifies the real host name to log into.
366This can be used to specify nicknames or abbreviations for hosts.
367Default is the name given on the command line.
368Numeric IP addresses are also permitted (both on the command line and in
369.Cm HostName
370specifications).
371.It Cm IdentityFile
372Specifies a file from which the user's RSA or DSA authentication identity
3cbc677d 373is read.
374The default is
588df31a 375.Pa $HOME/.ssh/identity
376for protocol version 1, and
377.Pa $HOME/.ssh/id_rsa
378and
379.Pa $HOME/.ssh/id_dsa
380for protocol version 2.
381Additionally, any identities represented by the authentication agent
382will be used for authentication.
383The file name may use the tilde
384syntax to refer to a user's home directory.
385It is possible to have
386multiple identity files specified in configuration files; all these
387identities will be tried in sequence.
388.It Cm KeepAlive
389Specifies whether the system should send TCP keepalive messages to the
390other side.
391If they are sent, death of the connection or crash of one
392of the machines will be properly noticed.
393However, this means that
394connections will die if the route is down temporarily, and some people
395find it annoying.
396.Pp
397The default is
398.Dq yes
399(to send keepalives), and the client will notice
400if the network goes down or the remote host dies.
401This is important in scripts, and many users want it too.
402.Pp
403To disable keepalives, the value should be set to
404.Dq no .
405.It Cm KerberosAuthentication
406Specifies whether Kerberos authentication will be used.
407The argument to this keyword must be
408.Dq yes
409or
410.Dq no .
411.It Cm KerberosTgtPassing
412Specifies whether a Kerberos TGT will be forwarded to the server.
413This will only work if the Kerberos server is actually an AFS kaserver.
414The argument to this keyword must be
415.Dq yes
416or
417.Dq no .
418.It Cm LocalForward
419Specifies that a TCP/IP port on the local machine be forwarded over
420the secure channel to the specified host and port from the remote machine.
421The first argument must be a port number, and the second must be
422.Ar host:port .
423IPv6 addresses can be specified with an alternative syntax:
424.Ar host/port .
425Multiple forwardings may be specified, and additional
426forwardings can be given on the command line.
427Only the superuser can forward privileged ports.
428.It Cm LogLevel
429Gives the verbosity level that is used when logging messages from
430.Nm ssh .
431The possible values are:
432QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2 and DEBUG3.
a4e5acef 433The default is INFO.
434DEBUG and DEBUG1 are equivalent.
435DEBUG2 and DEBUG3 each specify higher levels of verbose output.
588df31a 436.It Cm MACs
437Specifies the MAC (message authentication code) algorithms
438in order of preference.
439The MAC algorithm is used in protocol version 2
440for data integrity protection.
441Multiple algorithms must be comma-separated.
442The default is
443.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
444.It Cm NoHostAuthenticationForLocalhost
445This option can be used if the home directory is shared across machines.
446In this case localhost will refer to a different machine on each of
447the machines and the user will get many warnings about changed host keys.
448However, this option disables host authentication for localhost.
449The argument to this keyword must be
450.Dq yes
451or
452.Dq no .
453The default is to check the host key for localhost.
454.It Cm NumberOfPasswordPrompts
455Specifies the number of password prompts before giving up.
456The argument to this keyword must be an integer.
457Default is 3.
458.It Cm PasswordAuthentication
459Specifies whether to use password authentication.
460The argument to this keyword must be
461.Dq yes
462or
463.Dq no .
464The default is
465.Dq yes .
466.It Cm Port
467Specifies the port number to connect on the remote host.
468Default is 22.
469.It Cm PreferredAuthentications
470Specifies the order in which the client should try protocol 2
3cbc677d 471authentication methods.
472This allows a client to prefer one method (e.g.
588df31a 473.Cm keyboard-interactive )
474over another method (e.g.
475.Cm password )
476The default for this option is:
477.Dq hostbased,publickey,keyboard-interactive,password .
478.It Cm Protocol
479Specifies the protocol versions
480.Nm ssh
481should support in order of preference.
482The possible values are
483.Dq 1
484and
485.Dq 2 .
486Multiple versions must be comma-separated.
487The default is
488.Dq 2,1 .
489This means that
490.Nm ssh
491tries version 2 and falls back to version 1
492if version 2 is not available.
493.It Cm ProxyCommand
494Specifies the command to use to connect to the server.
495The command
496string extends to the end of the line, and is executed with
497.Pa /bin/sh .
498In the command string,
499.Ql %h
500will be substituted by the host name to
501connect and
502.Ql %p
503by the port.
504The command can be basically anything,
505and should read from its standard input and write to its standard output.
506It should eventually connect an
507.Xr sshd 8
508server running on some machine, or execute
509.Ic sshd -i
510somewhere.
511Host key management will be done using the
512HostName of the host being connected (defaulting to the name typed by
513the user).
a4e5acef 514Setting the command to
515.Dq none
f78bde70 516disables this option entirely.
588df31a 517Note that
518.Cm CheckHostIP
519is not available for connects with a proxy command.
520.Pp
521.It Cm PubkeyAuthentication
522Specifies whether to try public key authentication.
523The argument to this keyword must be
524.Dq yes
525or
526.Dq no .
527The default is
528.Dq yes .
529This option applies to protocol version 2 only.
530.It Cm RemoteForward
531Specifies that a TCP/IP port on the remote machine be forwarded over
532the secure channel to the specified host and port from the local machine.
533The first argument must be a port number, and the second must be
534.Ar host:port .
535IPv6 addresses can be specified with an alternative syntax:
536.Ar host/port .
537Multiple forwardings may be specified, and additional
538forwardings can be given on the command line.
539Only the superuser can forward privileged ports.
540.It Cm RhostsAuthentication
541Specifies whether to try rhosts based authentication.
542Note that this
543declaration only affects the client side and has no effect whatsoever
544on security.
545Most servers do not permit RhostsAuthentication because it
546is not secure (see
547.Cm RhostsRSAAuthentication ) .
548The argument to this keyword must be
549.Dq yes
550or
551.Dq no .
552The default is
553.Dq no .
878b8992 554This option applies to protocol version 1 only and requires
555.Nm ssh
556to be setuid root and
557.Cm UsePrivilegedPort
558to be set to
559.Dq yes .
588df31a 560.It Cm RhostsRSAAuthentication
561Specifies whether to try rhosts based authentication with RSA host
562authentication.
563The argument must be
564.Dq yes
565or
566.Dq no .
567The default is
568.Dq no .
569This option applies to protocol version 1 only and requires
570.Nm ssh
571to be setuid root.
572.It Cm RSAAuthentication
573Specifies whether to try RSA authentication.
574The argument to this keyword must be
575.Dq yes
576or
577.Dq no .
578RSA authentication will only be
579attempted if the identity file exists, or an authentication agent is
580running.
581The default is
582.Dq yes .
583Note that this option applies to protocol version 1 only.
584.It Cm SmartcardDevice
3cbc677d 585Specifies which smartcard device to use.
586The argument to this keyword is the device
588df31a 587.Nm ssh
588should use to communicate with a smartcard used for storing the user's
3cbc677d 589private RSA key.
590By default, no device is specified and smartcard support is not activated.
588df31a 591.It Cm StrictHostKeyChecking
592If this flag is set to
593.Dq yes ,
594.Nm ssh
595will never automatically add host keys to the
596.Pa $HOME/.ssh/known_hosts
597file, and refuses to connect to hosts whose host key has changed.
598This provides maximum protection against trojan horse attacks,
599however, can be annoying when the
600.Pa /etc/ssh/ssh_known_hosts
601file is poorly maintained, or connections to new hosts are
602frequently made.
603This option forces the user to manually
604add all new hosts.
605If this flag is set to
606.Dq no ,
607.Nm ssh
608will automatically add new host keys to the
609user known hosts files.
610If this flag is set to
611.Dq ask ,
612new host keys
613will be added to the user known host files only after the user
614has confirmed that is what they really want to do, and
615.Nm ssh
616will refuse to connect to hosts whose host key has changed.
617The host keys of
618known hosts will be verified automatically in all cases.
619The argument must be
620.Dq yes ,
621.Dq no
622or
623.Dq ask .
624The default is
625.Dq ask .
626.It Cm UsePrivilegedPort
627Specifies whether to use a privileged port for outgoing connections.
628The argument must be
629.Dq yes
630or
631.Dq no .
632The default is
633.Dq no .
878b8992 634If set to
635.Dq yes
636.Nm ssh
637must be setuid root.
588df31a 638Note that this option must be set to
639.Dq yes
640if
641.Cm RhostsAuthentication
642and
643.Cm RhostsRSAAuthentication
644authentications are needed with older servers.
645.It Cm User
646Specifies the user to log in as.
647This can be useful when a different user name is used on different machines.
648This saves the trouble of
649having to remember to give the user name on the command line.
650.It Cm UserKnownHostsFile
651Specifies a file to use for the user
652host key database instead of
653.Pa $HOME/.ssh/known_hosts .
21289cd0 654.It Cm VerifyHostKeyDNS
655Specifies whether to verify the remote key using DNS and SSHFP resource
656records.
657The default is
658.Dq no .
0f92946c 659Note that this option applies to protocol version 2 only.
588df31a 660.It Cm XAuthLocation
57ff5eeb 661Specifies the full pathname of the
588df31a 662.Xr xauth 1
663program.
664The default is
665.Pa /usr/X11R6/bin/xauth .
666.El
667.Sh FILES
668.Bl -tag -width Ds
669.It Pa $HOME/.ssh/config
670This is the per-user configuration file.
671The format of this file is described above.
672This file is used by the
673.Nm ssh
674client.
675This file does not usually contain any sensitive information,
676but the recommended permissions are read/write for the user, and not
677accessible by others.
678.It Pa /etc/ssh/ssh_config
679Systemwide configuration file.
680This file provides defaults for those
681values that are not specified in the user's configuration file, and
682for those users who do not have a configuration file.
683This file must be world-readable.
684.El
be193d89 685.Sh SEE ALSO
686.Xr ssh 1
588df31a 687.Sh AUTHORS
688OpenSSH is a derivative of the original and free
689ssh 1.2.12 release by Tatu Ylonen.
690Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
691Theo de Raadt and Dug Song
692removed many bugs, re-added newer features and
693created OpenSSH.
694Markus Friedl contributed the support for SSH
695protocol versions 1.5 and 2.0.
This page took 0.173828 seconds and 5 git commands to generate.