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