xref: /freebsd/crypto/openssh/ssh.1 (revision 6b806d21d144c25f4fad714e1c0cf780f5e27d7e)
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.1,v 1.194 2004/08/12 21:41:13 jakob Exp $
38.\" $FreeBSD$
39.Dd September 25, 1999
40.Dt SSH 1
41.Os
42.Sh NAME
43.Nm ssh
44.Nd OpenSSH SSH client (remote login program)
45.Sh SYNOPSIS
46.Nm ssh
47.Op Fl 1246AaCfgkMNnqsTtVvXxY
48.Op Fl b Ar bind_address
49.Op Fl c Ar cipher_spec
50.Bk -words
51.Op Fl D Ar port
52.Op Fl e Ar escape_char
53.Op Fl F Ar configfile
54.Op Fl i Ar identity_file
55.Oo Fl L Xo
56.Sm off
57.Ar port :
58.Ar host :
59.Ar hostport
60.Sm on
61.Xc
62.Oc
63.Ek
64.Op Fl l Ar login_name
65.Op Fl m Ar mac_spec
66.Op Fl o Ar option
67.Bk -words
68.Op Fl p Ar port
69.Ek
70.Oo Fl R Xo
71.Sm off
72.Ar port :
73.Ar host :
74.Ar hostport
75.Sm on
76.Xc
77.Oc
78.Op Fl S Ar ctl
79.Oo Ar user Ns @ Oc Ns Ar hostname
80.Op Ar command
81.Sh DESCRIPTION
82.Nm
83(SSH client) is a program for logging into a remote machine and for
84executing commands on a remote machine.
85It is intended to replace rlogin and rsh,
86and provide secure encrypted communications between
87two untrusted hosts over an insecure network.
88X11 connections and arbitrary TCP/IP ports
89can also be forwarded over the secure channel.
90.Pp
91.Nm
92connects and logs into the specified
93.Ar hostname
94(with optional
95.Ar user
96name).
97The user must prove
98his/her identity to the remote machine using one of several methods
99depending on the protocol version used.
100.Pp
101If
102.Ar command
103is specified,
104.Ar command
105is executed on the remote host instead of a login shell.
106.Ss SSH protocol version 1
107First, if the machine the user logs in from is listed in
108.Pa /etc/hosts.equiv
109or
110.Pa /etc/ssh/shosts.equiv
111on the remote machine, and the user names are
112the same on both sides, the user is immediately permitted to log in.
113Second, if
114.Pa .rhosts
115or
116.Pa .shosts
117exists in the user's home directory on the
118remote machine and contains a line containing the name of the client
119machine and the name of the user on that machine, the user is
120permitted to log in.
121This form of authentication alone is normally not
122allowed by the server because it is not secure.
123.Pp
124The second authentication method is the
125.Em rhosts
126or
127.Em hosts.equiv
128method combined with RSA-based host authentication.
129It means that if the login would be permitted by
130.Pa $HOME/.rhosts ,
131.Pa $HOME/.shosts ,
132.Pa /etc/hosts.equiv ,
133or
134.Pa /etc/ssh/shosts.equiv ,
135and if additionally the server can verify the client's
136host key (see
137.Pa /etc/ssh/ssh_known_hosts
138and
139.Pa $HOME/.ssh/known_hosts
140in the
141.Sx FILES
142section), only then is login permitted.
143This authentication method closes security holes due to IP
144spoofing, DNS spoofing and routing spoofing.
145[Note to the administrator:
146.Pa /etc/hosts.equiv ,
147.Pa $HOME/.rhosts ,
148and the rlogin/rsh protocol in general, are inherently insecure and should be
149disabled if security is desired.]
150.Pp
151As a third authentication method,
152.Nm
153supports RSA based authentication.
154The scheme is based on public-key cryptography: there are cryptosystems
155where encryption and decryption are done using separate keys, and it
156is not possible to derive the decryption key from the encryption key.
157RSA is one such system.
158The idea is that each user creates a public/private
159key pair for authentication purposes.
160The server knows the public key, and only the user knows the private key.
161.Pp
162The file
163.Pa $HOME/.ssh/authorized_keys
164lists the public keys that are permitted for logging in.
165When the user logs in, the
166.Nm
167program tells the server which key pair it would like to use for
168authentication.
169The server checks if this key is permitted, and if so,
170sends the user (actually the
171.Nm
172program running on behalf of the user) a challenge, a random number,
173encrypted by the user's public key.
174The challenge can only be decrypted using the proper private key.
175The user's client then decrypts the challenge using the private key,
176proving that he/she knows the private key
177but without disclosing it to the server.
178.Pp
179.Nm
180implements the RSA authentication protocol automatically.
181The user creates his/her RSA key pair by running
182.Xr ssh-keygen 1 .
183This stores the private key in
184.Pa $HOME/.ssh/identity
185and stores the public key in
186.Pa $HOME/.ssh/identity.pub
187in the user's home directory.
188The user should then copy the
189.Pa identity.pub
190to
191.Pa $HOME/.ssh/authorized_keys
192in his/her home directory on the remote machine (the
193.Pa authorized_keys
194file corresponds to the conventional
195.Pa $HOME/.rhosts
196file, and has one key
197per line, though the lines can be very long).
198After this, the user can log in without giving the password.
199RSA authentication is much more secure than
200.Em rhosts
201authentication.
202.Pp
203The most convenient way to use RSA authentication may be with an
204authentication agent.
205See
206.Xr ssh-agent 1
207for more information.
208.Pp
209If other authentication methods fail,
210.Nm
211prompts the user for a password.
212The password is sent to the remote
213host for checking; however, since all communications are encrypted,
214the password cannot be seen by someone listening on the network.
215.Ss SSH protocol version 2
216When a user connects using protocol version 2,
217similar authentication methods are available.
218Using the default values for
219.Cm PreferredAuthentications ,
220the client will try to authenticate first using the hostbased method;
221if this method fails, public key authentication is attempted,
222and finally if this method fails, keyboard-interactive and
223password authentication are tried.
224.Pp
225The public key method is similar to RSA authentication described
226in the previous section and allows the RSA or DSA algorithm to be used:
227The client uses his private key,
228.Pa $HOME/.ssh/id_dsa
229or
230.Pa $HOME/.ssh/id_rsa ,
231to sign the session identifier and sends the result to the server.
232The server checks whether the matching public key is listed in
233.Pa $HOME/.ssh/authorized_keys
234and grants access if both the key is found and the signature is correct.
235The session identifier is derived from a shared Diffie-Hellman value
236and is only known to the client and the server.
237.Pp
238If public key authentication fails or is not available, a password
239can be sent encrypted to the remote host to prove the user's identity.
240.Pp
241Additionally,
242.Nm
243supports hostbased or challenge response authentication.
244.Pp
245Protocol 2 provides additional mechanisms for confidentiality
246(the traffic is encrypted using AES, 3DES, Blowfish, CAST128 or Arcfour)
247and integrity (hmac-md5, hmac-sha1, hmac-ripemd160).
248Note that protocol 1 lacks a strong mechanism for ensuring the
249integrity of the connection.
250.Ss Login session and remote execution
251When the user's identity has been accepted by the server, the server
252either executes the given command, or logs into the machine and gives
253the user a normal shell on the remote machine.
254All communication with
255the remote command or shell will be automatically encrypted.
256.Pp
257If a pseudo-terminal has been allocated (normal login session), the
258user may use the escape characters noted below.
259.Pp
260If no pseudo-tty has been allocated,
261the session is transparent and can be used to reliably transfer binary data.
262On most systems, setting the escape character to
263.Dq none
264will also make the session transparent even if a tty is used.
265.Pp
266The session terminates when the command or shell on the remote
267machine exits and all X11 and TCP/IP connections have been closed.
268The exit status of the remote program is returned as the exit status of
269.Nm ssh .
270.Ss Escape Characters
271When a pseudo-terminal has been requested,
272.Nm
273supports a number of functions through the use of an escape character.
274.Pp
275A single tilde character can be sent as
276.Ic ~~
277or by following the tilde by a character other than those described below.
278The escape character must always follow a newline to be interpreted as
279special.
280The escape character can be changed in configuration files using the
281.Cm EscapeChar
282configuration directive or on the command line by the
283.Fl e
284option.
285.Pp
286The supported escapes (assuming the default
287.Ql ~ )
288are:
289.Bl -tag -width Ds
290.It Cm ~.
291Disconnect.
292.It Cm ~^Z
293Background
294.Nm ssh .
295.It Cm ~#
296List forwarded connections.
297.It Cm ~&
298Background
299.Nm
300at logout when waiting for forwarded connection / X11 sessions to terminate.
301.It Cm ~?
302Display a list of escape characters.
303.It Cm ~B
304Send a BREAK to the remote system
305(only useful for SSH protocol version 2 and if the peer supports it).
306.It Cm ~C
307Open command line.
308Currently this allows the addition of port forwardings using the
309.Fl L
310and
311.Fl R
312options (see below).
313It also allows the cancellation of existing remote port-forwardings
314using
315.Fl KR Ar hostport .
316Basic help is available, using the
317.Fl h
318option.
319.It Cm ~R
320Request rekeying of the connection
321(only useful for SSH protocol version 2 and if the peer supports it).
322.El
323.Ss X11 and TCP forwarding
324If the
325.Cm ForwardX11
326variable is set to
327.Dq yes
328(or see the description of the
329.Fl X
330and
331.Fl x
332options described later)
333and the user is using X11 (the
334.Ev DISPLAY
335environment variable is set), the connection to the X11 display is
336automatically forwarded to the remote side in such a way that any X11
337programs started from the shell (or command) will go through the
338encrypted channel, and the connection to the real X server will be made
339from the local machine.
340The user should not manually set
341.Ev DISPLAY .
342Forwarding of X11 connections can be
343configured on the command line or in configuration files.
344Take note that X11 forwarding can represent a security hazard.
345.Pp
346The
347.Ev DISPLAY
348value set by
349.Nm
350will point to the server machine, but with a display number greater than zero.
351This is normal, and happens because
352.Nm
353creates a
354.Dq proxy
355X server on the server machine for forwarding the
356connections over the encrypted channel.
357.Pp
358.Nm
359will also automatically set up Xauthority data on the server machine.
360For this purpose, it will generate a random authorization cookie,
361store it in Xauthority on the server, and verify that any forwarded
362connections carry this cookie and replace it by the real cookie when
363the connection is opened.
364The real authentication cookie is never
365sent to the server machine (and no cookies are sent in the plain).
366.Pp
367If the
368.Cm ForwardAgent
369variable is set to
370.Dq yes
371(or see the description of the
372.Fl A
373and
374.Fl a
375options described later) and
376the user is using an authentication agent, the connection to the agent
377is automatically forwarded to the remote side.
378.Pp
379Forwarding of arbitrary TCP/IP connections over the secure channel can
380be specified either on the command line or in a configuration file.
381One possible application of TCP/IP forwarding is a secure connection to an
382electronic purse; another is going through firewalls.
383.Ss Server authentication
384.Nm
385automatically maintains and checks a database containing
386identifications for all hosts it has ever been used with.
387Host keys are stored in
388.Pa $HOME/.ssh/known_hosts
389in the user's home directory.
390Additionally, the file
391.Pa /etc/ssh/ssh_known_hosts
392is automatically checked for known hosts.
393Any new hosts are automatically added to the user's file.
394If a host's identification ever changes,
395.Nm
396warns about this and disables password authentication to prevent a
397trojan horse from getting the user's password.
398Another purpose of this mechanism is to prevent man-in-the-middle attacks
399which could otherwise be used to circumvent the encryption.
400The
401.Cm StrictHostKeyChecking
402option can be used to prevent logins to machines whose
403host key is not known or has changed.
404.Pp
405.Nm
406can be configured to verify host identification using fingerprint resource
407records (SSHFP) published in DNS.
408The
409.Cm VerifyHostKeyDNS
410option can be used to control how DNS lookups are performed.
411SSHFP resource records can be generated using
412.Xr ssh-keygen 1 .
413.Pp
414The options are as follows:
415.Bl -tag -width Ds
416.It Fl 1
417Forces
418.Nm
419to try protocol version 1 only.
420.It Fl 2
421Forces
422.Nm
423to try protocol version 2 only.
424.It Fl 4
425Forces
426.Nm
427to use IPv4 addresses only.
428.It Fl 6
429Forces
430.Nm
431to use IPv6 addresses only.
432.It Fl A
433Enables forwarding of the authentication agent connection.
434This can also be specified on a per-host basis in a configuration file.
435.Pp
436Agent forwarding should be enabled with caution.
437Users with the ability to bypass file permissions on the remote host
438(for the agent's Unix-domain socket)
439can access the local agent through the forwarded connection.
440An attacker cannot obtain key material from the agent,
441however they can perform operations on the keys that enable them to
442authenticate using the identities loaded into the agent.
443.It Fl a
444Disables forwarding of the authentication agent connection.
445.It Fl b Ar bind_address
446Specify the interface to transmit from on machines with multiple
447interfaces or aliased addresses.
448.It Fl C
449Requests compression of all data (including stdin, stdout, stderr, and
450data for forwarded X11 and TCP/IP connections).
451The compression algorithm is the same used by
452.Xr gzip 1 ,
453and the
454.Dq level
455can be controlled by the
456.Cm CompressionLevel
457option for protocol version 1.
458Compression is desirable on modem lines and other
459slow connections, but will only slow down things on fast networks.
460The default value can be set on a host-by-host basis in the
461configuration files; see the
462.Cm Compression
463option.
464.It Fl c Ar cipher_spec
465Selects the cipher specification for encrypting the session.
466.Pp
467Protocol version 1 allows specification of a single cipher.
468The suported values are
469.Dq 3des ,
470.Dq blowfish
471and
472.Dq des .
473.Ar 3des
474(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
475It is believed to be secure.
476.Ar blowfish
477is a fast block cipher; it appears very secure and is much faster than
478.Ar 3des .
479.Ar des
480is only supported in the
481.Nm
482client for interoperability with legacy protocol 1 implementations
483that do not support the
484.Ar 3des
485cipher.
486Its use is strongly discouraged due to cryptographic weaknesses.
487The default is
488.Dq 3des .
489.Pp
490For protocol version 2
491.Ar cipher_spec
492is a comma-separated list of ciphers
493listed in order of preference.
494The supported ciphers are
495.Dq 3des-cbc ,
496.Dq aes128-cbc ,
497.Dq aes192-cbc ,
498.Dq aes256-cbc ,
499.Dq aes128-ctr ,
500.Dq aes192-ctr ,
501.Dq aes256-ctr ,
502.Dq arcfour ,
503.Dq blowfish-cbc ,
504and
505.Dq cast128-cbc .
506The default is
507.Bd -literal
508  ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
509    aes192-cbc,aes256-cbc''
510.Ed
511.It Fl D Ar port
512Specifies a local
513.Dq dynamic
514application-level port forwarding.
515This works by allocating a socket to listen to
516.Ar port
517on the local side, and whenever a connection is made to this port, the
518connection is forwarded over the secure channel, and the application
519protocol is then used to determine where to connect to from the
520remote machine.
521Currently the SOCKS4 and SOCKS5 protocols are supported, and
522.Nm
523will act as a SOCKS server.
524Only root can forward privileged ports.
525Dynamic port forwardings can also be specified in the configuration file.
526.It Fl e Ar ch | ^ch | none
527Sets the escape character for sessions with a pty (default:
528.Ql ~ ) .
529The escape character is only recognized at the beginning of a line.
530The escape character followed by a dot
531.Pq Ql \&.
532closes the connection;
533followed by control-Z suspends the connection;
534and followed by itself sends the escape character once.
535Setting the character to
536.Dq none
537disables any escapes and makes the session fully transparent.
538.It Fl F Ar configfile
539Specifies an alternative per-user configuration file.
540If a configuration file is given on the command line,
541the system-wide configuration file
542.Pq Pa /etc/ssh/ssh_config
543will be ignored.
544The default for the per-user configuration file is
545.Pa $HOME/.ssh/config .
546.It Fl f
547Requests
548.Nm
549to go to background just before command execution.
550This is useful if
551.Nm
552is going to ask for passwords or passphrases, but the user
553wants it in the background.
554This implies
555.Fl n .
556The recommended way to start X11 programs at a remote site is with
557something like
558.Ic ssh -f host xterm .
559.It Fl g
560Allows remote hosts to connect to local forwarded ports.
561.It Fl I Ar smartcard_device
562Specifies which smartcard device to use.
563The argument is the device
564.Nm
565should use to communicate with a smartcard used for storing the user's
566private RSA key.
567.It Fl i Ar identity_file
568Selects a file from which the identity (private key) for
569RSA or DSA authentication is read.
570The default is
571.Pa $HOME/.ssh/identity
572for protocol version 1, and
573.Pa $HOME/.ssh/id_rsa
574and
575.Pa $HOME/.ssh/id_dsa
576for protocol version 2.
577Identity files may also be specified on
578a per-host basis in the configuration file.
579It is possible to have multiple
580.Fl i
581options (and multiple identities specified in
582configuration files).
583.It Fl k
584Disables forwarding (delegation) of GSSAPI credentials to the server.
585.It Fl L Xo
586.Sm off
587.Ar port : host : hostport
588.Sm on
589.Xc
590Specifies that the given port on the local (client) host is to be
591forwarded to the given host and port on the remote side.
592This works by allocating a socket to listen to
593.Ar port
594on the local side, and whenever a connection is made to this port, the
595connection is forwarded over the secure channel, and a connection is
596made to
597.Ar host
598port
599.Ar hostport
600from the remote machine.
601Port forwardings can also be specified in the configuration file.
602Only root can forward privileged ports.
603IPv6 addresses can be specified with an alternative syntax:
604.Sm off
605.Xo
606.Ar port No / Ar host No /
607.Ar hostport .
608.Xc
609.Sm on
610.It Fl l Ar login_name
611Specifies the user to log in as on the remote machine.
612This also may be specified on a per-host basis in the configuration file.
613.It Fl M
614Places the
615.Nm
616client into
617.Dq master
618mode for connection sharing.
619Refer to the description of
620.Cm ControlMaster
621in
622.Xr ssh_config 5
623for details.
624.It Fl m Ar mac_spec
625Additionally, for protocol version 2 a comma-separated list of MAC
626(message authentication code) algorithms can
627be specified in order of preference.
628See the
629.Cm MACs
630keyword for more information.
631.It Fl N
632Do not execute a remote command.
633This is useful for just forwarding ports
634(protocol version 2 only).
635.It Fl n
636Redirects stdin from
637.Pa /dev/null
638(actually, prevents reading from stdin).
639This must be used when
640.Nm
641is run in the background.
642A common trick is to use this to run X11 programs on a remote machine.
643For example,
644.Ic ssh -n shadows.cs.hut.fi emacs &
645will start an emacs on shadows.cs.hut.fi, and the X11
646connection will be automatically forwarded over an encrypted channel.
647The
648.Nm
649program will be put in the background.
650(This does not work if
651.Nm
652needs to ask for a password or passphrase; see also the
653.Fl f
654option.)
655.It Fl o Ar option
656Can be used to give options in the format used in the configuration file.
657This is useful for specifying options for which there is no separate
658command-line flag.
659For full details of the options listed below, and their possible values, see
660.Xr ssh_config 5 .
661.Pp
662.Bl -tag -width Ds -offset indent -compact
663.It AddressFamily
664.It BatchMode
665.It BindAddress
666.It ChallengeResponseAuthentication
667.It CheckHostIP
668.It Cipher
669.It Ciphers
670.It ClearAllForwardings
671.It Compression
672.It CompressionLevel
673.It ConnectionAttempts
674.It ConnectTimeout
675.It ControlMaster
676.It ControlPath
677.It DynamicForward
678.It EscapeChar
679.It ForwardAgent
680.It ForwardX11
681.It ForwardX11Trusted
682.It GatewayPorts
683.It GlobalKnownHostsFile
684.It GSSAPIAuthentication
685.It GSSAPIDelegateCredentials
686.It Host
687.It HostbasedAuthentication
688.It HostKeyAlgorithms
689.It HostKeyAlias
690.It HostName
691.It IdentityFile
692.It IdentitiesOnly
693.It LocalForward
694.It LogLevel
695.It MACs
696.It NoHostAuthenticationForLocalhost
697.It NumberOfPasswordPrompts
698.It PasswordAuthentication
699.It Port
700.It PreferredAuthentications
701.It Protocol
702.It ProxyCommand
703.It PubkeyAuthentication
704.It RemoteForward
705.It RhostsRSAAuthentication
706.It RSAAuthentication
707.It SendEnv
708.It ServerAliveInterval
709.It ServerAliveCountMax
710.It SmartcardDevice
711.It StrictHostKeyChecking
712.It TCPKeepAlive
713.It UsePrivilegedPort
714.It User
715.It UserKnownHostsFile
716.It VerifyHostKeyDNS
717.It XAuthLocation
718.El
719.It Fl p Ar port
720Port to connect to on the remote host.
721This can be specified on a
722per-host basis in the configuration file.
723.It Fl q
724Quiet mode.
725Causes all warning and diagnostic messages to be suppressed.
726.It Fl R Xo
727.Sm off
728.Ar port : host : hostport
729.Sm on
730.Xc
731Specifies that the given port on the remote (server) host is to be
732forwarded to the given host and port on the local side.
733This works by allocating a socket to listen to
734.Ar port
735on the remote side, and whenever a connection is made to this port, the
736connection is forwarded over the secure channel, and a connection is
737made to
738.Ar host
739port
740.Ar hostport
741from the local machine.
742Port forwardings can also be specified in the configuration file.
743Privileged ports can be forwarded only when
744logging in as root on the remote machine.
745IPv6 addresses can be specified with an alternative syntax:
746.Sm off
747.Xo
748.Ar port No / Ar host No /
749.Ar hostport .
750.Xc
751.Sm on
752.It Fl S Ar ctl
753Specifies the location of a control socket for connection sharing.
754Refer to the description of
755.Cm ControlPath
756and
757.Cm ControlMaster
758in
759.Xr ssh_config 5
760for details.
761.It Fl s
762May be used to request invocation of a subsystem on the remote system.
763Subsystems are a feature of the SSH2 protocol which facilitate the use
764of SSH as a secure transport for other applications (eg.\&
765.Xr sftp 1 ) .
766The subsystem is specified as the remote command.
767.It Fl T
768Disable pseudo-tty allocation.
769.It Fl t
770Force pseudo-tty allocation.
771This can be used to execute arbitrary
772screen-based programs on a remote machine, which can be very useful,
773e.g., when implementing menu services.
774Multiple
775.Fl t
776options force tty allocation, even if
777.Nm
778has no local tty.
779.It Fl V
780Display the version number and exit.
781.It Fl v
782Verbose mode.
783Causes
784.Nm
785to print debugging messages about its progress.
786This is helpful in
787debugging connection, authentication, and configuration problems.
788Multiple
789.Fl v
790options increase the verbosity.
791The maximum is 3.
792.It Fl X
793Enables X11 forwarding.
794This can also be specified on a per-host basis in a configuration file.
795.Pp
796X11 forwarding should be enabled with caution.
797Users with the ability to bypass file permissions on the remote host
798(for the user's X authorization database)
799can access the local X11 display through the forwarded connection.
800An attacker may then be able to perform activities such as keystroke monitoring.
801.It Fl x
802Disables X11 forwarding.
803.It Fl Y
804Enables trusted X11 forwarding.
805.El
806.Sh CONFIGURATION FILES
807.Nm
808may additionally obtain configuration data from
809a per-user configuration file and a system-wide configuration file.
810The file format and configuration options are described in
811.Xr ssh_config 5 .
812.Sh ENVIRONMENT
813.Nm
814will normally set the following environment variables:
815.Bl -tag -width LOGNAME
816.It Ev DISPLAY
817The
818.Ev DISPLAY
819variable indicates the location of the X11 server.
820It is automatically set by
821.Nm
822to point to a value of the form
823.Dq hostname:n
824where hostname indicates
825the host where the shell runs, and n is an integer \*(Ge 1.
826.Nm
827uses this special value to forward X11 connections over the secure
828channel.
829The user should normally not set
830.Ev DISPLAY
831explicitly, as that
832will render the X11 connection insecure (and will require the user to
833manually copy any required authorization cookies).
834.It Ev HOME
835Set to the path of the user's home directory.
836.It Ev LOGNAME
837Synonym for
838.Ev USER ;
839set for compatibility with systems that use this variable.
840.It Ev MAIL
841Set to the path of the user's mailbox.
842.It Ev PATH
843Set to the default
844.Ev PATH ,
845as specified when compiling
846.Nm ssh .
847.It Ev SSH_ASKPASS
848If
849.Nm
850needs a passphrase, it will read the passphrase from the current
851terminal if it was run from a terminal.
852If
853.Nm
854does not have a terminal associated with it but
855.Ev DISPLAY
856and
857.Ev SSH_ASKPASS
858are set, it will execute the program specified by
859.Ev SSH_ASKPASS
860and open an X11 window to read the passphrase.
861This is particularly useful when calling
862.Nm
863from a
864.Pa .Xsession
865or related script.
866(Note that on some machines it
867may be necessary to redirect the input from
868.Pa /dev/null
869to make this work.)
870.It Ev SSH_AUTH_SOCK
871Identifies the path of a unix-domain socket used to communicate with the
872agent.
873.It Ev SSH_CONNECTION
874Identifies the client and server ends of the connection.
875The variable contains
876four space-separated values: client ip-address, client port number,
877server ip-address and server port number.
878.It Ev SSH_ORIGINAL_COMMAND
879The variable contains the original command line if a forced command
880is executed.
881It can be used to extract the original arguments.
882.It Ev SSH_TTY
883This is set to the name of the tty (path to the device) associated
884with the current shell or command.
885If the current session has no tty,
886this variable is not set.
887.It Ev TZ
888The timezone variable is set to indicate the present timezone if it
889was set when the daemon was started (i.e., the daemon passes the value
890on to new connections).
891.It Ev USER
892Set to the name of the user logging in.
893.El
894.Pp
895Additionally,
896.Nm
897reads
898.Pa $HOME/.ssh/environment ,
899and adds lines of the format
900.Dq VARNAME=value
901to the environment if the file exists and if users are allowed to
902change their environment.
903For more information, see the
904.Cm PermitUserEnvironment
905option in
906.Xr sshd_config 5 .
907.Sh FILES
908.Bl -tag -width Ds
909.It Pa $HOME/.ssh/known_hosts
910Records host keys for all hosts the user has logged into that are not
911in
912.Pa /etc/ssh/ssh_known_hosts .
913See
914.Xr sshd 8 .
915.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa
916Contains the authentication identity of the user.
917They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
918These files
919contain sensitive data and should be readable by the user but not
920accessible by others (read/write/execute).
921Note that
922.Nm
923ignores a private key file if it is accessible by others.
924It is possible to specify a passphrase when
925generating the key; the passphrase will be used to encrypt the
926sensitive part of this file using 3DES.
927.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub
928Contains the public key for authentication (public part of the
929identity file in human-readable form).
930The contents of the
931.Pa $HOME/.ssh/identity.pub
932file should be added to the file
933.Pa $HOME/.ssh/authorized_keys
934on all machines
935where the user wishes to log in using protocol version 1 RSA authentication.
936The contents of the
937.Pa $HOME/.ssh/id_dsa.pub
938and
939.Pa $HOME/.ssh/id_rsa.pub
940file should be added to
941.Pa $HOME/.ssh/authorized_keys
942on all machines
943where the user wishes to log in using protocol version 2 DSA/RSA authentication.
944These files are not
945sensitive and can (but need not) be readable by anyone.
946These files are
947never used automatically and are not necessary; they are only provided for
948the convenience of the user.
949.It Pa $HOME/.ssh/config
950This is the per-user configuration file.
951The file format and configuration options are described in
952.Xr ssh_config 5 .
953Because of the potential for abuse, this file must have strict permissions:
954read/write for the user, and not accessible by others.
955.It Pa $HOME/.ssh/authorized_keys
956Lists the public keys (RSA/DSA) that can be used for logging in as this user.
957The format of this file is described in the
958.Xr sshd 8
959manual page.
960In the simplest form the format is the same as the
961.Pa .pub
962identity files.
963This file is not highly sensitive, but the recommended
964permissions are read/write for the user, and not accessible by others.
965.It Pa /etc/ssh/ssh_known_hosts
966Systemwide list of known host keys.
967This file should be prepared by the
968system administrator to contain the public host keys of all machines in the
969organization.
970This file should be world-readable.
971This file contains
972public keys, one per line, in the following format (fields separated
973by spaces): system name, public key and optional comment field.
974When different names are used
975for the same machine, all such names should be listed, separated by
976commas.
977The format is described in the
978.Xr sshd 8
979manual page.
980.Pp
981The canonical system name (as returned by name servers) is used by
982.Xr sshd 8
983to verify the client host when logging in; other names are needed because
984.Nm
985does not convert the user-supplied name to a canonical name before
986checking the key, because someone with access to the name servers
987would then be able to fool host authentication.
988.It Pa /etc/ssh/ssh_config
989Systemwide configuration file.
990The file format and configuration options are described in
991.Xr ssh_config 5 .
992.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key, /etc/ssh/ssh_host_rsa_key
993These three files contain the private parts of the host keys
994and are used for
995.Cm RhostsRSAAuthentication
996and
997.Cm HostbasedAuthentication .
998If the protocol version 1
999.Cm RhostsRSAAuthentication
1000method is used,
1001.Nm
1002must be setuid root, since the host key is readable only by root.
1003For protocol version 2,
1004.Nm
1005uses
1006.Xr ssh-keysign 8
1007to access the host keys for
1008.Cm HostbasedAuthentication .
1009This eliminates the requirement that
1010.Nm
1011be setuid root when that authentication method is used.
1012By default
1013.Nm
1014is not setuid root.
1015.It Pa $HOME/.rhosts
1016This file is used in
1017.Em rhosts
1018authentication to list the
1019host/user pairs that are permitted to log in.
1020(Note that this file is
1021also used by rlogin and rsh, which makes using this file insecure.)
1022Each line of the file contains a host name (in the canonical form
1023returned by name servers), and then a user name on that host,
1024separated by a space.
1025On some machines this file may need to be
1026world-readable if the user's home directory is on a NFS partition,
1027because
1028.Xr sshd 8
1029reads it as root.
1030Additionally, this file must be owned by the user,
1031and must not have write permissions for anyone else.
1032The recommended
1033permission for most machines is read/write for the user, and not
1034accessible by others.
1035.Pp
1036Note that by default
1037.Xr sshd 8
1038will be installed so that it requires successful RSA host
1039authentication before permitting
1040.Em rhosts
1041authentication.
1042If the server machine does not have the client's host key in
1043.Pa /etc/ssh/ssh_known_hosts ,
1044it can be stored in
1045.Pa $HOME/.ssh/known_hosts .
1046The easiest way to do this is to
1047connect back to the client from the server machine using ssh; this
1048will automatically add the host key to
1049.Pa $HOME/.ssh/known_hosts .
1050.It Pa $HOME/.shosts
1051This file is used exactly the same way as
1052.Pa .rhosts .
1053The purpose for
1054having this file is to be able to use rhosts authentication with
1055.Nm
1056without permitting login with
1057.Xr rlogin
1058or
1059.Xr rsh 1 .
1060.It Pa /etc/hosts.equiv
1061This file is used during
1062.Em rhosts
1063authentication.
1064It contains
1065canonical hosts names, one per line (the full format is described in the
1066.Xr sshd 8
1067manual page).
1068If the client host is found in this file, login is
1069automatically permitted provided client and server user names are the
1070same.
1071Additionally, successful RSA host authentication is normally
1072required.
1073This file should only be writable by root.
1074.It Pa /etc/ssh/shosts.equiv
1075This file is processed exactly as
1076.Pa /etc/hosts.equiv .
1077This file may be useful to permit logins using
1078.Nm
1079but not using rsh/rlogin.
1080.It Pa /etc/ssh/sshrc
1081Commands in this file are executed by
1082.Nm
1083when the user logs in just before the user's shell (or command) is started.
1084See the
1085.Xr sshd 8
1086manual page for more information.
1087.It Pa $HOME/.ssh/rc
1088Commands in this file are executed by
1089.Nm
1090when the user logs in just before the user's shell (or command) is
1091started.
1092See the
1093.Xr sshd 8
1094manual page for more information.
1095.It Pa $HOME/.ssh/environment
1096Contains additional definitions for environment variables, see section
1097.Sx ENVIRONMENT
1098above.
1099.El
1100.Sh DIAGNOSTICS
1101.Nm
1102exits with the exit status of the remote command or with 255
1103if an error occurred.
1104.Sh SEE ALSO
1105.Xr gzip 1 ,
1106.Xr rsh 1 ,
1107.Xr scp 1 ,
1108.Xr sftp 1 ,
1109.Xr ssh-add 1 ,
1110.Xr ssh-agent 1 ,
1111.Xr ssh-keygen 1 ,
1112.Xr telnet 1 ,
1113.Xr hosts.equiv 5 ,
1114.Xr ssh_config 5 ,
1115.Xr ssh-keysign 8 ,
1116.Xr sshd 8
1117.Rs
1118.%A T. Ylonen
1119.%A T. Kivinen
1120.%A M. Saarinen
1121.%A T. Rinne
1122.%A S. Lehtinen
1123.%T "SSH Protocol Architecture"
1124.%N draft-ietf-secsh-architecture-12.txt
1125.%D January 2002
1126.%O work in progress material
1127.Re
1128.Sh AUTHORS
1129OpenSSH is a derivative of the original and free
1130ssh 1.2.12 release by Tatu Ylonen.
1131Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1132Theo de Raadt and Dug Song
1133removed many bugs, re-added newer features and
1134created OpenSSH.
1135Markus Friedl contributed the support for SSH
1136protocol versions 1.5 and 2.0.
1137