xref: /openbsd-src/usr.bin/ssh/ssh.1 (revision b2ea75c1b17e1a9a339660e7ed45cd24946b230e)
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.127 2001/08/14 17:54:29 stevesk Exp $
38.Dd September 25, 1999
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.Op Fl l Ar login_name
47.Op Ar hostname | user@hostname
48.Op Ar command
49.Pp
50.Nm ssh
51.Op Fl afgknqstvxACNPTX1246
52.Op Fl b Ar bind_address
53.Op Fl c Ar cipher_spec
54.Op Fl e Ar escape_char
55.Op Fl i Ar identity_file
56.Op Fl l Ar login_name
57.Op Fl m Ar mac_spec
58.Op Fl o Ar option
59.Op Fl p Ar port
60.Oo Fl L Xo
61.Sm off
62.Ar port :
63.Ar host :
64.Ar hostport
65.Sm on
66.Xc
67.Oc
68.Oo Fl R Xo
69.Sm off
70.Ar port :
71.Ar host :
72.Ar hostport
73.Sm on
74.Xc
75.Oc
76.Op Ar hostname | user@hostname
77.Op Ar command
78.Sh DESCRIPTION
79.Nm
80(SSH client) is a program for logging into a remote machine and for
81executing commands on a remote machine.
82It is intended to replace
83rlogin and rsh, and provide secure encrypted communications between
84two untrusted hosts over an insecure network.
85X11 connections and
86arbitrary TCP/IP ports can also be forwarded over the secure channel.
87.Pp
88.Nm
89connects and logs into the specified
90.Ar hostname .
91The user must prove
92his/her identity to the remote machine using one of several methods
93depending on the protocol version used:
94.Pp
95.Ss SSH protocol version 1
96.Pp
97First, if the machine the user logs in from is listed in
98.Pa /etc/hosts.equiv
99or
100.Pa /etc/shosts.equiv
101on the remote machine, and the user names are
102the same on both sides, the user is immediately permitted to log in.
103Second, if
104.Pa \&.rhosts
105or
106.Pa \&.shosts
107exists in the user's home directory on the
108remote machine and contains a line containing the name of the client
109machine and the name of the user on that machine, the user is
110permitted to log in.
111This form of authentication alone is normally not
112allowed by the server because it is not secure.
113.Pp
114The second authentication method is the
115.Pa rhosts
116or
117.Pa hosts.equiv
118method combined with RSA-based host authentication.
119It means that if the login would be permitted by
120.Pa $HOME/.rhosts ,
121.Pa $HOME/.shosts ,
122.Pa /etc/hosts.equiv ,
123or
124.Pa /etc/shosts.equiv ,
125and if additionally the server can verify the client's
126host key (see
127.Pa /etc/ssh_known_hosts
128and
129.Pa $HOME/.ssh/known_hosts
130in the
131.Sx FILES
132section), only then login is permitted.
133This authentication method closes security holes due to IP
134spoofing, DNS spoofing and routing spoofing.
135[Note to the administrator:
136.Pa /etc/hosts.equiv ,
137.Pa $HOME/.rhosts ,
138and the rlogin/rsh protocol in general, are inherently insecure and should be
139disabled if security is desired.]
140.Pp
141As a third authentication method,
142.Nm
143supports RSA based authentication.
144The scheme is based on public-key cryptography: there are cryptosystems
145where encryption and decryption are done using separate keys, and it
146is not possible to derive the decryption key from the encryption key.
147RSA is one such system.
148The idea is that each user creates a public/private
149key pair for authentication purposes.
150The server knows the public key, and only the user knows the private key.
151The file
152.Pa $HOME/.ssh/authorized_keys
153lists the public keys that are permitted for logging
154in.
155When the user logs in, the
156.Nm
157program tells the server which key pair it would like to use for
158authentication.
159The server checks if this key is permitted, and if
160so, sends the user (actually the
161.Nm
162program running on behalf of the user) a challenge, a random number,
163encrypted by the user's public key.
164The challenge can only be
165decrypted using the proper private key.
166The user's client then decrypts the
167challenge using the private key, proving that he/she knows the private
168key but without disclosing it to the server.
169.Pp
170.Nm
171implements the RSA authentication protocol automatically.
172The user creates his/her RSA key pair by running
173.Xr ssh-keygen 1 .
174This stores the private key in
175.Pa $HOME/.ssh/identity
176and the public key in
177.Pa $HOME/.ssh/identity.pub
178in the user's home directory.
179The user should then copy the
180.Pa identity.pub
181to
182.Pa $HOME/.ssh/authorized_keys
183in his/her home directory on the remote machine (the
184.Pa authorized_keys
185file corresponds to the conventional
186.Pa $HOME/.rhosts
187file, and has one key
188per line, though the lines can be very long).
189After this, the user can log in without giving the password.
190RSA authentication is much
191more secure than rhosts authentication.
192.Pp
193The most convenient way to use RSA authentication may be with an
194authentication agent.
195See
196.Xr ssh-agent 1
197for more information.
198.Pp
199If other authentication methods fail,
200.Nm
201prompts the user for a password.
202The password is sent to the remote
203host for checking; however, since all communications are encrypted,
204the password cannot be seen by someone listening on the network.
205.Pp
206.Ss SSH protocol version 2
207.Pp
208When a user connects using the protocol version 2
209different authentication methods are available.
210Using the default values for
211.Cm PreferredAuthentications ,
212the client will try to authenticate first using the hostbased method;
213if this method fails public key authentication is attempted,
214and finally if this method fails keyboard-interactive and
215password authentication are tried.
216.Pp
217The public key method is similar to RSA authentication described
218in the previous section and allows the RSA or DSA algorithm to be used:
219The client uses his private key,
220.Pa $HOME/.ssh/id_dsa
221or
222.Pa $HOME/.ssh/id_rsa ,
223to sign the session identifier and sends the result to the server.
224The server checks whether the matching public key is listed in
225.Pa $HOME/.ssh/authorized_keys
226and grants access if both the key is found and the signature is correct.
227The session identifier is derived from a shared Diffie-Hellman value
228and is only known to the client and the server.
229.Pp
230If public key authentication fails or is not available a password
231can be sent encrypted to the remote host for proving the user's identity.
232.Pp
233Additionally,
234.Nm
235supports hostbased or challenge response authentication.
236.Pp
237Protocol 2 provides additional mechanisms for confidentiality
238(the traffic is encrypted using 3DES, Blowfish, CAST128 or Arcfour)
239and integrity (hmac-md5, hmac-sha1).
240Note that protocol 1 lacks a strong mechanism for ensuring the
241integrity of the connection.
242.Pp
243.Ss Login session and remote execution
244.Pp
245When the user's identity has been accepted by the server, the server
246either executes the given command, or logs into the machine and gives
247the user a normal shell on the remote machine.
248All communication with
249the remote command or shell will be automatically encrypted.
250.Pp
251If a pseudo-terminal has been allocated (normal login session), the
252user may use the escape characters noted below.
253.Pp
254If no pseudo tty has been allocated, the
255session is transparent and can be used to reliably transfer binary
256data.
257On most systems, setting the escape character to
258.Dq none
259will also make the session transparent even if a tty is used.
260.Pp
261The session terminates when the command or shell on the remote
262machine exits and all X11 and TCP/IP connections have been closed.
263The exit status of the remote program is returned as the exit status
264of
265.Nm ssh .
266.Pp
267.Ss Escape Characters
268.Pp
269When a pseudo terminal has been requested, ssh supports a number of functions
270through the use of an escape character.
271.Pp
272A single tilde character can be sent as
273.Ic ~~
274or by following the tilde by a character other than those described below.
275The escape character must always follow a newline to be interpreted as
276special.
277The escape character can be changed in configuration files using the
278.Cm EscapeChar
279configuration directive or on the command line by the
280.Fl e
281option.
282.Pp
283The supported escapes (assuming the default
284.Ql ~ )
285are:
286.Bl -tag -width Ds
287.It Cm ~.
288Disconnect
289.It Cm ~^Z
290Background ssh
291.It Cm ~#
292List forwarded connections
293.It Cm ~&
294Background ssh at logout when waiting for forwarded connection / X11 sessions
295to terminate (protocol version 1 only)
296.It Cm ~?
297Display a list of escape characters
298.It Cm ~R
299Request rekeying of the connection (only useful for SSH protocol version 2
300and if the peer supports it)
301.El
302.Pp
303.Ss X11 and TCP forwarding
304.Pp
305If the
306.Cm ForwardX11
307variable is set to
308.Dq yes
309(or, see the description of the
310.Fl X
311and
312.Fl x
313options described later)
314and the user is using X11 (the
315.Ev DISPLAY
316environment variable is set), the connection to the X11 display is
317automatically forwarded to the remote side in such a way that any X11
318programs started from the shell (or command) will go through the
319encrypted channel, and the connection to the real X server will be made
320from the local machine.
321The user should not manually set
322.Ev DISPLAY .
323Forwarding of X11 connections can be
324configured on the command line or in configuration files.
325.Pp
326The
327.Ev DISPLAY
328value set by
329.Nm
330will point to the server machine, but with a display number greater
331than zero.
332This is normal, and happens because
333.Nm
334creates a
335.Dq proxy
336X server on the server machine for forwarding the
337connections over the encrypted channel.
338.Pp
339.Nm
340will also automatically set up Xauthority data on the server machine.
341For this purpose, it will generate a random authorization cookie,
342store it in Xauthority on the server, and verify that any forwarded
343connections carry this cookie and replace it by the real cookie when
344the connection is opened.
345The real authentication cookie is never
346sent to the server machine (and no cookies are sent in the plain).
347.Pp
348If the user is using an authentication agent, the connection to the agent
349is automatically forwarded to the remote side unless disabled on
350the command line or in a configuration file.
351.Pp
352Forwarding of arbitrary TCP/IP connections over the secure channel can
353be specified either on the command line or in a configuration file.
354One possible application of TCP/IP forwarding is a secure connection to an
355electronic purse; another is going through firewalls.
356.Pp
357.Ss Server authentication
358.Pp
359.Nm
360automatically maintains and checks a database containing
361identifications for all hosts it has ever been used with.
362Host keys are stored in
363.Pa $HOME/.ssh/known_hosts
364in the user's home directory.
365Additionally, the file
366.Pa /etc/ssh_known_hosts
367is automatically checked for known hosts.
368Any new hosts are automatically added to the user's file.
369If a host's identification
370ever changes,
371.Nm
372warns about this and disables password authentication to prevent a
373trojan horse from getting the user's password.
374Another purpose of
375this mechanism is to prevent man-in-the-middle attacks which could
376otherwise be used to circumvent the encryption.
377The
378.Cm StrictHostKeyChecking
379option (see below) can be used to prevent logins to machines whose
380host key is not known or has changed.
381.Pp
382The options are as follows:
383.Bl -tag -width Ds
384.It Fl a
385Disables forwarding of the authentication agent connection.
386.It Fl A
387Enables forwarding of the authentication agent connection.
388This can also be specified on a per-host basis in a configuration file.
389.It Fl b Ar bind_address
390Specify the interface to transmit from on machines with multiple
391interfaces or aliased addresses.
392.It Fl c Ar blowfish|3des
393Selects the cipher to use for encrypting the session.
394.Ar 3des
395is used by default.
396It is believed to be secure.
397.Ar 3des
398(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
399It is presumably more secure than the
400.Ar des
401cipher which is no longer fully supported in
402.Nm ssh .
403.Ar blowfish
404is a fast block cipher, it appears very secure and is much faster than
405.Ar 3des .
406.It Fl c Ar cipher_spec
407Additionally, for protocol version 2 a comma-separated list of ciphers can
408be specified in order of preference.
409See
410.Cm Ciphers
411for more information.
412.It Fl e Ar ch|^ch|none
413Sets the escape character for sessions with a pty (default:
414.Ql ~ ) .
415The escape character is only recognized at the beginning of a line.
416The escape character followed by a dot
417.Pq Ql \&.
418closes the connection, followed
419by control-Z suspends the connection, and followed by itself sends the
420escape character once.
421Setting the character to
422.Dq none
423disables any escapes and makes the session fully transparent.
424.It Fl f
425Requests
426.Nm
427to go to background just before command execution.
428This is useful if
429.Nm
430is going to ask for passwords or passphrases, but the user
431wants it in the background.
432This implies
433.Fl n .
434The recommended way to start X11 programs at a remote site is with
435something like
436.Ic ssh -f host xterm .
437.It Fl g
438Allows remote hosts to connect to local forwarded ports.
439.It Fl i Ar identity_file
440Selects the file from which the identity (private key) for
441RSA or DSA authentication is read.
442Default is
443.Pa $HOME/.ssh/identity
444in the user's home directory.
445Identity files may also be specified on
446a per-host basis in the configuration file.
447It is possible to have multiple
448.Fl i
449options (and multiple identities specified in
450configuration files).
451.It Fl I Ar smartcard_device
452Specifies which smartcard device to use. The argument is
453the device
454.Nm
455should use to communicate with a smartcard used for storing the user's
456private RSA key.
457.It Fl k
458Disables forwarding of Kerberos tickets and AFS tokens.
459This may also be specified on a per-host basis in the configuration file.
460.It Fl l Ar login_name
461Specifies the user to log in as on the remote machine.
462This also may be specified on a per-host basis in the configuration file.
463.It Fl m Ar mac_spec
464Additionally, for protocol version 2 a comma-separated list of MAC
465(message authentication code) algorithms can
466be specified in order of preference.
467See the
468.Cm MACs
469keyword for more information.
470.It Fl n
471Redirects stdin from
472.Pa /dev/null
473(actually, prevents reading from stdin).
474This must be used when
475.Nm
476is run in the background.
477A common trick is to use this to run X11 programs on a remote machine.
478For example,
479.Ic ssh -n shadows.cs.hut.fi emacs &
480will start an emacs on shadows.cs.hut.fi, and the X11
481connection will be automatically forwarded over an encrypted channel.
482The
483.Nm
484program will be put in the background.
485(This does not work if
486.Nm
487needs to ask for a password or passphrase; see also the
488.Fl f
489option.)
490.It Fl N
491Do not execute a remote command.
492This is useful if you just want to forward ports
493(protocol version 2 only).
494.It Fl o Ar option
495Can be used to give options in the format used in the configuration file.
496This is useful for specifying options for which there is no separate
497command-line flag.
498.It Fl p Ar port
499Port to connect to on the remote host.
500This can be specified on a
501per-host basis in the configuration file.
502.It Fl P
503Use a non-privileged port for outgoing connections.
504This can be used if your firewall does
505not permit connections from privileged ports.
506Note that this option turns off
507.Cm RhostsAuthentication
508and
509.Cm RhostsRSAAuthentication
510for older servers.
511.It Fl q
512Quiet mode.
513Causes all warning and diagnostic messages to be suppressed.
514Only fatal errors are displayed.
515.It Fl s
516May be used to request invocation of a subsystem on the remote system. Subsystems are a feature of the SSH2 protocol which facilitate the use
517of SSH as a secure transport for other applications (eg. sftp). The
518subsystem is specified as the remote command.
519.It Fl t
520Force pseudo-tty allocation.
521This can be used to execute arbitrary
522screen-based programs on a remote machine, which can be very useful,
523e.g., when implementing menu services.
524Multiple
525.Fl t
526options force tty allocation, even if
527.Nm
528has no local tty.
529.It Fl T
530Disable pseudo-tty allocation.
531.It Fl v
532Verbose mode.
533Causes
534.Nm
535to print debugging messages about its progress.
536This is helpful in
537debugging connection, authentication, and configuration problems.
538Multiple
539.Fl v
540options increases the verbosity.
541Maximum is 3.
542.It Fl x
543Disables X11 forwarding.
544.It Fl X
545Enables X11 forwarding.
546This can also be specified on a per-host basis in a configuration file.
547.It Fl C
548Requests compression of all data (including stdin, stdout, stderr, and
549data for forwarded X11 and TCP/IP connections).
550The compression algorithm is the same used by
551.Xr gzip 1 ,
552and the
553.Dq level
554can be controlled by the
555.Cm CompressionLevel
556option (see below).
557Compression is desirable on modem lines and other
558slow connections, but will only slow down things on fast networks.
559The default value can be set on a host-by-host basis in the
560configuration files; see the
561.Cm Compression
562option below.
563.It Fl L Ar port:host:hostport
564Specifies that the given port on the local (client) host is to be
565forwarded to the given host and port on the remote side.
566This works by allocating a socket to listen to
567.Ar port
568on the local side, and whenever a connection is made to this port, the
569connection is forwarded over the secure channel, and a connection is
570made to
571.Ar host
572port
573.Ar hostport
574from the remote machine.
575Port forwardings can also be specified in the configuration file.
576Only root can forward privileged ports.
577IPv6 addresses can be specified with an alternative syntax:
578.Ar port/host/hostport
579.It Fl R Ar port:host:hostport
580Specifies that the given port on the remote (server) host is to be
581forwarded to the given host and port on the local side.
582This works by allocating a socket to listen to
583.Ar port
584on the remote side, and whenever a connection is made to this port, the
585connection is forwarded over the secure channel, and a connection is
586made to
587.Ar host
588port
589.Ar hostport
590from the local machine.
591Port forwardings can also be specified in the configuration file.
592Privileged ports can be forwarded only when
593logging in as root on the remote machine.
594IPv6 addresses can be specified with an alternative syntax:
595.Ar port/host/hostport
596.It Fl 1
597Forces
598.Nm
599to try protocol version 1 only.
600.It Fl 2
601Forces
602.Nm
603to try protocol version 2 only.
604.It Fl 4
605Forces
606.Nm
607to use IPv4 addresses only.
608.It Fl 6
609Forces
610.Nm
611to use IPv6 addresses only.
612.El
613.Sh CONFIGURATION FILES
614.Nm
615obtains configuration data from the following sources in
616the following order:
617command line options, user's configuration file
618.Pq Pa $HOME/.ssh/config ,
619and system-wide configuration file
620.Pq Pa /etc/ssh_config .
621For each parameter, the first obtained value
622will be used.
623The configuration files contain sections bracketed by
624.Dq Host
625specifications, and that section is only applied for hosts that
626match one of the patterns given in the specification.
627The matched host name is the one given on the command line.
628.Pp
629Since the first obtained value for each parameter is used, more
630host-specific declarations should be given near the beginning of the
631file, and general defaults at the end.
632.Pp
633The configuration file has the following format:
634.Pp
635Empty lines and lines starting with
636.Ql #
637are comments.
638.Pp
639Otherwise a line is of the format
640.Dq keyword arguments .
641Configuration options may be separated by whitespace or
642optional whitespace and exactly one
643.Ql = ;
644the latter format is useful to avoid the need to quote whitespace
645when specifying configuration options using the
646.Nm ssh ,
647.Nm scp
648and
649.Nm sftp
650.Fl o
651option.
652.Pp
653The possible
654keywords and their meanings are as follows (note that the
655configuration files are case-sensitive):
656.Bl -tag -width Ds
657.It Cm Host
658Restricts the following declarations (up to the next
659.Cm Host
660keyword) to be only for those hosts that match one of the patterns
661given after the keyword.
662.Ql \&*
663and
664.Ql ?
665can be used as wildcards in the
666patterns.
667A single
668.Ql \&*
669as a pattern can be used to provide global
670defaults for all hosts.
671The host is the
672.Ar hostname
673argument given on the command line (i.e., the name is not converted to
674a canonicalized host name before matching).
675.It Cm AFSTokenPassing
676Specifies whether to pass AFS tokens to remote host.
677The argument to this keyword must be
678.Dq yes
679or
680.Dq no .
681This option applies to protocol version 1 only.
682.It Cm BatchMode
683If set to
684.Dq yes ,
685passphrase/password querying will be disabled.
686This option is useful in scripts and other batch jobs where you have no
687user to supply the password.
688The argument must be
689.Dq yes
690or
691.Dq no .
692The default is
693.Dq no .
694.It Cm BindAddress
695Specify the interface to transmit from on machines with multiple
696interfaces or aliased addresses.
697Note that this option does not work if
698.Cm UsePrivilegedPort
699is set to
700.Dq yes .
701.It Cm CheckHostIP
702If this flag is set to
703.Dq yes ,
704ssh will additionally check the host IP address in the
705.Pa known_hosts
706file.
707This allows ssh to detect if a host key changed due to DNS spoofing.
708If the option is set to
709.Dq no ,
710the check will not be executed.
711The default is
712.Dq yes .
713.It Cm Cipher
714Specifies the cipher to use for encrypting the session
715in protocol version 1.
716Currently,
717.Dq blowfish
718and
719.Dq 3des
720are supported.
721The default is
722.Dq 3des .
723.It Cm Ciphers
724Specifies the ciphers allowed for protocol version 2
725in order of preference.
726Multiple ciphers must be comma-separated.
727The default is
728.Pp
729.Bd -literal
730  ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
731    aes192-cbc,aes256-cbc''
732.Ed
733.It Cm Compression
734Specifies whether to use compression.
735The argument must be
736.Dq yes
737or
738.Dq no .
739The default is
740.Dq no .
741.It Cm CompressionLevel
742Specifies the compression level to use if compression is enabled.
743The argument must be an integer from 1 (fast) to 9 (slow, best).
744The default level is 6, which is good for most applications.
745The meaning of the values is the same as in
746.Xr gzip 1 .
747Note that this option applies to protocol version 1 only.
748.It Cm ConnectionAttempts
749Specifies the number of tries (one per second) to make before falling
750back to rsh or exiting.
751The argument must be an integer.
752This may be useful in scripts if the connection sometimes fails.
753The default is 1.
754.It Cm EscapeChar
755Sets the escape character (default:
756.Ql ~ ) .
757The escape character can also
758be set on the command line.
759The argument should be a single character,
760.Ql ^
761followed by a letter, or
762.Dq none
763to disable the escape
764character entirely (making the connection transparent for binary
765data).
766.It Cm FallBackToRsh
767Specifies that if connecting via
768.Nm
769fails due to a connection refused error (there is no
770.Xr sshd 8
771listening on the remote host),
772.Xr rsh 1
773should automatically be used instead (after a suitable warning about
774the session being unencrypted).
775The argument must be
776.Dq yes
777or
778.Dq no .
779The default is
780.Dq no .
781.It Cm ForwardAgent
782Specifies whether the connection to the authentication agent (if any)
783will be forwarded to the remote machine.
784The argument must be
785.Dq yes
786or
787.Dq no .
788The default is
789.Dq no .
790.It Cm ForwardX11
791Specifies whether X11 connections will be automatically redirected
792over the secure channel and
793.Ev DISPLAY
794set.
795The argument must be
796.Dq yes
797or
798.Dq no .
799The default is
800.Dq no .
801.It Cm GatewayPorts
802Specifies whether remote hosts are allowed to connect to local
803forwarded ports.
804The argument must be
805.Dq yes
806or
807.Dq no .
808The default is
809.Dq no .
810.It Cm GlobalKnownHostsFile
811Specifies a file to use for the global
812host key database instead of
813.Pa /etc/ssh_known_hosts .
814.It Cm HostbasedAuthentication
815Specifies whether to try rhosts based authentication with public key
816authentication.
817The argument must be
818.Dq yes
819or
820.Dq no .
821The default is
822.Dq no .
823This option applies to protocol version 2 only and
824is similar to
825.Cm RhostsRSAAuthentication .
826.It Cm HostKeyAlgorithms
827Specifies the protocol version 2 host key algorithms
828that the client wants to use in order of preference.
829The default for this option is:
830.Dq ssh-rsa,ssh-dss
831.It Cm HostKeyAlias
832Specifies an alias that should be used instead of the
833real host name when looking up or saving the host key
834in the host key database files.
835This option is useful for tunneling ssh connections
836or if you have multiple servers running on a single host.
837.It Cm HostName
838Specifies the real host name to log into.
839This can be used to specify nicknames or abbreviations for hosts.
840Default is the name given on the command line.
841Numeric IP addresses are also permitted (both on the command line and in
842.Cm HostName
843specifications).
844.It Cm IdentityFile
845Specifies the file from which the user's RSA or DSA authentication identity
846is read (default
847.Pa $HOME/.ssh/identity
848in the user's home directory).
849Additionally, any identities represented by the authentication agent
850will be used for authentication.
851The file name may use the tilde
852syntax to refer to a user's home directory.
853It is possible to have
854multiple identity files specified in configuration files; all these
855identities will be tried in sequence.
856.It Cm KeepAlive
857Specifies whether the system should send keepalive messages to the
858other side.
859If they are sent, death of the connection or crash of one
860of the machines will be properly noticed.
861However, this means that
862connections will die if the route is down temporarily, and some people
863find it annoying.
864.Pp
865The default is
866.Dq yes
867(to send keepalives), and the client will notice
868if the network goes down or the remote host dies.
869This is important in scripts, and many users want it too.
870.Pp
871To disable keepalives, the value should be set to
872.Dq no
873in both the server and the client configuration files.
874.It Cm KerberosAuthentication
875Specifies whether Kerberos authentication will be used.
876The argument to this keyword must be
877.Dq yes
878or
879.Dq no .
880.It Cm KerberosTgtPassing
881Specifies whether a Kerberos TGT will be forwarded to the server.
882This will only work if the Kerberos server is actually an AFS kaserver.
883The argument to this keyword must be
884.Dq yes
885or
886.Dq no .
887.It Cm LocalForward
888Specifies that a TCP/IP port on the local machine be forwarded over
889the secure channel to given host:port from the remote machine.
890The first argument must be a port number, and the second must be
891host:port.
892Multiple forwardings may be specified, and additional
893forwardings can be given on the command line.
894Only the superuser can forward privileged ports.
895.It Cm LogLevel
896Gives the verbosity level that is used when logging messages from
897.Nm ssh .
898The possible values are:
899QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
900The default is INFO.
901.It Cm MACs
902Specifies the MAC (message authentication code) algorithms
903in order of preference.
904The MAC algorithm is used in protocol version 2
905for data integrity protection.
906Multiple algorithms must be comma-separated.
907The default is
908.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
909.It Cm NumberOfPasswordPrompts
910Specifies the number of password prompts before giving up.
911The argument to this keyword must be an integer.
912Default is 3.
913.It Cm PasswordAuthentication
914Specifies whether to use password authentication.
915The argument to this keyword must be
916.Dq yes
917or
918.Dq no .
919The default is
920.Dq yes .
921.It Cm Port
922Specifies the port number to connect on the remote host.
923Default is 22.
924.It Cm PreferredAuthentications
925Specifies the order in which the client should try protocol 2
926authentication methods. This allows a client to prefer one method (e.g.
927.Cm keyboard-interactive )
928over another method (e.g.
929.Cm password )
930The default for this option is:
931.Dq hostbased,publickey,keyboard-interactive,password
932.It Cm Protocol
933Specifies the protocol versions
934.Nm
935should support in order of preference.
936The possible values are
937.Dq 1
938and
939.Dq 2 .
940Multiple versions must be comma-separated.
941The default is
942.Dq 2,1 .
943This means that
944.Nm
945tries version 2 and falls back to version 1
946if version 2 is not available.
947.It Cm ProxyCommand
948Specifies the command to use to connect to the server.
949The command
950string extends to the end of the line, and is executed with
951.Pa /bin/sh .
952In the command string,
953.Ql %h
954will be substituted by the host name to
955connect and
956.Ql %p
957by the port.
958The command can be basically anything,
959and should read from its standard input and write to its standard output.
960It should eventually connect an
961.Xr sshd 8
962server running on some machine, or execute
963.Ic sshd -i
964somewhere.
965Host key management will be done using the
966HostName of the host being connected (defaulting to the name typed by
967the user).
968Note that
969.Cm CheckHostIP
970is not available for connects with a proxy command.
971.Pp
972.It Cm PubkeyAuthentication
973Specifies whether to try public key authentication.
974The argument to this keyword must be
975.Dq yes
976or
977.Dq no .
978The default is
979.Dq yes .
980This option applies to protocol version 2 only.
981.It Cm RemoteForward
982Specifies that a TCP/IP port on the remote machine be forwarded over
983the secure channel to given host:port from the local machine.
984The first argument must be a port number, and the second must be
985host:port.
986Multiple forwardings may be specified, and additional
987forwardings can be given on the command line.
988Only the superuser can forward privileged ports.
989.It Cm RhostsAuthentication
990Specifies whether to try rhosts based authentication.
991Note that this
992declaration only affects the client side and has no effect whatsoever
993on security.
994Disabling rhosts authentication may reduce
995authentication time on slow connections when rhosts authentication is
996not used.
997Most servers do not permit RhostsAuthentication because it
998is not secure (see
999.Cm RhostsRSAAuthentication ) .
1000The argument to this keyword must be
1001.Dq yes
1002or
1003.Dq no .
1004The default is
1005.Dq yes .
1006This option applies to protocol version 1 only.
1007.It Cm RhostsRSAAuthentication
1008Specifies whether to try rhosts based authentication with RSA host
1009authentication.
1010The argument must be
1011.Dq yes
1012or
1013.Dq no .
1014The default is
1015.Dq yes .
1016This option applies to protocol version 1 only.
1017.It Cm RSAAuthentication
1018Specifies whether to try RSA authentication.
1019The argument to this keyword must be
1020.Dq yes
1021or
1022.Dq no .
1023RSA authentication will only be
1024attempted if the identity file exists, or an authentication agent is
1025running.
1026The default is
1027.Dq yes .
1028Note that this option applies to protocol version 1 only.
1029.It Cm ChallengeResponseAuthentication
1030Specifies whether to use challenge response authentication.
1031The argument to this keyword must be
1032.Dq yes
1033or
1034.Dq no .
1035The default is
1036.Dq yes .
1037.It Cm SmartcardDevice
1038Specifies which smartcard device to use. The argument to this keyword is
1039the device
1040.Nm
1041should use to communicate with a smartcard used for storing the user's
1042private RSA key. By default, no device is specified and smartcard support
1043is not activated.
1044.It Cm StrictHostKeyChecking
1045If this flag is set to
1046.Dq yes ,
1047.Nm
1048will never automatically add host keys to the
1049.Pa $HOME/.ssh/known_hosts
1050file, and refuses to connect to hosts whose host key has changed.
1051This provides maximum protection against trojan horse attacks.
1052However, it can be somewhat annoying if you don't have good
1053.Pa /etc/ssh_known_hosts
1054files installed and frequently
1055connect to new hosts.
1056This option forces the user to manually
1057add all new hosts.
1058If this flag is set to
1059.Dq no ,
1060.Nm
1061will automatically add new host keys to the
1062user known hosts files.
1063If this flag is set to
1064.Dq ask ,
1065new host keys
1066will be added to the user known host files only after the user
1067has confirmed that is what they really want to do, and
1068.Nm
1069will refuse to connect to hosts whose host key has changed.
1070The host keys of
1071known hosts will be verified automatically in all cases.
1072The argument must be
1073.Dq yes ,
1074.Dq no
1075or
1076.Dq ask .
1077The default is
1078.Dq ask .
1079.It Cm UsePrivilegedPort
1080Specifies whether to use a privileged port for outgoing connections.
1081The argument must be
1082.Dq yes
1083or
1084.Dq no .
1085The default is
1086.Dq no .
1087Note that you need to set this option to
1088.Dq yes
1089if you want to use
1090.Cm RhostsAuthentication
1091and
1092.Cm RhostsRSAAuthentication
1093with older servers.
1094.It Cm User
1095Specifies the user to log in as.
1096This can be useful if you have a different user name on different machines.
1097This saves the trouble of
1098having to remember to give the user name on the command line.
1099.It Cm UserKnownHostsFile
1100Specifies a file to use for the user
1101host key database instead of
1102.Pa $HOME/.ssh/known_hosts .
1103.It Cm UseRsh
1104Specifies that rlogin/rsh should be used for this host.
1105It is possible that the host does not at all support the
1106.Nm
1107protocol.
1108This causes
1109.Nm
1110to immediately execute
1111.Xr rsh 1 .
1112All other options (except
1113.Cm HostName )
1114are ignored if this has been specified.
1115The argument must be
1116.Dq yes
1117or
1118.Dq no .
1119.It Cm XAuthLocation
1120Specifies the location of the
1121.Xr xauth 1
1122program.
1123The default is
1124.Pa /usr/X11R6/bin/xauth .
1125.El
1126.Sh ENVIRONMENT
1127.Nm
1128will normally set the following environment variables:
1129.Bl -tag -width Ds
1130.It Ev DISPLAY
1131The
1132.Ev DISPLAY
1133variable indicates the location of the X11 server.
1134It is automatically set by
1135.Nm
1136to point to a value of the form
1137.Dq hostname:n
1138where hostname indicates
1139the host where the shell runs, and n is an integer >= 1.
1140.Nm
1141uses this special value to forward X11 connections over the secure
1142channel.
1143The user should normally not set
1144.Ev DISPLAY
1145explicitly, as that
1146will render the X11 connection insecure (and will require the user to
1147manually copy any required authorization cookies).
1148.It Ev HOME
1149Set to the path of the user's home directory.
1150.It Ev LOGNAME
1151Synonym for
1152.Ev USER ;
1153set for compatibility with systems that use this variable.
1154.It Ev MAIL
1155Set to point the user's mailbox.
1156.It Ev PATH
1157Set to the default
1158.Ev PATH ,
1159as specified when compiling
1160.Nm ssh .
1161.It Ev SSH_ASKPASS
1162If
1163.Nm
1164needs a passphrase, it will read the passphrase from the current
1165terminal if it was run from a terminal.
1166If
1167.Nm
1168does not have a terminal associated with it but
1169.Ev DISPLAY
1170and
1171.Ev SSH_ASKPASS
1172are set, it will execute the program specified by
1173.Ev SSH_ASKPASS
1174and open an X11 window to read the passphrase.
1175This is particularly useful when calling
1176.Nm
1177from a
1178.Pa .Xsession
1179or related script.
1180(Note that on some machines it
1181may be necessary to redirect the input from
1182.Pa /dev/null
1183to make this work.)
1184.It Ev SSH_AUTH_SOCK
1185indicates the path of a unix-domain socket used to communicate with the
1186agent.
1187.It Ev SSH_CLIENT
1188Identifies the client end of the connection.
1189The variable contains
1190three space-separated values: client ip-address, client port number,
1191and server port number.
1192.It Ev SSH_ORIGINAL_COMMAND
1193The variable contains the original command line if a forced command
1194is executed.
1195It can be used to extract the original arguments.
1196.It Ev SSH_TTY
1197This is set to the name of the tty (path to the device) associated
1198with the current shell or command.
1199If the current session has no tty,
1200this variable is not set.
1201.It Ev TZ
1202The timezone variable is set to indicate the present timezone if it
1203was set when the daemon was started (i.e., the daemon passes the value
1204on to new connections).
1205.It Ev USER
1206Set to the name of the user logging in.
1207.El
1208.Pp
1209Additionally,
1210.Nm
1211reads
1212.Pa $HOME/.ssh/environment ,
1213and adds lines of the format
1214.Dq VARNAME=value
1215to the environment.
1216.Sh FILES
1217.Bl -tag -width Ds
1218.It Pa $HOME/.ssh/known_hosts
1219Records host keys for all hosts the user has logged into (that are not
1220in
1221.Pa /etc/ssh_known_hosts .
1222See
1223.Xr sshd 8 .
1224.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa
1225Contains the authentication identity of the user.
1226They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
1227These files
1228contain sensitive data and should be readable by the user but not
1229accessible by others (read/write/execute).
1230Note that
1231.Nm
1232ignores a private key file if it is accessible by others.
1233It is possible to specify a passphrase when
1234generating the key; the passphrase will be used to encrypt the
1235sensitive part of this file using 3DES.
1236.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub
1237Contains the public key for authentication (public part of the
1238identity file in human-readable form).
1239The contents of the
1240.Pa $HOME/.ssh/identity.pub
1241file should be added to
1242.Pa $HOME/.ssh/authorized_keys
1243on all machines
1244where you wish to log in using protocol version 1 RSA authentication.
1245The contents of the
1246.Pa $HOME/.ssh/id_dsa.pub
1247and
1248.Pa $HOME/.ssh/id_rsa.pub
1249file should be added to
1250.Pa $HOME/.ssh/authorized_keys
1251on all machines
1252where you wish to log in using protocol version 2 DSA/RSA authentication.
1253These files are not
1254sensitive and can (but need not) be readable by anyone.
1255These files are
1256never used automatically and are not necessary; they are only provided for
1257the convenience of the user.
1258.It Pa $HOME/.ssh/config
1259This is the per-user configuration file.
1260The format of this file is described above.
1261This file is used by the
1262.Nm
1263client.
1264This file does not usually contain any sensitive information,
1265but the recommended permissions are read/write for the user, and not
1266accessible by others.
1267.It Pa $HOME/.ssh/authorized_keys
1268Lists the public keys (RSA/DSA) that can be used for logging in as this user.
1269The format of this file is described in the
1270.Xr sshd 8
1271manual page.
1272In the simplest form the format is the same as the .pub
1273identity files.
1274This file is not highly sensitive, but the recommended
1275permissions are read/write for the user, and not accessible by others.
1276.It Pa /etc/ssh_known_hosts
1277Systemwide list of known host keys.
1278This file should be prepared by the
1279system administrator to contain the public host keys of all machines in the
1280organization.
1281This file should be world-readable.
1282This file contains
1283public keys, one per line, in the following format (fields separated
1284by spaces): system name, public key and optional comment field.
1285When different names are used
1286for the same machine, all such names should be listed, separated by
1287commas.
1288The format is described on the
1289.Xr sshd 8
1290manual page.
1291.Pp
1292The canonical system name (as returned by name servers) is used by
1293.Xr sshd 8
1294to verify the client host when logging in; other names are needed because
1295.Nm
1296does not convert the user-supplied name to a canonical name before
1297checking the key, because someone with access to the name servers
1298would then be able to fool host authentication.
1299.It Pa /etc/ssh_config
1300Systemwide configuration file.
1301This file provides defaults for those
1302values that are not specified in the user's configuration file, and
1303for those users who do not have a configuration file.
1304This file must be world-readable.
1305.It Pa $HOME/.rhosts
1306This file is used in
1307.Pa \&.rhosts
1308authentication to list the
1309host/user pairs that are permitted to log in.
1310(Note that this file is
1311also used by rlogin and rsh, which makes using this file insecure.)
1312Each line of the file contains a host name (in the canonical form
1313returned by name servers), and then a user name on that host,
1314separated by a space.
1315On some machines this file may need to be
1316world-readable if the user's home directory is on a NFS partition,
1317because
1318.Xr sshd 8
1319reads it as root.
1320Additionally, this file must be owned by the user,
1321and must not have write permissions for anyone else.
1322The recommended
1323permission for most machines is read/write for the user, and not
1324accessible by others.
1325.Pp
1326Note that by default
1327.Xr sshd 8
1328will be installed so that it requires successful RSA host
1329authentication before permitting \s+2.\s0rhosts authentication.
1330If your server machine does not have the client's host key in
1331.Pa /etc/ssh_known_hosts ,
1332you can store it in
1333.Pa $HOME/.ssh/known_hosts .
1334The easiest way to do this is to
1335connect back to the client from the server machine using ssh; this
1336will automatically add the host key to
1337.Pa $HOME/.ssh/known_hosts .
1338.It Pa $HOME/.shosts
1339This file is used exactly the same way as
1340.Pa \&.rhosts .
1341The purpose for
1342having this file is to be able to use rhosts authentication with
1343.Nm
1344without permitting login with
1345.Xr rlogin 1
1346or
1347.Xr rsh 1 .
1348.It Pa /etc/hosts.equiv
1349This file is used during
1350.Pa \&.rhosts authentication.
1351It contains
1352canonical hosts names, one per line (the full format is described on
1353the
1354.Xr sshd 8
1355manual page).
1356If the client host is found in this file, login is
1357automatically permitted provided client and server user names are the
1358same.
1359Additionally, successful RSA host authentication is normally
1360required.
1361This file should only be writable by root.
1362.It Pa /etc/shosts.equiv
1363This file is processed exactly as
1364.Pa /etc/hosts.equiv .
1365This file may be useful to permit logins using
1366.Nm
1367but not using rsh/rlogin.
1368.It Pa /etc/sshrc
1369Commands in this file are executed by
1370.Nm
1371when the user logs in just before the user's shell (or command) is started.
1372See the
1373.Xr sshd 8
1374manual page for more information.
1375.It Pa $HOME/.ssh/rc
1376Commands in this file are executed by
1377.Nm
1378when the user logs in just before the user's shell (or command) is
1379started.
1380See the
1381.Xr sshd 8
1382manual page for more information.
1383.It Pa $HOME/.ssh/environment
1384Contains additional definitions for environment variables, see section
1385.Sx ENVIRONMENT
1386above.
1387.El
1388.Sh AUTHORS
1389OpenSSH is a derivative of the original and free
1390ssh 1.2.12 release by Tatu Ylonen.
1391Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1392Theo de Raadt and Dug Song
1393removed many bugs, re-added newer features and
1394created OpenSSH.
1395Markus Friedl contributed the support for SSH
1396protocol versions 1.5 and 2.0.
1397.Sh SEE ALSO
1398.Xr rlogin 1 ,
1399.Xr rsh 1 ,
1400.Xr scp 1 ,
1401.Xr sftp 1 ,
1402.Xr ssh-add 1 ,
1403.Xr ssh-agent 1 ,
1404.Xr ssh-keygen 1 ,
1405.Xr telnet 1 ,
1406.Xr sshd 8
1407.Rs
1408.%A T. Ylonen
1409.%A T. Kivinen
1410.%A M. Saarinen
1411.%A T. Rinne
1412.%A S. Lehtinen
1413.%T "SSH Protocol Architecture"
1414.%N draft-ietf-secsh-architecture-09.txt
1415.%D July 2001
1416.%O work in progress material
1417.Re
1418