1.\" -*- nroff -*- 2.\" 3.\" sshd.8.in 4.\" 5.\" Author: Tatu Ylonen <ylo@cs.hut.fi> 6.\" 7.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 8.\" All rights reserved 9.\" 10.\" Created: Sat Apr 22 21:55:14 1995 ylo 11.\" 12.\" $Id: sshd.8,v 1.34 2000/02/24 18:22:16 markus Exp $ 13.\" $FreeBSD$ 14.\" 15.Dd September 25, 1999 16.Dt SSHD 8 17.Os 18.Sh NAME 19.Nm sshd 20.Nd secure shell daemon 21.Sh SYNOPSIS 22.Nm sshd 23.Op Fl diqQ46 24.Op Fl b Ar bits 25.Op Fl f Ar config_file 26.Op Fl g Ar login_grace_time 27.Op Fl h Ar host_key_file 28.Op Fl k Ar key_gen_time 29.Op Fl p Ar port 30.Op Fl V Ar client_protocol_id 31.Sh DESCRIPTION 32.Nm 33(Secure Shell Daemon) is the daemon program for 34.Xr ssh 1 . 35Together these programs replace rlogin and rsh programs, and 36provide secure encrypted communications between two untrusted hosts 37over an insecure network. The programs are intended to be as easy to 38install and use as possible. 39.Pp 40.Nm 41is the daemon that listens for connections from clients. It is 42normally started at boot from 43.Pa /etc/rc . 44It forks a new 45daemon for each incoming connection. The forked daemons handle 46key exchange, encryption, authentication, command execution, 47and data exchange. 48.Pp 49.Nm 50works as follows. Each host has a host-specific RSA key 51(normally 1024 bits) used to identify the host. Additionally, when 52the daemon starts, it generates a server RSA key (normally 768 bits). 53This key is normally regenerated every hour if it has been used, and 54is never stored on disk. 55.Pp 56Whenever a client connects the daemon, the daemon sends its host 57and server public keys to the client. The client compares the 58host key against its own database to verify that it has not changed. 59The client then generates a 256 bit random number. It encrypts this 60random number using both the host key and the server key, and sends 61the encrypted number to the server. Both sides then start to use this 62random number as a session key which is used to encrypt all further 63communications in the session. The rest of the session is encrypted 64using a conventional cipher, currently Blowfish and 3DES, with 3DES 65being is used by default. The client selects the encryption algorithm 66to use from those offered by the server. 67.Pp 68Next, the server and the client enter an authentication dialog. The 69client tries to authenticate itself using 70.Pa .rhosts 71authentication, 72.Pa .rhosts 73authentication combined with RSA host 74authentication, RSA challenge-response authentication, or password 75based authentication. 76.Pp 77Rhosts authentication is normally disabled 78because it is fundamentally insecure, but can be enabled in the server 79configuration file if desired. System security is not improved unless 80.Xr rshd 8 , 81.Xr rlogind 8 , 82.Xr rexecd 8 , 83and 84.Xr rexd 8 85are disabled (thus completely disabling 86.Xr rlogin 1 87and 88.Xr rsh 1 89into that machine). 90.Pp 91If the client successfully authenticates itself, a dialog for 92preparing the session is entered. At this time the client may request 93things like allocating a pseudo-tty, forwarding X11 connections, 94forwarding TCP/IP connections, or forwarding the authentication agent 95connection over the secure channel. 96.Pp 97Finally, the client either requests a shell or execution of a command. 98The sides then enter session mode. In this mode, either side may send 99data at any time, and such data is forwarded to/from the shell or 100command on the server side, and the user terminal in the client side. 101.Pp 102When the user program terminates and all forwarded X11 and other 103connections have been closed, the server sends command exit status to 104the client, and both sides exit. 105.Pp 106.Nm 107can be configured using command-line options or a configuration 108file. Command-line options override values specified in the 109configuration file. 110.Pp 111.Nm 112rereads its configuration file when it receives a hangup signal, 113.Dv SIGHUP . 114.Pp 115The options are as follows: 116.Bl -tag -width Ds 117.It Fl b Ar bits 118Specifies the number of bits in the server key (default 768). 119.Pp 120.It Fl d 121Debug mode. The server sends verbose debug output to the system 122log, and does not put itself in the background. The server also will 123not fork and will only process one connection. This option is only 124intended for debugging for the server. 125.It Fl f Ar configuration_file 126Specifies the name of the configuration file. The default is 127.Pa /etc/sshd_config . 128.Nm 129refuses to start if there is no configuration file. 130.It Fl g Ar login_grace_time 131Gives the grace time for clients to authenticate themselves (default 132300 seconds). If the client fails to authenticate the user within 133this many seconds, the server disconnects and exits. A value of zero 134indicates no limit. 135.It Fl h Ar host_key_file 136Specifies the file from which the host key is read (default 137.Pa /etc/ssh_host_key ) . 138This option must be given if 139.Nm 140is not run as root (as the normal 141host file is normally not readable by anyone but root). 142.It Fl i 143Specifies that 144.Nm 145is being run from inetd. 146.Nm 147is normally not run 148from inetd because it needs to generate the server key before it can 149respond to the client, and this may take tens of seconds. Clients 150would have to wait too long if the key was regenerated every time. 151However, with small key sizes (e.g. 512) using 152.Nm 153from inetd may 154be feasible. 155.It Fl k Ar key_gen_time 156Specifies how often the server key is regenerated (default 3600 157seconds, or one hour). The motivation for regenerating the key fairly 158often is that the key is not stored anywhere, and after about an hour, 159it becomes impossible to recover the key for decrypting intercepted 160communications even if the machine is cracked into or physically 161seized. A value of zero indicates that the key will never be regenerated. 162.It Fl p Ar port 163Specifies the port on which the server listens for connections 164(default 22). 165.It Fl q 166Quiet mode. Nothing is sent to the system log. Normally the beginning, 167authentication, and termination of each connection is logged. 168.It Fl Q 169Do not print an error message if RSA support is missing. 170.It Fl V Ar client_protocol_id 171SSH2 compatibility mode. 172When this options is specified 173.Nm 174assumes the client has sent the given version string 175and skips the 176Protocol Version Identification Exchange. 177.It Fl 4 178Forces 179.Nm 180to use IPv4 addresses only. 181.It Fl 6 182Forces 183.Nm 184to use IPv6 addresses only. 185.El 186.Sh CONFIGURATION FILE 187.Nm 188reads configuration data from 189.Pa /etc/sshd_config 190(or the file specified with 191.Fl f 192on the command line). The file 193contains keyword-value pairs, one per line. Lines starting with 194.Ql # 195and empty lines are interpreted as comments. 196.Pp 197The following keywords are possible. 198.Bl -tag -width Ds 199.It Cm AFSTokenPassing 200Specifies whether an AFS token may be forwarded to the server. Default is 201.Dq yes . 202.It Cm AllowGroups 203This keyword can be followed by a number of group names, separated 204by spaces. If specified, login is allowed only for users whose primary 205group matches one of the patterns. 206.Ql \&* 207and 208.Ql ? 209can be used as 210wildcards in the patterns. Only group names are valid, a numerical group 211id isn't recognized. By default login is allowed regardless of 212the primary group. 213.Pp 214.It Cm AllowUsers 215This keyword can be followed by a number of user names, separated 216by spaces. If specified, login is allowed only for users names that 217match one of the patterns. 218.Ql \&* 219and 220.Ql ? 221can be used as 222wildcards in the patterns. Only user names are valid, a numerical user 223id isn't recognized. By default login is allowed regardless of 224the user name. 225.Pp 226.It Cm CheckMail 227Specifies whether 228.Nm 229should check for new mail for interactive logins. 230The default is 231.Dq no . 232.It Cm ConnectionsPerPeriod 233This keyword allows for rate-limiting of connections, and 234is followed by two numbers in the format 235.Dq n/s , 236where 237.Ar n 238is the number of connections from a certain address group 239accepted per period of 240.Ar s 241seconds. Any connection after the number 242.Ar n 243connection in the period of 244.Ar s 245seconds will be dropped, and an informational message will be logged. 246A connection will belong to a certain group, of which there are 13 247by default, according to its IP address. 248The default for this keyword is 249.Dq 0/0 , 250and rate-limiting can be explicitly turned off by using an 251.Ar n 252parameter of 253.Ql 0 254and any 255.Ar s 256parameter. 257.It Cm DenyGroups 258This keyword can be followed by a number of group names, separated 259by spaces. Users whose primary group matches one of the patterns 260aren't allowed to log in. 261.Ql \&* 262and 263.Ql ? 264can be used as 265wildcards in the patterns. Only group names are valid, a numerical group 266id isn't recognized. By default login is allowed regardless of 267the primary group. 268.Pp 269.It Cm DenyUsers 270This keyword can be followed by a number of user names, separated 271by spaces. Login is disallowed for user names that match 272one of the patterns. 273.Ql \&* 274and 275.Ql ? 276can be used as 277wildcards in the patterns. Only user names are valid, a numerical user 278id isn't recognized. By default login is allowed regardless of 279the user name. 280.It Cm HostKey 281Specifies the file containing the private host key (default 282.Pa /etc/ssh_host_key ) . 283Note that 284.Nm 285does not start if this file is group/world-accessible. 286.It Cm IgnoreRhosts 287Specifies that 288.Pa .rhosts 289and 290.Pa .shosts 291files will not be used in authentication. 292.Pa /etc/hosts.equiv 293and 294.Pa /etc/shosts.equiv 295are still used. The default is 296.Dq yes . 297.It Cm IgnoreUserKnownHosts 298Specifies whether 299.Nm 300should ignore the user's 301.Pa $HOME/.ssh/known_hosts 302during 303.Cm RhostsRSAAuthentication . 304The default is 305.Dq no . 306.It Cm KeepAlive 307Specifies whether the system should send keepalive messages to the 308other side. If they are sent, death of the connection or crash of one 309of the machines will be properly noticed. However, this means that 310connections will die if the route is down temporarily, and some people 311find it annoying. On the other hand, if keepalives are not send, 312sessions may hang indefinitely on the server, leaving 313.Dq ghost 314users and consuming server resources. 315.Pp 316The default is 317.Dq yes 318(to send keepalives), and the server will notice 319if the network goes down or the client host reboots. This avoids 320infinitely hanging sessions. 321.Pp 322To disable keepalives, the value should be set to 323.Dq no 324in both the server and the client configuration files. 325.It Cm KerberosAuthentication 326Specifies whether Kerberos authentication is allowed. This can 327be in the form of a Kerberos ticket, or if 328.Cm PasswordAuthentication 329is yes, the password provided by the user will be validated through 330the Kerberos KDC. Default is 331.Dq yes . 332.It Cm KerberosOrLocalPasswd 333If set then if password authentication through Kerberos fails then 334the password will be validated via any additional local mechanism 335such as 336.Pa /etc/passwd 337or SecurID. Default is 338.Dq yes . 339.It Cm KerberosTgtPassing 340Specifies whether a Kerberos TGT may be forwarded to the server. 341Default is 342.Dq no , 343as this only works when the Kerberos KDC is actually an AFS kaserver. 344.It Cm KerberosTicketCleanup 345Specifies whether to automatically destroy the user's ticket cache 346file on logout. Default is 347.Dq yes . 348.It Cm KeyRegenerationInterval 349The server key is automatically regenerated after this many seconds 350(if it has been used). The purpose of regeneration is to prevent 351decrypting captured sessions by later breaking into the machine and 352stealing the keys. The key is never stored anywhere. If the value is 3530, the key is never regenerated. The default is 3600 354(seconds). 355.It Cm ListenAddress 356Specifies what local address 357.Nm 358should listen on. 359The default is to listen to all local addresses. 360Multiple options of this type are permitted. 361Additionally, the 362.Cm Ports 363options must precede this option. 364.It Cm LoginGraceTime 365The server disconnects after this time if the user has not 366successfully logged in. If the value is 0, there is no time limit. 367The default is 600 (seconds). 368.It Cm LogLevel 369Gives the verbosity level that is used when logging messages from 370.Nm sshd . 371The possible values are: 372QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG. 373The default is INFO. 374Logging with level DEBUG violates the privacy of users 375and is not recommended. 376.It Cm PasswordAuthentication 377Specifies whether password authentication is allowed. 378The default is 379.Dq yes . 380.It Cm PermitEmptyPasswords 381When password authentication is allowed, it specifies whether the 382server allows login to accounts with empty password strings. The default 383is 384.Dq no . 385.It Cm PermitRootLogin 386Specifies whether the root can log in using 387.Xr ssh 1 . 388The argument must be 389.Dq yes , 390.Dq without-password 391or 392.Dq no . 393The default is 394.Dq yes . 395If this options is set to 396.Dq without-password 397only password authentication is disabled for root. 398.Pp 399Root login with RSA authentication when the 400.Ar command 401option has been 402specified will be allowed regardless of the value of this setting 403(which may be useful for taking remote backups even if root login is 404normally not allowed). 405.It Cm Port 406Specifies the port number that 407.Nm 408listens on. The default is 22. 409Multiple options of this type are permitted. 410.It Cm PrintMotd 411Specifies whether 412.Nm 413should print 414.Pa /etc/motd 415when a user logs in interactively. (On some systems it is also 416printed by the shell, 417.Pa /etc/profile , 418or equivalent.) The default is 419.Dq yes . 420.It Cm RandomSeed 421Obsolete. Random number generation uses other techniques. 422.It Cm RhostsAuthentication 423Specifies whether authentication using rhosts or /etc/hosts.equiv 424files is sufficient. Normally, this method should not be permitted 425because it is insecure. 426.Cm RhostsRSAAuthentication 427should be used 428instead, because it performs RSA-based host authentication in addition 429to normal rhosts or /etc/hosts.equiv authentication. 430The default is 431.Dq no . 432.It Cm RhostsRSAAuthentication 433Specifies whether rhosts or /etc/hosts.equiv authentication together 434with successful RSA host authentication is allowed. The default is 435.Dq no . 436.It Cm RSAAuthentication 437Specifies whether pure RSA authentication is allowed. The default is 438.Dq yes . 439.It Cm ServerKeyBits 440Defines the number of bits in the server key. The minimum value is 441512, and the default is 768. 442.It Cm SkeyAuthentication 443Specifies whether 444.Xr skey 1 445authentication is allowed. The default is 446.Dq yes . 447Note that s/key authentication is enabled only if 448.Cm PasswordAuthentication 449is allowed, too. 450.It Cm StrictModes 451Specifies whether 452.Nm 453should check file modes and ownership of the 454user's files and home directory before accepting login. This 455is normally desirable because novices sometimes accidentally leave their 456directory or files world-writable. The default is 457.Dq yes . 458.It Cm SyslogFacility 459Gives the facility code that is used when logging messages from 460.Nm sshd . 461The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2, 462LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. The default is AUTH. 463.It Cm UseLogin 464Specifies whether 465.Xr login 1 466is used. The default is 467.Dq no . 468.It Cm X11DisplayOffset 469Specifies the first display number available for 470.Nm sshd Ns 's 471X11 forwarding. This prevents 472.Nm 473from interfering with real X11 servers. 474The default is 10. 475.It Cm X11Forwarding 476Specifies whether X11 forwarding is permitted. The default is 477.Dq yes . 478Note that disabling X11 forwarding does not improve security in any 479way, as users can always install their own forwarders. 480.El 481.Sh LOGIN PROCESS 482When a user successfully logs in, 483.Nm 484does the following: 485.Bl -enum -offset indent 486.It 487If the login is on a tty, and no command has been specified, 488prints last login time and 489.Pa /etc/motd 490(unless prevented in the configuration file or by 491.Pa $HOME/.hushlogin ; 492see the 493.Sx FILES 494section). 495.It 496If the login is on a tty, records login time. 497.It 498Checks 499.Pa /etc/nologin and 500.Pa /var/run/nologin ; 501if one exists, it prints the contents and quits 502(unless root). 503.It 504Changes to run with normal user privileges. 505.It 506Sets up basic environment. 507.It 508Reads 509.Pa $HOME/.ssh/environment 510if it exists. 511.It 512Changes to user's home directory. 513.It 514If 515.Pa $HOME/.ssh/rc 516exists, runs it; else if 517.Pa /etc/sshrc 518exists, runs 519it; otherwise runs xauth. The 520.Dq rc 521files are given the X11 522authentication protocol and cookie in standard input. 523.It 524Runs user's shell or command. 525.El 526.Sh AUTHORIZED_KEYS FILE FORMAT 527The 528.Pa $HOME/.ssh/authorized_keys 529file lists the RSA keys that are 530permitted for RSA authentication. Each line of the file contains one 531key (empty lines and lines starting with a 532.Ql # 533are ignored as 534comments). Each line consists of the following fields, separated by 535spaces: options, bits, exponent, modulus, comment. The options field 536is optional; its presence is determined by whether the line starts 537with a number or not (the option field never starts with a number). 538The bits, exponent, modulus and comment fields give the RSA key; the 539comment field is not used for anything (but may be convenient for the 540user to identify the key). 541.Pp 542Note that lines in this file are usually several hundred bytes long 543(because of the size of the RSA key modulus). You don't want to type 544them in; instead, copy the 545.Pa identity.pub 546file and edit it. 547.Pp 548The options (if present) consists of comma-separated option 549specifications. No spaces are permitted, except within double quotes. 550The following option specifications are supported: 551.Bl -tag -width Ds 552.It Cm from="pattern-list" 553Specifies that in addition to RSA authentication, the canonical name 554of the remote host must be present in the comma-separated list of 555patterns ('*' and '?' serve as wildcards). The list may also contain 556patterns negated by prefixing them with '!'; if the canonical host 557name matches a negated pattern, the key is not accepted. The purpose 558of this option is to optionally increase security: RSA authentication 559by itself does not trust the network or name servers or anything (but 560the key); however, if somebody somehow steals the key, the key 561permits an intruder to log in from anywhere in the world. This 562additional option makes using a stolen key more difficult (name 563servers and/or routers would have to be compromised in addition to 564just the key). 565.It Cm command="command" 566Specifies that the command is executed whenever this key is used for 567authentication. The command supplied by the user (if any) is ignored. 568The command is run on a pty if the connection requests a pty; 569otherwise it is run without a tty. A quote may be included in the 570command by quoting it with a backslash. This option might be useful 571to restrict certain RSA keys to perform just a specific operation. An 572example might be a key that permits remote backups but nothing 573else. Notice that the client may specify TCP/IP and/or X11 574forwardings unless they are explicitly prohibited. 575.It Cm environment="NAME=value" 576Specifies that the string is to be added to the environment when 577logging in using this key. Environment variables set this way 578override other default environment values. Multiple options of this 579type are permitted. 580.It Cm no-port-forwarding 581Forbids TCP/IP forwarding when this key is used for authentication. 582Any port forward requests by the client will return an error. This 583might be used, e.g., in connection with the 584.Cm command 585option. 586.It Cm no-X11-forwarding 587Forbids X11 forwarding when this key is used for authentication. 588Any X11 forward requests by the client will return an error. 589.It Cm no-agent-forwarding 590Forbids authentication agent forwarding when this key is used for 591authentication. 592.It Cm no-pty 593Prevents tty allocation (a request to allocate a pty will fail). 594.El 595.Ss Examples 5961024 33 12121.\|.\|.\|312314325 ylo@foo.bar 597.Pp 598from="*.niksula.hut.fi,!pc.niksula.hut.fi" 1024 35 23.\|.\|.\|2334 ylo@niksula 599.Pp 600command="dump /home",no-pty,no-port-forwarding 1024 33 23.\|.\|.\|2323 backup.hut.fi 601.Sh SSH_KNOWN_HOSTS FILE FORMAT 602The 603.Pa /etc/ssh_known_hosts 604and 605.Pa $HOME/.ssh/known_hosts 606files contain host public keys for all known hosts. The global file should 607be prepared by the admistrator (optional), and the per-user file is 608maintained automatically: whenever the user connects an unknown host 609its key is added to the per-user file. 610.Pp 611Each line in these files contains the following fields: hostnames, 612bits, exponent, modulus, comment. The fields are separated by spaces. 613.Pp 614Hostnames is a comma-separated list of patterns ('*' and '?' act as 615wildcards); each pattern in turn is matched against the canonical host 616name (when authenticating a client) or against the user-supplied 617name (when authenticating a server). A pattern may also be preceded 618by 619.Ql ! 620to indicate negation: if the host name matches a negated 621pattern, it is not accepted (by that line) even if it matched another 622pattern on the line. 623.Pp 624Bits, exponent, and modulus are taken directly from the host key; they 625can be obtained, e.g., from 626.Pa /etc/ssh_host_key.pub . 627The optional comment field continues to the end of the line, and is not used. 628.Pp 629Lines starting with 630.Ql # 631and empty lines are ignored as comments. 632.Pp 633When performing host authentication, authentication is accepted if any 634matching line has the proper key. It is thus permissible (but not 635recommended) to have several lines or different host keys for the same 636names. This will inevitably happen when short forms of host names 637from different domains are put in the file. It is possible 638that the files contain conflicting information; authentication is 639accepted if valid information can be found from either file. 640.Pp 641Note that the lines in these files are typically hundreds of characters 642long, and you definitely don't want to type in the host keys by hand. 643Rather, generate them by a script 644or by taking 645.Pa /etc/ssh_host_key.pub 646and adding the host names at the front. 647.Ss Examples 648closenet,closenet.hut.fi,.\|.\|.\|,130.233.208.41 1024 37 159.\|.\|.93 closenet.hut.fi 649.Sh FILES 650.Bl -tag -width Ds 651.It Pa /etc/sshd_config 652Contains configuration data for 653.Nm sshd . 654This file should be writable by root only, but it is recommended 655(though not necessary) that it be world-readable. 656.It Pa /etc/ssh_host_key 657Contains the private part of the host key. 658This file should only be owned by root, readable only by root, and not 659accessible to others. 660Note that 661.Nm 662does not start if this file is group/world-accessible. 663.It Pa /etc/ssh_host_key.pub 664Contains the public part of the host key. 665This file should be world-readable but writable only by 666root. Its contents should match the private part. This file is not 667really used for anything; it is only provided for the convenience of 668the user so its contents can be copied to known hosts files. 669These two files are created using 670.Xr ssh-keygen 1 . 671.It Pa /var/run/sshd.pid 672Contains the process ID of the 673.Nm 674listening for connections (if there are several daemons running 675concurrently for different ports, this contains the pid of the one 676started last). The contents of this file are not sensitive; it can be 677world-readable. 678.It Pa $HOME/.ssh/authorized_keys 679Lists the RSA keys that can be used to log into the user's account. 680This file must be readable by root (which may on some machines imply 681it being world-readable if the user's home directory resides on an NFS 682volume). It is recommended that it not be accessible by others. The 683format of this file is described above. 684.It Pa "/etc/ssh_known_hosts" and "$HOME/.ssh/known_hosts" 685These files are consulted when using rhosts with RSA host 686authentication to check the public key of the host. The key must be 687listed in one of these files to be accepted. 688The client uses the same files 689to verify that the remote host is the one we intended to 690connect. These files should be writable only by root/the owner. 691.Pa /etc/ssh_known_hosts 692should be world-readable, and 693.Pa $HOME/.ssh/known_hosts 694can but need not be world-readable. 695.It Pa /etc/nologin 696If this file exists, 697.Nm 698refuses to let anyone except root log in. The contents of the file 699are displayed to anyone trying to log in, and non-root connections are 700refused. The file should be world-readable. 701.It Pa /etc/hosts.allow, /etc/hosts.deny 702If compiled with 703.Sy LIBWRAP 704support, tcp-wrappers access controls may be defined here as described in 705.Xr hosts_access 5 . 706.It Pa $HOME/.rhosts 707This file contains host-username pairs, separated by a space, one per 708line. The given user on the corresponding host is permitted to log in 709without password. The same file is used by rlogind and rshd. 710The file must 711be writable only by the user; it is recommended that it not be 712accessible by others. 713.Pp 714If is also possible to use netgroups in the file. Either host or user 715name may be of the form +@groupname to specify all hosts or all users 716in the group. 717.It Pa $HOME/.shosts 718For ssh, 719this file is exactly the same as for 720.Pa .rhosts . 721However, this file is 722not used by rlogin and rshd, so using this permits access using SSH only. 723.Pa /etc/hosts.equiv 724This file is used during 725.Pa .rhosts 726authentication. In the 727simplest form, this file contains host names, one per line. Users on 728those hosts are permitted to log in without a password, provided they 729have the same user name on both machines. The 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). Additionally, the syntax 733.Dq +@group 734can be used to specify netgroups. Negated entries start with 735.Ql \&- . 736.Pp 737If the client host/user is successfully matched in this file, login is 738automatically permitted provided the client and server user names are the 739same. Additionally, successful RSA host authentication is normally 740required. This file must be writable only by root; it is recommended 741that it be world-readable. 742.Pp 743.Sy "Warning: It is almost never a good idea to use user names in" 744.Pa hosts.equiv . 745Beware that it really means that the named user(s) can log in as 746.Em anybody , 747which includes bin, daemon, adm, and other accounts that own critical 748binaries and directories. Using a user name practically grants the 749user root access. The only valid use for user names that I can think 750of is in negative entries. 751.Pp 752Note that this warning also applies to rsh/rlogin. 753.It Pa /etc/shosts.equiv 754This is processed exactly as 755.Pa /etc/hosts.equiv . 756However, this file may be useful in environments that want to run both 757rsh/rlogin and ssh. 758.It Pa $HOME/.ssh/environment 759This file is read into the environment at login (if it exists). It 760can only contain empty lines, comment lines (that start with 761.Ql # ) , 762and assignment lines of the form name=value. The file should be writable 763only by the user; it need not be readable by anyone else. 764.It Pa $HOME/.ssh/rc 765If this file exists, it is run with /bin/sh after reading the 766environment files but before starting the user's shell or command. If 767X11 spoofing is in use, this will receive the "proto cookie" pair in 768standard input (and 769.Ev DISPLAY 770in environment). This must call 771.Xr xauth 1 772in that case. 773.Pp 774The primary purpose of this file is to run any initialization routines 775which may be needed before the user's home directory becomes 776accessible; AFS is a particular example of such an environment. 777.Pp 778This file will probably contain some initialization code followed by 779something similar to: "if read proto cookie; then echo add $DISPLAY 780$proto $cookie | xauth -q -; fi". 781.Pp 782If this file does not exist, 783.Pa /etc/sshrc 784is run, and if that 785does not exist either, xauth is used to store the cookie. 786.Pp 787This file should be writable only by the user, and need not be 788readable by anyone else. 789.It Pa /etc/sshrc 790Like 791.Pa $HOME/.ssh/rc . 792This can be used to specify 793machine-specific login-time initializations globally. This file 794should be writable only by root, and should be world-readable. 795.Sh AUTHOR 796OpenSSH 797is a derivative of the original (free) ssh 1.2.12 release by Tatu Ylonen, 798but with bugs removed and newer features re-added. Rapidly after the 7991.2.12 release, newer versions of the original ssh bore successively 800more restrictive licenses, and thus demand for a free version was born. 801This version of OpenSSH 802.Bl -bullet 803.It 804has all components of a restrictive nature (i.e., patents, see 805.Xr ssl 8 ) 806directly removed from the source code; any licensed or patented components 807are chosen from 808external libraries. 809.It 810has been updated to support ssh protocol 1.5, making it compatible with 811all other ssh protocol 1 clients and servers. 812.It 813contains added support for 814.Xr kerberos 8 815authentication and ticket passing. 816.It 817supports one-time password authentication with 818.Xr skey 1 . 819.El 820.Pp 821The libraries described in 822.Xr ssl 8 823are required for proper operation. 824.Sh SEE ALSO 825.Xr rlogin 1 , 826.Xr rsh 1 , 827.Xr scp 1 , 828.Xr ssh 1 , 829.Xr ssh-add 1 , 830.Xr ssh-agent 1 , 831.Xr ssh-keygen 1 , 832.Xr ssl 8 833