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