Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1 | .\" |
| 2 | .\" Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 3 | .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | .\" All rights reserved |
| 5 | .\" |
| 6 | .\" As far as I am concerned, the code I have written for this software |
| 7 | .\" can be used freely for any purpose. Any derived versions of this |
| 8 | .\" software must be clearly marked as such, and if the derived work is |
| 9 | .\" incompatible with the protocol description in the RFC file, it must be |
| 10 | .\" called by a name other than "ssh" or "Secure Shell". |
| 11 | .\" |
| 12 | .\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved. |
| 13 | .\" Copyright (c) 1999 Aaron Campbell. All rights reserved. |
| 14 | .\" Copyright (c) 1999 Theo de Raadt. All rights reserved. |
| 15 | .\" |
| 16 | .\" Redistribution and use in source and binary forms, with or without |
| 17 | .\" modification, are permitted provided that the following conditions |
| 18 | .\" are met: |
| 19 | .\" 1. Redistributions of source code must retain the above copyright |
| 20 | .\" notice, this list of conditions and the following disclaimer. |
| 21 | .\" 2. Redistributions in binary form must reproduce the above copyright |
| 22 | .\" notice, this list of conditions and the following disclaimer in the |
| 23 | .\" documentation and/or other materials provided with the distribution. |
| 24 | .\" |
| 25 | .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 26 | .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 27 | .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 28 | .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 29 | .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 30 | .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 31 | .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 32 | .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 33 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 34 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 35 | .\" |
Damien Miller | aa5b3f8 | 2012-12-03 09:50:54 +1100 | [diff] [blame] | 36 | .\" $OpenBSD: sshd_config.5,v 1.150 2012/12/02 20:46:11 djm Exp $ |
| 37 | .Dd $Mdocdate: December 2 2012 $ |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 38 | .Dt SSHD_CONFIG 5 |
| 39 | .Os |
| 40 | .Sh NAME |
| 41 | .Nm sshd_config |
| 42 | .Nd OpenSSH SSH daemon configuration file |
| 43 | .Sh SYNOPSIS |
Damien Miller | d94fc72 | 2007-01-05 16:29:30 +1100 | [diff] [blame] | 44 | .Nm /etc/ssh/sshd_config |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 45 | .Sh DESCRIPTION |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 46 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 47 | reads configuration data from |
| 48 | .Pa /etc/ssh/sshd_config |
| 49 | (or the file specified with |
| 50 | .Fl f |
| 51 | on the command line). |
| 52 | The file contains keyword-argument pairs, one per line. |
| 53 | Lines starting with |
| 54 | .Ql # |
| 55 | and empty lines are interpreted as comments. |
Damien Miller | 306d118 | 2006-03-15 12:05:59 +1100 | [diff] [blame] | 56 | Arguments may optionally be enclosed in double quotes |
| 57 | .Pq \&" |
| 58 | in order to represent arguments containing spaces. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 59 | .Pp |
| 60 | The possible |
| 61 | keywords and their meanings are as follows (note that |
| 62 | keywords are case-insensitive and arguments are case-sensitive): |
| 63 | .Bl -tag -width Ds |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 64 | .It Cm AcceptEnv |
| 65 | Specifies what environment variables sent by the client will be copied into |
| 66 | the session's |
| 67 | .Xr environ 7 . |
| 68 | See |
| 69 | .Cm SendEnv |
| 70 | in |
| 71 | .Xr ssh_config 5 |
| 72 | for how to configure the client. |
Darren Tucker | 1e0c9bf | 2004-05-02 22:12:48 +1000 | [diff] [blame] | 73 | Note that environment passing is only supported for protocol 2. |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 74 | Variables are specified by name, which may contain the wildcard characters |
Damien Miller | 208f1ed | 2006-03-15 11:56:03 +1100 | [diff] [blame] | 75 | .Ql * |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 76 | and |
| 77 | .Ql \&? . |
Darren Tucker | 1e0c9bf | 2004-05-02 22:12:48 +1000 | [diff] [blame] | 78 | Multiple environment variables may be separated by whitespace or spread |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 79 | across multiple |
| 80 | .Cm AcceptEnv |
| 81 | directives. |
Darren Tucker | 1e0c9bf | 2004-05-02 22:12:48 +1000 | [diff] [blame] | 82 | Be warned that some environment variables could be used to bypass restricted |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 83 | user environments. |
| 84 | For this reason, care should be taken in the use of this directive. |
| 85 | The default is not to accept any environment variables. |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 86 | .It Cm AddressFamily |
| 87 | Specifies which address family should be used by |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 88 | .Xr sshd 8 . |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 89 | Valid arguments are |
| 90 | .Dq any , |
| 91 | .Dq inet |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 92 | (use IPv4 only), or |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 93 | .Dq inet6 |
| 94 | (use IPv6 only). |
| 95 | The default is |
| 96 | .Dq any . |
Damien Miller | e989019 | 2008-05-19 14:59:02 +1000 | [diff] [blame] | 97 | .It Cm AllowAgentForwarding |
| 98 | Specifies whether |
| 99 | .Xr ssh-agent 1 |
| 100 | forwarding is permitted. |
| 101 | The default is |
| 102 | .Dq yes . |
| 103 | Note that disabling agent forwarding does not improve security |
| 104 | unless users are also denied shell access, as they can always install |
| 105 | their own forwarders. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 106 | .It Cm AllowGroups |
| 107 | This keyword can be followed by a list of group name patterns, separated |
| 108 | by spaces. |
| 109 | If specified, login is allowed only for users whose primary |
| 110 | group or supplementary group list matches one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 111 | Only group names are valid; a numerical group ID is not recognized. |
| 112 | By default, login is allowed for all groups. |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 113 | The allow/deny directives are processed in the following order: |
| 114 | .Cm DenyUsers , |
| 115 | .Cm AllowUsers , |
| 116 | .Cm DenyGroups , |
| 117 | and finally |
| 118 | .Cm AllowGroups . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 119 | .Pp |
| 120 | See |
| 121 | .Sx PATTERNS |
| 122 | in |
| 123 | .Xr ssh_config 5 |
| 124 | for more information on patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 125 | .It Cm AllowTcpForwarding |
| 126 | Specifies whether TCP forwarding is permitted. |
Damien Miller | aa5b3f8 | 2012-12-03 09:50:54 +1100 | [diff] [blame] | 127 | The available options are |
| 128 | .Dq yes |
| 129 | or |
| 130 | .Dq all |
| 131 | to allow TCP forwarding, |
| 132 | .Dq no |
| 133 | to prevent all TCP forwarding, |
| 134 | .Dq local |
| 135 | to allow local (from the perspective of |
| 136 | .Xr ssh 1 ) forwarding only or |
| 137 | .Dq remote |
| 138 | to allow remote forwarding only. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 139 | The default is |
| 140 | .Dq yes . |
| 141 | Note that disabling TCP forwarding does not improve security unless |
| 142 | users are also denied shell access, as they can always install their |
| 143 | own forwarders. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 144 | .It Cm AllowUsers |
| 145 | This keyword can be followed by a list of user name patterns, separated |
| 146 | by spaces. |
Damien Miller | 5a93add | 2003-01-24 11:34:52 +1100 | [diff] [blame] | 147 | If specified, login is allowed only for user names that |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 148 | match one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 149 | Only user names are valid; a numerical user ID is not recognized. |
| 150 | By default, login is allowed for all users. |
| 151 | If the pattern takes the form USER@HOST then USER and HOST |
| 152 | are separately checked, restricting logins to particular |
| 153 | users from particular hosts. |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 154 | The allow/deny directives are processed in the following order: |
| 155 | .Cm DenyUsers , |
| 156 | .Cm AllowUsers , |
| 157 | .Cm DenyGroups , |
| 158 | and finally |
| 159 | .Cm AllowGroups . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 160 | .Pp |
| 161 | See |
| 162 | .Sx PATTERNS |
| 163 | in |
| 164 | .Xr ssh_config 5 |
| 165 | for more information on patterns. |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 166 | .It Cm AuthenticationMethods |
| 167 | Specifies the authentication methods that must be successfully completed |
| 168 | for a user to be granted access. |
| 169 | This option must be followed by one or more comma-separated lists of |
| 170 | authentication method names. |
| 171 | Successful authentication requires completion of every method in at least |
| 172 | one of these lists. |
| 173 | .Pp |
| 174 | For example, an argument of |
| 175 | .Dq publickey,password publickey,keyboard-interactive |
| 176 | would require the user to complete public key authentication, followed by |
| 177 | either password or keyboard interactive authentication. |
| 178 | Only methods that are next in one or more lists are offered at each stage, |
| 179 | so for this example, it would not be possible to attempt password or |
| 180 | keyboard-interactive authentication before public key. |
| 181 | .Pp |
| 182 | This option is only available for SSH protocol 2 and will yield a fatal |
| 183 | error if enabled if protocol 1 is also enabled. |
| 184 | Note that each authentication method listed should also be explicitly enabled |
| 185 | in the configuration. |
| 186 | The default is not to require multiple authentication; successful completion |
| 187 | of a single authentication method is sufficient. |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 188 | .It Cm AuthorizedKeysCommand |
Damien Miller | f33580e | 2012-11-04 22:22:52 +1100 | [diff] [blame] | 189 | Specifies a program to be used to look up the user's public keys. |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 190 | The program will be invoked with a single argument of the username |
| 191 | being authenticated, and should produce on standard output zero or |
Damien Miller | f33580e | 2012-11-04 22:22:52 +1100 | [diff] [blame] | 192 | more lines of authorized_keys output (see |
| 193 | .Sx AUTHORIZED_KEYS |
| 194 | in |
| 195 | .Xr sshd 8 ) . |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 196 | If a key supplied by AuthorizedKeysCommand does not successfully authenticate |
| 197 | and authorize the user then public key authentication continues using the usual |
| 198 | .Cm AuthorizedKeysFile |
| 199 | files. |
| 200 | By default, no AuthorizedKeysCommand is run. |
| 201 | .It Cm AuthorizedKeysCommandUser |
| 202 | Specifies the user under whose account the AuthorizedKeysCommand is run. |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 203 | It is recommended to use a dedicated user that has no other role on the host |
| 204 | than running authorized keys commands. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 205 | .It Cm AuthorizedKeysFile |
| 206 | Specifies the file that contains the public keys that can be used |
| 207 | for user authentication. |
Damien Miller | 6018a36 | 2010-07-02 13:35:19 +1000 | [diff] [blame] | 208 | The format is described in the |
| 209 | .Sx AUTHORIZED_KEYS FILE FORMAT |
| 210 | section of |
| 211 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 212 | .Cm AuthorizedKeysFile |
| 213 | may contain tokens of the form %T which are substituted during connection |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 214 | setup. |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 215 | The following tokens are defined: %% is replaced by a literal '%', |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 216 | %h is replaced by the home directory of the user being authenticated, and |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 217 | %u is replaced by the username of that user. |
| 218 | After expansion, |
| 219 | .Cm AuthorizedKeysFile |
| 220 | is taken to be an absolute path or one relative to the user's home |
| 221 | directory. |
Damien Miller | b9132fc | 2011-05-29 21:41:40 +1000 | [diff] [blame] | 222 | Multiple files may be listed, separated by whitespace. |
| 223 | The default is |
| 224 | .Dq .ssh/authorized_keys .ssh/authorized_keys2 . |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 225 | .It Cm AuthorizedPrincipalsFile |
| 226 | Specifies a file that lists principal names that are accepted for |
| 227 | certificate authentication. |
| 228 | When using certificates signed by a key listed in |
| 229 | .Cm TrustedUserCAKeys , |
| 230 | this file lists names, one of which must appear in the certificate for it |
| 231 | to be accepted for authentication. |
Damien Miller | d59dab8 | 2010-07-02 13:37:17 +1000 | [diff] [blame] | 232 | Names are listed one per line preceded by key options (as described |
Damien Miller | 6018a36 | 2010-07-02 13:35:19 +1000 | [diff] [blame] | 233 | in |
| 234 | .Sx AUTHORIZED_KEYS FILE FORMAT |
| 235 | in |
Damien Miller | d59dab8 | 2010-07-02 13:37:17 +1000 | [diff] [blame] | 236 | .Xr sshd 8 ) . |
Damien Miller | 6018a36 | 2010-07-02 13:35:19 +1000 | [diff] [blame] | 237 | Empty lines and comments starting with |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 238 | .Ql # |
| 239 | are ignored. |
| 240 | .Pp |
| 241 | .Cm AuthorizedPrincipalsFile |
| 242 | may contain tokens of the form %T which are substituted during connection |
| 243 | setup. |
| 244 | The following tokens are defined: %% is replaced by a literal '%', |
| 245 | %h is replaced by the home directory of the user being authenticated, and |
| 246 | %u is replaced by the username of that user. |
| 247 | After expansion, |
| 248 | .Cm AuthorizedPrincipalsFile |
| 249 | is taken to be an absolute path or one relative to the user's home |
| 250 | directory. |
| 251 | .Pp |
Damien Miller | 8fef9eb | 2012-04-22 11:25:10 +1000 | [diff] [blame] | 252 | The default is |
| 253 | .Dq none , |
| 254 | i.e. not to use a principals file \(en in this case, the username |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 255 | of the user must appear in a certificate's principals list for it to be |
| 256 | accepted. |
| 257 | Note that |
| 258 | .Cm AuthorizedPrincipalsFile |
| 259 | is only used when authentication proceeds using a CA listed in |
| 260 | .Cm TrustedUserCAKeys |
| 261 | and is not consulted for certification authorities trusted via |
| 262 | .Pa ~/.ssh/authorized_keys , |
| 263 | though the |
| 264 | .Cm principals= |
| 265 | key option offers a similar facility (see |
| 266 | .Xr sshd 8 |
| 267 | for details). |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 268 | .It Cm Banner |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 269 | The contents of the specified file are sent to the remote user before |
| 270 | authentication is allowed. |
Damien Miller | 4890e53 | 2007-09-17 11:57:38 +1000 | [diff] [blame] | 271 | If the argument is |
| 272 | .Dq none |
| 273 | then no banner is displayed. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 274 | This option is only available for protocol version 2. |
| 275 | By default, no banner is displayed. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 276 | .It Cm ChallengeResponseAuthentication |
Damien Miller | 9c7bf8d | 2009-08-28 10:27:08 +1000 | [diff] [blame] | 277 | Specifies whether challenge-response authentication is allowed (e.g. via |
| 278 | PAM or though authentication styles supported in |
| 279 | .Xr login.conf 5 ) |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 280 | The default is |
| 281 | .Dq yes . |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 282 | .It Cm ChrootDirectory |
Darren Tucker | b8c884a | 2010-01-08 18:53:43 +1100 | [diff] [blame] | 283 | Specifies the pathname of a directory to |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 284 | .Xr chroot 2 |
| 285 | to after authentication. |
Darren Tucker | b8c884a | 2010-01-08 18:53:43 +1100 | [diff] [blame] | 286 | All components of the pathname must be root-owned directories that are |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 287 | not writable by any other user or group. |
Darren Tucker | 51dbe50 | 2009-06-21 17:56:51 +1000 | [diff] [blame] | 288 | After the chroot, |
| 289 | .Xr sshd 8 |
| 290 | changes the working directory to the user's home directory. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 291 | .Pp |
Darren Tucker | b8c884a | 2010-01-08 18:53:43 +1100 | [diff] [blame] | 292 | The pathname may contain the following tokens that are expanded at runtime once |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 293 | the connecting user has been authenticated: %% is replaced by a literal '%', |
| 294 | %h is replaced by the home directory of the user being authenticated, and |
| 295 | %u is replaced by the username of that user. |
| 296 | .Pp |
| 297 | The |
| 298 | .Cm ChrootDirectory |
| 299 | must contain the necessary files and directories to support the |
Darren Tucker | af501cf | 2009-06-21 17:53:04 +1000 | [diff] [blame] | 300 | user's session. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 301 | For an interactive session this requires at least a shell, typically |
| 302 | .Xr sh 1 , |
| 303 | and basic |
| 304 | .Pa /dev |
| 305 | nodes such as |
| 306 | .Xr null 4 , |
| 307 | .Xr zero 4 , |
| 308 | .Xr stdin 4 , |
| 309 | .Xr stdout 4 , |
| 310 | .Xr stderr 4 , |
| 311 | .Xr arandom 4 |
| 312 | and |
| 313 | .Xr tty 4 |
| 314 | devices. |
| 315 | For file transfer sessions using |
Darren Tucker | f92077f | 2009-06-21 17:56:25 +1000 | [diff] [blame] | 316 | .Dq sftp , |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 317 | no additional configuration of the environment is necessary if the |
Darren Tucker | f92077f | 2009-06-21 17:56:25 +1000 | [diff] [blame] | 318 | in-process sftp server is used, |
| 319 | though sessions which use logging do require |
Darren Tucker | 00fcd71 | 2009-06-21 17:56:00 +1000 | [diff] [blame] | 320 | .Pa /dev/log |
| 321 | inside the chroot directory (see |
| 322 | .Xr sftp-server 8 |
| 323 | for details). |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 324 | .Pp |
| 325 | The default is not to |
| 326 | .Xr chroot 2 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 327 | .It Cm Ciphers |
| 328 | Specifies the ciphers allowed for protocol version 2. |
| 329 | Multiple ciphers must be comma-separated. |
Damien Miller | 05202ff | 2004-06-15 10:30:39 +1000 | [diff] [blame] | 330 | The supported ciphers are |
| 331 | .Dq 3des-cbc , |
| 332 | .Dq aes128-cbc , |
| 333 | .Dq aes192-cbc , |
| 334 | .Dq aes256-cbc , |
| 335 | .Dq aes128-ctr , |
| 336 | .Dq aes192-ctr , |
| 337 | .Dq aes256-ctr , |
Damien Miller | 3710f27 | 2005-05-26 12:19:17 +1000 | [diff] [blame] | 338 | .Dq arcfour128 , |
| 339 | .Dq arcfour256 , |
Damien Miller | 05202ff | 2004-06-15 10:30:39 +1000 | [diff] [blame] | 340 | .Dq arcfour , |
| 341 | .Dq blowfish-cbc , |
| 342 | and |
| 343 | .Dq cast128-cbc . |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 344 | The default is: |
| 345 | .Bd -literal -offset 3n |
Damien Miller | 9aa72ba | 2009-01-28 16:34:00 +1100 | [diff] [blame] | 346 | aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128, |
| 347 | aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc, |
| 348 | aes256-cbc,arcfour |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 349 | .Ed |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 350 | .It Cm ClientAliveCountMax |
Damien Miller | b797770 | 2006-01-03 18:47:31 +1100 | [diff] [blame] | 351 | Sets the number of client alive messages (see below) which may be |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 352 | sent without |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 353 | .Xr sshd 8 |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 354 | receiving any messages back from the client. |
| 355 | If this threshold is reached while client alive messages are being sent, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 356 | sshd will disconnect the client, terminating the session. |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 357 | It is important to note that the use of client alive messages is very |
| 358 | different from |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 359 | .Cm TCPKeepAlive |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 360 | (below). |
| 361 | The client alive messages are sent through the encrypted channel |
| 362 | and therefore will not be spoofable. |
| 363 | The TCP keepalive option enabled by |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 364 | .Cm TCPKeepAlive |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 365 | is spoofable. |
| 366 | The client alive mechanism is valuable when the client or |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 367 | server depend on knowing when a connection has become inactive. |
| 368 | .Pp |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 369 | The default value is 3. |
| 370 | If |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 371 | .Cm ClientAliveInterval |
Damien Miller | b797770 | 2006-01-03 18:47:31 +1100 | [diff] [blame] | 372 | (see below) is set to 15, and |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 373 | .Cm ClientAliveCountMax |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 374 | is left at the default, unresponsive SSH clients |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 375 | will be disconnected after approximately 45 seconds. |
Damien Miller | cc3e8ba | 2006-03-15 12:06:55 +1100 | [diff] [blame] | 376 | This option applies to protocol version 2 only. |
Damien Miller | 1594ad5 | 2005-05-26 12:12:19 +1000 | [diff] [blame] | 377 | .It Cm ClientAliveInterval |
| 378 | Sets a timeout interval in seconds after which if no data has been received |
| 379 | from the client, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 380 | .Xr sshd 8 |
Damien Miller | 1594ad5 | 2005-05-26 12:12:19 +1000 | [diff] [blame] | 381 | will send a message through the encrypted |
| 382 | channel to request a response from the client. |
| 383 | The default |
| 384 | is 0, indicating that these messages will not be sent to the client. |
| 385 | This option applies to protocol version 2 only. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 386 | .It Cm Compression |
Damien Miller | 9786e6e | 2005-07-26 21:54:56 +1000 | [diff] [blame] | 387 | Specifies whether compression is allowed, or delayed until |
| 388 | the user has authenticated successfully. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 389 | The argument must be |
Damien Miller | 9786e6e | 2005-07-26 21:54:56 +1000 | [diff] [blame] | 390 | .Dq yes , |
| 391 | .Dq delayed , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 392 | or |
| 393 | .Dq no . |
| 394 | The default is |
Damien Miller | 9786e6e | 2005-07-26 21:54:56 +1000 | [diff] [blame] | 395 | .Dq delayed . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 396 | .It Cm DenyGroups |
| 397 | This keyword can be followed by a list of group name patterns, separated |
| 398 | by spaces. |
| 399 | Login is disallowed for users whose primary group or supplementary |
| 400 | group list matches one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 401 | Only group names are valid; a numerical group ID is not recognized. |
| 402 | By default, login is allowed for all groups. |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 403 | The allow/deny directives are processed in the following order: |
| 404 | .Cm DenyUsers , |
| 405 | .Cm AllowUsers , |
| 406 | .Cm DenyGroups , |
| 407 | and finally |
| 408 | .Cm AllowGroups . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 409 | .Pp |
| 410 | See |
| 411 | .Sx PATTERNS |
| 412 | in |
| 413 | .Xr ssh_config 5 |
| 414 | for more information on patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 415 | .It Cm DenyUsers |
| 416 | This keyword can be followed by a list of user name patterns, separated |
| 417 | by spaces. |
| 418 | Login is disallowed for user names that match one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 419 | Only user names are valid; a numerical user ID is not recognized. |
| 420 | By default, login is allowed for all users. |
| 421 | If the pattern takes the form USER@HOST then USER and HOST |
| 422 | are separately checked, restricting logins to particular |
| 423 | users from particular hosts. |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 424 | The allow/deny directives are processed in the following order: |
| 425 | .Cm DenyUsers , |
| 426 | .Cm AllowUsers , |
| 427 | .Cm DenyGroups , |
| 428 | and finally |
| 429 | .Cm AllowGroups . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 430 | .Pp |
| 431 | See |
| 432 | .Sx PATTERNS |
| 433 | in |
| 434 | .Xr ssh_config 5 |
| 435 | for more information on patterns. |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 436 | .It Cm ForceCommand |
| 437 | Forces the execution of the command specified by |
| 438 | .Cm ForceCommand , |
Damien Miller | a1b48cc | 2008-03-27 11:02:02 +1100 | [diff] [blame] | 439 | ignoring any command supplied by the client and |
| 440 | .Pa ~/.ssh/rc |
| 441 | if present. |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 442 | The command is invoked by using the user's login shell with the -c option. |
| 443 | This applies to shell, command, or subsystem execution. |
| 444 | It is most useful inside a |
| 445 | .Cm Match |
| 446 | block. |
| 447 | The command originally supplied by the client is available in the |
| 448 | .Ev SSH_ORIGINAL_COMMAND |
| 449 | environment variable. |
Damien Miller | cdb6e65 | 2008-02-10 22:47:24 +1100 | [diff] [blame] | 450 | Specifying a command of |
| 451 | .Dq internal-sftp |
| 452 | will force the use of an in-process sftp server that requires no support |
| 453 | files when used with |
| 454 | .Cm ChrootDirectory . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 455 | .It Cm GatewayPorts |
| 456 | Specifies whether remote hosts are allowed to connect to ports |
| 457 | forwarded for the client. |
| 458 | By default, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 459 | .Xr sshd 8 |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 460 | binds remote port forwardings to the loopback address. |
| 461 | This prevents other remote hosts from connecting to forwarded ports. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 462 | .Cm GatewayPorts |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 463 | can be used to specify that sshd |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 464 | should allow remote port forwardings to bind to non-loopback addresses, thus |
| 465 | allowing other hosts to connect. |
| 466 | The argument may be |
| 467 | .Dq no |
| 468 | to force remote port forwardings to be available to the local host only, |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 469 | .Dq yes |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 470 | to force remote port forwardings to bind to the wildcard address, or |
| 471 | .Dq clientspecified |
| 472 | to allow the client to select the address to which the forwarding is bound. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 473 | The default is |
| 474 | .Dq no . |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 475 | .It Cm GSSAPIAuthentication |
Damien Miller | 9b7b03b | 2003-09-02 22:57:05 +1000 | [diff] [blame] | 476 | Specifies whether user authentication based on GSSAPI is allowed. |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 477 | The default is |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 478 | .Dq no . |
| 479 | Note that this option applies to protocol version 2 only. |
| 480 | .It Cm GSSAPICleanupCredentials |
| 481 | Specifies whether to automatically destroy the user's credentials cache |
| 482 | on logout. |
| 483 | The default is |
| 484 | .Dq yes . |
| 485 | Note that this option applies to protocol version 2 only. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 486 | .It Cm HostbasedAuthentication |
| 487 | Specifies whether rhosts or /etc/hosts.equiv authentication together |
| 488 | with successful public key client host authentication is allowed |
Damien Miller | 1faa713 | 2006-03-15 11:55:31 +1100 | [diff] [blame] | 489 | (host-based authentication). |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 490 | This option is similar to |
| 491 | .Cm RhostsRSAAuthentication |
| 492 | and applies to protocol version 2 only. |
| 493 | The default is |
| 494 | .Dq no . |
Damien Miller | b594f38 | 2006-08-30 11:06:34 +1000 | [diff] [blame] | 495 | .It Cm HostbasedUsesNameFromPacketOnly |
| 496 | Specifies whether or not the server will attempt to perform a reverse |
| 497 | name lookup when matching the name in the |
| 498 | .Pa ~/.shosts , |
| 499 | .Pa ~/.rhosts , |
| 500 | and |
| 501 | .Pa /etc/hosts.equiv |
| 502 | files during |
| 503 | .Cm HostbasedAuthentication . |
| 504 | A setting of |
| 505 | .Dq yes |
| 506 | means that |
| 507 | .Xr sshd 8 |
| 508 | uses the name supplied by the client rather than |
| 509 | attempting to resolve the name from the TCP connection itself. |
| 510 | The default is |
| 511 | .Dq no . |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 512 | .It Cm HostCertificate |
| 513 | Specifies a file containing a public host certificate. |
| 514 | The certificate's public key must match a private host key already specified |
| 515 | by |
| 516 | .Cm HostKey . |
| 517 | The default behaviour of |
| 518 | .Xr sshd 8 |
| 519 | is not to load any certificates. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 520 | .It Cm HostKey |
| 521 | Specifies a file containing a private host key |
| 522 | used by SSH. |
| 523 | The default is |
| 524 | .Pa /etc/ssh/ssh_host_key |
| 525 | for protocol version 1, and |
Damien Miller | eb8b60e | 2010-08-31 22:41:14 +1000 | [diff] [blame] | 526 | .Pa /etc/ssh/ssh_host_dsa_key , |
| 527 | .Pa /etc/ssh/ssh_host_ecdsa_key |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 528 | and |
Damien Miller | eb8b60e | 2010-08-31 22:41:14 +1000 | [diff] [blame] | 529 | .Pa /etc/ssh/ssh_host_rsa_key |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 530 | for protocol version 2. |
| 531 | Note that |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 532 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 533 | will refuse to use a file if it is group/world-accessible. |
| 534 | It is possible to have multiple host key files. |
| 535 | .Dq rsa1 |
| 536 | keys are used for version 1 and |
Damien Miller | eb8b60e | 2010-08-31 22:41:14 +1000 | [diff] [blame] | 537 | .Dq dsa , |
| 538 | .Dq ecdsa |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 539 | or |
| 540 | .Dq rsa |
| 541 | are used for version 2 of the SSH protocol. |
| 542 | .It Cm IgnoreRhosts |
| 543 | Specifies that |
| 544 | .Pa .rhosts |
| 545 | and |
| 546 | .Pa .shosts |
| 547 | files will not be used in |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 548 | .Cm RhostsRSAAuthentication |
| 549 | or |
| 550 | .Cm HostbasedAuthentication . |
| 551 | .Pp |
| 552 | .Pa /etc/hosts.equiv |
| 553 | and |
| 554 | .Pa /etc/shosts.equiv |
| 555 | are still used. |
| 556 | The default is |
| 557 | .Dq yes . |
| 558 | .It Cm IgnoreUserKnownHosts |
| 559 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 560 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 561 | should ignore the user's |
Damien Miller | 167ea5d | 2005-05-26 12:04:02 +1000 | [diff] [blame] | 562 | .Pa ~/.ssh/known_hosts |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 563 | during |
| 564 | .Cm RhostsRSAAuthentication |
| 565 | or |
| 566 | .Cm HostbasedAuthentication . |
| 567 | The default is |
| 568 | .Dq no . |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 569 | .It Cm IPQoS |
| 570 | Specifies the IPv4 type-of-service or DSCP class for the connection. |
| 571 | Accepted values are |
| 572 | .Dq af11 , |
| 573 | .Dq af12 , |
| 574 | .Dq af13 , |
Damien Miller | f6e758c | 2011-09-22 21:37:13 +1000 | [diff] [blame] | 575 | .Dq af21 , |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 576 | .Dq af22 , |
| 577 | .Dq af23 , |
| 578 | .Dq af31 , |
| 579 | .Dq af32 , |
| 580 | .Dq af33 , |
| 581 | .Dq af41 , |
| 582 | .Dq af42 , |
| 583 | .Dq af43 , |
| 584 | .Dq cs0 , |
| 585 | .Dq cs1 , |
| 586 | .Dq cs2 , |
| 587 | .Dq cs3 , |
| 588 | .Dq cs4 , |
| 589 | .Dq cs5 , |
| 590 | .Dq cs6 , |
| 591 | .Dq cs7 , |
| 592 | .Dq ef , |
| 593 | .Dq lowdelay , |
| 594 | .Dq throughput , |
| 595 | .Dq reliability , |
| 596 | or a numeric value. |
Damien Miller | 928362d | 2010-12-26 14:26:45 +1100 | [diff] [blame] | 597 | This option may take one or two arguments, separated by whitespace. |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 598 | If one argument is specified, it is used as the packet class unconditionally. |
| 599 | If two values are specified, the first is automatically selected for |
| 600 | interactive sessions and the second for non-interactive sessions. |
| 601 | The default is |
| 602 | .Dq lowdelay |
| 603 | for interactive sessions and |
| 604 | .Dq throughput |
| 605 | for non-interactive sessions. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 606 | .It Cm KerberosAuthentication |
Damien Miller | 1a0c0b9 | 2003-09-02 22:51:17 +1000 | [diff] [blame] | 607 | Specifies whether the password provided by the user for |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 608 | .Cm PasswordAuthentication |
Damien Miller | 1a0c0b9 | 2003-09-02 22:51:17 +1000 | [diff] [blame] | 609 | will be validated through the Kerberos KDC. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 610 | To use this option, the server needs a |
| 611 | Kerberos servtab which allows the verification of the KDC's identity. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 612 | The default is |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 613 | .Dq no . |
Damien Miller | 8448e66 | 2004-03-08 23:13:15 +1100 | [diff] [blame] | 614 | .It Cm KerberosGetAFSToken |
Darren Tucker | e2dd2d5 | 2005-10-03 18:19:06 +1000 | [diff] [blame] | 615 | If AFS is active and the user has a Kerberos 5 TGT, attempt to acquire |
Damien Miller | 8448e66 | 2004-03-08 23:13:15 +1100 | [diff] [blame] | 616 | an AFS token before accessing the user's home directory. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 617 | The default is |
Damien Miller | 8448e66 | 2004-03-08 23:13:15 +1100 | [diff] [blame] | 618 | .Dq no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 619 | .It Cm KerberosOrLocalPasswd |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 620 | If password authentication through Kerberos fails then |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 621 | the password will be validated via any additional local mechanism |
| 622 | such as |
| 623 | .Pa /etc/passwd . |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 624 | The default is |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 625 | .Dq yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 626 | .It Cm KerberosTicketCleanup |
| 627 | Specifies whether to automatically destroy the user's ticket cache |
| 628 | file on logout. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 629 | The default is |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 630 | .Dq yes . |
Damien Miller | d5f62bf | 2010-09-24 22:11:14 +1000 | [diff] [blame] | 631 | .It Cm KexAlgorithms |
| 632 | Specifies the available KEX (Key Exchange) algorithms. |
| 633 | Multiple algorithms must be comma-separated. |
| 634 | The default is |
| 635 | .Dq ecdh-sha2-nistp256 , |
| 636 | .Dq ecdh-sha2-nistp384 , |
| 637 | .Dq ecdh-sha2-nistp521 , |
Damien Miller | 0a18473 | 2010-11-20 15:21:03 +1100 | [diff] [blame] | 638 | .Dq diffie-hellman-group-exchange-sha256 , |
Damien Miller | d5f62bf | 2010-09-24 22:11:14 +1000 | [diff] [blame] | 639 | .Dq diffie-hellman-group-exchange-sha1 , |
| 640 | .Dq diffie-hellman-group14-sha1 , |
| 641 | .Dq diffie-hellman-group1-sha1 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 642 | .It Cm KeyRegenerationInterval |
| 643 | In protocol version 1, the ephemeral server key is automatically regenerated |
| 644 | after this many seconds (if it has been used). |
| 645 | The purpose of regeneration is to prevent |
| 646 | decrypting captured sessions by later breaking into the machine and |
| 647 | stealing the keys. |
| 648 | The key is never stored anywhere. |
| 649 | If the value is 0, the key is never regenerated. |
| 650 | The default is 3600 (seconds). |
| 651 | .It Cm ListenAddress |
| 652 | Specifies the local addresses |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 653 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 654 | should listen on. |
| 655 | The following forms may be used: |
| 656 | .Pp |
| 657 | .Bl -item -offset indent -compact |
| 658 | .It |
| 659 | .Cm ListenAddress |
| 660 | .Sm off |
| 661 | .Ar host No | Ar IPv4_addr No | Ar IPv6_addr |
| 662 | .Sm on |
| 663 | .It |
| 664 | .Cm ListenAddress |
| 665 | .Sm off |
| 666 | .Ar host No | Ar IPv4_addr No : Ar port |
| 667 | .Sm on |
| 668 | .It |
| 669 | .Cm ListenAddress |
| 670 | .Sm off |
| 671 | .Oo |
| 672 | .Ar host No | Ar IPv6_addr Oc : Ar port |
| 673 | .Sm on |
| 674 | .El |
| 675 | .Pp |
| 676 | If |
| 677 | .Ar port |
| 678 | is not specified, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 679 | sshd will listen on the address and all prior |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 680 | .Cm Port |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 681 | options specified. |
| 682 | The default is to listen on all local addresses. |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 683 | Multiple |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 684 | .Cm ListenAddress |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 685 | options are permitted. |
| 686 | Additionally, any |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 687 | .Cm Port |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 688 | options must precede this option for non-port qualified addresses. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 689 | .It Cm LoginGraceTime |
| 690 | The server disconnects after this time if the user has not |
| 691 | successfully logged in. |
| 692 | If the value is 0, there is no time limit. |
Damien Miller | c134863 | 2002-09-05 14:35:14 +1000 | [diff] [blame] | 693 | The default is 120 seconds. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 694 | .It Cm LogLevel |
| 695 | Gives the verbosity level that is used when logging messages from |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 696 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 697 | The possible values are: |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 698 | QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3. |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 699 | The default is INFO. |
| 700 | DEBUG and DEBUG1 are equivalent. |
| 701 | DEBUG2 and DEBUG3 each specify higher levels of debugging output. |
| 702 | Logging with a DEBUG level violates the privacy of users and is not recommended. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 703 | .It Cm MACs |
| 704 | Specifies the available MAC (message authentication code) algorithms. |
| 705 | The MAC algorithm is used in protocol version 2 |
| 706 | for data integrity protection. |
| 707 | Multiple algorithms must be comma-separated. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 708 | The default is: |
Damien Miller | 22b7b49 | 2007-06-11 14:07:12 +1000 | [diff] [blame] | 709 | .Bd -literal -offset indent |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 710 | hmac-md5,hmac-sha1,umac-64@openssh.com,umac-128@openssh.com, |
Darren Tucker | ecbf14a | 2012-07-02 18:53:37 +1000 | [diff] [blame] | 711 | hmac-sha2-256,hmac-sha2-512,hmac-ripemd160, |
| 712 | hmac-sha1-96,hmac-md5-96 |
Damien Miller | 22b7b49 | 2007-06-11 14:07:12 +1000 | [diff] [blame] | 713 | .Ed |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 714 | .It Cm Match |
Damien Miller | d04f357 | 2006-07-24 13:46:50 +1000 | [diff] [blame] | 715 | Introduces a conditional block. |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 716 | If all of the criteria on the |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 717 | .Cm Match |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 718 | line are satisfied, the keywords on the following lines override those |
| 719 | set in the global section of the config file, until either another |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 720 | .Cm Match |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 721 | line or the end of the file. |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 722 | .Pp |
Damien Miller | d04f357 | 2006-07-24 13:46:50 +1000 | [diff] [blame] | 723 | The arguments to |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 724 | .Cm Match |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 725 | are one or more criteria-pattern pairs. |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 726 | The available criteria are |
| 727 | .Cm User , |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 728 | .Cm Group , |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 729 | .Cm Host , |
Darren Tucker | fbcf827 | 2012-05-19 19:37:01 +1000 | [diff] [blame] | 730 | .Cm LocalAddress , |
| 731 | .Cm LocalPort , |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 732 | and |
| 733 | .Cm Address . |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 734 | The match patterns may consist of single entries or comma-separated |
| 735 | lists and may use the wildcard and negation operators described in the |
Darren Tucker | b06cc4a | 2008-06-10 22:59:53 +1000 | [diff] [blame] | 736 | .Sx PATTERNS |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 737 | section of |
Darren Tucker | b06cc4a | 2008-06-10 22:59:53 +1000 | [diff] [blame] | 738 | .Xr ssh_config 5 . |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 739 | .Pp |
| 740 | The patterns in an |
| 741 | .Cm Address |
| 742 | criteria may additionally contain addresses to match in CIDR |
Darren Tucker | 6a2a400 | 2008-06-10 23:03:04 +1000 | [diff] [blame] | 743 | address/masklen format, e.g.\& |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 744 | .Dq 192.0.2.0/24 |
| 745 | or |
| 746 | .Dq 3ffe:ffff::/32 . |
| 747 | Note that the mask length provided must be consistent with the address - |
| 748 | it is an error to specify a mask length that is too long for the address |
Darren Tucker | 6a2a400 | 2008-06-10 23:03:04 +1000 | [diff] [blame] | 749 | or one with bits set in this host portion of the address. |
| 750 | For example, |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 751 | .Dq 192.0.2.0/33 |
| 752 | and |
Darren Tucker | 6a2a400 | 2008-06-10 23:03:04 +1000 | [diff] [blame] | 753 | .Dq 192.0.2.0/8 |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 754 | respectively. |
| 755 | .Pp |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 756 | Only a subset of keywords may be used on the lines following a |
| 757 | .Cm Match |
| 758 | keyword. |
| 759 | Available keywords are |
Damien Miller | f826850 | 2012-06-20 21:54:15 +1000 | [diff] [blame] | 760 | .Cm AcceptEnv , |
Damien Miller | 1781901 | 2009-01-28 16:20:17 +1100 | [diff] [blame] | 761 | .Cm AllowAgentForwarding , |
Damien Miller | f826850 | 2012-06-20 21:54:15 +1000 | [diff] [blame] | 762 | .Cm AllowGroups , |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 763 | .Cm AllowTcpForwarding , |
Damien Miller | c24da77 | 2012-06-20 21:53:58 +1000 | [diff] [blame] | 764 | .Cm AllowUsers , |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 765 | .Cm AuthenticationMethods , |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 766 | .Cm AuthorizedKeysCommand , |
| 767 | .Cm AuthorizedKeysCommandUser , |
Damien Miller | f33580e | 2012-11-04 22:22:52 +1100 | [diff] [blame] | 768 | .Cm AuthorizedKeysFile , |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 769 | .Cm AuthorizedPrincipalsFile , |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 770 | .Cm Banner , |
Damien Miller | 797e3d1 | 2008-05-19 14:27:42 +1000 | [diff] [blame] | 771 | .Cm ChrootDirectory , |
Damien Miller | c24da77 | 2012-06-20 21:53:58 +1000 | [diff] [blame] | 772 | .Cm DenyGroups , |
| 773 | .Cm DenyUsers , |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 774 | .Cm ForceCommand , |
Damien Miller | c24da77 | 2012-06-20 21:53:58 +1000 | [diff] [blame] | 775 | .Cm GatewayPorts , |
Damien Miller | f826850 | 2012-06-20 21:54:15 +1000 | [diff] [blame] | 776 | .Cm GSSAPIAuthentication , |
Damien Miller | 25434de | 2008-05-19 14:29:08 +1000 | [diff] [blame] | 777 | .Cm HostbasedAuthentication , |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 778 | .Cm HostbasedUsesNameFromPacketOnly , |
Darren Tucker | 1d75f22 | 2007-03-01 21:31:28 +1100 | [diff] [blame] | 779 | .Cm KbdInteractiveAuthentication , |
Damien Miller | 5737e36 | 2007-03-06 21:21:18 +1100 | [diff] [blame] | 780 | .Cm KerberosAuthentication , |
Damien Miller | 307c1d1 | 2008-06-16 07:56:20 +1000 | [diff] [blame] | 781 | .Cm MaxAuthTries , |
Damien Miller | c62a5af | 2008-06-16 07:55:46 +1000 | [diff] [blame] | 782 | .Cm MaxSessions , |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 783 | .Cm PasswordAuthentication , |
Damien Miller | 51bde60 | 2008-11-03 19:23:10 +1100 | [diff] [blame] | 784 | .Cm PermitEmptyPasswords , |
Damien Miller | d1de995 | 2006-07-24 14:05:48 +1000 | [diff] [blame] | 785 | .Cm PermitOpen , |
Darren Tucker | 15f9427 | 2008-01-01 20:36:56 +1100 | [diff] [blame] | 786 | .Cm PermitRootLogin , |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 787 | .Cm PermitTunnel , |
Darren Tucker | 1477ea1 | 2009-10-07 08:36:05 +1100 | [diff] [blame] | 788 | .Cm PubkeyAuthentication , |
Damien Miller | c24da77 | 2012-06-20 21:53:58 +1000 | [diff] [blame] | 789 | .Cm RhostsRSAAuthentication , |
Damien Miller | f826850 | 2012-06-20 21:54:15 +1000 | [diff] [blame] | 790 | .Cm RSAAuthentication , |
Damien Miller | d1de995 | 2006-07-24 14:05:48 +1000 | [diff] [blame] | 791 | .Cm X11DisplayOffset , |
Damien Miller | 1991384 | 2009-02-23 10:53:58 +1100 | [diff] [blame] | 792 | .Cm X11Forwarding |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 793 | and |
Damien Miller | 0296ae8 | 2009-02-23 11:00:24 +1100 | [diff] [blame] | 794 | .Cm X11UseLocalHost . |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 795 | .It Cm MaxAuthTries |
| 796 | Specifies the maximum number of authentication attempts permitted per |
Damien Miller | 26213e5 | 2004-06-30 22:39:34 +1000 | [diff] [blame] | 797 | connection. |
| 798 | Once the number of failures reaches half this value, |
| 799 | additional failures are logged. |
| 800 | The default is 6. |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 801 | .It Cm MaxSessions |
| 802 | Specifies the maximum number of open sessions permitted per network connection. |
| 803 | The default is 10. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 804 | .It Cm MaxStartups |
| 805 | Specifies the maximum number of concurrent unauthenticated connections to the |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 806 | SSH daemon. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 807 | Additional connections will be dropped until authentication succeeds or the |
| 808 | .Cm LoginGraceTime |
| 809 | expires for a connection. |
| 810 | The default is 10. |
| 811 | .Pp |
| 812 | Alternatively, random early drop can be enabled by specifying |
| 813 | the three colon separated values |
| 814 | .Dq start:rate:full |
Damien Miller | 208f1ed | 2006-03-15 11:56:03 +1100 | [diff] [blame] | 815 | (e.g. "10:30:60"). |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 816 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 817 | will refuse connection attempts with a probability of |
| 818 | .Dq rate/100 |
| 819 | (30%) |
| 820 | if there are currently |
| 821 | .Dq start |
| 822 | (10) |
| 823 | unauthenticated connections. |
| 824 | The probability increases linearly and all connection attempts |
| 825 | are refused if the number of unauthenticated connections reaches |
| 826 | .Dq full |
| 827 | (60). |
| 828 | .It Cm PasswordAuthentication |
| 829 | Specifies whether password authentication is allowed. |
| 830 | The default is |
| 831 | .Dq yes . |
| 832 | .It Cm PermitEmptyPasswords |
| 833 | When password authentication is allowed, it specifies whether the |
| 834 | server allows login to accounts with empty password strings. |
| 835 | The default is |
| 836 | .Dq no . |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 837 | .It Cm PermitOpen |
| 838 | Specifies the destinations to which TCP port forwarding is permitted. |
| 839 | The forwarding specification must be one of the following forms: |
| 840 | .Pp |
| 841 | .Bl -item -offset indent -compact |
| 842 | .It |
| 843 | .Cm PermitOpen |
| 844 | .Sm off |
| 845 | .Ar host : port |
| 846 | .Sm on |
| 847 | .It |
| 848 | .Cm PermitOpen |
| 849 | .Sm off |
| 850 | .Ar IPv4_addr : port |
| 851 | .Sm on |
| 852 | .It |
| 853 | .Cm PermitOpen |
| 854 | .Sm off |
| 855 | .Ar \&[ IPv6_addr \&] : port |
| 856 | .Sm on |
| 857 | .El |
| 858 | .Pp |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 859 | Multiple forwards may be specified by separating them with whitespace. |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 860 | An argument of |
| 861 | .Dq any |
| 862 | can be used to remove all restrictions and permit any forwarding requests. |
Darren Tucker | ba9ea32 | 2012-05-19 19:37:33 +1000 | [diff] [blame] | 863 | An argument of |
| 864 | .Dq none |
| 865 | can be used to prohibit all forwarding requests. |
Damien Miller | 65bc2c4 | 2006-07-24 14:04:16 +1000 | [diff] [blame] | 866 | By default all port forwarding requests are permitted. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 867 | .It Cm PermitRootLogin |
Darren Tucker | b350901 | 2005-01-20 11:01:46 +1100 | [diff] [blame] | 868 | Specifies whether root can log in using |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 869 | .Xr ssh 1 . |
| 870 | The argument must be |
| 871 | .Dq yes , |
| 872 | .Dq without-password , |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 873 | .Dq forced-commands-only , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 874 | or |
| 875 | .Dq no . |
| 876 | The default is |
| 877 | .Dq yes . |
| 878 | .Pp |
| 879 | If this option is set to |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 880 | .Dq without-password , |
Darren Tucker | 9dca099 | 2005-02-01 19:16:45 +1100 | [diff] [blame] | 881 | password authentication is disabled for root. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 882 | .Pp |
| 883 | If this option is set to |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 884 | .Dq forced-commands-only , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 885 | root login with public key authentication will be allowed, |
| 886 | but only if the |
| 887 | .Ar command |
| 888 | option has been specified |
| 889 | (which may be useful for taking remote backups even if root login is |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 890 | normally not allowed). |
| 891 | All other authentication methods are disabled for root. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 892 | .Pp |
| 893 | If this option is set to |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 894 | .Dq no , |
Darren Tucker | b350901 | 2005-01-20 11:01:46 +1100 | [diff] [blame] | 895 | root is not allowed to log in. |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 896 | .It Cm PermitTunnel |
| 897 | Specifies whether |
| 898 | .Xr tun 4 |
| 899 | device forwarding is allowed. |
Damien Miller | 7b58e80 | 2005-12-13 19:33:19 +1100 | [diff] [blame] | 900 | The argument must be |
| 901 | .Dq yes , |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 902 | .Dq point-to-point |
| 903 | (layer 3), |
| 904 | .Dq ethernet |
| 905 | (layer 2), or |
Damien Miller | 7b58e80 | 2005-12-13 19:33:19 +1100 | [diff] [blame] | 906 | .Dq no . |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 907 | Specifying |
| 908 | .Dq yes |
| 909 | permits both |
| 910 | .Dq point-to-point |
| 911 | and |
| 912 | .Dq ethernet . |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 913 | The default is |
| 914 | .Dq no . |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 915 | .It Cm PermitUserEnvironment |
| 916 | Specifies whether |
| 917 | .Pa ~/.ssh/environment |
Ben Lindstrom | bd9bf38 | 2002-08-20 18:54:20 +0000 | [diff] [blame] | 918 | and |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 919 | .Cm environment= |
| 920 | options in |
| 921 | .Pa ~/.ssh/authorized_keys |
Ben Lindstrom | bd9bf38 | 2002-08-20 18:54:20 +0000 | [diff] [blame] | 922 | are processed by |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 923 | .Xr sshd 8 . |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 924 | The default is |
| 925 | .Dq no . |
Ben Lindstrom | bd9bf38 | 2002-08-20 18:54:20 +0000 | [diff] [blame] | 926 | Enabling environment processing may enable users to bypass access |
| 927 | restrictions in some configurations using mechanisms such as |
| 928 | .Ev LD_PRELOAD . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 929 | .It Cm PidFile |
Ben Lindstrom | 959de99 | 2002-06-23 00:35:25 +0000 | [diff] [blame] | 930 | Specifies the file that contains the process ID of the |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 931 | SSH daemon. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 932 | The default is |
| 933 | .Pa /var/run/sshd.pid . |
| 934 | .It Cm Port |
| 935 | Specifies the port number that |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 936 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 937 | listens on. |
| 938 | The default is 22. |
| 939 | Multiple options of this type are permitted. |
| 940 | See also |
| 941 | .Cm ListenAddress . |
| 942 | .It Cm PrintLastLog |
| 943 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 944 | .Xr sshd 8 |
Darren Tucker | 7cc5c23 | 2004-11-05 20:06:59 +1100 | [diff] [blame] | 945 | should print the date and time of the last user login when a user logs |
| 946 | in interactively. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 947 | The default is |
| 948 | .Dq yes . |
| 949 | .It Cm PrintMotd |
| 950 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 951 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 952 | should print |
| 953 | .Pa /etc/motd |
| 954 | when a user logs in interactively. |
| 955 | (On some systems it is also printed by the shell, |
| 956 | .Pa /etc/profile , |
| 957 | or equivalent.) |
| 958 | The default is |
| 959 | .Dq yes . |
| 960 | .It Cm Protocol |
| 961 | Specifies the protocol versions |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 962 | .Xr sshd 8 |
Ben Lindstrom | 9c44554 | 2002-07-11 03:59:18 +0000 | [diff] [blame] | 963 | supports. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 964 | The possible values are |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 965 | .Sq 1 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 966 | and |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 967 | .Sq 2 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 968 | Multiple versions must be comma-separated. |
| 969 | The default is |
Darren Tucker | 7a4a765 | 2009-10-11 21:51:40 +1100 | [diff] [blame] | 970 | .Sq 2 . |
Ben Lindstrom | 9c44554 | 2002-07-11 03:59:18 +0000 | [diff] [blame] | 971 | Note that the order of the protocol list does not indicate preference, |
| 972 | because the client selects among multiple protocol versions offered |
| 973 | by the server. |
| 974 | Specifying |
| 975 | .Dq 2,1 |
| 976 | is identical to |
| 977 | .Dq 1,2 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 978 | .It Cm PubkeyAuthentication |
| 979 | Specifies whether public key authentication is allowed. |
| 980 | The default is |
| 981 | .Dq yes . |
| 982 | Note that this option applies to protocol version 2 only. |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 983 | .It Cm RevokedKeys |
| 984 | Specifies a list of revoked public keys. |
| 985 | Keys listed in this file will be refused for public key authentication. |
| 986 | Note that if this file is not readable, then public key authentication will |
| 987 | be refused for all users. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 988 | .It Cm RhostsRSAAuthentication |
| 989 | Specifies whether rhosts or /etc/hosts.equiv authentication together |
| 990 | with successful RSA host authentication is allowed. |
| 991 | The default is |
| 992 | .Dq no . |
| 993 | This option applies to protocol version 1 only. |
| 994 | .It Cm RSAAuthentication |
| 995 | Specifies whether pure RSA authentication is allowed. |
| 996 | The default is |
| 997 | .Dq yes . |
| 998 | This option applies to protocol version 1 only. |
| 999 | .It Cm ServerKeyBits |
| 1000 | Defines the number of bits in the ephemeral protocol version 1 server key. |
Darren Tucker | 7499b0c | 2008-07-02 22:35:43 +1000 | [diff] [blame] | 1001 | The minimum value is 512, and the default is 1024. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1002 | .It Cm StrictModes |
| 1003 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1004 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1005 | should check file modes and ownership of the |
| 1006 | user's files and home directory before accepting login. |
| 1007 | This is normally desirable because novices sometimes accidentally leave their |
| 1008 | directory or files world-writable. |
| 1009 | The default is |
| 1010 | .Dq yes . |
Darren Tucker | f788a91 | 2010-01-08 17:06:47 +1100 | [diff] [blame] | 1011 | Note that this does not apply to |
| 1012 | .Cm ChrootDirectory , |
| 1013 | whose permissions and ownership are checked unconditionally. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1014 | .It Cm Subsystem |
Damien Miller | 208f1ed | 2006-03-15 11:56:03 +1100 | [diff] [blame] | 1015 | Configures an external subsystem (e.g. file transfer daemon). |
Damien Miller | 917f9b6 | 2006-07-10 20:36:47 +1000 | [diff] [blame] | 1016 | Arguments should be a subsystem name and a command (with optional arguments) |
| 1017 | to execute upon subsystem request. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1018 | .Pp |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1019 | The command |
| 1020 | .Xr sftp-server 8 |
| 1021 | implements the |
| 1022 | .Dq sftp |
| 1023 | file transfer subsystem. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1024 | .Pp |
| 1025 | Alternately the name |
| 1026 | .Dq internal-sftp |
| 1027 | implements an in-process |
| 1028 | .Dq sftp |
| 1029 | server. |
| 1030 | This may simplify configurations using |
| 1031 | .Cm ChrootDirectory |
| 1032 | to force a different filesystem root on clients. |
| 1033 | .Pp |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1034 | By default no subsystems are defined. |
| 1035 | Note that this option applies to protocol version 2 only. |
| 1036 | .It Cm SyslogFacility |
| 1037 | Gives the facility code that is used when logging messages from |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1038 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1039 | The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2, |
| 1040 | LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. |
| 1041 | The default is AUTH. |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 1042 | .It Cm TCPKeepAlive |
| 1043 | Specifies whether the system should send TCP keepalive messages to the |
| 1044 | other side. |
| 1045 | If they are sent, death of the connection or crash of one |
| 1046 | of the machines will be properly noticed. |
| 1047 | However, this means that |
| 1048 | connections will die if the route is down temporarily, and some people |
| 1049 | find it annoying. |
| 1050 | On the other hand, if TCP keepalives are not sent, |
| 1051 | sessions may hang indefinitely on the server, leaving |
| 1052 | .Dq ghost |
| 1053 | users and consuming server resources. |
| 1054 | .Pp |
| 1055 | The default is |
| 1056 | .Dq yes |
| 1057 | (to send TCP keepalive messages), and the server will notice |
| 1058 | if the network goes down or the client host crashes. |
| 1059 | This avoids infinitely hanging sessions. |
| 1060 | .Pp |
| 1061 | To disable TCP keepalive messages, the value should be set to |
| 1062 | .Dq no . |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1063 | .It Cm TrustedUserCAKeys |
| 1064 | Specifies a file containing public keys of certificate authorities that are |
Damien Miller | c6db99e | 2010-03-05 10:41:45 +1100 | [diff] [blame] | 1065 | trusted to sign user certificates for authentication. |
Damien Miller | 72b3382 | 2010-03-05 07:39:01 +1100 | [diff] [blame] | 1066 | Keys are listed one per line; empty lines and comments starting with |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1067 | .Ql # |
| 1068 | are allowed. |
| 1069 | If a certificate is presented for authentication and has its signing CA key |
| 1070 | listed in this file, then it may be used for authentication for any user |
| 1071 | listed in the certificate's principals list. |
| 1072 | Note that certificates that lack a list of principals will not be permitted |
| 1073 | for authentication using |
| 1074 | .Cm TrustedUserCAKeys . |
Damien Miller | 72b3382 | 2010-03-05 07:39:01 +1100 | [diff] [blame] | 1075 | For more details on certificates, see the |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1076 | .Sx CERTIFICATES |
| 1077 | section in |
| 1078 | .Xr ssh-keygen 1 . |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 1079 | .It Cm UseDNS |
| 1080 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1081 | .Xr sshd 8 |
Darren Tucker | 83d5a98 | 2005-03-31 21:33:50 +1000 | [diff] [blame] | 1082 | should look up the remote host name and check that |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 1083 | the resolved host name for the remote IP address maps back to the |
| 1084 | very same IP address. |
| 1085 | The default is |
| 1086 | .Dq yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1087 | .It Cm UseLogin |
| 1088 | Specifies whether |
| 1089 | .Xr login 1 |
| 1090 | is used for interactive login sessions. |
| 1091 | The default is |
| 1092 | .Dq no . |
| 1093 | Note that |
| 1094 | .Xr login 1 |
| 1095 | is never used for remote command execution. |
| 1096 | Note also, that if this is enabled, |
| 1097 | .Cm X11Forwarding |
| 1098 | will be disabled because |
| 1099 | .Xr login 1 |
| 1100 | does not know how to handle |
| 1101 | .Xr xauth 1 |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 1102 | cookies. |
| 1103 | If |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1104 | .Cm UsePrivilegeSeparation |
| 1105 | is specified, it will be disabled after authentication. |
Damien Miller | 2e193e2 | 2003-05-14 15:13:03 +1000 | [diff] [blame] | 1106 | .It Cm UsePAM |
Darren Tucker | 1dcff9a | 2004-05-13 16:51:40 +1000 | [diff] [blame] | 1107 | Enables the Pluggable Authentication Module interface. |
| 1108 | If set to |
| 1109 | .Dq yes |
| 1110 | this will enable PAM authentication using |
| 1111 | .Cm ChallengeResponseAuthentication |
Darren Tucker | a4904f7 | 2006-02-23 21:35:30 +1100 | [diff] [blame] | 1112 | and |
| 1113 | .Cm PasswordAuthentication |
| 1114 | in addition to PAM account and session module processing for all |
| 1115 | authentication types. |
Darren Tucker | 1dcff9a | 2004-05-13 16:51:40 +1000 | [diff] [blame] | 1116 | .Pp |
| 1117 | Because PAM challenge-response authentication usually serves an equivalent |
| 1118 | role to password authentication, you should disable either |
| 1119 | .Cm PasswordAuthentication |
| 1120 | or |
| 1121 | .Cm ChallengeResponseAuthentication. |
| 1122 | .Pp |
| 1123 | If |
| 1124 | .Cm UsePAM |
| 1125 | is enabled, you will not be able to run |
| 1126 | .Xr sshd 8 |
| 1127 | as a non-root user. |
| 1128 | The default is |
Darren Tucker | 6c0c070 | 2003-10-09 14:13:53 +1000 | [diff] [blame] | 1129 | .Dq no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1130 | .It Cm UsePrivilegeSeparation |
| 1131 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1132 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1133 | separates privileges by creating an unprivileged child process |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 1134 | to deal with incoming network traffic. |
| 1135 | After successful authentication, another process will be created that has |
| 1136 | the privilege of the authenticated user. |
| 1137 | The goal of privilege separation is to prevent privilege |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1138 | escalation by containing any corruption within the unprivileged processes. |
| 1139 | The default is |
| 1140 | .Dq yes . |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 1141 | If |
| 1142 | .Cm UsePrivilegeSeparation |
| 1143 | is set to |
| 1144 | .Dq sandbox |
| 1145 | then the pre-authentication unprivileged process is subject to additional |
| 1146 | restrictions. |
Damien Miller | 2352881 | 2012-04-22 11:24:43 +1000 | [diff] [blame] | 1147 | .It Cm VersionAddendum |
| 1148 | Optionally specifies additional text to append to the SSH protocol banner |
| 1149 | sent by the server upon connection. |
| 1150 | The default is |
| 1151 | .Dq none . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1152 | .It Cm X11DisplayOffset |
| 1153 | Specifies the first display number available for |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1154 | .Xr sshd 8 Ns 's |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1155 | X11 forwarding. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1156 | This prevents sshd from interfering with real X11 servers. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1157 | The default is 10. |
| 1158 | .It Cm X11Forwarding |
| 1159 | Specifies whether X11 forwarding is permitted. |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1160 | The argument must be |
| 1161 | .Dq yes |
| 1162 | or |
| 1163 | .Dq no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1164 | The default is |
| 1165 | .Dq no . |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1166 | .Pp |
| 1167 | When X11 forwarding is enabled, there may be additional exposure to |
| 1168 | the server and to client displays if the |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1169 | .Xr sshd 8 |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1170 | proxy display is configured to listen on the wildcard address (see |
| 1171 | .Cm X11UseLocalhost |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1172 | below), though this is not the default. |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1173 | Additionally, the authentication spoofing and authentication data |
| 1174 | verification and substitution occur on the client side. |
| 1175 | The security risk of using X11 forwarding is that the client's X11 |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1176 | display server may be exposed to attack when the SSH client requests |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1177 | forwarding (see the warnings for |
| 1178 | .Cm ForwardX11 |
| 1179 | in |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 1180 | .Xr ssh_config 5 ) . |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1181 | A system administrator may have a stance in which they want to |
| 1182 | protect clients that may expose themselves to attack by unwittingly |
| 1183 | requesting X11 forwarding, which can warrant a |
| 1184 | .Dq no |
| 1185 | setting. |
| 1186 | .Pp |
| 1187 | Note that disabling X11 forwarding does not prevent users from |
| 1188 | forwarding X11 traffic, as users can always install their own forwarders. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1189 | X11 forwarding is automatically disabled if |
| 1190 | .Cm UseLogin |
| 1191 | is enabled. |
| 1192 | .It Cm X11UseLocalhost |
| 1193 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1194 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1195 | should bind the X11 forwarding server to the loopback address or to |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 1196 | the wildcard address. |
| 1197 | By default, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1198 | sshd binds the forwarding server to the loopback address and sets the |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1199 | hostname part of the |
| 1200 | .Ev DISPLAY |
| 1201 | environment variable to |
| 1202 | .Dq localhost . |
Ben Lindstrom | 15b6120 | 2002-08-20 18:44:24 +0000 | [diff] [blame] | 1203 | This prevents remote hosts from connecting to the proxy display. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1204 | However, some older X11 clients may not function with this |
| 1205 | configuration. |
| 1206 | .Cm X11UseLocalhost |
| 1207 | may be set to |
| 1208 | .Dq no |
| 1209 | to specify that the forwarding server should be bound to the wildcard |
| 1210 | address. |
| 1211 | The argument must be |
| 1212 | .Dq yes |
| 1213 | or |
| 1214 | .Dq no . |
| 1215 | The default is |
| 1216 | .Dq yes . |
| 1217 | .It Cm XAuthLocation |
Damien Miller | 05913ba | 2002-09-04 16:51:03 +1000 | [diff] [blame] | 1218 | Specifies the full pathname of the |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1219 | .Xr xauth 1 |
| 1220 | program. |
| 1221 | The default is |
| 1222 | .Pa /usr/X11R6/bin/xauth . |
| 1223 | .El |
Damien Miller | e3beba2 | 2006-03-15 11:59:25 +1100 | [diff] [blame] | 1224 | .Sh TIME FORMATS |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1225 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1226 | command-line arguments and configuration file options that specify time |
| 1227 | may be expressed using a sequence of the form: |
| 1228 | .Sm off |
Ben Lindstrom | 1f8cf4f | 2002-08-20 18:43:27 +0000 | [diff] [blame] | 1229 | .Ar time Op Ar qualifier , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1230 | .Sm on |
| 1231 | where |
| 1232 | .Ar time |
| 1233 | is a positive integer value and |
| 1234 | .Ar qualifier |
| 1235 | is one of the following: |
| 1236 | .Pp |
| 1237 | .Bl -tag -width Ds -compact -offset indent |
Damien Miller | 393821a | 2006-07-24 14:04:53 +1000 | [diff] [blame] | 1238 | .It Aq Cm none |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1239 | seconds |
| 1240 | .It Cm s | Cm S |
| 1241 | seconds |
| 1242 | .It Cm m | Cm M |
| 1243 | minutes |
| 1244 | .It Cm h | Cm H |
| 1245 | hours |
| 1246 | .It Cm d | Cm D |
| 1247 | days |
| 1248 | .It Cm w | Cm W |
| 1249 | weeks |
| 1250 | .El |
| 1251 | .Pp |
| 1252 | Each member of the sequence is added together to calculate |
| 1253 | the total time value. |
| 1254 | .Pp |
| 1255 | Time format examples: |
| 1256 | .Pp |
| 1257 | .Bl -tag -width Ds -compact -offset indent |
| 1258 | .It 600 |
| 1259 | 600 seconds (10 minutes) |
| 1260 | .It 10m |
| 1261 | 10 minutes |
| 1262 | .It 1h30m |
| 1263 | 1 hour 30 minutes (90 minutes) |
| 1264 | .El |
| 1265 | .Sh FILES |
| 1266 | .Bl -tag -width Ds |
| 1267 | .It Pa /etc/ssh/sshd_config |
| 1268 | Contains configuration data for |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1269 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1270 | This file should be writable by root only, but it is recommended |
| 1271 | (though not necessary) that it be world-readable. |
| 1272 | .El |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 1273 | .Sh SEE ALSO |
| 1274 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1275 | .Sh AUTHORS |
| 1276 | OpenSSH is a derivative of the original and free |
| 1277 | ssh 1.2.12 release by Tatu Ylonen. |
| 1278 | Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, |
| 1279 | Theo de Raadt and Dug Song |
| 1280 | removed many bugs, re-added newer features and |
| 1281 | created OpenSSH. |
| 1282 | Markus Friedl contributed the support for SSH |
| 1283 | protocol versions 1.5 and 2.0. |
| 1284 | Niels Provos and Markus Friedl contributed support |
| 1285 | for privilege separation. |