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