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