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