]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - crypto/openssh/ssh.1
Upgrade OpenSSH to 7.3p1.
[FreeBSD/stable/10.git] / crypto / openssh / ssh.1
1 .\"
2 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
3 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 .\"                    All rights reserved
5 .\"
6 .\" As far as I am concerned, the code I have written for this software
7 .\" can be used freely for any purpose.  Any derived versions of this
8 .\" software must be clearly marked as such, and if the derived work is
9 .\" incompatible with the protocol description in the RFC file, it must be
10 .\" called by a name other than "ssh" or "Secure Shell".
11 .\"
12 .\" Copyright (c) 1999,2000 Markus Friedl.  All rights reserved.
13 .\" Copyright (c) 1999 Aaron Campbell.  All rights reserved.
14 .\" Copyright (c) 1999 Theo de Raadt.  All rights reserved.
15 .\"
16 .\" Redistribution and use in source and binary forms, with or without
17 .\" modification, are permitted provided that the following conditions
18 .\" are met:
19 .\" 1. Redistributions of source code must retain the above copyright
20 .\"    notice, this list of conditions and the following disclaimer.
21 .\" 2. Redistributions in binary form must reproduce the above copyright
22 .\"    notice, this list of conditions and the following disclaimer in the
23 .\"    documentation and/or other materials provided with the distribution.
24 .\"
25 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 .\"
36 .\" $OpenBSD: ssh.1,v 1.376 2016/07/16 06:57:55 jmc Exp $
37 .\" $FreeBSD$
38 .Dd $Mdocdate: July 16 2016 $
39 .Dt SSH 1
40 .Os
41 .Sh NAME
42 .Nm ssh
43 .Nd OpenSSH SSH client (remote login program)
44 .Sh SYNOPSIS
45 .Nm ssh
46 .Bk -words
47 .Op Fl 1246AaCfGgKkMNnqsTtVvXxYy
48 .Op Fl b Ar bind_address
49 .Op Fl c Ar cipher_spec
50 .Op Fl D Oo Ar bind_address : Oc Ns Ar port
51 .Op Fl E Ar log_file
52 .Op Fl e Ar escape_char
53 .Op Fl F Ar configfile
54 .Op Fl I Ar pkcs11
55 .Op Fl i Ar identity_file
56 .Op Fl J Oo Ar user Ns @ Oc Ns Ar host Ns Op : Ns Ar port
57 .Op Fl L Ar address
58 .Op Fl l Ar login_name
59 .Op Fl m Ar mac_spec
60 .Op Fl O Ar ctl_cmd
61 .Op Fl o Ar option
62 .Op Fl p Ar port
63 .Op Fl Q Ar query_option
64 .Op Fl R Ar address
65 .Op Fl S Ar ctl_path
66 .Op Fl W Ar host : Ns Ar port
67 .Op Fl w Ar local_tun Ns Op : Ns Ar remote_tun
68 .Oo Ar user Ns @ Oc Ns Ar hostname
69 .Op Ar command
70 .Ek
71 .Sh DESCRIPTION
72 .Nm
73 (SSH client) is a program for logging into a remote machine and for
74 executing commands on a remote machine.
75 It is intended to provide secure encrypted communications between
76 two untrusted hosts over an insecure network.
77 X11 connections, arbitrary TCP ports and
78 .Ux Ns -domain
79 sockets can also be forwarded over the secure channel.
80 .Pp
81 .Nm
82 connects and logs into the specified
83 .Ar hostname
84 (with optional
85 .Ar user
86 name).
87 The user must prove
88 his/her identity to the remote machine using one of several methods
89 (see below).
90 .Pp
91 If
92 .Ar command
93 is specified,
94 it is executed on the remote host instead of a login shell.
95 .Pp
96 The options are as follows:
97 .Pp
98 .Bl -tag -width Ds -compact
99 .It Fl 1
100 Forces
101 .Nm
102 to try protocol version 1 only.
103 .Pp
104 .It Fl 2
105 Forces
106 .Nm
107 to try protocol version 2 only.
108 .Pp
109 .It Fl 4
110 Forces
111 .Nm
112 to use IPv4 addresses only.
113 .Pp
114 .It Fl 6
115 Forces
116 .Nm
117 to use IPv6 addresses only.
118 .Pp
119 .It Fl A
120 Enables forwarding of the authentication agent connection.
121 This can also be specified on a per-host basis in a configuration file.
122 .Pp
123 Agent forwarding should be enabled with caution.
124 Users with the ability to bypass file permissions on the remote host
125 (for the agent's
126 .Ux Ns -domain
127 socket) can access the local agent through the forwarded connection.
128 An attacker cannot obtain key material from the agent,
129 however they can perform operations on the keys that enable them to
130 authenticate using the identities loaded into the agent.
131 .Pp
132 .It Fl a
133 Disables forwarding of the authentication agent connection.
134 .Pp
135 .It Fl b Ar bind_address
136 Use
137 .Ar bind_address
138 on the local machine as the source address
139 of the connection.
140 Only useful on systems with more than one address.
141 .Pp
142 .It Fl C
143 Requests compression of all data (including stdin, stdout, stderr, and
144 data for forwarded X11, TCP and
145 .Ux Ns -domain
146 connections).
147 The compression algorithm is the same used by
148 .Xr gzip 1 ,
149 and the
150 .Dq level
151 can be controlled by the
152 .Cm CompressionLevel
153 option for protocol version 1.
154 Compression is desirable on modem lines and other
155 slow connections, but will only slow down things on fast networks.
156 The default value can be set on a host-by-host basis in the
157 configuration files; see the
158 .Cm Compression
159 option.
160 .Pp
161 .It Fl c Ar cipher_spec
162 Selects the cipher specification for encrypting the session.
163 .Pp
164 Protocol version 1 allows specification of a single cipher.
165 The supported values are
166 .Dq 3des ,
167 .Dq blowfish ,
168 and
169 .Dq des .
170 For protocol version 2,
171 .Ar cipher_spec
172 is a comma-separated list of ciphers
173 listed in order of preference.
174 See the
175 .Cm Ciphers
176 keyword in
177 .Xr ssh_config 5
178 for more information.
179 .Pp
180 .It Fl D Xo
181 .Sm off
182 .Oo Ar bind_address : Oc
183 .Ar port
184 .Sm on
185 .Xc
186 Specifies a local
187 .Dq dynamic
188 application-level port forwarding.
189 This works by allocating a socket to listen to
190 .Ar port
191 on the local side, optionally bound to the specified
192 .Ar bind_address .
193 Whenever a connection is made to this port, the
194 connection is forwarded over the secure channel, and the application
195 protocol is then used to determine where to connect to from the
196 remote machine.
197 Currently the SOCKS4 and SOCKS5 protocols are supported, and
198 .Nm
199 will act as a SOCKS server.
200 Only root can forward privileged ports.
201 Dynamic port forwardings can also be specified in the configuration file.
202 .Pp
203 IPv6 addresses can be specified by enclosing the address in square brackets.
204 Only the superuser can forward privileged ports.
205 By default, the local port is bound in accordance with the
206 .Cm GatewayPorts
207 setting.
208 However, an explicit
209 .Ar bind_address
210 may be used to bind the connection to a specific address.
211 The
212 .Ar bind_address
213 of
214 .Dq localhost
215 indicates that the listening port be bound for local use only, while an
216 empty address or
217 .Sq *
218 indicates that the port should be available from all interfaces.
219 .Pp
220 .It Fl E Ar log_file
221 Append debug logs to
222 .Ar log_file
223 instead of standard error.
224 .Pp
225 .It Fl e Ar escape_char
226 Sets the escape character for sessions with a pty (default:
227 .Ql ~ ) .
228 The escape character is only recognized at the beginning of a line.
229 The escape character followed by a dot
230 .Pq Ql \&.
231 closes the connection;
232 followed by control-Z suspends the connection;
233 and followed by itself sends the escape character once.
234 Setting the character to
235 .Dq none
236 disables any escapes and makes the session fully transparent.
237 .Pp
238 .It Fl F Ar configfile
239 Specifies an alternative per-user configuration file.
240 If a configuration file is given on the command line,
241 the system-wide configuration file
242 .Pq Pa /etc/ssh/ssh_config
243 will be ignored.
244 The default for the per-user configuration file is
245 .Pa ~/.ssh/config .
246 .Pp
247 .It Fl f
248 Requests
249 .Nm
250 to go to background just before command execution.
251 This is useful if
252 .Nm
253 is going to ask for passwords or passphrases, but the user
254 wants it in the background.
255 This implies
256 .Fl n .
257 The recommended way to start X11 programs at a remote site is with
258 something like
259 .Ic ssh -f host xterm .
260 .Pp
261 If the
262 .Cm ExitOnForwardFailure
263 configuration option is set to
264 .Dq yes ,
265 then a client started with
266 .Fl f
267 will wait for all remote port forwards to be successfully established
268 before placing itself in the background.
269 .Pp
270 .It Fl G
271 Causes
272 .Nm
273 to print its configuration after evaluating
274 .Cm Host
275 and
276 .Cm Match
277 blocks and exit.
278 .Pp
279 .It Fl g
280 Allows remote hosts to connect to local forwarded ports.
281 If used on a multiplexed connection, then this option must be specified
282 on the master process.
283 .Pp
284 .It Fl I Ar pkcs11
285 Specify the PKCS#11 shared library
286 .Nm
287 should use to communicate with a PKCS#11 token providing the user's
288 private RSA key.
289 .Pp
290 .It Fl i Ar identity_file
291 Selects a file from which the identity (private key) for
292 public key authentication is read.
293 The default is
294 .Pa ~/.ssh/identity
295 for protocol version 1, and
296 .Pa ~/.ssh/id_dsa ,
297 .Pa ~/.ssh/id_ecdsa ,
298 .Pa ~/.ssh/id_ed25519
299 and
300 .Pa ~/.ssh/id_rsa
301 for protocol version 2.
302 Identity files may also be specified on
303 a per-host basis in the configuration file.
304 It is possible to have multiple
305 .Fl i
306 options (and multiple identities specified in
307 configuration files).
308 If no certificates have been explicitly specified by the
309 .Cm CertificateFile
310 directive,
311 .Nm
312 will also try to load certificate information from the filename obtained
313 by appending
314 .Pa -cert.pub
315 to identity filenames.
316 .Pp
317 .It Fl J Xo
318 .Sm off
319 .Op Ar user No @
320 .Ar host
321 .Op : Ar port
322 .Sm on
323 .Xc
324 Connect to the target host by first making a
325 .Nm
326 connection to the jump
327 .Ar host
328 and then establishing a TCP forwarding to the ultimate destination from
329 there.
330 Multiple jump hops may be specified separated by comma characters.
331 This is a shortcut to specify a
332 .Cm ProxyJump
333 configuration directive.
334 .Pp
335 .It Fl K
336 Enables GSSAPI-based authentication and forwarding (delegation) of GSSAPI
337 credentials to the server.
338 .Pp
339 .It Fl k
340 Disables forwarding (delegation) of GSSAPI credentials to the server.
341 .Pp
342 .It Fl L Xo
343 .Sm off
344 .Oo Ar bind_address : Oc
345 .Ar port : host : hostport
346 .Sm on
347 .Xc
348 .It Fl L Xo
349 .Sm off
350 .Oo Ar bind_address : Oc
351 .Ar port : remote_socket
352 .Sm on
353 .Xc
354 .It Fl L Xo
355 .Sm off
356 .Ar local_socket : host : hostport
357 .Sm on
358 .Xc
359 .It Fl L Xo
360 .Sm off
361 .Ar local_socket : remote_socket
362 .Sm on
363 .Xc
364 Specifies that connections to the given TCP port or Unix socket on the local
365 (client) host are to be forwarded to the given host and port, or Unix socket,
366 on the remote side.
367 This works by allocating a socket to listen to either a TCP
368 .Ar port
369 on the local side, optionally bound to the specified
370 .Ar bind_address ,
371 or to a Unix socket.
372 Whenever a connection is made to the local port or socket, the
373 connection is forwarded over the secure channel, and a connection is
374 made to either
375 .Ar host
376 port
377 .Ar hostport ,
378 or the Unix socket
379 .Ar remote_socket ,
380 from the remote machine.
381 .Pp
382 Port forwardings can also be specified in the configuration file.
383 Only the superuser can forward privileged ports.
384 IPv6 addresses can be specified by enclosing the address in square brackets.
385 .Pp
386 By default, the local port is bound in accordance with the
387 .Cm GatewayPorts
388 setting.
389 However, an explicit
390 .Ar bind_address
391 may be used to bind the connection to a specific address.
392 The
393 .Ar bind_address
394 of
395 .Dq localhost
396 indicates that the listening port be bound for local use only, while an
397 empty address or
398 .Sq *
399 indicates that the port should be available from all interfaces.
400 .Pp
401 .It Fl l Ar login_name
402 Specifies the user to log in as on the remote machine.
403 This also may be specified on a per-host basis in the configuration file.
404 .Pp
405 .It Fl M
406 Places the
407 .Nm
408 client into
409 .Dq master
410 mode for connection sharing.
411 Multiple
412 .Fl M
413 options places
414 .Nm
415 into
416 .Dq master
417 mode with confirmation required before slave connections are accepted.
418 Refer to the description of
419 .Cm ControlMaster
420 in
421 .Xr ssh_config 5
422 for details.
423 .Pp
424 .It Fl m Ar mac_spec
425 A comma-separated list of MAC (message authentication code) algorithms,
426 specified in order of preference.
427 See the
428 .Cm MACs
429 keyword for more information.
430 .Pp
431 .It Fl N
432 Do not execute a remote command.
433 This is useful for just forwarding ports.
434 .Pp
435 .It Fl n
436 Redirects stdin from
437 .Pa /dev/null
438 (actually, prevents reading from stdin).
439 This must be used when
440 .Nm
441 is run in the background.
442 A common trick is to use this to run X11 programs on a remote machine.
443 For example,
444 .Ic ssh -n shadows.cs.hut.fi emacs &
445 will start an emacs on shadows.cs.hut.fi, and the X11
446 connection will be automatically forwarded over an encrypted channel.
447 The
448 .Nm
449 program will be put in the background.
450 (This does not work if
451 .Nm
452 needs to ask for a password or passphrase; see also the
453 .Fl f
454 option.)
455 .Pp
456 .It Fl O Ar ctl_cmd
457 Control an active connection multiplexing master process.
458 When the
459 .Fl O
460 option is specified, the
461 .Ar ctl_cmd
462 argument is interpreted and passed to the master process.
463 Valid commands are:
464 .Dq check
465 (check that the master process is running),
466 .Dq forward
467 (request forwardings without command execution),
468 .Dq cancel
469 (cancel forwardings),
470 .Dq exit
471 (request the master to exit), and
472 .Dq stop
473 (request the master to stop accepting further multiplexing requests).
474 .Pp
475 .It Fl o Ar option
476 Can be used to give options in the format used in the configuration file.
477 This is useful for specifying options for which there is no separate
478 command-line flag.
479 For full details of the options listed below, and their possible values, see
480 .Xr ssh_config 5 .
481 .Pp
482 .Bl -tag -width Ds -offset indent -compact
483 .It AddKeysToAgent
484 .It AddressFamily
485 .It BatchMode
486 .It BindAddress
487 .It CanonicalDomains
488 .It CanonicalizeFallbackLocal
489 .It CanonicalizeHostname
490 .It CanonicalizeMaxDots
491 .It CanonicalizePermittedCNAMEs
492 .It CertificateFile
493 .It ChallengeResponseAuthentication
494 .It CheckHostIP
495 .It Cipher
496 .It Ciphers
497 .It ClearAllForwardings
498 .It Compression
499 .It CompressionLevel
500 .It ConnectionAttempts
501 .It ConnectTimeout
502 .It ControlMaster
503 .It ControlPath
504 .It ControlPersist
505 .It DynamicForward
506 .It EscapeChar
507 .It ExitOnForwardFailure
508 .It FingerprintHash
509 .It ForwardAgent
510 .It ForwardX11
511 .It ForwardX11Timeout
512 .It ForwardX11Trusted
513 .It GatewayPorts
514 .It GlobalKnownHostsFile
515 .It GSSAPIAuthentication
516 .It GSSAPIDelegateCredentials
517 .It HashKnownHosts
518 .It Host
519 .It HostbasedAuthentication
520 .It HostbasedKeyTypes
521 .It HostKeyAlgorithms
522 .It HostKeyAlias
523 .It HostName
524 .It IdentitiesOnly
525 .It IdentityAgent
526 .It IdentityFile
527 .It Include
528 .It IPQoS
529 .It KbdInteractiveAuthentication
530 .It KbdInteractiveDevices
531 .It KexAlgorithms
532 .It LocalCommand
533 .It LocalForward
534 .It LogLevel
535 .It MACs
536 .It Match
537 .It NoHostAuthenticationForLocalhost
538 .It NumberOfPasswordPrompts
539 .It PasswordAuthentication
540 .It PermitLocalCommand
541 .It PKCS11Provider
542 .It Port
543 .It PreferredAuthentications
544 .It Protocol
545 .It ProxyCommand
546 .It ProxyJump
547 .It ProxyUseFdpass
548 .It PubkeyAcceptedKeyTypes
549 .It PubkeyAuthentication
550 .It RekeyLimit
551 .It RemoteForward
552 .It RequestTTY
553 .It RhostsRSAAuthentication
554 .It RSAAuthentication
555 .It SendEnv
556 .It ServerAliveInterval
557 .It ServerAliveCountMax
558 .It StreamLocalBindMask
559 .It StreamLocalBindUnlink
560 .It StrictHostKeyChecking
561 .It TCPKeepAlive
562 .It Tunnel
563 .It TunnelDevice
564 .It UpdateHostKeys
565 .It UsePrivilegedPort
566 .It User
567 .It UserKnownHostsFile
568 .It VerifyHostKeyDNS
569 .It VersionAddendum
570 .It VisualHostKey
571 .It XAuthLocation
572 .El
573 .Pp
574 .It Fl p Ar port
575 Port to connect to on the remote host.
576 This can be specified on a
577 per-host basis in the configuration file.
578 .Pp
579 .It Fl Q Ar query_option
580 Queries
581 .Nm
582 for the algorithms supported for the specified version 2.
583 The available features are:
584 .Ar cipher
585 (supported symmetric ciphers),
586 .Ar cipher-auth
587 (supported symmetric ciphers that support authenticated encryption),
588 .Ar mac
589 (supported message integrity codes),
590 .Ar kex
591 (key exchange algorithms),
592 .Ar key
593 (key types),
594 .Ar key-cert
595 (certificate key types),
596 .Ar key-plain
597 (non-certificate key types), and
598 .Ar protocol-version
599 (supported SSH protocol versions).
600 .Pp
601 .It Fl q
602 Quiet mode.
603 Causes most warning and diagnostic messages to be suppressed.
604 .Pp
605 .It Fl R Xo
606 .Sm off
607 .Oo Ar bind_address : Oc
608 .Ar port : host : hostport
609 .Sm on
610 .Xc
611 .It Fl R Xo
612 .Sm off
613 .Oo Ar bind_address : Oc
614 .Ar port : local_socket
615 .Sm on
616 .Xc
617 .It Fl R Xo
618 .Sm off
619 .Ar remote_socket : host : hostport
620 .Sm on
621 .Xc
622 .It Fl R Xo
623 .Sm off
624 .Ar remote_socket : local_socket
625 .Sm on
626 .Xc
627 Specifies that connections to the given TCP port or Unix socket on the remote
628 (server) host are to be forwarded to the given host and port, or Unix socket,
629 on the local side.
630 This works by allocating a socket to listen to either a TCP
631 .Ar port
632 or to a Unix socket on the remote side.
633 Whenever a connection is made to this port or Unix socket, the
634 connection is forwarded over the secure channel, and a connection
635 is made to either
636 .Ar host
637 port
638 .Ar hostport ,
639 or
640 .Ar local_socket ,
641 from the local machine.
642 .Pp
643 Port forwardings can also be specified in the configuration file.
644 Privileged ports can be forwarded only when
645 logging in as root on the remote machine.
646 IPv6 addresses can be specified by enclosing the address in square brackets.
647 .Pp
648 By default, TCP listening sockets on the server will be bound to the loopback
649 interface only.
650 This may be overridden by specifying a
651 .Ar bind_address .
652 An empty
653 .Ar bind_address ,
654 or the address
655 .Ql * ,
656 indicates that the remote socket should listen on all interfaces.
657 Specifying a remote
658 .Ar bind_address
659 will only succeed if the server's
660 .Cm GatewayPorts
661 option is enabled (see
662 .Xr sshd_config 5 ) .
663 .Pp
664 If the
665 .Ar port
666 argument is
667 .Ql 0 ,
668 the listen port will be dynamically allocated on the server and reported
669 to the client at run time.
670 When used together with
671 .Ic -O forward
672 the allocated port will be printed to the standard output.
673 .Pp
674 .It Fl S Ar ctl_path
675 Specifies the location of a control socket for connection sharing,
676 or the string
677 .Dq none
678 to disable connection sharing.
679 Refer to the description of
680 .Cm ControlPath
681 and
682 .Cm ControlMaster
683 in
684 .Xr ssh_config 5
685 for details.
686 .Pp
687 .It Fl s
688 May be used to request invocation of a subsystem on the remote system.
689 Subsystems facilitate the use of SSH
690 as a secure transport for other applications (e.g.\&
691 .Xr sftp 1 ) .
692 The subsystem is specified as the remote command.
693 .Pp
694 .It Fl T
695 Disable pseudo-terminal allocation.
696 .Pp
697 .It Fl t
698 Force pseudo-terminal allocation.
699 This can be used to execute arbitrary
700 screen-based programs on a remote machine, which can be very useful,
701 e.g. when implementing menu services.
702 Multiple
703 .Fl t
704 options force tty allocation, even if
705 .Nm
706 has no local tty.
707 .Pp
708 .It Fl V
709 Display the version number and exit.
710 .Pp
711 .It Fl v
712 Verbose mode.
713 Causes
714 .Nm
715 to print debugging messages about its progress.
716 This is helpful in
717 debugging connection, authentication, and configuration problems.
718 Multiple
719 .Fl v
720 options increase the verbosity.
721 The maximum is 3.
722 .Pp
723 .It Fl W Ar host : Ns Ar port
724 Requests that standard input and output on the client be forwarded to
725 .Ar host
726 on
727 .Ar port
728 over the secure channel.
729 Implies
730 .Fl N ,
731 .Fl T ,
732 .Cm ExitOnForwardFailure
733 and
734 .Cm ClearAllForwardings ,
735 though these can be overridden in the configuration file or using
736 .Fl o
737 command line options.
738 .Pp
739 .It Fl w Xo
740 .Ar local_tun Ns Op : Ns Ar remote_tun
741 .Xc
742 Requests
743 tunnel
744 device forwarding with the specified
745 .Xr tun 4
746 devices between the client
747 .Pq Ar local_tun
748 and the server
749 .Pq Ar remote_tun .
750 .Pp
751 The devices may be specified by numerical ID or the keyword
752 .Dq any ,
753 which uses the next available tunnel device.
754 If
755 .Ar remote_tun
756 is not specified, it defaults to
757 .Dq any .
758 See also the
759 .Cm Tunnel
760 and
761 .Cm TunnelDevice
762 directives in
763 .Xr ssh_config 5 .
764 If the
765 .Cm Tunnel
766 directive is unset, it is set to the default tunnel mode, which is
767 .Dq point-to-point .
768 .Pp
769 .It Fl X
770 Enables X11 forwarding.
771 This can also be specified on a per-host basis in a configuration file.
772 .Pp
773 X11 forwarding should be enabled with caution.
774 Users with the ability to bypass file permissions on the remote host
775 (for the user's X authorization database)
776 can access the local X11 display through the forwarded connection.
777 An attacker may then be able to perform activities such as keystroke monitoring.
778 .Pp
779 For this reason, X11 forwarding is subjected to X11 SECURITY extension
780 restrictions by default.
781 Please refer to the
782 .Nm
783 .Fl Y
784 option and the
785 .Cm ForwardX11Trusted
786 directive in
787 .Xr ssh_config 5
788 for more information.
789 .Pp
790 .It Fl x
791 Disables X11 forwarding.
792 .Pp
793 .It Fl Y
794 Enables trusted X11 forwarding.
795 Trusted X11 forwardings are not subjected to the X11 SECURITY extension
796 controls.
797 .Pp
798 .It Fl y
799 Send log information using the
800 .Xr syslog 3
801 system module.
802 By default this information is sent to stderr.
803 .El
804 .Pp
805 .Nm
806 may additionally obtain configuration data from
807 a per-user configuration file and a system-wide configuration file.
808 The file format and configuration options are described in
809 .Xr ssh_config 5 .
810 .Sh AUTHENTICATION
811 The OpenSSH SSH client supports SSH protocols 1 and 2.
812 The default is to use protocol 2 only,
813 though this can be changed via the
814 .Cm Protocol
815 option in
816 .Xr ssh_config 5
817 or the
818 .Fl 1
819 and
820 .Fl 2
821 options (see above).
822 Protocol 1 should not be used
823 and is only offered to support legacy devices.
824 It suffers from a number of cryptographic weaknesses
825 and doesn't support many of the advanced features available for protocol 2.
826 .Pp
827 The methods available for authentication are:
828 GSSAPI-based authentication,
829 host-based authentication,
830 public key authentication,
831 challenge-response authentication,
832 and password authentication.
833 Authentication methods are tried in the order specified above,
834 though
835 .Cm PreferredAuthentications
836 can be used to change the default order.
837 .Pp
838 Host-based authentication works as follows:
839 If the machine the user logs in from is listed in
840 .Pa /etc/hosts.equiv
841 or
842 .Pa /etc/shosts.equiv
843 on the remote machine, and the user names are
844 the same on both sides, or if the files
845 .Pa ~/.rhosts
846 or
847 .Pa ~/.shosts
848 exist in the user's home directory on the
849 remote machine and contain a line containing the name of the client
850 machine and the name of the user on that machine, the user is
851 considered for login.
852 Additionally, the server
853 .Em must
854 be able to verify the client's
855 host key (see the description of
856 .Pa /etc/ssh/ssh_known_hosts
857 and
858 .Pa ~/.ssh/known_hosts ,
859 below)
860 for login to be permitted.
861 This authentication method closes security holes due to IP
862 spoofing, DNS spoofing, and routing spoofing.
863 [Note to the administrator:
864 .Pa /etc/hosts.equiv ,
865 .Pa ~/.rhosts ,
866 and the rlogin/rsh protocol in general, are inherently insecure and should be
867 disabled if security is desired.]
868 .Pp
869 Public key authentication works as follows:
870 The scheme is based on public-key cryptography,
871 using cryptosystems
872 where encryption and decryption are done using separate keys,
873 and it is unfeasible to derive the decryption key from the encryption key.
874 The idea is that each user creates a public/private
875 key pair for authentication purposes.
876 The server knows the public key, and only the user knows the private key.
877 .Nm
878 implements public key authentication protocol automatically,
879 using one of the DSA, ECDSA, Ed25519 or RSA algorithms.
880 The HISTORY section of
881 .Xr ssl 8
882 contains a brief discussion of the DSA and RSA algorithms.
883 .Pp
884 The file
885 .Pa ~/.ssh/authorized_keys
886 lists the public keys that are permitted for logging in.
887 When the user logs in, the
888 .Nm
889 program tells the server which key pair it would like to use for
890 authentication.
891 The client proves that it has access to the private key
892 and the server checks that the corresponding public key
893 is authorized to accept the account.
894 .Pp
895 The user creates his/her key pair by running
896 .Xr ssh-keygen 1 .
897 This stores the private key in
898 .Pa ~/.ssh/identity
899 (protocol 1),
900 .Pa ~/.ssh/id_dsa
901 (DSA),
902 .Pa ~/.ssh/id_ecdsa
903 (ECDSA),
904 .Pa ~/.ssh/id_ed25519
905 (Ed25519),
906 or
907 .Pa ~/.ssh/id_rsa
908 (RSA)
909 and stores the public key in
910 .Pa ~/.ssh/identity.pub
911 (protocol 1),
912 .Pa ~/.ssh/id_dsa.pub
913 (DSA),
914 .Pa ~/.ssh/id_ecdsa.pub
915 (ECDSA),
916 .Pa ~/.ssh/id_ed25519.pub
917 (Ed25519),
918 or
919 .Pa ~/.ssh/id_rsa.pub
920 (RSA)
921 in the user's home directory.
922 The user should then copy the public key
923 to
924 .Pa ~/.ssh/authorized_keys
925 in his/her home directory on the remote machine.
926 The
927 .Pa authorized_keys
928 file corresponds to the conventional
929 .Pa ~/.rhosts
930 file, and has one key
931 per line, though the lines can be very long.
932 After this, the user can log in without giving the password.
933 .Pp
934 A variation on public key authentication
935 is available in the form of certificate authentication:
936 instead of a set of public/private keys,
937 signed certificates are used.
938 This has the advantage that a single trusted certification authority
939 can be used in place of many public/private keys.
940 See the CERTIFICATES section of
941 .Xr ssh-keygen 1
942 for more information.
943 .Pp
944 The most convenient way to use public key or certificate authentication
945 may be with an authentication agent.
946 See
947 .Xr ssh-agent 1
948 and (optionally) the
949 .Cm AddKeysToAgent
950 directive in
951 .Xr ssh_config 5
952 for more information.
953 .Pp
954 Challenge-response authentication works as follows:
955 The server sends an arbitrary
956 .Qq challenge
957 text, and prompts for a response.
958 Examples of challenge-response authentication include
959 .Bx
960 Authentication (see
961 .Xr login.conf 5 )
962 and PAM (some
963 .Pf non- Ox
964 systems).
965 .Pp
966 Finally, if other authentication methods fail,
967 .Nm
968 prompts the user for a password.
969 The password is sent to the remote
970 host for checking; however, since all communications are encrypted,
971 the password cannot be seen by someone listening on the network.
972 .Pp
973 .Nm
974 automatically maintains and checks a database containing
975 identification for all hosts it has ever been used with.
976 Host keys are stored in
977 .Pa ~/.ssh/known_hosts
978 in the user's home directory.
979 Additionally, the file
980 .Pa /etc/ssh/ssh_known_hosts
981 is automatically checked for known hosts.
982 Any new hosts are automatically added to the user's file.
983 If a host's identification ever changes,
984 .Nm
985 warns about this and disables password authentication to prevent
986 server spoofing or man-in-the-middle attacks,
987 which could otherwise be used to circumvent the encryption.
988 The
989 .Cm StrictHostKeyChecking
990 option can be used to control logins to machines whose
991 host key is not known or has changed.
992 .Pp
993 When the user's identity has been accepted by the server, the server
994 either executes the given command in a non-interactive session or,
995 if no command has been specified, logs into the machine and gives
996 the user a normal shell as an interactive session.
997 All communication with
998 the remote command or shell will be automatically encrypted.
999 .Pp
1000 If an interactive session is requested
1001 .Nm
1002 by default will only request a pseudo-terminal (pty) for interactive
1003 sessions when the client has one.
1004 The flags
1005 .Fl T
1006 and
1007 .Fl t
1008 can be used to override this behaviour.
1009 .Pp
1010 If a pseudo-terminal has been allocated the
1011 user may use the escape characters noted below.
1012 .Pp
1013 If no pseudo-terminal has been allocated,
1014 the session is transparent and can be used to reliably transfer binary data.
1015 On most systems, setting the escape character to
1016 .Dq none
1017 will also make the session transparent even if a tty is used.
1018 .Pp
1019 The session terminates when the command or shell on the remote
1020 machine exits and all X11 and TCP connections have been closed.
1021 .Sh ESCAPE CHARACTERS
1022 When a pseudo-terminal has been requested,
1023 .Nm
1024 supports a number of functions through the use of an escape character.
1025 .Pp
1026 A single tilde character can be sent as
1027 .Ic ~~
1028 or by following the tilde by a character other than those described below.
1029 The escape character must always follow a newline to be interpreted as
1030 special.
1031 The escape character can be changed in configuration files using the
1032 .Cm EscapeChar
1033 configuration directive or on the command line by the
1034 .Fl e
1035 option.
1036 .Pp
1037 The supported escapes (assuming the default
1038 .Ql ~ )
1039 are:
1040 .Bl -tag -width Ds
1041 .It Cm ~.
1042 Disconnect.
1043 .It Cm ~^Z
1044 Background
1045 .Nm .
1046 .It Cm ~#
1047 List forwarded connections.
1048 .It Cm ~&
1049 Background
1050 .Nm
1051 at logout when waiting for forwarded connection / X11 sessions to terminate.
1052 .It Cm ~?
1053 Display a list of escape characters.
1054 .It Cm ~B
1055 Send a BREAK to the remote system
1056 (only useful if the peer supports it).
1057 .It Cm ~C
1058 Open command line.
1059 Currently this allows the addition of port forwardings using the
1060 .Fl L ,
1061 .Fl R
1062 and
1063 .Fl D
1064 options (see above).
1065 It also allows the cancellation of existing port-forwardings
1066 with
1067 .Sm off
1068 .Fl KL Oo Ar bind_address : Oc Ar port
1069 .Sm on
1070 for local,
1071 .Sm off
1072 .Fl KR Oo Ar bind_address : Oc Ar port
1073 .Sm on
1074 for remote and
1075 .Sm off
1076 .Fl KD Oo Ar bind_address : Oc Ar port
1077 .Sm on
1078 for dynamic port-forwardings.
1079 .Ic !\& Ns Ar command
1080 allows the user to execute a local command if the
1081 .Ic PermitLocalCommand
1082 option is enabled in
1083 .Xr ssh_config 5 .
1084 Basic help is available, using the
1085 .Fl h
1086 option.
1087 .It Cm ~R
1088 Request rekeying of the connection
1089 (only useful if the peer supports it).
1090 .It Cm ~V
1091 Decrease the verbosity
1092 .Pq Ic LogLevel
1093 when errors are being written to stderr.
1094 .It Cm ~v
1095 Increase the verbosity
1096 .Pq Ic LogLevel
1097 when errors are being written to stderr.
1098 .El
1099 .Sh TCP FORWARDING
1100 Forwarding of arbitrary TCP connections over the secure channel can
1101 be specified either on the command line or in a configuration file.
1102 One possible application of TCP forwarding is a secure connection to a
1103 mail server; another is going through firewalls.
1104 .Pp
1105 In the example below, we look at encrypting communication between
1106 an IRC client and server, even though the IRC server does not directly
1107 support encrypted communications.
1108 This works as follows:
1109 the user connects to the remote host using
1110 .Nm ,
1111 specifying a port to be used to forward connections
1112 to the remote server.
1113 After that it is possible to start the service which is to be encrypted
1114 on the client machine,
1115 connecting to the same local port,
1116 and
1117 .Nm
1118 will encrypt and forward the connection.
1119 .Pp
1120 The following example tunnels an IRC session from client machine
1121 .Dq 127.0.0.1
1122 (localhost)
1123 to remote server
1124 .Dq server.example.com :
1125 .Bd -literal -offset 4n
1126 $ ssh -f -L 1234:localhost:6667 server.example.com sleep 10
1127 $ irc -c '#users' -p 1234 pinky 127.0.0.1
1128 .Ed
1129 .Pp
1130 This tunnels a connection to IRC server
1131 .Dq server.example.com ,
1132 joining channel
1133 .Dq #users ,
1134 nickname
1135 .Dq pinky ,
1136 using port 1234.
1137 It doesn't matter which port is used,
1138 as long as it's greater than 1023
1139 (remember, only root can open sockets on privileged ports)
1140 and doesn't conflict with any ports already in use.
1141 The connection is forwarded to port 6667 on the remote server,
1142 since that's the standard port for IRC services.
1143 .Pp
1144 The
1145 .Fl f
1146 option backgrounds
1147 .Nm
1148 and the remote command
1149 .Dq sleep 10
1150 is specified to allow an amount of time
1151 (10 seconds, in the example)
1152 to start the service which is to be tunnelled.
1153 If no connections are made within the time specified,
1154 .Nm
1155 will exit.
1156 .Sh X11 FORWARDING
1157 If the
1158 .Cm ForwardX11
1159 variable is set to
1160 .Dq yes
1161 (or see the description of the
1162 .Fl X ,
1163 .Fl x ,
1164 and
1165 .Fl Y
1166 options above)
1167 and the user is using X11 (the
1168 .Ev DISPLAY
1169 environment variable is set), the connection to the X11 display is
1170 automatically forwarded to the remote side in such a way that any X11
1171 programs started from the shell (or command) will go through the
1172 encrypted channel, and the connection to the real X server will be made
1173 from the local machine.
1174 The user should not manually set
1175 .Ev DISPLAY .
1176 Forwarding of X11 connections can be
1177 configured on the command line or in configuration files.
1178 .Pp
1179 The
1180 .Ev DISPLAY
1181 value set by
1182 .Nm
1183 will point to the server machine, but with a display number greater than zero.
1184 This is normal, and happens because
1185 .Nm
1186 creates a
1187 .Dq proxy
1188 X server on the server machine for forwarding the
1189 connections over the encrypted channel.
1190 .Pp
1191 .Nm
1192 will also automatically set up Xauthority data on the server machine.
1193 For this purpose, it will generate a random authorization cookie,
1194 store it in Xauthority on the server, and verify that any forwarded
1195 connections carry this cookie and replace it by the real cookie when
1196 the connection is opened.
1197 The real authentication cookie is never
1198 sent to the server machine (and no cookies are sent in the plain).
1199 .Pp
1200 If the
1201 .Cm ForwardAgent
1202 variable is set to
1203 .Dq yes
1204 (or see the description of the
1205 .Fl A
1206 and
1207 .Fl a
1208 options above) and
1209 the user is using an authentication agent, the connection to the agent
1210 is automatically forwarded to the remote side.
1211 .Sh VERIFYING HOST KEYS
1212 When connecting to a server for the first time,
1213 a fingerprint of the server's public key is presented to the user
1214 (unless the option
1215 .Cm StrictHostKeyChecking
1216 has been disabled).
1217 Fingerprints can be determined using
1218 .Xr ssh-keygen 1 :
1219 .Pp
1220 .Dl $ ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key
1221 .Pp
1222 If the fingerprint is already known, it can be matched
1223 and the key can be accepted or rejected.
1224 If only legacy (MD5) fingerprints for the server are available, the
1225 .Xr ssh-keygen 1
1226 .Fl E
1227 option may be used to downgrade the fingerprint algorithm to match.
1228 .Pp
1229 Because of the difficulty of comparing host keys
1230 just by looking at fingerprint strings,
1231 there is also support to compare host keys visually,
1232 using
1233 .Em random art .
1234 By setting the
1235 .Cm VisualHostKey
1236 option to
1237 .Dq yes ,
1238 a small ASCII graphic gets displayed on every login to a server, no matter
1239 if the session itself is interactive or not.
1240 By learning the pattern a known server produces, a user can easily
1241 find out that the host key has changed when a completely different pattern
1242 is displayed.
1243 Because these patterns are not unambiguous however, a pattern that looks
1244 similar to the pattern remembered only gives a good probability that the
1245 host key is the same, not guaranteed proof.
1246 .Pp
1247 To get a listing of the fingerprints along with their random art for
1248 all known hosts, the following command line can be used:
1249 .Pp
1250 .Dl $ ssh-keygen -lv -f ~/.ssh/known_hosts
1251 .Pp
1252 If the fingerprint is unknown,
1253 an alternative method of verification is available:
1254 SSH fingerprints verified by DNS.
1255 An additional resource record (RR),
1256 SSHFP,
1257 is added to a zonefile
1258 and the connecting client is able to match the fingerprint
1259 with that of the key presented.
1260 .Pp
1261 In this example, we are connecting a client to a server,
1262 .Dq host.example.com .
1263 The SSHFP resource records should first be added to the zonefile for
1264 host.example.com:
1265 .Bd -literal -offset indent
1266 $ ssh-keygen -r host.example.com.
1267 .Ed
1268 .Pp
1269 The output lines will have to be added to the zonefile.
1270 To check that the zone is answering fingerprint queries:
1271 .Pp
1272 .Dl $ dig -t SSHFP host.example.com
1273 .Pp
1274 Finally the client connects:
1275 .Bd -literal -offset indent
1276 $ ssh -o "VerifyHostKeyDNS ask" host.example.com
1277 [...]
1278 Matching host key fingerprint found in DNS.
1279 Are you sure you want to continue connecting (yes/no)?
1280 .Ed
1281 .Pp
1282 See the
1283 .Cm VerifyHostKeyDNS
1284 option in
1285 .Xr ssh_config 5
1286 for more information.
1287 .Sh SSH-BASED VIRTUAL PRIVATE NETWORKS
1288 .Nm
1289 contains support for Virtual Private Network (VPN) tunnelling
1290 using the
1291 .Xr tun 4
1292 network pseudo-device,
1293 allowing two networks to be joined securely.
1294 The
1295 .Xr sshd_config 5
1296 configuration option
1297 .Cm PermitTunnel
1298 controls whether the server supports this,
1299 and at what level (layer 2 or 3 traffic).
1300 .Pp
1301 The following example would connect client network 10.0.50.0/24
1302 with remote network 10.0.99.0/24 using a point-to-point connection
1303 from 10.1.1.1 to 10.1.1.2,
1304 provided that the SSH server running on the gateway to the remote network,
1305 at 192.168.1.15, allows it.
1306 .Pp
1307 On the client:
1308 .Bd -literal -offset indent
1309 # ssh -f -w 0:1 192.168.1.15 true
1310 # ifconfig tun0 10.1.1.1 10.1.1.2 netmask 255.255.255.252
1311 # route add 10.0.99.0/24 10.1.1.2
1312 .Ed
1313 .Pp
1314 On the server:
1315 .Bd -literal -offset indent
1316 # ifconfig tun1 10.1.1.2 10.1.1.1 netmask 255.255.255.252
1317 # route add 10.0.50.0/24 10.1.1.1
1318 .Ed
1319 .Pp
1320 Client access may be more finely tuned via the
1321 .Pa /root/.ssh/authorized_keys
1322 file (see below) and the
1323 .Cm PermitRootLogin
1324 server option.
1325 The following entry would permit connections on
1326 .Xr tun 4
1327 device 1 from user
1328 .Dq jane
1329 and on tun device 2 from user
1330 .Dq john ,
1331 if
1332 .Cm PermitRootLogin
1333 is set to
1334 .Dq forced-commands-only :
1335 .Bd -literal -offset 2n
1336 tunnel="1",command="sh /etc/netstart tun1" ssh-rsa ... jane
1337 tunnel="2",command="sh /etc/netstart tun2" ssh-rsa ... john
1338 .Ed
1339 .Pp
1340 Since an SSH-based setup entails a fair amount of overhead,
1341 it may be more suited to temporary setups,
1342 such as for wireless VPNs.
1343 More permanent VPNs are better provided by tools such as
1344 .Xr ipsecctl 8
1345 and
1346 .Xr isakmpd 8 .
1347 .Sh ENVIRONMENT
1348 .Nm
1349 will normally set the following environment variables:
1350 .Bl -tag -width "SSH_ORIGINAL_COMMAND"
1351 .It Ev DISPLAY
1352 The
1353 .Ev DISPLAY
1354 variable indicates the location of the X11 server.
1355 It is automatically set by
1356 .Nm
1357 to point to a value of the form
1358 .Dq hostname:n ,
1359 where
1360 .Dq hostname
1361 indicates the host where the shell runs, and
1362 .Sq n
1363 is an integer \*(Ge 1.
1364 .Nm
1365 uses this special value to forward X11 connections over the secure
1366 channel.
1367 The user should normally not set
1368 .Ev DISPLAY
1369 explicitly, as that
1370 will render the X11 connection insecure (and will require the user to
1371 manually copy any required authorization cookies).
1372 .It Ev HOME
1373 Set to the path of the user's home directory.
1374 .It Ev LOGNAME
1375 Synonym for
1376 .Ev USER ;
1377 set for compatibility with systems that use this variable.
1378 .It Ev MAIL
1379 Set to the path of the user's mailbox.
1380 .It Ev PATH
1381 Set to the default
1382 .Ev PATH ,
1383 as specified when compiling
1384 .Nm .
1385 .It Ev SSH_ASKPASS
1386 If
1387 .Nm
1388 needs a passphrase, it will read the passphrase from the current
1389 terminal if it was run from a terminal.
1390 If
1391 .Nm
1392 does not have a terminal associated with it but
1393 .Ev DISPLAY
1394 and
1395 .Ev SSH_ASKPASS
1396 are set, it will execute the program specified by
1397 .Ev SSH_ASKPASS
1398 and open an X11 window to read the passphrase.
1399 This is particularly useful when calling
1400 .Nm
1401 from a
1402 .Pa .xsession
1403 or related script.
1404 (Note that on some machines it
1405 may be necessary to redirect the input from
1406 .Pa /dev/null
1407 to make this work.)
1408 .It Ev SSH_AUTH_SOCK
1409 Identifies the path of a
1410 .Ux Ns -domain
1411 socket used to communicate with the agent.
1412 .It Ev SSH_CONNECTION
1413 Identifies the client and server ends of the connection.
1414 The variable contains
1415 four space-separated values: client IP address, client port number,
1416 server IP address, and server port number.
1417 .It Ev SSH_ORIGINAL_COMMAND
1418 This variable contains the original command line if a forced command
1419 is executed.
1420 It can be used to extract the original arguments.
1421 .It Ev SSH_TTY
1422 This is set to the name of the tty (path to the device) associated
1423 with the current shell or command.
1424 If the current session has no tty,
1425 this variable is not set.
1426 .It Ev TZ
1427 This variable is set to indicate the present time zone if it
1428 was set when the daemon was started (i.e. the daemon passes the value
1429 on to new connections).
1430 .It Ev USER
1431 Set to the name of the user logging in.
1432 .El
1433 .Pp
1434 Additionally,
1435 .Nm
1436 reads
1437 .Pa ~/.ssh/environment ,
1438 and adds lines of the format
1439 .Dq VARNAME=value
1440 to the environment if the file exists and users are allowed to
1441 change their environment.
1442 For more information, see the
1443 .Cm PermitUserEnvironment
1444 option in
1445 .Xr sshd_config 5 .
1446 .Sh FILES
1447 .Bl -tag -width Ds -compact
1448 .It Pa ~/.rhosts
1449 This file is used for host-based authentication (see above).
1450 On some machines this file may need to be
1451 world-readable if the user's home directory is on an NFS partition,
1452 because
1453 .Xr sshd 8
1454 reads it as root.
1455 Additionally, this file must be owned by the user,
1456 and must not have write permissions for anyone else.
1457 The recommended
1458 permission for most machines is read/write for the user, and not
1459 accessible by others.
1460 .Pp
1461 .It Pa ~/.shosts
1462 This file is used in exactly the same way as
1463 .Pa .rhosts ,
1464 but allows host-based authentication without permitting login with
1465 rlogin/rsh.
1466 .Pp
1467 .It Pa ~/.ssh/
1468 This directory is the default location for all user-specific configuration
1469 and authentication information.
1470 There is no general requirement to keep the entire contents of this directory
1471 secret, but the recommended permissions are read/write/execute for the user,
1472 and not accessible by others.
1473 .Pp
1474 .It Pa ~/.ssh/authorized_keys
1475 Lists the public keys (DSA, ECDSA, Ed25519, RSA)
1476 that can be used for logging in as this user.
1477 The format of this file is described in the
1478 .Xr sshd 8
1479 manual page.
1480 This file is not highly sensitive, but the recommended
1481 permissions are read/write for the user, and not accessible by others.
1482 .Pp
1483 .It Pa ~/.ssh/config
1484 This is the per-user configuration file.
1485 The file format and configuration options are described in
1486 .Xr ssh_config 5 .
1487 Because of the potential for abuse, this file must have strict permissions:
1488 read/write for the user, and not writable by others.
1489 .Pp
1490 .It Pa ~/.ssh/environment
1491 Contains additional definitions for environment variables; see
1492 .Sx ENVIRONMENT ,
1493 above.
1494 .Pp
1495 .It Pa ~/.ssh/identity
1496 .It Pa ~/.ssh/id_dsa
1497 .It Pa ~/.ssh/id_ecdsa
1498 .It Pa ~/.ssh/id_ed25519
1499 .It Pa ~/.ssh/id_rsa
1500 Contains the private key for authentication.
1501 These files
1502 contain sensitive data and should be readable by the user but not
1503 accessible by others (read/write/execute).
1504 .Nm
1505 will simply ignore a private key file if it is accessible by others.
1506 It is possible to specify a passphrase when
1507 generating the key which will be used to encrypt the
1508 sensitive part of this file using 3DES.
1509 .Pp
1510 .It Pa ~/.ssh/identity.pub
1511 .It Pa ~/.ssh/id_dsa.pub
1512 .It Pa ~/.ssh/id_ecdsa.pub
1513 .It Pa ~/.ssh/id_ed25519.pub
1514 .It Pa ~/.ssh/id_rsa.pub
1515 Contains the public key for authentication.
1516 These files are not
1517 sensitive and can (but need not) be readable by anyone.
1518 .Pp
1519 .It Pa ~/.ssh/known_hosts
1520 Contains a list of host keys for all hosts the user has logged into
1521 that are not already in the systemwide list of known host keys.
1522 See
1523 .Xr sshd 8
1524 for further details of the format of this file.
1525 .Pp
1526 .It Pa ~/.ssh/rc
1527 Commands in this file are executed by
1528 .Nm
1529 when the user logs in, just before the user's shell (or command) is
1530 started.
1531 See the
1532 .Xr sshd 8
1533 manual page for more information.
1534 .Pp
1535 .It Pa /etc/hosts.equiv
1536 This file is for host-based authentication (see above).
1537 It should only be writable by root.
1538 .Pp
1539 .It Pa /etc/shosts.equiv
1540 This file is used in exactly the same way as
1541 .Pa hosts.equiv ,
1542 but allows host-based authentication without permitting login with
1543 rlogin/rsh.
1544 .Pp
1545 .It Pa /etc/ssh/ssh_config
1546 Systemwide configuration file.
1547 The file format and configuration options are described in
1548 .Xr ssh_config 5 .
1549 .Pp
1550 .It Pa /etc/ssh/ssh_host_key
1551 .It Pa /etc/ssh/ssh_host_dsa_key
1552 .It Pa /etc/ssh/ssh_host_ecdsa_key
1553 .It Pa /etc/ssh/ssh_host_ed25519_key
1554 .It Pa /etc/ssh/ssh_host_rsa_key
1555 These files contain the private parts of the host keys
1556 and are used for host-based authentication.
1557 .Pp
1558 .It Pa /etc/ssh/ssh_known_hosts
1559 Systemwide list of known host keys.
1560 This file should be prepared by the
1561 system administrator to contain the public host keys of all machines in the
1562 organization.
1563 It should be world-readable.
1564 See
1565 .Xr sshd 8
1566 for further details of the format of this file.
1567 .Pp
1568 .It Pa /etc/ssh/sshrc
1569 Commands in this file are executed by
1570 .Nm
1571 when the user logs in, just before the user's shell (or command) is started.
1572 See the
1573 .Xr sshd 8
1574 manual page for more information.
1575 .El
1576 .Sh EXIT STATUS
1577 .Nm
1578 exits with the exit status of the remote command or with 255
1579 if an error occurred.
1580 .Sh SEE ALSO
1581 .Xr scp 1 ,
1582 .Xr sftp 1 ,
1583 .Xr ssh-add 1 ,
1584 .Xr ssh-agent 1 ,
1585 .Xr ssh-keygen 1 ,
1586 .Xr ssh-keyscan 1 ,
1587 .Xr tun 4 ,
1588 .Xr ssh_config 5 ,
1589 .Xr ssh-keysign 8 ,
1590 .Xr sshd 8
1591 .Sh STANDARDS
1592 .Rs
1593 .%A S. Lehtinen
1594 .%A C. Lonvick
1595 .%D January 2006
1596 .%R RFC 4250
1597 .%T The Secure Shell (SSH) Protocol Assigned Numbers
1598 .Re
1599 .Pp
1600 .Rs
1601 .%A T. Ylonen
1602 .%A C. Lonvick
1603 .%D January 2006
1604 .%R RFC 4251
1605 .%T The Secure Shell (SSH) Protocol Architecture
1606 .Re
1607 .Pp
1608 .Rs
1609 .%A T. Ylonen
1610 .%A C. Lonvick
1611 .%D January 2006
1612 .%R RFC 4252
1613 .%T The Secure Shell (SSH) Authentication Protocol
1614 .Re
1615 .Pp
1616 .Rs
1617 .%A T. Ylonen
1618 .%A C. Lonvick
1619 .%D January 2006
1620 .%R RFC 4253
1621 .%T The Secure Shell (SSH) Transport Layer Protocol
1622 .Re
1623 .Pp
1624 .Rs
1625 .%A T. Ylonen
1626 .%A C. Lonvick
1627 .%D January 2006
1628 .%R RFC 4254
1629 .%T The Secure Shell (SSH) Connection Protocol
1630 .Re
1631 .Pp
1632 .Rs
1633 .%A J. Schlyter
1634 .%A W. Griffin
1635 .%D January 2006
1636 .%R RFC 4255
1637 .%T Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints
1638 .Re
1639 .Pp
1640 .Rs
1641 .%A F. Cusack
1642 .%A M. Forssen
1643 .%D January 2006
1644 .%R RFC 4256
1645 .%T Generic Message Exchange Authentication for the Secure Shell Protocol (SSH)
1646 .Re
1647 .Pp
1648 .Rs
1649 .%A J. Galbraith
1650 .%A P. Remaker
1651 .%D January 2006
1652 .%R RFC 4335
1653 .%T The Secure Shell (SSH) Session Channel Break Extension
1654 .Re
1655 .Pp
1656 .Rs
1657 .%A M. Bellare
1658 .%A T. Kohno
1659 .%A C. Namprempre
1660 .%D January 2006
1661 .%R RFC 4344
1662 .%T The Secure Shell (SSH) Transport Layer Encryption Modes
1663 .Re
1664 .Pp
1665 .Rs
1666 .%A B. Harris
1667 .%D January 2006
1668 .%R RFC 4345
1669 .%T Improved Arcfour Modes for the Secure Shell (SSH) Transport Layer Protocol
1670 .Re
1671 .Pp
1672 .Rs
1673 .%A M. Friedl
1674 .%A N. Provos
1675 .%A W. Simpson
1676 .%D March 2006
1677 .%R RFC 4419
1678 .%T Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer Protocol
1679 .Re
1680 .Pp
1681 .Rs
1682 .%A J. Galbraith
1683 .%A R. Thayer
1684 .%D November 2006
1685 .%R RFC 4716
1686 .%T The Secure Shell (SSH) Public Key File Format
1687 .Re
1688 .Pp
1689 .Rs
1690 .%A D. Stebila
1691 .%A J. Green
1692 .%D December 2009
1693 .%R RFC 5656
1694 .%T Elliptic Curve Algorithm Integration in the Secure Shell Transport Layer
1695 .Re
1696 .Pp
1697 .Rs
1698 .%A A. Perrig
1699 .%A D. Song
1700 .%D 1999
1701 .%O International Workshop on Cryptographic Techniques and E-Commerce (CrypTEC '99)
1702 .%T Hash Visualization: a New Technique to improve Real-World Security
1703 .Re
1704 .Sh AUTHORS
1705 OpenSSH is a derivative of the original and free
1706 ssh 1.2.12 release by Tatu Ylonen.
1707 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1708 Theo de Raadt and Dug Song
1709 removed many bugs, re-added newer features and
1710 created OpenSSH.
1711 Markus Friedl contributed the support for SSH
1712 protocol versions 1.5 and 2.0.