]> andersk Git - openssh.git/blame - ssh_config.5
- deraadt@cvs.openbsd.org 2003/05/29 16:58:45
[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.\"
3cbc677d 37.\" $OpenBSD: ssh_config.5,v 1.11 2003/05/20 12:09:32 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
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.
588df31a 255.It Cm EscapeChar
256Sets the escape character (default:
257.Ql ~ ) .
258The escape character can also
259be set on the command line.
260The argument should be a single character,
261.Ql ^
262followed by a letter, or
263.Dq none
264to disable the escape
265character entirely (making the connection transparent for binary
266data).
267.It Cm ForwardAgent
268Specifies whether the connection to the authentication agent (if any)
269will be forwarded to the remote machine.
270The argument must be
271.Dq yes
272or
273.Dq no .
274The default is
275.Dq no .
dbcdea68 276.Pp
a4e5acef 277Agent forwarding should be enabled with caution.
278Users with the ability to bypass file permissions on the remote host
279(for the agent's Unix-domain socket)
280can access the local agent through the forwarded connection.
281An attacker cannot obtain key material from the agent,
dbcdea68 282however they can perform operations on the keys that enable them to
283authenticate using the identities loaded into the agent.
588df31a 284.It Cm ForwardX11
285Specifies whether X11 connections will be automatically redirected
286over the secure channel and
287.Ev DISPLAY
288set.
289The argument must be
290.Dq yes
291or
292.Dq no .
293The default is
294.Dq no .
dbcdea68 295.Pp
a4e5acef 296X11 forwarding should be enabled with caution.
297Users with the ability to bypass file permissions on the remote host
298(for the user's X authorization database)
299can access the local X11 display through the forwarded connection.
300An attacker may then be able to perform activities such as keystroke monitoring.
588df31a 301.It Cm GatewayPorts
302Specifies whether remote hosts are allowed to connect to local
303forwarded ports.
304By default,
305.Nm ssh
a4e5acef 306binds local port forwardings to the loopback address.
307This prevents other remote hosts from connecting to forwarded ports.
588df31a 308.Cm GatewayPorts
309can be used to specify that
310.Nm ssh
311should bind local port forwardings to the wildcard address,
312thus allowing remote hosts to connect to forwarded ports.
313The argument must be
314.Dq yes
315or
316.Dq no .
317The default is
318.Dq no .
319.It Cm GlobalKnownHostsFile
320Specifies a file to use for the global
321host key database instead of
322.Pa /etc/ssh/ssh_known_hosts .
323.It Cm HostbasedAuthentication
324Specifies whether to try rhosts based authentication with public key
325authentication.
326The argument must be
327.Dq yes
328or
329.Dq no .
330The default is
331.Dq no .
332This option applies to protocol version 2 only and
333is similar to
334.Cm RhostsRSAAuthentication .
335.It Cm HostKeyAlgorithms
336Specifies the protocol version 2 host key algorithms
337that the client wants to use in order of preference.
338The default for this option is:
339.Dq ssh-rsa,ssh-dss .
340.It Cm HostKeyAlias
341Specifies an alias that should be used instead of the
342real host name when looking up or saving the host key
343in the host key database files.
344This option is useful for tunneling ssh connections
345or for multiple servers running on a single host.
346.It Cm HostName
347Specifies the real host name to log into.
348This can be used to specify nicknames or abbreviations for hosts.
349Default is the name given on the command line.
350Numeric IP addresses are also permitted (both on the command line and in
351.Cm HostName
352specifications).
353.It Cm IdentityFile
354Specifies a file from which the user's RSA or DSA authentication identity
3cbc677d 355is read.
356The default is
588df31a 357.Pa $HOME/.ssh/identity
358for protocol version 1, and
359.Pa $HOME/.ssh/id_rsa
360and
361.Pa $HOME/.ssh/id_dsa
362for protocol version 2.
363Additionally, any identities represented by the authentication agent
364will be used for authentication.
365The file name may use the tilde
366syntax to refer to a user's home directory.
367It is possible to have
368multiple identity files specified in configuration files; all these
369identities will be tried in sequence.
370.It Cm KeepAlive
371Specifies whether the system should send TCP keepalive messages to the
372other side.
373If they are sent, death of the connection or crash of one
374of the machines will be properly noticed.
375However, this means that
376connections will die if the route is down temporarily, and some people
377find it annoying.
378.Pp
379The default is
380.Dq yes
381(to send keepalives), and the client will notice
382if the network goes down or the remote host dies.
383This is important in scripts, and many users want it too.
384.Pp
385To disable keepalives, the value should be set to
386.Dq no .
387.It Cm KerberosAuthentication
388Specifies whether Kerberos authentication will be used.
389The argument to this keyword must be
390.Dq yes
391or
392.Dq no .
393.It Cm KerberosTgtPassing
394Specifies whether a Kerberos TGT will be forwarded to the server.
395This will only work if the Kerberos server is actually an AFS kaserver.
396The argument to this keyword must be
397.Dq yes
398or
399.Dq no .
400.It Cm LocalForward
401Specifies that a TCP/IP port on the local machine be forwarded over
402the secure channel to the specified host and port from the remote machine.
403The first argument must be a port number, and the second must be
404.Ar host:port .
405IPv6 addresses can be specified with an alternative syntax:
406.Ar host/port .
407Multiple forwardings may be specified, and additional
408forwardings can be given on the command line.
409Only the superuser can forward privileged ports.
410.It Cm LogLevel
411Gives the verbosity level that is used when logging messages from
412.Nm ssh .
413The possible values are:
414QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2 and DEBUG3.
a4e5acef 415The default is INFO.
416DEBUG and DEBUG1 are equivalent.
417DEBUG2 and DEBUG3 each specify higher levels of verbose output.
588df31a 418.It Cm MACs
419Specifies the MAC (message authentication code) algorithms
420in order of preference.
421The MAC algorithm is used in protocol version 2
422for data integrity protection.
423Multiple algorithms must be comma-separated.
424The default is
425.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
426.It Cm NoHostAuthenticationForLocalhost
427This option can be used if the home directory is shared across machines.
428In this case localhost will refer to a different machine on each of
429the machines and the user will get many warnings about changed host keys.
430However, this option disables host authentication for localhost.
431The argument to this keyword must be
432.Dq yes
433or
434.Dq no .
435The default is to check the host key for localhost.
436.It Cm NumberOfPasswordPrompts
437Specifies the number of password prompts before giving up.
438The argument to this keyword must be an integer.
439Default is 3.
440.It Cm PasswordAuthentication
441Specifies whether to use password authentication.
442The argument to this keyword must be
443.Dq yes
444or
445.Dq no .
446The default is
447.Dq yes .
448.It Cm Port
449Specifies the port number to connect on the remote host.
450Default is 22.
451.It Cm PreferredAuthentications
452Specifies the order in which the client should try protocol 2
3cbc677d 453authentication methods.
454This allows a client to prefer one method (e.g.
588df31a 455.Cm keyboard-interactive )
456over another method (e.g.
457.Cm password )
458The default for this option is:
459.Dq hostbased,publickey,keyboard-interactive,password .
460.It Cm Protocol
461Specifies the protocol versions
462.Nm ssh
463should support in order of preference.
464The possible values are
465.Dq 1
466and
467.Dq 2 .
468Multiple versions must be comma-separated.
469The default is
470.Dq 2,1 .
471This means that
472.Nm ssh
473tries version 2 and falls back to version 1
474if version 2 is not available.
475.It Cm ProxyCommand
476Specifies the command to use to connect to the server.
477The command
478string extends to the end of the line, and is executed with
479.Pa /bin/sh .
480In the command string,
481.Ql %h
482will be substituted by the host name to
483connect and
484.Ql %p
485by the port.
486The command can be basically anything,
487and should read from its standard input and write to its standard output.
488It should eventually connect an
489.Xr sshd 8
490server running on some machine, or execute
491.Ic sshd -i
492somewhere.
493Host key management will be done using the
494HostName of the host being connected (defaulting to the name typed by
495the user).
a4e5acef 496Setting the command to
497.Dq none
f78bde70 498disables this option entirely.
588df31a 499Note that
500.Cm CheckHostIP
501is not available for connects with a proxy command.
502.Pp
503.It Cm PubkeyAuthentication
504Specifies whether to try public key authentication.
505The argument to this keyword must be
506.Dq yes
507or
508.Dq no .
509The default is
510.Dq yes .
511This option applies to protocol version 2 only.
512.It Cm RemoteForward
513Specifies that a TCP/IP port on the remote machine be forwarded over
514the secure channel to the specified host and port from the local machine.
515The first argument must be a port number, and the second must be
516.Ar host:port .
517IPv6 addresses can be specified with an alternative syntax:
518.Ar host/port .
519Multiple forwardings may be specified, and additional
520forwardings can be given on the command line.
521Only the superuser can forward privileged ports.
522.It Cm RhostsAuthentication
523Specifies whether to try rhosts based authentication.
524Note that this
525declaration only affects the client side and has no effect whatsoever
526on security.
527Most servers do not permit RhostsAuthentication because it
528is not secure (see
529.Cm RhostsRSAAuthentication ) .
530The argument to this keyword must be
531.Dq yes
532or
533.Dq no .
534The default is
535.Dq no .
878b8992 536This option applies to protocol version 1 only and requires
537.Nm ssh
538to be setuid root and
539.Cm UsePrivilegedPort
540to be set to
541.Dq yes .
588df31a 542.It Cm RhostsRSAAuthentication
543Specifies whether to try rhosts based authentication with RSA host
544authentication.
545The argument must be
546.Dq yes
547or
548.Dq no .
549The default is
550.Dq no .
551This option applies to protocol version 1 only and requires
552.Nm ssh
553to be setuid root.
554.It Cm RSAAuthentication
555Specifies whether to try RSA authentication.
556The argument to this keyword must be
557.Dq yes
558or
559.Dq no .
560RSA authentication will only be
561attempted if the identity file exists, or an authentication agent is
562running.
563The default is
564.Dq yes .
565Note that this option applies to protocol version 1 only.
566.It Cm SmartcardDevice
3cbc677d 567Specifies which smartcard device to use.
568The argument to this keyword is the device
588df31a 569.Nm ssh
570should use to communicate with a smartcard used for storing the user's
3cbc677d 571private RSA key.
572By default, no device is specified and smartcard support is not activated.
588df31a 573.It Cm StrictHostKeyChecking
574If this flag is set to
575.Dq yes ,
576.Nm ssh
577will never automatically add host keys to the
578.Pa $HOME/.ssh/known_hosts
579file, and refuses to connect to hosts whose host key has changed.
580This provides maximum protection against trojan horse attacks,
581however, can be annoying when the
582.Pa /etc/ssh/ssh_known_hosts
583file is poorly maintained, or connections to new hosts are
584frequently made.
585This option forces the user to manually
586add all new hosts.
587If this flag is set to
588.Dq no ,
589.Nm ssh
590will automatically add new host keys to the
591user known hosts files.
592If this flag is set to
593.Dq ask ,
594new host keys
595will be added to the user known host files only after the user
596has confirmed that is what they really want to do, and
597.Nm ssh
598will refuse to connect to hosts whose host key has changed.
599The host keys of
600known hosts will be verified automatically in all cases.
601The argument must be
602.Dq yes ,
603.Dq no
604or
605.Dq ask .
606The default is
607.Dq ask .
608.It Cm UsePrivilegedPort
609Specifies whether to use a privileged port for outgoing connections.
610The argument must be
611.Dq yes
612or
613.Dq no .
614The default is
615.Dq no .
878b8992 616If set to
617.Dq yes
618.Nm ssh
619must be setuid root.
588df31a 620Note that this option must be set to
621.Dq yes
622if
623.Cm RhostsAuthentication
624and
625.Cm RhostsRSAAuthentication
626authentications are needed with older servers.
627.It Cm User
628Specifies the user to log in as.
629This can be useful when a different user name is used on different machines.
630This saves the trouble of
631having to remember to give the user name on the command line.
632.It Cm UserKnownHostsFile
633Specifies a file to use for the user
634host key database instead of
635.Pa $HOME/.ssh/known_hosts .
21289cd0 636.It Cm VerifyHostKeyDNS
637Specifies whether to verify the remote key using DNS and SSHFP resource
638records.
639The default is
640.Dq no .
588df31a 641.It Cm XAuthLocation
57ff5eeb 642Specifies the full pathname of the
588df31a 643.Xr xauth 1
644program.
645The default is
646.Pa /usr/X11R6/bin/xauth .
647.El
648.Sh FILES
649.Bl -tag -width Ds
650.It Pa $HOME/.ssh/config
651This is the per-user configuration file.
652The format of this file is described above.
653This file is used by the
654.Nm ssh
655client.
656This file does not usually contain any sensitive information,
657but the recommended permissions are read/write for the user, and not
658accessible by others.
659.It Pa /etc/ssh/ssh_config
660Systemwide configuration file.
661This file provides defaults for those
662values that are not specified in the user's configuration file, and
663for those users who do not have a configuration file.
664This file must be world-readable.
665.El
666.Sh AUTHORS
667OpenSSH is a derivative of the original and free
668ssh 1.2.12 release by Tatu Ylonen.
669Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
670Theo de Raadt and Dug Song
671removed many bugs, re-added newer features and
672created OpenSSH.
673Markus Friedl contributed the support for SSH
674protocol versions 1.5 and 2.0.
675.Sh SEE ALSO
676.Xr ssh 1
This page took 0.526213 seconds and 5 git commands to generate.