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