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: sshd.8,v 1.208 2005/06/08 03:50:00 djm Exp $ 38.\" $FreeBSD$ 39.Dd September 25, 1999 40.Dt SSHD 8 41.Os 42.Sh NAME 43.Nm sshd 44.Nd OpenSSH SSH daemon 45.Sh SYNOPSIS 46.Nm sshd 47.Bk -words 48.Op Fl 46Ddeiqt 49.Op Fl b Ar bits 50.Op Fl f Ar config_file 51.Op Fl g Ar login_grace_time 52.Op Fl h Ar host_key_file 53.Op Fl k Ar key_gen_time 54.Op Fl o Ar option 55.Op Fl p Ar port 56.Op Fl u Ar len 57.Ek 58.Sh DESCRIPTION 59.Nm 60(SSH Daemon) is the daemon program for 61.Xr ssh 1 . 62Together these programs replace rlogin and rsh, and 63provide secure encrypted communications between two untrusted hosts 64over an insecure network. 65The programs are intended to be as easy to 66install and use as possible. 67.Pp 68.Nm 69is the daemon that listens for connections from clients. 70It is normally started at boot from 71.Pa /etc/rc.d/sshd . 72It forks a new 73daemon for each incoming connection. 74The forked daemons handle 75key exchange, encryption, authentication, command execution, 76and data exchange. 77This implementation of 78.Nm 79supports both SSH protocol version 1 and 2 simultaneously. 80.Nm 81works as follows: 82.Ss SSH protocol version 1 83Each host has a host-specific RSA key 84(normally 2048 bits) used to identify the host. 85Additionally, when 86the daemon starts, it generates a server RSA key (normally 768 bits). 87This key is normally regenerated every hour if it has been used, and 88is never stored on disk. 89.Pp 90Whenever a client connects, the daemon responds with its public 91host and server keys. 92The client compares the 93RSA host key against its own database to verify that it has not changed. 94The client then generates a 256-bit random number. 95It encrypts this 96random number using both the host key and the server key, and sends 97the encrypted number to the server. 98Both sides then use this 99random number as a session key which is used to encrypt all further 100communications in the session. 101The rest of the session is encrypted 102using a conventional cipher, currently Blowfish or 3DES, with 3DES 103being used by default. 104The client selects the encryption algorithm 105to use from those offered by the server. 106.Pp 107Next, the server and the client enter an authentication dialog. 108The client tries to authenticate itself using 109.Em .rhosts 110authentication combined with RSA host 111authentication, RSA challenge-response authentication, or password 112based authentication. 113.Pp 114Regardless of the authentication type, the account is checked to 115ensure that it is accessible. An account is not accessible if it is 116locked, listed in 117.Cm DenyUsers 118or its group is listed in 119.Cm DenyGroups 120\&. The definition of a locked account is system dependant. Some platforms 121have their own account database (eg AIX) and some modify the passwd field ( 122.Ql \&*LK\&* 123on Solaris, 124.Ql \&* 125on HP-UX, containing 126.Ql Nologin 127on Tru64 and a leading 128.Ql \&!! 129on Linux). If there is a requirement to disable password authentication 130for the account while allowing still public-key, then the passwd field 131should be set to something other than these values (eg 132.Ql NP 133or 134.Ql \&*NP\&* 135). 136.Pp 137.Nm rshd , 138.Nm rlogind , 139and 140.Nm rexecd 141are disabled (thus completely disabling 142.Xr rlogin 143and 144.Xr rsh 145into the machine). 146.Ss SSH protocol version 2 147Version 2 works similarly: 148Each host has a host-specific key (RSA or DSA) used to identify the host. 149However, when the daemon starts, it does not generate a server key. 150Forward security is provided through a Diffie-Hellman key agreement. 151This key agreement results in a shared session key. 152.Pp 153The rest of the session is encrypted using a symmetric cipher, currently 154128-bit AES, Blowfish, 3DES, CAST128, Arcfour, 192-bit AES, or 256-bit AES. 155The client selects the encryption algorithm 156to use from those offered by the server. 157Additionally, session integrity is provided 158through a cryptographic message authentication code 159(hmac-sha1 or hmac-md5). 160.Pp 161Protocol version 2 provides a public key based 162user (PubkeyAuthentication) or 163client host (HostbasedAuthentication) authentication method, 164conventional password authentication and challenge response based methods. 165.Ss Command execution and data forwarding 166If the client successfully authenticates itself, a dialog for 167preparing the session is entered. 168At this time the client may request 169things like allocating a pseudo-tty, forwarding X11 connections, 170forwarding TCP/IP connections, or forwarding the authentication agent 171connection over the secure channel. 172.Pp 173Finally, the client either requests a shell or execution of a command. 174The sides then enter session mode. 175In this mode, either side may send 176data at any time, and such data is forwarded to/from the shell or 177command on the server side, and the user terminal in the client side. 178.Pp 179When the user program terminates and all forwarded X11 and other 180connections have been closed, the server sends command exit status to 181the client, and both sides exit. 182.Pp 183.Nm 184can be configured using command-line options or a configuration file 185(by default 186.Xr sshd_config 5 ) . 187Command-line options override values specified in the 188configuration file. 189.Pp 190.Nm 191rereads its configuration file when it receives a hangup signal, 192.Dv SIGHUP , 193by executing itself with the name and options it was started with, e.g., 194.Pa /usr/sbin/sshd . 195.Pp 196The options are as follows: 197.Bl -tag -width Ds 198.It Fl 4 199Forces 200.Nm 201to use IPv4 addresses only. 202.It Fl 6 203Forces 204.Nm 205to use IPv6 addresses only. 206.It Fl b Ar bits 207Specifies the number of bits in the ephemeral protocol version 1 208server key (default 768). 209.It Fl D 210When this option is specified, 211.Nm 212will not detach and does not become a daemon. 213This allows easy monitoring of 214.Nm sshd . 215.It Fl d 216Debug mode. 217The server sends verbose debug output to the system 218log, and does not put itself in the background. 219The server also will not fork and will only process one connection. 220This option is only intended for debugging for the server. 221Multiple 222.Fl d 223options increase the debugging level. 224Maximum is 3. 225.It Fl e 226When this option is specified, 227.Nm 228will send the output to the standard error instead of the system log. 229.It Fl f Ar configuration_file 230Specifies the name of the configuration file. 231The default is 232.Pa /etc/ssh/sshd_config . 233.Nm 234refuses to start if there is no configuration file. 235.It Fl g Ar login_grace_time 236Gives the grace time for clients to authenticate themselves (default 237120 seconds). 238If the client fails to authenticate the user within 239this many seconds, the server disconnects and exits. 240A value of zero indicates no limit. 241.It Fl h Ar host_key_file 242Specifies a file from which a host key is read. 243This option must be given if 244.Nm 245is not run as root (as the normal 246host key files are normally not readable by anyone but root). 247The default is 248.Pa /etc/ssh/ssh_host_key 249for protocol version 1, and 250.Pa /etc/ssh/ssh_host_dsa_key 251for protocol version 2. 252It is possible to have multiple host key files for 253the different protocol versions and host key algorithms. 254.It Fl i 255Specifies that 256.Nm 257is being run from 258.Xr inetd 8 . 259.Nm 260is normally not run 261from inetd because it needs to generate the server key before it can 262respond to the client, and this may take tens of seconds. 263Clients would have to wait too long if the key was regenerated every time. 264However, with small key sizes (e.g., 512) using 265.Nm 266from inetd may 267be feasible. 268.It Fl k Ar key_gen_time 269Specifies how often the ephemeral protocol version 1 server key is 270regenerated (default 3600 seconds, or one hour). 271The motivation for regenerating the key fairly 272often is that the key is not stored anywhere, and after about an hour 273it becomes impossible to recover the key for decrypting intercepted 274communications even if the machine is cracked into or physically 275seized. 276A value of zero indicates that the key will never be regenerated. 277.It Fl o Ar option 278Can be used to give options in the format used in the configuration file. 279This is useful for specifying options for which there is no separate 280command-line flag. 281For full details of the options, and their values, see 282.Xr sshd_config 5 . 283.It Fl p Ar port 284Specifies the port on which the server listens for connections 285(default 22). 286Multiple port options are permitted. 287Ports specified in the configuration file are ignored when a 288command-line port is specified. 289.It Fl q 290Quiet mode. 291Nothing is sent to the system log. 292Normally the beginning, 293authentication, and termination of each connection is logged. 294.It Fl t 295Test mode. 296Only check the validity of the configuration file and sanity of the keys. 297This is useful for updating 298.Nm 299reliably as configuration options may change. 300.It Fl u Ar len 301This option is used to specify the size of the field 302in the 303.Li utmp 304structure that holds the remote host name. 305If the resolved host name is longer than 306.Ar len , 307the dotted decimal value will be used instead. 308This allows hosts with very long host names that 309overflow this field to still be uniquely identified. 310Specifying 311.Fl u0 312indicates that only dotted decimal addresses 313should be put into the 314.Pa utmp 315file. 316.Fl u0 317may also be used to prevent 318.Nm 319from making DNS requests unless the authentication 320mechanism or configuration requires it. 321Authentication mechanisms that may require DNS include 322.Cm RhostsRSAAuthentication , 323.Cm HostbasedAuthentication 324and using a 325.Cm from="pattern-list" 326option in a key file. 327Configuration options that require DNS include using a 328USER@HOST pattern in 329.Cm AllowUsers 330or 331.Cm DenyUsers . 332.El 333.Sh CONFIGURATION FILE 334.Nm 335reads configuration data from 336.Pa /etc/ssh/sshd_config 337(or the file specified with 338.Fl f 339on the command line). 340The file format and configuration options are described in 341.Xr sshd_config 5 . 342.Sh LOGIN PROCESS 343When a user successfully logs in, 344.Nm 345does the following: 346.Bl -enum -offset indent 347.It 348If the login is on a tty, and no command has been specified, 349prints last login time and 350.Pa /etc/motd 351(unless prevented in the configuration file or by 352.Pa ~/.hushlogin ; 353see the 354.Sx FILES 355section). 356.It 357If the login is on a tty, records login time. 358.It 359Checks 360.Pa /etc/nologin and 361.Pa /var/run/nologin ; 362if one exists, it prints the contents and quits 363(unless root). 364.It 365Changes to run with normal user privileges. 366.It 367Sets up basic environment. 368.It 369Reads the file 370.Pa ~/.ssh/environment , 371if it exists, and users are allowed to change their environment. 372See the 373.Cm PermitUserEnvironment 374option in 375.Xr sshd_config 5 . 376.It 377Changes to user's home directory. 378.It 379If 380.Pa ~/.ssh/rc 381exists, runs it; else if 382.Pa /etc/ssh/sshrc 383exists, runs 384it; otherwise runs 385.Xr xauth 1 . 386The 387.Dq rc 388files are given the X11 389authentication protocol and cookie (if applicable) in standard input. 390.It 391Runs user's shell or command. 392.El 393.Sh AUTHORIZED_KEYS FILE FORMAT 394.Pa ~/.ssh/authorized_keys 395is the default file that lists the public keys that are 396permitted for RSA authentication in protocol version 1 397and for public key authentication (PubkeyAuthentication) 398in protocol version 2. 399.Cm AuthorizedKeysFile 400may be used to specify an alternative file. 401.Pp 402Each line of the file contains one 403key (empty lines and lines starting with a 404.Ql # 405are ignored as 406comments). 407Each RSA public key consists of the following fields, separated by 408spaces: options, bits, exponent, modulus, comment. 409Each protocol version 2 public key consists of: 410options, keytype, base64 encoded key, comment. 411The options field 412is optional; its presence is determined by whether the line starts 413with a number or not (the options field never starts with a number). 414The bits, exponent, modulus and comment fields give the RSA key for 415protocol version 1; the 416comment field is not used for anything (but may be convenient for the 417user to identify the key). 418For protocol version 2 the keytype is 419.Dq ssh-dss 420or 421.Dq ssh-rsa . 422.Pp 423Note that lines in this file are usually several hundred bytes long 424(because of the size of the public key encoding) up to a limit of 4258 kilobytes, which permits DSA keys up to 8 kilobits and RSA 426keys up to 16 kilobits. 427You don't want to type them in; instead, copy the 428.Pa identity.pub , 429.Pa id_dsa.pub 430or the 431.Pa id_rsa.pub 432file and edit it. 433.Pp 434.Nm 435enforces a minimum RSA key modulus size for protocol 1 436and protocol 2 keys of 768 bits. 437.Pp 438The options (if present) consist of comma-separated option 439specifications. 440No spaces are permitted, except within double quotes. 441The following option specifications are supported (note 442that option keywords are case-insensitive): 443.Bl -tag -width Ds 444.It Cm from="pattern-list" 445Specifies that in addition to public key authentication, the canonical name 446of the remote host must be present in the comma-separated list of 447patterns 448.Pf ( Ql \&* 449and 450.Ql \&? 451serve as wildcards). 452The list may also contain 453patterns negated by prefixing them with 454.Ql \&! ; 455if the canonical host name matches a negated pattern, the key is not accepted. 456The purpose 457of this option is to optionally increase security: public key authentication 458by itself does not trust the network or name servers or anything (but 459the key); however, if somebody somehow steals the key, the key 460permits an intruder to log in from anywhere in the world. 461This additional option makes using a stolen key more difficult (name 462servers and/or routers would have to be compromised in addition to 463just the key). 464.It Cm command="command" 465Specifies that the command is executed whenever this key is used for 466authentication. 467The command supplied by the user (if any) is ignored. 468The command is run on a pty if the client requests a pty; 469otherwise it is run without a tty. 470If an 8-bit clean channel is required, 471one must not request a pty or should specify 472.Cm no-pty . 473A quote may be included in the command by quoting it with a backslash. 474This option might be useful 475to restrict certain public keys to perform just a specific operation. 476An example might be a key that permits remote backups but nothing else. 477Note that the client may specify TCP/IP and/or X11 478forwarding unless they are explicitly prohibited. 479Note that this option applies to shell, command or subsystem execution. 480.It Cm environment="NAME=value" 481Specifies that the string is to be added to the environment when 482logging in using this key. 483Environment variables set this way 484override other default environment values. 485Multiple options of this type are permitted. 486Environment processing is disabled by default and is 487controlled via the 488.Cm PermitUserEnvironment 489option. 490This option is automatically disabled if 491.Cm UseLogin 492is enabled. 493.It Cm no-port-forwarding 494Forbids TCP/IP forwarding when this key is used for authentication. 495Any port forward requests by the client will return an error. 496This might be used, e.g., in connection with the 497.Cm command 498option. 499.It Cm no-X11-forwarding 500Forbids X11 forwarding when this key is used for authentication. 501Any X11 forward requests by the client will return an error. 502.It Cm no-agent-forwarding 503Forbids authentication agent forwarding when this key is used for 504authentication. 505.It Cm no-pty 506Prevents tty allocation (a request to allocate a pty will fail). 507.It Cm permitopen="host:port" 508Limit local 509.Li ``ssh -L'' 510port forwarding such that it may only connect to the specified host and 511port. 512IPv6 addresses can be specified with an alternative syntax: 513.Ar host Ns / Ns Ar port . 514Multiple 515.Cm permitopen 516options may be applied separated by commas. 517No pattern matching is performed on the specified hostnames, 518they must be literal domains or addresses. 519.El 520.Ss Examples 5211024 33 12121...312314325 ylo@foo.bar 522.Pp 523from="*.niksula.hut.fi,!pc.niksula.hut.fi" 1024 35 23...2334 ylo@niksula 524.Pp 525command="dump /home",no-pty,no-port-forwarding 1024 33 23...2323 backup.hut.fi 526.Pp 527permitopen="10.2.1.55:80",permitopen="10.2.1.56:25" 1024 33 23...2323 528.Sh SSH_KNOWN_HOSTS FILE FORMAT 529The 530.Pa /etc/ssh/ssh_known_hosts 531and 532.Pa ~/.ssh/known_hosts 533files contain host public keys for all known hosts. 534The global file should 535be prepared by the administrator (optional), and the per-user file is 536maintained automatically: whenever the user connects from an unknown host 537its key is added to the per-user file. 538.Pp 539Each line in these files contains the following fields: hostnames, 540bits, exponent, modulus, comment. 541The fields are separated by spaces. 542.Pp 543Hostnames is a comma-separated list of patterns 544.Pf ( Ql \&* 545and 546.Ql \&? 547act as 548wildcards); each pattern in turn is matched against the canonical host 549name (when authenticating a client) or against the user-supplied 550name (when authenticating a server). 551A pattern may also be preceded by 552.Ql \&! 553to indicate negation: if the host name matches a negated 554pattern, it is not accepted (by that line) even if it matched another 555pattern on the line. 556.Pp 557Alternately, hostnames may be stored in a hashed form which hides host names 558and addresses should the file's contents be disclosed. 559Hashed hostnames start with a 560.Ql | 561character. 562Only one hashed hostname may appear on a single line and none of the above 563negation or wildcard operators may be applied. 564.Pp 565Bits, exponent, and modulus are taken directly from the RSA host key; they 566can be obtained, e.g., from 567.Pa /etc/ssh/ssh_host_key.pub . 568The optional comment field continues to the end of the line, and is not used. 569.Pp 570Lines starting with 571.Ql # 572and empty lines are ignored as comments. 573.Pp 574When performing host authentication, authentication is accepted if any 575matching line has the proper key. 576It is thus permissible (but not 577recommended) to have several lines or different host keys for the same 578names. 579This will inevitably happen when short forms of host names 580from different domains are put in the file. 581It is possible 582that the files contain conflicting information; authentication is 583accepted if valid information can be found from either file. 584.Pp 585Note that the lines in these files are typically hundreds of characters 586long, and you definitely don't want to type in the host keys by hand. 587Rather, generate them by a script 588or by taking 589.Pa /etc/ssh/ssh_host_key.pub 590and adding the host names at the front. 591.Ss Examples 592.Bd -literal 593closenet,...,130.233.208.41 1024 37 159...93 closenet.hut.fi 594cvs.openbsd.org,199.185.137.3 ssh-rsa AAAA1234.....= 595.Ed 596.Bd -literal 597# A hashed hostname 598|1|JfKTdBh7rNbXkVAQCRp4OQoPfmI=|USECr3SWf1JUPsms5AqfD5QfxkM= ssh-rsa 599AAAA1234.....= 600.Ed 601.Sh FILES 602.Bl -tag -width Ds 603.It Pa /etc/ssh/sshd_config 604Contains configuration data for 605.Nm sshd . 606The file format and configuration options are described in 607.Xr sshd_config 5 . 608.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key 609These two files contain the private parts of the host keys. 610These files should only be owned by root, readable only by root, and not 611accessible to others. 612Note that 613.Nm 614does not start if this file is group/world-accessible. 615.It Pa /etc/ssh/ssh_host_key.pub, /etc/ssh/ssh_host_dsa_key.pub 616These two files contain the public parts of the host keys. 617These files should be world-readable but writable only by 618root. 619Their contents should match the respective private parts. 620These files are not 621really used for anything; they are provided for the convenience of 622the user so their contents can be copied to known hosts files. 623These files are created using 624.Xr ssh-keygen 1 . 625.It Pa /etc/ssh/moduli 626Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange". 627The file format is described in 628.Xr moduli 5 . 629.It Pa /var/empty 630.Xr chroot 2 631directory used by 632.Nm 633during privilege separation in the pre-authentication phase. 634The directory should not contain any files and must be owned by root 635and not group or world-writable. 636.It Pa /var/run/sshd.pid 637Contains the process ID of the 638.Nm 639listening for connections (if there are several daemons running 640concurrently for different ports, this contains the process ID of the one 641started last). 642The content of this file is not sensitive; it can be world-readable. 643.It Pa ~/.ssh/authorized_keys 644Lists the public keys (RSA or DSA) that can be used to log into the user's account. 645This file must be readable by root (which may on some machines imply 646it being world-readable if the user's home directory resides on an NFS 647volume). 648It is recommended that it not be accessible by others. 649The format of this file is described above. 650Users will place the contents of their 651.Pa identity.pub , 652.Pa id_dsa.pub 653and/or 654.Pa id_rsa.pub 655files into this file, as described in 656.Xr ssh-keygen 1 . 657.It Pa "/etc/ssh/ssh_known_hosts", "~/.ssh/known_hosts" 658These files are consulted when using rhosts with RSA host 659authentication or protocol version 2 hostbased authentication 660to check the public key of the host. 661The key must be listed in one of these files to be accepted. 662The client uses the same files 663to verify that it is connecting to the correct remote host. 664These files should be writable only by root/the owner. 665.Pa /etc/ssh/ssh_known_hosts 666should be world-readable, and 667.Pa ~/.ssh/known_hosts 668can, but need not be, world-readable. 669.It Pa /etc/motd 670See 671.Xr motd 5 . 672.It Pa ~/.hushlogin 673This file is used to suppress printing the last login time and 674.Pa /etc/motd , 675if 676.Cm PrintLastLog 677and 678.Cm PrintMotd , 679respectively, 680are enabled. 681It does not suppress printing of the banner specified by 682.Cm Banner . 683.It Pa /etc/nologin 684If this file exists, 685.Nm 686refuses to let anyone except root log in. 687The contents of the file 688are displayed to anyone trying to log in, and non-root connections are 689refused. 690The file should be world-readable. 691.It Pa /etc/hosts.allow, /etc/hosts.deny 692Access controls that should be enforced by tcp-wrappers are defined here. 693Further details are described in 694.Xr hosts_access 5 . 695.It Pa ~/.rhosts 696This file is used during 697.Cm RhostsRSAAuthentication 698and 699.Cm HostbasedAuthentication 700and contains host-username pairs, separated by a space, one per 701line. 702The given user on the corresponding host is permitted to log in 703without a password. 704The same file is used by rlogind and rshd. 705The file must 706be writable only by the user; it is recommended that it not be 707accessible by others. 708.Pp 709It is also possible to use netgroups in the file. 710Either host or user 711name may be of the form +@groupname to specify all hosts or all users 712in the group. 713.It Pa ~/.shosts 714For ssh, 715this file is exactly the same as for 716.Pa .rhosts . 717However, this file is 718not used by rlogin and rshd, so using this permits access using SSH only. 719.It Pa /etc/hosts.equiv 720This file is used during 721.Cm RhostsRSAAuthentication 722and 723.Cm HostbasedAuthentication 724authentication. 725In the simplest form, this file contains host names, one per line. 726Users on 727those hosts are permitted to log in without a password, provided they 728have the same user name on both machines. 729The host name may also be 730followed by a user name; such users are permitted to log in as 731.Em any 732user on this machine (except root). 733Additionally, the syntax 734.Dq +@group 735can be used to specify netgroups. 736Negated entries start with 737.Ql \&- . 738.Pp 739If the client host/user is successfully matched in this file, login is 740automatically permitted provided the client and server user names are the 741same. 742Additionally, successful client host key authentication is required. 743This file must be writable only by root; it is recommended 744that it be world-readable. 745.Pp 746.Sy "Warning: It is almost never a good idea to use user names in" 747.Pa hosts.equiv . 748Beware that it really means that the named user(s) can log in as 749.Em anybody , 750which includes bin, daemon, adm, and other accounts that own critical 751binaries and directories. 752Using a user name practically grants the user root access. 753The only valid use for user names that I can think 754of is in negative entries. 755.Pp 756Note that this warning also applies to rsh/rlogin. 757.It Pa /etc/ssh/shosts.equiv 758This is processed exactly as 759.Pa /etc/hosts.equiv . 760However, this file may be useful in environments that want to run both 761rsh/rlogin and ssh. 762.It Pa ~/.ssh/environment 763This file is read into the environment at login (if it exists). 764It can only contain empty lines, comment lines (that start with 765.Ql # ) , 766and assignment lines of the form name=value. 767The file should be writable 768only by the user; it need not be readable by anyone else. 769Environment processing is disabled by default and is 770controlled via the 771.Cm PermitUserEnvironment 772option. 773.It Pa ~/.ssh/rc 774If this file exists, it is run with 775.Pa /bin/sh 776after reading the 777environment files but before starting the user's shell or command. 778It must not produce any output on stdout; stderr must be used 779instead. 780If X11 forwarding is in use, it will receive the "proto cookie" pair in 781its standard input (and 782.Ev DISPLAY 783in its environment). 784The script must call 785.Xr xauth 1 786because 787.Nm 788will not run xauth automatically to add X11 cookies. 789.Pp 790The primary purpose of this file is to run any initialization routines 791which may be needed before the user's home directory becomes 792accessible; AFS is a particular example of such an environment. 793.Pp 794This file will probably contain some initialization code followed by 795something similar to: 796.Bd -literal 797if read proto cookie && [ -n "$DISPLAY" ]; then 798 if [ `echo $DISPLAY | cut -c1-10` = 'localhost:' ]; then 799 # X11UseLocalhost=yes 800 echo add unix:`echo $DISPLAY | 801 cut -c11-` $proto $cookie 802 else 803 # X11UseLocalhost=no 804 echo add $DISPLAY $proto $cookie 805 fi | xauth -q - 806fi 807.Ed 808.Pp 809If this file does not exist, 810.Pa /etc/ssh/sshrc 811is run, and if that 812does not exist either, xauth is used to add the cookie. 813.Pp 814This file should be writable only by the user, and need not be 815readable by anyone else. 816.It Pa /etc/ssh/sshrc 817Like 818.Pa ~/.ssh/rc . 819This can be used to specify 820machine-specific login-time initializations globally. 821This file should be writable only by root, and should be world-readable. 822.El 823.Sh SEE ALSO 824.Xr scp 1 , 825.Xr sftp 1 , 826.Xr ssh 1 , 827.Xr ssh-add 1 , 828.Xr ssh-agent 1 , 829.Xr ssh-keygen 1 , 830.Xr chroot 2 , 831.Xr hosts_access 5 , 832.Xr login.conf 5 , 833.Xr moduli 5 , 834.Xr sshd_config 5 , 835.Xr inetd 8 , 836.Xr sftp-server 8 837.Rs 838.%A T. Ylonen 839.%A T. Kivinen 840.%A M. Saarinen 841.%A T. Rinne 842.%A S. Lehtinen 843.%T "SSH Protocol Architecture" 844.%N draft-ietf-secsh-architecture-12.txt 845.%D January 2002 846.%O work in progress material 847.Re 848.Rs 849.%A M. Friedl 850.%A N. Provos 851.%A W. A. Simpson 852.%T "Diffie-Hellman Group Exchange for the SSH Transport Layer Protocol" 853.%N draft-ietf-secsh-dh-group-exchange-02.txt 854.%D January 2002 855.%O work in progress material 856.Re 857.Sh AUTHORS 858OpenSSH is a derivative of the original and free 859ssh 1.2.12 release by Tatu Ylonen. 860Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, 861Theo de Raadt and Dug Song 862removed many bugs, re-added newer features and 863created OpenSSH. 864Markus Friedl contributed the support for SSH 865protocol versions 1.5 and 2.0. 866Niels Provos and Markus Friedl contributed support 867for privilege separation. 868