xref: /freebsd/crypto/openssh/ssh.1 (revision d429ea332342fcb98d27a350d0c4944bf9aec3f9)
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.
344.Pp
345The
346.Ev DISPLAY
347value set by
348.Nm
349will point to the server machine, but with a display number greater than zero.
350This is normal, and happens because
351.Nm
352creates a
353.Dq proxy
354X server on the server machine for forwarding the
355connections over the encrypted channel.
356.Pp
357.Nm
358will also automatically set up Xauthority data on the server machine.
359For this purpose, it will generate a random authorization cookie,
360store it in Xauthority on the server, and verify that any forwarded
361connections carry this cookie and replace it by the real cookie when
362the connection is opened.
363The real authentication cookie is never
364sent to the server machine (and no cookies are sent in the plain).
365.Pp
366If the
367.Cm ForwardAgent
368variable is set to
369.Dq yes
370(or see the description of the
371.Fl A
372and
373.Fl a
374options described later) and
375the user is using an authentication agent, the connection to the agent
376is automatically forwarded to the remote side.
377.Pp
378Forwarding of arbitrary TCP/IP connections over the secure channel can
379be specified either on the command line or in a configuration file.
380One possible application of TCP/IP forwarding is a secure connection to an
381electronic purse; another is going through firewalls.
382.Ss Server authentication
383.Nm
384automatically maintains and checks a database containing
385identifications for all hosts it has ever been used with.
386Host keys are stored in
387.Pa $HOME/.ssh/known_hosts
388in the user's home directory.
389Additionally, the file
390.Pa /etc/ssh/ssh_known_hosts
391is automatically checked for known hosts.
392Any new hosts are automatically added to the user's file.
393If a host's identification ever changes,
394.Nm
395warns about this and disables password authentication to prevent a
396trojan horse from getting the user's password.
397Another purpose of this mechanism is to prevent man-in-the-middle attacks
398which could otherwise be used to circumvent the encryption.
399The
400.Cm StrictHostKeyChecking
401option can be used to prevent logins to machines whose
402host key is not known or has changed.
403.Pp
404.Nm
405can be configured to verify host identification using fingerprint resource
406records (SSHFP) published in DNS.
407The
408.Cm VerifyHostKeyDNS
409option can be used to control how DNS lookups are performed.
410SSHFP resource records can be generated using
411.Xr ssh-keygen 1 .
412.Pp
413The options are as follows:
414.Bl -tag -width Ds
415.It Fl 1
416Forces
417.Nm
418to try protocol version 1 only.
419.It Fl 2
420Forces
421.Nm
422to try protocol version 2 only.
423.It Fl 4
424Forces
425.Nm
426to use IPv4 addresses only.
427.It Fl 6
428Forces
429.Nm
430to use IPv6 addresses only.
431.It Fl A
432Enables forwarding of the authentication agent connection.
433This can also be specified on a per-host basis in a configuration file.
434.Pp
435Agent forwarding should be enabled with caution.
436Users with the ability to bypass file permissions on the remote host
437(for the agent's Unix-domain socket)
438can access the local agent through the forwarded connection.
439An attacker cannot obtain key material from the agent,
440however they can perform operations on the keys that enable them to
441authenticate using the identities loaded into the agent.
442.It Fl a
443Disables forwarding of the authentication agent connection.
444.It Fl b Ar bind_address
445Specify the interface to transmit from on machines with multiple
446interfaces or aliased addresses.
447.It Fl C
448Requests compression of all data (including stdin, stdout, stderr, and
449data for forwarded X11 and TCP/IP connections).
450The compression algorithm is the same used by
451.Xr gzip 1 ,
452and the
453.Dq level
454can be controlled by the
455.Cm CompressionLevel
456option for protocol version 1.
457Compression is desirable on modem lines and other
458slow connections, but will only slow down things on fast networks.
459The default value can be set on a host-by-host basis in the
460configuration files; see the
461.Cm Compression
462option.
463.It Fl c Ar cipher_spec
464Selects the cipher specification for encrypting the session.
465.Pp
466Protocol version 1 allows specification of a single cipher.
467The suported values are
468.Dq 3des ,
469.Dq blowfish
470and
471.Dq des .
472.Ar 3des
473(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
474It is believed to be secure.
475.Ar blowfish
476is a fast block cipher; it appears very secure and is much faster than
477.Ar 3des .
478.Ar des
479is only supported in the
480.Nm
481client for interoperability with legacy protocol 1 implementations
482that do not support the
483.Ar 3des
484cipher.
485Its use is strongly discouraged due to cryptographic weaknesses.
486The default is
487.Dq 3des .
488.Pp
489For protocol version 2
490.Ar cipher_spec
491is a comma-separated list of ciphers
492listed in order of preference.
493The supported ciphers are
494.Dq 3des-cbc ,
495.Dq aes128-cbc ,
496.Dq aes192-cbc ,
497.Dq aes256-cbc ,
498.Dq aes128-ctr ,
499.Dq aes192-ctr ,
500.Dq aes256-ctr ,
501.Dq arcfour ,
502.Dq blowfish-cbc ,
503and
504.Dq cast128-cbc .
505The default is
506.Bd -literal
507  ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
508    aes192-cbc,aes256-cbc''
509.Ed
510.It Fl D Ar port
511Specifies a local
512.Dq dynamic
513application-level port forwarding.
514This works by allocating a socket to listen to
515.Ar port
516on the local side, and whenever a connection is made to this port, the
517connection is forwarded over the secure channel, and the application
518protocol is then used to determine where to connect to from the
519remote machine.
520Currently the SOCKS4 and SOCKS5 protocols are supported, and
521.Nm
522will act as a SOCKS server.
523Only root can forward privileged ports.
524Dynamic port forwardings can also be specified in the configuration file.
525.It Fl e Ar ch | ^ch | none
526Sets the escape character for sessions with a pty (default:
527.Ql ~ ) .
528The escape character is only recognized at the beginning of a line.
529The escape character followed by a dot
530.Pq Ql \&.
531closes the connection;
532followed by control-Z suspends the connection;
533and followed by itself sends the escape character once.
534Setting the character to
535.Dq none
536disables any escapes and makes the session fully transparent.
537.It Fl F Ar configfile
538Specifies an alternative per-user configuration file.
539If a configuration file is given on the command line,
540the system-wide configuration file
541.Pq Pa /etc/ssh/ssh_config
542will be ignored.
543The default for the per-user configuration file is
544.Pa $HOME/.ssh/config .
545.It Fl f
546Requests
547.Nm
548to go to background just before command execution.
549This is useful if
550.Nm
551is going to ask for passwords or passphrases, but the user
552wants it in the background.
553This implies
554.Fl n .
555The recommended way to start X11 programs at a remote site is with
556something like
557.Ic ssh -f host xterm .
558.It Fl g
559Allows remote hosts to connect to local forwarded ports.
560.It Fl I Ar smartcard_device
561Specifies which smartcard device to use.
562The argument is the device
563.Nm
564should use to communicate with a smartcard used for storing the user's
565private RSA key.
566.It Fl i Ar identity_file
567Selects a file from which the identity (private key) for
568RSA or DSA authentication is read.
569The default is
570.Pa $HOME/.ssh/identity
571for protocol version 1, and
572.Pa $HOME/.ssh/id_rsa
573and
574.Pa $HOME/.ssh/id_dsa
575for protocol version 2.
576Identity files may also be specified on
577a per-host basis in the configuration file.
578It is possible to have multiple
579.Fl i
580options (and multiple identities specified in
581configuration files).
582.It Fl k
583Disables forwarding (delegation) of GSSAPI credentials to the server.
584.It Fl L Xo
585.Sm off
586.Ar port : host : hostport
587.Sm on
588.Xc
589Specifies that the given port on the local (client) host is to be
590forwarded to the given host and port on the remote side.
591This works by allocating a socket to listen to
592.Ar port
593on the local side, and whenever a connection is made to this port, the
594connection is forwarded over the secure channel, and a connection is
595made to
596.Ar host
597port
598.Ar hostport
599from the remote machine.
600Port forwardings can also be specified in the configuration file.
601Only root can forward privileged ports.
602IPv6 addresses can be specified with an alternative syntax:
603.Sm off
604.Xo
605.Ar port No / Ar host No /
606.Ar hostport .
607.Xc
608.Sm on
609.It Fl l Ar login_name
610Specifies the user to log in as on the remote machine.
611This also may be specified on a per-host basis in the configuration file.
612.It Fl M
613Places the
614.Nm
615client into
616.Dq master
617mode for connection sharing.
618Refer to the description of
619.Cm ControlMaster
620in
621.Xr ssh_config 5
622for details.
623.It Fl m Ar mac_spec
624Additionally, for protocol version 2 a comma-separated list of MAC
625(message authentication code) algorithms can
626be specified in order of preference.
627See the
628.Cm MACs
629keyword for more information.
630.It Fl N
631Do not execute a remote command.
632This is useful for just forwarding ports
633(protocol version 2 only).
634.It Fl n
635Redirects stdin from
636.Pa /dev/null
637(actually, prevents reading from stdin).
638This must be used when
639.Nm
640is run in the background.
641A common trick is to use this to run X11 programs on a remote machine.
642For example,
643.Ic ssh -n shadows.cs.hut.fi emacs &
644will start an emacs on shadows.cs.hut.fi, and the X11
645connection will be automatically forwarded over an encrypted channel.
646The
647.Nm
648program will be put in the background.
649(This does not work if
650.Nm
651needs to ask for a password or passphrase; see also the
652.Fl f
653option.)
654.It Fl o Ar option
655Can be used to give options in the format used in the configuration file.
656This is useful for specifying options for which there is no separate
657command-line flag.
658For full details of the options listed below, and their possible values, see
659.Xr ssh_config 5 .
660.Pp
661.Bl -tag -width Ds -offset indent -compact
662.It AddressFamily
663.It BatchMode
664.It BindAddress
665.It ChallengeResponseAuthentication
666.It CheckHostIP
667.It Cipher
668.It Ciphers
669.It ClearAllForwardings
670.It Compression
671.It CompressionLevel
672.It ConnectionAttempts
673.It ConnectTimeout
674.It ControlMaster
675.It ControlPath
676.It DynamicForward
677.It EscapeChar
678.It ForwardAgent
679.It ForwardX11
680.It ForwardX11Trusted
681.It GatewayPorts
682.It GlobalKnownHostsFile
683.It GSSAPIAuthentication
684.It GSSAPIDelegateCredentials
685.It Host
686.It HostbasedAuthentication
687.It HostKeyAlgorithms
688.It HostKeyAlias
689.It HostName
690.It IdentityFile
691.It IdentitiesOnly
692.It LocalForward
693.It LogLevel
694.It MACs
695.It NoHostAuthenticationForLocalhost
696.It NumberOfPasswordPrompts
697.It PasswordAuthentication
698.It Port
699.It PreferredAuthentications
700.It Protocol
701.It ProxyCommand
702.It PubkeyAuthentication
703.It RemoteForward
704.It RhostsRSAAuthentication
705.It RSAAuthentication
706.It SendEnv
707.It ServerAliveInterval
708.It ServerAliveCountMax
709.It SmartcardDevice
710.It StrictHostKeyChecking
711.It TCPKeepAlive
712.It UsePrivilegedPort
713.It User
714.It UserKnownHostsFile
715.It VerifyHostKeyDNS
716.It XAuthLocation
717.El
718.It Fl p Ar port
719Port to connect to on the remote host.
720This can be specified on a
721per-host basis in the configuration file.
722.It Fl q
723Quiet mode.
724Causes all warning and diagnostic messages to be suppressed.
725.It Fl R Xo
726.Sm off
727.Ar port : host : hostport
728.Sm on
729.Xc
730Specifies that the given port on the remote (server) host is to be
731forwarded to the given host and port on the local side.
732This works by allocating a socket to listen to
733.Ar port
734on the remote side, and whenever a connection is made to this port, the
735connection is forwarded over the secure channel, and a connection is
736made to
737.Ar host
738port
739.Ar hostport
740from the local machine.
741Port forwardings can also be specified in the configuration file.
742Privileged ports can be forwarded only when
743logging in as root on the remote machine.
744IPv6 addresses can be specified with an alternative syntax:
745.Sm off
746.Xo
747.Ar port No / Ar host No /
748.Ar hostport .
749.Xc
750.Sm on
751.It Fl S Ar ctl
752Specifies the location of a control socket for connection sharing.
753Refer to the description of
754.Cm ControlPath
755and
756.Cm ControlMaster
757in
758.Xr ssh_config 5
759for details.
760.It Fl s
761May be used to request invocation of a subsystem on the remote system.
762Subsystems are a feature of the SSH2 protocol which facilitate the use
763of SSH as a secure transport for other applications (eg.\&
764.Xr sftp 1 ) .
765The subsystem is specified as the remote command.
766.It Fl T
767Disable pseudo-tty allocation.
768.It Fl t
769Force pseudo-tty allocation.
770This can be used to execute arbitrary
771screen-based programs on a remote machine, which can be very useful,
772e.g., when implementing menu services.
773Multiple
774.Fl t
775options force tty allocation, even if
776.Nm
777has no local tty.
778.It Fl V
779Display the version number and exit.
780.It Fl v
781Verbose mode.
782Causes
783.Nm
784to print debugging messages about its progress.
785This is helpful in
786debugging connection, authentication, and configuration problems.
787Multiple
788.Fl v
789options increase the verbosity.
790The maximum is 3.
791.It Fl X
792Enables X11 forwarding.
793This can also be specified on a per-host basis in a configuration file.
794.Pp
795X11 forwarding should be enabled with caution.
796Users with the ability to bypass file permissions on the remote host
797(for the user's X authorization database)
798can access the local X11 display through the forwarded connection.
799An attacker may then be able to perform activities such as keystroke monitoring.
800.It Fl x
801Disables X11 forwarding.
802.It Fl Y
803Enables trusted X11 forwarding.
804.El
805.Sh CONFIGURATION FILES
806.Nm
807may additionally obtain configuration data from
808a per-user configuration file and a system-wide configuration file.
809The file format and configuration options are described in
810.Xr ssh_config 5 .
811.Sh ENVIRONMENT
812.Nm
813will normally set the following environment variables:
814.Bl -tag -width LOGNAME
815.It Ev DISPLAY
816The
817.Ev DISPLAY
818variable indicates the location of the X11 server.
819It is automatically set by
820.Nm
821to point to a value of the form
822.Dq hostname:n
823where hostname indicates
824the host where the shell runs, and n is an integer \*(Ge 1.
825.Nm
826uses this special value to forward X11 connections over the secure
827channel.
828The user should normally not set
829.Ev DISPLAY
830explicitly, as that
831will render the X11 connection insecure (and will require the user to
832manually copy any required authorization cookies).
833.It Ev HOME
834Set to the path of the user's home directory.
835.It Ev LOGNAME
836Synonym for
837.Ev USER ;
838set for compatibility with systems that use this variable.
839.It Ev MAIL
840Set to the path of the user's mailbox.
841.It Ev PATH
842Set to the default
843.Ev PATH ,
844as specified when compiling
845.Nm ssh .
846.It Ev SSH_ASKPASS
847If
848.Nm
849needs a passphrase, it will read the passphrase from the current
850terminal if it was run from a terminal.
851If
852.Nm
853does not have a terminal associated with it but
854.Ev DISPLAY
855and
856.Ev SSH_ASKPASS
857are set, it will execute the program specified by
858.Ev SSH_ASKPASS
859and open an X11 window to read the passphrase.
860This is particularly useful when calling
861.Nm
862from a
863.Pa .Xsession
864or related script.
865(Note that on some machines it
866may be necessary to redirect the input from
867.Pa /dev/null
868to make this work.)
869.It Ev SSH_AUTH_SOCK
870Identifies the path of a unix-domain socket used to communicate with the
871agent.
872.It Ev SSH_CONNECTION
873Identifies the client and server ends of the connection.
874The variable contains
875four space-separated values: client ip-address, client port number,
876server ip-address and server port number.
877.It Ev SSH_ORIGINAL_COMMAND
878The variable contains the original command line if a forced command
879is executed.
880It can be used to extract the original arguments.
881.It Ev SSH_TTY
882This is set to the name of the tty (path to the device) associated
883with the current shell or command.
884If the current session has no tty,
885this variable is not set.
886.It Ev TZ
887The timezone variable is set to indicate the present timezone if it
888was set when the daemon was started (i.e., the daemon passes the value
889on to new connections).
890.It Ev USER
891Set to the name of the user logging in.
892.El
893.Pp
894Additionally,
895.Nm
896reads
897.Pa $HOME/.ssh/environment ,
898and adds lines of the format
899.Dq VARNAME=value
900to the environment if the file exists and if users are allowed to
901change their environment.
902For more information, see the
903.Cm PermitUserEnvironment
904option in
905.Xr sshd_config 5 .
906.Sh FILES
907.Bl -tag -width Ds
908.It Pa $HOME/.ssh/known_hosts
909Records host keys for all hosts the user has logged into that are not
910in
911.Pa /etc/ssh/ssh_known_hosts .
912See
913.Xr sshd 8 .
914.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa
915Contains the authentication identity of the user.
916They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
917These files
918contain sensitive data and should be readable by the user but not
919accessible by others (read/write/execute).
920Note that
921.Nm
922ignores a private key file if it is accessible by others.
923It is possible to specify a passphrase when
924generating the key; the passphrase will be used to encrypt the
925sensitive part of this file using 3DES.
926.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub
927Contains the public key for authentication (public part of the
928identity file in human-readable form).
929The contents of the
930.Pa $HOME/.ssh/identity.pub
931file should be added to the file
932.Pa $HOME/.ssh/authorized_keys
933on all machines
934where the user wishes to log in using protocol version 1 RSA authentication.
935The contents of the
936.Pa $HOME/.ssh/id_dsa.pub
937and
938.Pa $HOME/.ssh/id_rsa.pub
939file should be added to
940.Pa $HOME/.ssh/authorized_keys
941on all machines
942where the user wishes to log in using protocol version 2 DSA/RSA authentication.
943These files are not
944sensitive and can (but need not) be readable by anyone.
945These files are
946never used automatically and are not necessary; they are only provided for
947the convenience of the user.
948.It Pa $HOME/.ssh/config
949This is the per-user configuration file.
950The file format and configuration options are described in
951.Xr ssh_config 5 .
952Because of the potential for abuse, this file must have strict permissions:
953read/write for the user, and not accessible by others.
954.It Pa $HOME/.ssh/authorized_keys
955Lists the public keys (RSA/DSA) that can be used for logging in as this user.
956The format of this file is described in the
957.Xr sshd 8
958manual page.
959In the simplest form the format is the same as the
960.Pa .pub
961identity files.
962This file is not highly sensitive, but the recommended
963permissions are read/write for the user, and not accessible by others.
964.It Pa /etc/ssh/ssh_known_hosts
965Systemwide list of known host keys.
966This file should be prepared by the
967system administrator to contain the public host keys of all machines in the
968organization.
969This file should be world-readable.
970This file contains
971public keys, one per line, in the following format (fields separated
972by spaces): system name, public key and optional comment field.
973When different names are used
974for the same machine, all such names should be listed, separated by
975commas.
976The format is described in the
977.Xr sshd 8
978manual page.
979.Pp
980The canonical system name (as returned by name servers) is used by
981.Xr sshd 8
982to verify the client host when logging in; other names are needed because
983.Nm
984does not convert the user-supplied name to a canonical name before
985checking the key, because someone with access to the name servers
986would then be able to fool host authentication.
987.It Pa /etc/ssh/ssh_config
988Systemwide configuration file.
989The file format and configuration options are described in
990.Xr ssh_config 5 .
991.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key, /etc/ssh/ssh_host_rsa_key
992These three files contain the private parts of the host keys
993and are used for
994.Cm RhostsRSAAuthentication
995and
996.Cm HostbasedAuthentication .
997If the protocol version 1
998.Cm RhostsRSAAuthentication
999method is used,
1000.Nm
1001must be setuid root, since the host key is readable only by root.
1002For protocol version 2,
1003.Nm
1004uses
1005.Xr ssh-keysign 8
1006to access the host keys for
1007.Cm HostbasedAuthentication .
1008This eliminates the requirement that
1009.Nm
1010be setuid root when that authentication method is used.
1011By default
1012.Nm
1013is not setuid root.
1014.It Pa $HOME/.rhosts
1015This file is used in
1016.Em rhosts
1017authentication to list the
1018host/user pairs that are permitted to log in.
1019(Note that this file is
1020also used by rlogin and rsh, which makes using this file insecure.)
1021Each line of the file contains a host name (in the canonical form
1022returned by name servers), and then a user name on that host,
1023separated by a space.
1024On some machines this file may need to be
1025world-readable if the user's home directory is on a NFS partition,
1026because
1027.Xr sshd 8
1028reads it as root.
1029Additionally, this file must be owned by the user,
1030and must not have write permissions for anyone else.
1031The recommended
1032permission for most machines is read/write for the user, and not
1033accessible by others.
1034.Pp
1035Note that by default
1036.Xr sshd 8
1037will be installed so that it requires successful RSA host
1038authentication before permitting
1039.Em rhosts
1040authentication.
1041If the server machine does not have the client's host key in
1042.Pa /etc/ssh/ssh_known_hosts ,
1043it can be stored in
1044.Pa $HOME/.ssh/known_hosts .
1045The easiest way to do this is to
1046connect back to the client from the server machine using ssh; this
1047will automatically add the host key to
1048.Pa $HOME/.ssh/known_hosts .
1049.It Pa $HOME/.shosts
1050This file is used exactly the same way as
1051.Pa .rhosts .
1052The purpose for
1053having this file is to be able to use rhosts authentication with
1054.Nm
1055without permitting login with
1056.Xr rlogin
1057or
1058.Xr rsh 1 .
1059.It Pa /etc/hosts.equiv
1060This file is used during
1061.Em rhosts
1062authentication.
1063It contains
1064canonical hosts names, one per line (the full format is described in the
1065.Xr sshd 8
1066manual page).
1067If the client host is found in this file, login is
1068automatically permitted provided client and server user names are the
1069same.
1070Additionally, successful RSA host authentication is normally
1071required.
1072This file should only be writable by root.
1073.It Pa /etc/ssh/shosts.equiv
1074This file is processed exactly as
1075.Pa /etc/hosts.equiv .
1076This file may be useful to permit logins using
1077.Nm
1078but not using rsh/rlogin.
1079.It Pa /etc/ssh/sshrc
1080Commands in this file are executed by
1081.Nm
1082when the user logs in just before the user's shell (or command) is started.
1083See the
1084.Xr sshd 8
1085manual page for more information.
1086.It Pa $HOME/.ssh/rc
1087Commands in this file are executed by
1088.Nm
1089when the user logs in just before the user's shell (or command) is
1090started.
1091See the
1092.Xr sshd 8
1093manual page for more information.
1094.It Pa $HOME/.ssh/environment
1095Contains additional definitions for environment variables, see section
1096.Sx ENVIRONMENT
1097above.
1098.El
1099.Sh DIAGNOSTICS
1100.Nm
1101exits with the exit status of the remote command or with 255
1102if an error occurred.
1103.Sh SEE ALSO
1104.Xr gzip 1 ,
1105.Xr rsh 1 ,
1106.Xr scp 1 ,
1107.Xr sftp 1 ,
1108.Xr ssh-add 1 ,
1109.Xr ssh-agent 1 ,
1110.Xr ssh-keygen 1 ,
1111.Xr telnet 1 ,
1112.Xr hosts.equiv 5 ,
1113.Xr ssh_config 5 ,
1114.Xr ssh-keysign 8 ,
1115.Xr sshd 8
1116.Rs
1117.%A T. Ylonen
1118.%A T. Kivinen
1119.%A M. Saarinen
1120.%A T. Rinne
1121.%A S. Lehtinen
1122.%T "SSH Protocol Architecture"
1123.%N draft-ietf-secsh-architecture-12.txt
1124.%D January 2002
1125.%O work in progress material
1126.Re
1127.Sh AUTHORS
1128OpenSSH is a derivative of the original and free
1129ssh 1.2.12 release by Tatu Ylonen.
1130Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1131Theo de Raadt and Dug Song
1132removed many bugs, re-added newer features and
1133created OpenSSH.
1134Markus Friedl contributed the support for SSH
1135protocol versions 1.5 and 2.0.
1136