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