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.160 2002/06/22 11:51:39 naddy Exp $ 38.\" $FreeBSD$ 39.Dd September 25, 1999 40.Dt SSH 1 41.Os 42.Sh NAME 43.Nm ssh 44.Nd OpenSSH SSH client (remote login program) 45.Sh SYNOPSIS 46.Nm ssh 47.Op Fl l Ar login_name 48.Ar hostname | user@hostname 49.Op Ar command 50.Pp 51.Nm ssh 52.Op Fl afgknqstvxACNPTX1246 53.Op Fl b Ar bind_address 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.Op Fl F Ar configfile 62.Oo Fl L Xo 63.Sm off 64.Ar port : 65.Ar host : 66.Ar hostport 67.Sm on 68.Xc 69.Oc 70.Oo Fl R Xo 71.Sm off 72.Ar port : 73.Ar host : 74.Ar hostport 75.Sm on 76.Xc 77.Oc 78.Op Fl D Ar port 79.Ar hostname | user@hostname 80.Op Ar command 81.Sh DESCRIPTION 82.Nm 83(SSH client) is a program for logging into a remote machine and for 84executing commands on a remote machine. 85It is intended to replace 86rlogin and rsh, and provide secure encrypted communications between 87two untrusted hosts over an insecure network. 88X11 connections and 89arbitrary TCP/IP ports can also be forwarded over the secure channel. 90.Pp 91.Nm 92connects and logs into the specified 93.Ar hostname . 94The user must prove 95his/her identity to the remote machine using one of several methods 96depending on the protocol version used: 97.Pp 98.Ss SSH protocol version 1 99.Pp 100First, if the machine the user logs in from is listed in 101.Pa /etc/hosts.equiv 102or 103.Pa /etc/ssh/shosts.equiv 104on the remote machine, and the user names are 105the same on both sides, the user is immediately permitted to log in. 106Second, if 107.Pa \&.rhosts 108or 109.Pa \&.shosts 110exists in the user's home directory on the 111remote machine and contains a line containing the name of the client 112machine and the name of the user on that machine, the user is 113permitted to log in. 114This form of authentication alone is normally not 115allowed by the server because it is not secure. 116.Pp 117The second authentication method is the 118.Pa rhosts 119or 120.Pa hosts.equiv 121method combined with RSA-based host authentication. 122It means that if the login would be permitted by 123.Pa $HOME/.rhosts , 124.Pa $HOME/.shosts , 125.Pa /etc/hosts.equiv , 126or 127.Pa /etc/ssh/shosts.equiv , 128and if additionally the server can verify the client's 129host key (see 130.Pa /etc/ssh/ssh_known_hosts 131and 132.Pa $HOME/.ssh/known_hosts 133in the 134.Sx FILES 135section), only then login is permitted. 136This authentication method closes security holes due to IP 137spoofing, DNS spoofing and routing spoofing. 138[Note to the administrator: 139.Pa /etc/hosts.equiv , 140.Pa $HOME/.rhosts , 141and the rlogin/rsh protocol in general, are inherently insecure and should be 142disabled if security is desired.] 143.Pp 144As a third authentication method, 145.Nm 146supports RSA based authentication. 147The scheme is based on public-key cryptography: there are cryptosystems 148where encryption and decryption are done using separate keys, and it 149is not possible to derive the decryption key from the encryption key. 150RSA is one such system. 151The idea is that each user creates a public/private 152key pair for authentication purposes. 153The server knows the public key, and only the user knows the private key. 154The file 155.Pa $HOME/.ssh/authorized_keys 156lists the public keys that are permitted for logging 157in. 158When the user logs in, the 159.Nm 160program tells the server which key pair it would like to use for 161authentication. 162The server checks if this key is permitted, and if 163so, sends the user (actually the 164.Nm 165program running on behalf of the user) a challenge, a random number, 166encrypted by the user's public key. 167The challenge can only be 168decrypted using the proper private key. 169The user's client then decrypts the 170challenge using the private key, proving that he/she knows the private 171key but without disclosing it to the server. 172.Pp 173.Nm 174implements the RSA authentication protocol automatically. 175The user creates his/her RSA key pair by running 176.Xr ssh-keygen 1 . 177This stores the private key in 178.Pa $HOME/.ssh/identity 179and the public key in 180.Pa $HOME/.ssh/identity.pub 181in the user's home directory. 182The user should then copy the 183.Pa identity.pub 184to 185.Pa $HOME/.ssh/authorized_keys 186in his/her home directory on the remote machine (the 187.Pa authorized_keys 188file corresponds to the conventional 189.Pa $HOME/.rhosts 190file, and has one key 191per line, though the lines can be very long). 192After this, the user can log in without giving the password. 193RSA authentication is much 194more secure than rhosts authentication. 195.Pp 196The most convenient way to use RSA authentication may be with an 197authentication agent. 198See 199.Xr ssh-agent 1 200for more information. 201.Pp 202If other authentication methods fail, 203.Nm 204prompts the user for a password. 205The password is sent to the remote 206host for checking; however, since all communications are encrypted, 207the password cannot be seen by someone listening on the network. 208.Pp 209.Ss SSH protocol version 2 210.Pp 211When a user connects using protocol version 2 212similar authentication methods are available. 213Using the default values for 214.Cm PreferredAuthentications , 215the client will try to authenticate first using the hostbased method; 216if this method fails public key authentication is attempted, 217and finally if this method fails keyboard-interactive and 218password authentication are tried. 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_keys 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 ~~ 277or by following the tilde by a character other than those described below. 278The escape character must always follow a newline to be interpreted as 279special. 280The escape character can be changed in configuration files using the 281.Cm EscapeChar 282configuration directive or on the command line by the 283.Fl e 284option. 285.Pp 286The supported escapes (assuming the default 287.Ql ~ ) 288are: 289.Bl -tag -width Ds 290.It Cm ~. 291Disconnect 292.It Cm ~^Z 293Background ssh 294.It Cm ~# 295List forwarded connections 296.It Cm ~& 297Background ssh at logout when waiting for forwarded connection / X11 sessions 298to terminate 299.It Cm ~? 300Display a list of escape characters 301.It Cm ~C 302Open command line (only useful for adding port forwardings using the 303.Fl L 304and 305.Fl R 306options) 307.It Cm ~R 308Request rekeying of the connection (only useful for SSH protocol version 2 309and if the peer supports it) 310.El 311.Pp 312.Ss X11 and TCP forwarding 313.Pp 314If the 315.Cm ForwardX11 316variable is set to 317.Dq yes 318(or, see the description of the 319.Fl X 320and 321.Fl x 322options described later) 323and the user is using X11 (the 324.Ev DISPLAY 325environment variable is set), the connection to the X11 display is 326automatically forwarded to the remote side in such a way that any X11 327programs started from the shell (or command) will go through the 328encrypted channel, and the connection to the real X server will be made 329from the local machine. 330The user should not manually set 331.Ev DISPLAY . 332Forwarding of X11 connections can be 333configured on the command line or in configuration files. 334Take note that X11 forwarding can represent a security hazard. 335.Pp 336The 337.Ev DISPLAY 338value set by 339.Nm 340will point to the server machine, but with a display number greater 341than zero. 342This is normal, and happens because 343.Nm 344creates a 345.Dq proxy 346X server on the server machine for forwarding the 347connections over the encrypted channel. 348.Pp 349.Nm 350will also automatically set up Xauthority data on the server machine. 351For this purpose, it will generate a random authorization cookie, 352store it in Xauthority on the server, and verify that any forwarded 353connections carry this cookie and replace it by the real cookie when 354the connection is opened. 355The real authentication cookie is never 356sent to the server machine (and no cookies are sent in the plain). 357.Pp 358If the user is using an authentication agent, the connection to the agent 359is automatically forwarded to the remote side unless disabled on 360the command line or in a configuration file. 361.Pp 362Forwarding of arbitrary TCP/IP connections over the secure channel can 363be specified either on the command line or in a configuration file. 364One possible application of TCP/IP forwarding is a secure connection to an 365electronic purse; another is going through firewalls. 366.Pp 367.Ss Server authentication 368.Pp 369.Nm 370automatically maintains and checks a database containing 371identifications for all hosts it has ever been used with. 372Host keys are stored in 373.Pa $HOME/.ssh/known_hosts 374in the user's home directory. 375Additionally, the file 376.Pa /etc/ssh/ssh_known_hosts 377is automatically checked for known hosts. 378Any new hosts are automatically added to the user's file. 379If a host's identification 380ever changes, 381.Nm 382warns about this and disables password authentication to prevent a 383trojan horse from getting the user's password. 384Another purpose of 385this mechanism is to prevent man-in-the-middle attacks which could 386otherwise be used to circumvent the encryption. 387The 388.Cm StrictHostKeyChecking 389option can be used to prevent logins to machines whose 390host key is not known or has changed. 391.Pp 392The options are as follows: 393.Bl -tag -width Ds 394.It Fl a 395Disables forwarding of the authentication agent connection. 396.It Fl A 397Enables forwarding of the authentication agent connection. 398This can also be specified on a per-host basis in a configuration file. 399.It Fl b Ar bind_address 400Specify the interface to transmit from on machines with multiple 401interfaces or aliased addresses. 402.It Fl c Ar blowfish|3des|des 403Selects the cipher to use for encrypting the session. 404.Ar 3des 405is used by default. 406It is believed to be secure. 407.Ar 3des 408(triple-des) is an encrypt-decrypt-encrypt triple with three different keys. 409.Ar blowfish 410is a fast block cipher, it appears very secure and is much faster than 411.Ar 3des . 412.Ar des 413is only supported in the 414.Nm 415client for interoperability with legacy protocol 1 implementations 416that do not support the 417.Ar 3des 418cipher. Its use is strongly discouraged due to cryptographic 419weaknesses. 420.It Fl c Ar cipher_spec 421Additionally, for protocol version 2 a comma-separated list of ciphers can 422be specified in order of preference. 423See 424.Cm Ciphers 425for more information. 426.It Fl e Ar ch|^ch|none 427Sets the escape character for sessions with a pty (default: 428.Ql ~ ) . 429The escape character is only recognized at the beginning of a line. 430The escape character followed by a dot 431.Pq Ql \&. 432closes the connection, followed 433by control-Z suspends the connection, and followed by itself sends the 434escape character once. 435Setting the character to 436.Dq none 437disables any escapes and makes the session fully transparent. 438.It Fl f 439Requests 440.Nm 441to go to background just before command execution. 442This is useful if 443.Nm 444is going to ask for passwords or passphrases, but the user 445wants it in the background. 446This implies 447.Fl n . 448The recommended way to start X11 programs at a remote site is with 449something like 450.Ic ssh -f host xterm . 451.It Fl g 452Allows remote hosts to connect to local forwarded ports. 453.It Fl i Ar identity_file 454Selects a file from which the identity (private key) for 455RSA or DSA authentication is read. 456The default is 457.Pa $HOME/.ssh/identity 458for protocol version 1, and 459.Pa $HOME/.ssh/id_rsa 460and 461.Pa $HOME/.ssh/id_dsa 462for protocol version 2. 463Identity files may also be specified on 464a per-host basis in the configuration file. 465It is possible to have multiple 466.Fl i 467options (and multiple identities specified in 468configuration files). 469.It Fl I Ar smartcard_device 470Specifies which smartcard device to use. The argument is 471the device 472.Nm 473should use to communicate with a smartcard used for storing the user's 474private RSA key. 475.It Fl k 476Disables forwarding of Kerberos tickets and AFS tokens. 477This may also be specified on a per-host basis in the configuration file. 478.It Fl l Ar login_name 479Specifies the user to log in as on the remote machine. 480This also may be specified on a per-host basis in the configuration file. 481.It Fl m Ar mac_spec 482Additionally, for protocol version 2 a comma-separated list of MAC 483(message authentication code) algorithms can 484be specified in order of preference. 485See the 486.Cm MACs 487keyword for more information. 488.It Fl n 489Redirects stdin from 490.Pa /dev/null 491(actually, prevents reading from stdin). 492This must be used when 493.Nm 494is run in the background. 495A common trick is to use this to run X11 programs on a remote machine. 496For example, 497.Ic ssh -n shadows.cs.hut.fi emacs & 498will start an emacs on shadows.cs.hut.fi, and the X11 499connection will be automatically forwarded over an encrypted channel. 500The 501.Nm 502program will be put in the background. 503(This does not work if 504.Nm 505needs to ask for a password or passphrase; see also the 506.Fl f 507option.) 508.It Fl N 509Do not execute a remote command. 510This is useful for just forwarding ports 511(protocol version 2 only). 512.It Fl o Ar option 513Can be used to give options in the format used in the configuration file. 514This is useful for specifying options for which there is no separate 515command-line flag. 516.It Fl p Ar port 517Port to connect to on the remote host. 518This can be specified on a 519per-host basis in the configuration file. 520.It Fl P 521Use a non-privileged port for outgoing connections. 522This can be used if a firewall does 523not permit connections from privileged ports. 524Note that this option turns off 525.Cm RhostsAuthentication 526and 527.Cm RhostsRSAAuthentication 528for older servers. 529.It Fl q 530Quiet mode. 531Causes all warning and diagnostic messages to be suppressed. 532.It Fl s 533May be used to request invocation of a subsystem on the remote system. Subsystems are a feature of the SSH2 protocol which facilitate the use 534of SSH as a secure transport for other applications (eg. sftp). The 535subsystem is specified as the remote command. 536.It Fl t 537Force pseudo-tty allocation. 538This can be used to execute arbitrary 539screen-based programs on a remote machine, which can be very useful, 540e.g., when implementing menu services. 541Multiple 542.Fl t 543options force tty allocation, even if 544.Nm 545has no local tty. 546.It Fl T 547Disable pseudo-tty allocation. 548.It Fl v 549Verbose mode. 550Causes 551.Nm 552to print debugging messages about its progress. 553This is helpful in 554debugging connection, authentication, and configuration problems. 555Multiple 556.Fl v 557options increases the verbosity. 558Maximum is 3. 559.It Fl x 560Disables X11 forwarding. 561.It Fl X 562Enables X11 forwarding. 563This can also be specified on a per-host basis in a configuration file. 564.It Fl C 565Requests compression of all data (including stdin, stdout, stderr, and 566data for forwarded X11 and TCP/IP connections). 567The compression algorithm is the same used by 568.Xr gzip 1 , 569and the 570.Dq level 571can be controlled by the 572.Cm CompressionLevel 573option. 574Compression is desirable on modem lines and other 575slow connections, but will only slow down things on fast networks. 576The default value can be set on a host-by-host basis in the 577configuration files; see the 578.Cm Compression 579option. 580.It Fl F Ar configfile 581Specifies an alternative per-user configuration file. 582If a configuration file is given on the command line, 583the system-wide configuration file 584.Pq Pa /etc/ssh/ssh_config 585will be ignored. 586The default for the per-user configuration file is 587.Pa $HOME/.ssh/config . 588.It Fl L Ar port:host:hostport 589Specifies that the given port on the local (client) host is to be 590forwarded to the given host and port on the remote side. 591This works by allocating a socket to listen to 592.Ar port 593on the local side, and whenever a connection is made to this port, the 594connection is forwarded over the secure channel, and a connection is 595made to 596.Ar host 597port 598.Ar hostport 599from the remote machine. 600Port forwardings can also be specified in the configuration file. 601Only root can forward privileged ports. 602IPv6 addresses can be specified with an alternative syntax: 603.Ar port/host/hostport 604.It Fl R Ar port:host:hostport 605Specifies that the given port on the remote (server) host is to be 606forwarded to the given host and port on the local side. 607This works by allocating a socket to listen to 608.Ar port 609on the remote side, and whenever a connection is made to this port, the 610connection is forwarded over the secure channel, and a connection is 611made to 612.Ar host 613port 614.Ar hostport 615from the local machine. 616Port forwardings can also be specified in the configuration file. 617Privileged ports can be forwarded only when 618logging in as root on the remote machine. 619IPv6 addresses can be specified with an alternative syntax: 620.Ar port/host/hostport 621.It Fl D Ar port 622Specifies a local 623.Dq dynamic 624application-level port forwarding. 625This works by allocating a socket to listen to 626.Ar port 627on the local side, and whenever a connection is made to this port, the 628connection is forwarded over the secure channel, and the application 629protocol is then used to determine where to connect to from the 630remote machine. Currently the SOCKS4 protocol is supported, and 631.Nm 632will act as a SOCKS4 server. 633Only root can forward privileged ports. 634Dynamic port forwardings can also be specified in the configuration file. 635.It Fl 1 636Forces 637.Nm 638to try protocol version 1 only. 639.It Fl 2 640Forces 641.Nm 642to try protocol version 2 only. 643.It Fl 4 644Forces 645.Nm 646to use IPv4 addresses only. 647.It Fl 6 648Forces 649.Nm 650to use IPv6 addresses only. 651.El 652.Sh CONFIGURATION FILES 653.Nm 654may additionally obtain configuration data from 655a per-user configuration file and a system-wide configuration file. 656The file format and configuration options are described in 657.Xr ssh_config 5 . 658.Sh ENVIRONMENT 659.Nm 660will normally set the following environment variables: 661.Bl -tag -width Ds 662.It Ev DISPLAY 663The 664.Ev DISPLAY 665variable indicates the location of the X11 server. 666It is automatically set by 667.Nm 668to point to a value of the form 669.Dq hostname:n 670where hostname indicates 671the host where the shell runs, and n is an integer \*(>= 1. 672.Nm 673uses this special value to forward X11 connections over the secure 674channel. 675The user should normally not set 676.Ev DISPLAY 677explicitly, as that 678will render the X11 connection insecure (and will require the user to 679manually copy any required authorization cookies). 680.It Ev HOME 681Set to the path of the user's home directory. 682.It Ev LOGNAME 683Synonym for 684.Ev USER ; 685set for compatibility with systems that use this variable. 686.It Ev MAIL 687Set to the path of the user's mailbox. 688.It Ev PATH 689Set to the default 690.Ev PATH , 691as specified when compiling 692.Nm ssh . 693.It Ev SSH_ASKPASS 694If 695.Nm 696needs a passphrase, it will read the passphrase from the current 697terminal if it was run from a terminal. 698If 699.Nm 700does not have a terminal associated with it but 701.Ev DISPLAY 702and 703.Ev SSH_ASKPASS 704are set, it will execute the program specified by 705.Ev SSH_ASKPASS 706and open an X11 window to read the passphrase. 707This is particularly useful when calling 708.Nm 709from a 710.Pa .Xsession 711or related script. 712(Note that on some machines it 713may be necessary to redirect the input from 714.Pa /dev/null 715to make this work.) 716.It Ev SSH_AUTH_SOCK 717Identifies the path of a unix-domain socket used to communicate with the 718agent. 719.It Ev SSH_CLIENT 720Identifies the client end of the connection. 721The variable contains 722three space-separated values: client ip-address, client port number, 723and server port number. 724.It Ev SSH_ORIGINAL_COMMAND 725The variable contains the original command line if a forced command 726is executed. 727It can be used to extract the original arguments. 728.It Ev SSH_TTY 729This is set to the name of the tty (path to the device) associated 730with the current shell or command. 731If the current session has no tty, 732this variable is not set. 733.It Ev TZ 734The timezone variable is set to indicate the present timezone if it 735was set when the daemon was started (i.e., the daemon passes the value 736on to new connections). 737.It Ev USER 738Set to the name of the user logging in. 739.El 740.Pp 741Additionally, 742.Nm 743reads 744.Pa $HOME/.ssh/environment , 745and adds lines of the format 746.Dq VARNAME=value 747to the environment. 748.Sh FILES 749.Bl -tag -width Ds 750.It Pa $HOME/.ssh/known_hosts 751Records host keys for all hosts the user has logged into that are not 752in 753.Pa /etc/ssh/ssh_known_hosts . 754See 755.Xr sshd 8 . 756.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa 757Contains the authentication identity of the user. 758They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively. 759These files 760contain sensitive data and should be readable by the user but not 761accessible by others (read/write/execute). 762Note that 763.Nm 764ignores a private key file if it is accessible by others. 765It is possible to specify a passphrase when 766generating the key; the passphrase will be used to encrypt the 767sensitive part of this file using 3DES. 768.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub 769Contains the public key for authentication (public part of the 770identity file in human-readable form). 771The contents of the 772.Pa $HOME/.ssh/identity.pub 773file should be added to 774.Pa $HOME/.ssh/authorized_keys 775on all machines 776where the user wishes to log in using protocol version 1 RSA authentication. 777The contents of the 778.Pa $HOME/.ssh/id_dsa.pub 779and 780.Pa $HOME/.ssh/id_rsa.pub 781file should be added to 782.Pa $HOME/.ssh/authorized_keys 783on all machines 784where the user wishes to log in using protocol version 2 DSA/RSA authentication. 785These files are not 786sensitive and can (but need not) be readable by anyone. 787These files are 788never used automatically and are not necessary; they are only provided for 789the convenience of the user. 790.It Pa $HOME/.ssh/config 791This is the per-user configuration file. 792The file format and configuration options are described in 793.Xr ssh_config 5 . 794.It Pa $HOME/.ssh/authorized_keys 795Lists the public keys (RSA/DSA) that can be used for logging in as this user. 796The format of this file is described in the 797.Xr sshd 8 798manual page. 799In the simplest form the format is the same as the .pub 800identity files. 801This file is not highly sensitive, but the recommended 802permissions are read/write for the user, and not accessible by others. 803.It Pa /etc/ssh/ssh_known_hosts 804Systemwide list of known host keys. 805This file should be prepared by the 806system administrator to contain the public host keys of all machines in the 807organization. 808This file should be world-readable. 809This file contains 810public keys, one per line, in the following format (fields separated 811by spaces): system name, public key and optional comment field. 812When different names are used 813for the same machine, all such names should be listed, separated by 814commas. 815The format is described on the 816.Xr sshd 8 817manual page. 818.Pp 819The canonical system name (as returned by name servers) is used by 820.Xr sshd 8 821to verify the client host when logging in; other names are needed because 822.Nm 823does not convert the user-supplied name to a canonical name before 824checking the key, because someone with access to the name servers 825would then be able to fool host authentication. 826.It Pa /etc/ssh/ssh_config 827Systemwide configuration file. 828The file format and configuration options are described in 829.Xr ssh_config 5 . 830.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key, /etc/ssh/ssh_host_rsa_key 831These three files contain the private parts of the host keys 832and are used for 833.Cm RhostsRSAAuthentication 834and 835.Cm HostbasedAuthentication . 836If the protocol version 1 837.Cm RhostsRSAAuthentication 838method is used, 839.Nm 840must be setuid root, since the host key is readable only by root. 841For protocol version 2, 842.Nm 843uses 844.Xr ssh-keysign 8 845to access the host keys for 846.Cm HostbasedAuthentication . 847This eliminates the requirement that 848.Nm 849be setuid root when that authentication method is used. 850By default 851.Nm 852is not setuid root. 853.It Pa $HOME/.rhosts 854This file is used in 855.Pa \&.rhosts 856authentication to list the 857host/user pairs that are permitted to log in. 858(Note that this file is 859also used by rlogin and rsh, which makes using this file insecure.) 860Each line of the file contains a host name (in the canonical form 861returned by name servers), and then a user name on that host, 862separated by a space. 863On some machines this file may need to be 864world-readable if the user's home directory is on a NFS partition, 865because 866.Xr sshd 8 867reads it as root. 868Additionally, this file must be owned by the user, 869and must not have write permissions for anyone else. 870The recommended 871permission for most machines is read/write for the user, and not 872accessible by others. 873.Pp 874Note that by default 875.Xr sshd 8 876will be installed so that it requires successful RSA host 877authentication before permitting \s+2.\s0rhosts authentication. 878If the server machine does not have the client's host key in 879.Pa /etc/ssh/ssh_known_hosts , 880it can be stored in 881.Pa $HOME/.ssh/known_hosts . 882The easiest way to do this is to 883connect back to the client from the server machine using ssh; this 884will automatically add the host key to 885.Pa $HOME/.ssh/known_hosts . 886.It Pa $HOME/.shosts 887This file is used exactly the same way as 888.Pa \&.rhosts . 889The purpose for 890having this file is to be able to use rhosts authentication with 891.Nm 892without permitting login with 893.Nm rlogin 894or 895.Xr rsh 1 . 896.It Pa /etc/hosts.equiv 897This file is used during 898.Pa \&.rhosts 899authentication. 900It contains 901canonical hosts names, one per line (the full format is described on 902the 903.Xr sshd 8 904manual page). 905If the client host is found in this file, login is 906automatically permitted provided client and server user names are the 907same. 908Additionally, successful RSA host authentication is normally 909required. 910This file should only be writable by root. 911.It Pa /etc/ssh/shosts.equiv 912This file is processed exactly as 913.Pa /etc/hosts.equiv . 914This file may be useful to permit logins using 915.Nm 916but not using rsh/rlogin. 917.It Pa /etc/ssh/sshrc 918Commands in this file are executed by 919.Nm 920when the user logs in just before the user's shell (or command) is started. 921See the 922.Xr sshd 8 923manual page for more information. 924.It Pa $HOME/.ssh/rc 925Commands in this file are executed by 926.Nm 927when the user logs in just before the user's shell (or command) is 928started. 929See the 930.Xr sshd 8 931manual page for more information. 932.It Pa $HOME/.ssh/environment 933Contains additional definitions for environment variables, see section 934.Sx ENVIRONMENT 935above. 936.El 937.Sh DIAGNOSTICS 938.Nm 939exits with the exit status of the remote command or with 255 940if an error occurred. 941.Sh AUTHORS 942OpenSSH is a derivative of the original and free 943ssh 1.2.12 release by Tatu Ylonen. 944Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, 945Theo de Raadt and Dug Song 946removed many bugs, re-added newer features and 947created OpenSSH. 948Markus Friedl contributed the support for SSH 949protocol versions 1.5 and 2.0. 950.Sh SEE ALSO 951.Xr rsh 1 , 952.Xr scp 1 , 953.Xr sftp 1 , 954.Xr ssh-add 1 , 955.Xr ssh-agent 1 , 956.Xr ssh-keygen 1 , 957.Xr telnet 1 , 958.Xr ssh_config 5 , 959.Xr ssh-keysign 8 , 960.Xr sshd 8 961.Rs 962.%A T. Ylonen 963.%A T. Kivinen 964.%A M. Saarinen 965.%A T. Rinne 966.%A S. Lehtinen 967.%T "SSH Protocol Architecture" 968.%N draft-ietf-secsh-architecture-12.txt 969.%D January 2002 970.%O work in progress material 971.Re 972