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 | .\" |
jmc@openbsd.org | 4e04f46 | 2020-04-17 06:12:41 +0000 | [diff] [blame] | 36 | .\" $OpenBSD: sshd_config.5,v 1.311 2020/04/17 06:12:41 jmc Exp $ |
djm@openbsd.org | 321c714 | 2020-04-17 03:23:13 +0000 | [diff] [blame] | 37 | .Dd $Mdocdate: April 17 2020 $ |
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 |
jmc@openbsd.org | 483cc72 | 2019-11-30 07:07:59 +0000 | [diff] [blame] | 42 | .Nd OpenSSH daemon configuration file |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 43 | .Sh DESCRIPTION |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 44 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 45 | reads configuration data from |
| 46 | .Pa /etc/ssh/sshd_config |
| 47 | (or the file specified with |
| 48 | .Fl f |
| 49 | on the command line). |
| 50 | The file contains keyword-argument pairs, one per line. |
benno@openbsd.org | cfa4682 | 2017-10-09 20:12:51 +0000 | [diff] [blame] | 51 | For each keyword, the first obtained value will be used. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 52 | Lines starting with |
| 53 | .Ql # |
| 54 | and empty lines are interpreted as comments. |
Damien Miller | 306d118 | 2006-03-15 12:05:59 +1100 | [diff] [blame] | 55 | Arguments may optionally be enclosed in double quotes |
| 56 | .Pq \&" |
| 57 | in order to represent arguments containing spaces. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 58 | .Pp |
| 59 | The possible |
| 60 | keywords and their meanings are as follows (note that |
| 61 | keywords are case-insensitive and arguments are case-sensitive): |
| 62 | .Bl -tag -width Ds |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 63 | .It Cm AcceptEnv |
| 64 | Specifies what environment variables sent by the client will be copied into |
| 65 | the session's |
| 66 | .Xr environ 7 . |
| 67 | See |
| 68 | .Cm SendEnv |
djm@openbsd.org | 7082bb5 | 2018-06-09 03:01:12 +0000 | [diff] [blame] | 69 | and |
| 70 | .Cm SetEnv |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 71 | in |
| 72 | .Xr ssh_config 5 |
| 73 | for how to configure the client. |
jmc@openbsd.org | a685ae8 | 2016-02-17 07:38:19 +0000 | [diff] [blame] | 74 | The |
dtucker@openbsd.org | 85b96ef | 2015-04-28 10:17:58 +0000 | [diff] [blame] | 75 | .Ev TERM |
djm@openbsd.org | 1678d42 | 2018-06-09 03:18:11 +0000 | [diff] [blame] | 76 | environment variable is always accepted whenever the client |
djm@openbsd.org | 732d61f | 2015-06-05 03:44:14 +0000 | [diff] [blame] | 77 | requests a pseudo-terminal as it is required by the protocol. |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 78 | Variables are specified by name, which may contain the wildcard characters |
Damien Miller | 208f1ed | 2006-03-15 11:56:03 +1100 | [diff] [blame] | 79 | .Ql * |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 80 | and |
| 81 | .Ql \&? . |
Darren Tucker | 1e0c9bf | 2004-05-02 22:12:48 +1000 | [diff] [blame] | 82 | Multiple environment variables may be separated by whitespace or spread |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 83 | across multiple |
| 84 | .Cm AcceptEnv |
| 85 | directives. |
Darren Tucker | 1e0c9bf | 2004-05-02 22:12:48 +1000 | [diff] [blame] | 86 | Be warned that some environment variables could be used to bypass restricted |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 87 | user environments. |
| 88 | For this reason, care should be taken in the use of this directive. |
| 89 | The default is not to accept any environment variables. |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 90 | .It Cm AddressFamily |
| 91 | Specifies which address family should be used by |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 92 | .Xr sshd 8 . |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 93 | Valid arguments are |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 94 | .Cm any |
| 95 | (the default), |
| 96 | .Cm inet |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 97 | (use IPv4 only), or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 98 | .Cm inet6 |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 99 | (use IPv6 only). |
Damien Miller | e989019 | 2008-05-19 14:59:02 +1000 | [diff] [blame] | 100 | .It Cm AllowAgentForwarding |
| 101 | Specifies whether |
| 102 | .Xr ssh-agent 1 |
| 103 | forwarding is permitted. |
| 104 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 105 | .Cm yes . |
Damien Miller | e989019 | 2008-05-19 14:59:02 +1000 | [diff] [blame] | 106 | Note that disabling agent forwarding does not improve security |
| 107 | unless users are also denied shell access, as they can always install |
| 108 | their own forwarders. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 109 | .It Cm AllowGroups |
| 110 | This keyword can be followed by a list of group name patterns, separated |
| 111 | by spaces. |
| 112 | If specified, login is allowed only for users whose primary |
| 113 | group or supplementary group list matches one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 114 | Only group names are valid; a numerical group ID is not recognized. |
| 115 | By default, login is allowed for all groups. |
djm@openbsd.org | bf986a9 | 2020-01-25 22:36:22 +0000 | [diff] [blame] | 116 | The allow/deny groups directives are processed in the following order: |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 117 | .Cm DenyGroups , |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 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. |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 123 | .It Cm AllowStreamLocalForwarding |
| 124 | Specifies whether StreamLocal (Unix-domain socket) forwarding is permitted. |
| 125 | The available options are |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 126 | .Cm yes |
| 127 | (the default) |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 128 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 129 | .Cm all |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 130 | to allow StreamLocal forwarding, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 131 | .Cm no |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 132 | to prevent all StreamLocal forwarding, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 133 | .Cm local |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 134 | to allow local (from the perspective of |
| 135 | .Xr ssh 1 ) |
| 136 | forwarding only or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 137 | .Cm remote |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 138 | to allow remote forwarding only. |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 139 | Note that disabling StreamLocal forwarding does not improve security unless |
| 140 | users are also denied shell access, as they can always install their |
| 141 | own forwarders. |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 142 | .It Cm AllowTcpForwarding |
| 143 | Specifies whether TCP forwarding is permitted. |
| 144 | The available options are |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 145 | .Cm yes |
| 146 | (the default) |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 147 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 148 | .Cm all |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 149 | to allow TCP forwarding, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 150 | .Cm no |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 151 | to prevent all TCP forwarding, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 152 | .Cm local |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 153 | to allow local (from the perspective of |
| 154 | .Xr ssh 1 ) |
| 155 | forwarding only or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 156 | .Cm remote |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 157 | to allow remote forwarding only. |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 158 | Note that disabling TCP forwarding does not improve security unless |
| 159 | users are also denied shell access, as they can always install their |
| 160 | own forwarders. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 161 | .It Cm AllowUsers |
| 162 | This keyword can be followed by a list of user name patterns, separated |
| 163 | by spaces. |
Damien Miller | 5a93add | 2003-01-24 11:34:52 +1100 | [diff] [blame] | 164 | If specified, login is allowed only for user names that |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 165 | match one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 166 | Only user names are valid; a numerical user ID is not recognized. |
| 167 | By default, login is allowed for all users. |
| 168 | If the pattern takes the form USER@HOST then USER and HOST |
| 169 | are separately checked, restricting logins to particular |
| 170 | users from particular hosts. |
jmc@openbsd.org | ee1e0a1 | 2016-04-27 13:53:48 +0000 | [diff] [blame] | 171 | HOST criteria may additionally contain addresses to match in CIDR |
| 172 | address/masklen format. |
djm@openbsd.org | bf986a9 | 2020-01-25 22:36:22 +0000 | [diff] [blame] | 173 | The allow/deny users directives are processed in the following order: |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 174 | .Cm DenyUsers , |
djm@openbsd.org | bf986a9 | 2020-01-25 22:36:22 +0000 | [diff] [blame] | 175 | .Cm AllowUsers . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 176 | .Pp |
Damien Miller | fecfd11 | 2013-07-18 16:11:50 +1000 | [diff] [blame] | 177 | See PATTERNS in |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 178 | .Xr ssh_config 5 |
| 179 | for more information on patterns. |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 180 | .It Cm AuthenticationMethods |
| 181 | Specifies the authentication methods that must be successfully completed |
| 182 | for a user to be granted access. |
djm@openbsd.org | 472269f | 2018-07-20 05:01:10 +0000 | [diff] [blame] | 183 | This option must be followed by one or more lists of comma-separated |
djm@openbsd.org | b64faeb | 2016-06-17 05:03:40 +0000 | [diff] [blame] | 184 | authentication method names, or by the single string |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 185 | .Cm any |
djm@openbsd.org | b64faeb | 2016-06-17 05:03:40 +0000 | [diff] [blame] | 186 | to indicate the default behaviour of accepting any single authentication |
jmc@openbsd.org | ad23a75 | 2016-06-17 06:33:30 +0000 | [diff] [blame] | 187 | method. |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 188 | If the default is overridden, then successful authentication requires |
djm@openbsd.org | b64faeb | 2016-06-17 05:03:40 +0000 | [diff] [blame] | 189 | completion of every method in at least one of these lists. |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 190 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 191 | For example, |
| 192 | .Qq publickey,password publickey,keyboard-interactive |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 193 | would require the user to complete public key authentication, followed by |
| 194 | either password or keyboard interactive authentication. |
| 195 | Only methods that are next in one or more lists are offered at each stage, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 196 | so for this example it would not be possible to attempt password or |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 197 | keyboard-interactive authentication before public key. |
| 198 | .Pp |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 199 | For keyboard interactive authentication it is also possible to |
| 200 | restrict authentication to a specific device by appending a |
| 201 | colon followed by the device identifier |
Damien Miller | 87f08be | 2018-07-20 13:18:28 +1000 | [diff] [blame] | 202 | .Cm bsdauth |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 203 | or |
Damien Miller | 87f08be | 2018-07-20 13:18:28 +1000 | [diff] [blame] | 204 | .Cm pam . |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 205 | depending on the server configuration. |
| 206 | For example, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 207 | .Qq keyboard-interactive:bsdauth |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 208 | would restrict keyboard interactive authentication to the |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 209 | .Cm bsdauth |
Damien Miller | 91a55f2 | 2013-04-23 15:18:10 +1000 | [diff] [blame] | 210 | device. |
| 211 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 212 | If the publickey method is listed more than once, |
djm@openbsd.org | f69b69b | 2014-12-22 07:51:30 +0000 | [diff] [blame] | 213 | .Xr sshd 8 |
| 214 | verifies that keys that have been used successfully are not reused for |
| 215 | subsequent authentications. |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 216 | For example, |
| 217 | .Qq publickey,publickey |
| 218 | requires successful authentication using two different public keys. |
djm@openbsd.org | f69b69b | 2014-12-22 07:51:30 +0000 | [diff] [blame] | 219 | .Pp |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 220 | Note that each authentication method listed should also be explicitly enabled |
| 221 | in the configuration. |
djm@openbsd.org | 8042bad | 2017-09-01 05:50:48 +0000 | [diff] [blame] | 222 | .Pp |
| 223 | The available authentication methods are: |
| 224 | .Qq gssapi-with-mic , |
| 225 | .Qq hostbased , |
| 226 | .Qq keyboard-interactive , |
| 227 | .Qq none |
| 228 | (used for access to password-less accounts when |
jmc@openbsd.org | f41bcd7 | 2018-05-15 05:40:11 +0000 | [diff] [blame] | 229 | .Cm PermitEmptyPasswords |
djm@openbsd.org | 8042bad | 2017-09-01 05:50:48 +0000 | [diff] [blame] | 230 | is enabled), |
| 231 | .Qq password |
| 232 | and |
| 233 | .Qq publickey . |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 234 | .It Cm AuthorizedKeysCommand |
Damien Miller | f33580e | 2012-11-04 22:22:52 +1100 | [diff] [blame] | 235 | Specifies a program to be used to look up the user's public keys. |
djm@openbsd.org | 24232a3 | 2015-05-21 06:38:35 +0000 | [diff] [blame] | 236 | The program must be owned by root, not writable by group or others and |
| 237 | specified by an absolute path. |
djm@openbsd.org | 24232a3 | 2015-05-21 06:38:35 +0000 | [diff] [blame] | 238 | Arguments to |
| 239 | .Cm AuthorizedKeysCommand |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 240 | accept the tokens described in the |
| 241 | .Sx TOKENS |
| 242 | section. |
| 243 | If no arguments are specified then the username of the target user is used. |
djm@openbsd.org | 24232a3 | 2015-05-21 06:38:35 +0000 | [diff] [blame] | 244 | .Pp |
| 245 | The program should produce on standard output zero or |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 246 | more lines of authorized_keys output (see |
| 247 | .Sx AUTHORIZED_KEYS |
| 248 | in |
Damien Miller | f33580e | 2012-11-04 22:22:52 +1100 | [diff] [blame] | 249 | .Xr sshd 8 ) . |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 250 | .Cm AuthorizedKeysCommand |
djm@openbsd.org | 44ae009 | 2020-04-17 04:27:03 +0000 | [diff] [blame] | 251 | is tried after the usual |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 252 | .Cm AuthorizedKeysFile |
djm@openbsd.org | 44ae009 | 2020-04-17 04:27:03 +0000 | [diff] [blame] | 253 | files and will not be executed if a matching key is found there. |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 254 | By default, no |
| 255 | .Cm AuthorizedKeysCommand |
| 256 | is run. |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 257 | .It Cm AuthorizedKeysCommandUser |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 258 | Specifies the user under whose account the |
| 259 | .Cm AuthorizedKeysCommand |
| 260 | is run. |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 261 | It is recommended to use a dedicated user that has no other role on the host |
| 262 | than running authorized keys commands. |
djm@openbsd.org | f1c4d8e | 2014-12-22 08:04:23 +0000 | [diff] [blame] | 263 | If |
djm@openbsd.org | d663bea | 2014-12-11 05:25:06 +0000 | [diff] [blame] | 264 | .Cm AuthorizedKeysCommand |
djm@openbsd.org | f1c4d8e | 2014-12-22 08:04:23 +0000 | [diff] [blame] | 265 | is specified but |
| 266 | .Cm AuthorizedKeysCommandUser |
| 267 | is not, then |
| 268 | .Xr sshd 8 |
| 269 | will refuse to start. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 270 | .It Cm AuthorizedKeysFile |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 271 | Specifies the file that contains the public keys used for user authentication. |
schwarze@openbsd.org | db7606d | 2019-05-14 12:47:17 +0000 | [diff] [blame] | 272 | The format is described in the AUTHORIZED_KEYS FILE FORMAT section of |
Damien Miller | 6018a36 | 2010-07-02 13:35:19 +1000 | [diff] [blame] | 273 | .Xr sshd 8 . |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 274 | Arguments to |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 275 | .Cm AuthorizedKeysFile |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 276 | accept the tokens described in the |
| 277 | .Sx TOKENS |
| 278 | section. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 279 | After expansion, |
| 280 | .Cm AuthorizedKeysFile |
| 281 | is taken to be an absolute path or one relative to the user's home |
| 282 | directory. |
Damien Miller | b9132fc | 2011-05-29 21:41:40 +1000 | [diff] [blame] | 283 | Multiple files may be listed, separated by whitespace. |
djm@openbsd.org | 2bca8a4 | 2015-09-11 03:13:36 +0000 | [diff] [blame] | 284 | Alternately this option may be set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 285 | .Cm none |
djm@openbsd.org | 2bca8a4 | 2015-09-11 03:13:36 +0000 | [diff] [blame] | 286 | to skip checking for user keys in files. |
Damien Miller | b9132fc | 2011-05-29 21:41:40 +1000 | [diff] [blame] | 287 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 288 | .Qq .ssh/authorized_keys .ssh/authorized_keys2 . |
djm@openbsd.org | bcc50d8 | 2015-05-21 06:43:30 +0000 | [diff] [blame] | 289 | .It Cm AuthorizedPrincipalsCommand |
| 290 | Specifies a program to be used to generate the list of allowed |
| 291 | certificate principals as per |
| 292 | .Cm AuthorizedPrincipalsFile . |
| 293 | The program must be owned by root, not writable by group or others and |
| 294 | specified by an absolute path. |
djm@openbsd.org | bcc50d8 | 2015-05-21 06:43:30 +0000 | [diff] [blame] | 295 | Arguments to |
| 296 | .Cm AuthorizedPrincipalsCommand |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 297 | accept the tokens described in the |
| 298 | .Sx TOKENS |
| 299 | section. |
| 300 | If no arguments are specified then the username of the target user is used. |
djm@openbsd.org | bcc50d8 | 2015-05-21 06:43:30 +0000 | [diff] [blame] | 301 | .Pp |
| 302 | The program should produce on standard output zero or |
| 303 | more lines of |
| 304 | .Cm AuthorizedPrincipalsFile |
| 305 | output. |
| 306 | If either |
| 307 | .Cm AuthorizedPrincipalsCommand |
| 308 | or |
| 309 | .Cm AuthorizedPrincipalsFile |
| 310 | is specified, then certificates offered by the client for authentication |
| 311 | must contain a principal that is listed. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 312 | By default, no |
| 313 | .Cm AuthorizedPrincipalsCommand |
| 314 | is run. |
djm@openbsd.org | bcc50d8 | 2015-05-21 06:43:30 +0000 | [diff] [blame] | 315 | .It Cm AuthorizedPrincipalsCommandUser |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 316 | Specifies the user under whose account the |
| 317 | .Cm AuthorizedPrincipalsCommand |
| 318 | is run. |
djm@openbsd.org | bcc50d8 | 2015-05-21 06:43:30 +0000 | [diff] [blame] | 319 | It is recommended to use a dedicated user that has no other role on the host |
| 320 | than running authorized principals commands. |
| 321 | If |
| 322 | .Cm AuthorizedPrincipalsCommand |
| 323 | is specified but |
| 324 | .Cm AuthorizedPrincipalsCommandUser |
| 325 | is not, then |
| 326 | .Xr sshd 8 |
| 327 | will refuse to start. |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 328 | .It Cm AuthorizedPrincipalsFile |
| 329 | Specifies a file that lists principal names that are accepted for |
| 330 | certificate authentication. |
| 331 | When using certificates signed by a key listed in |
| 332 | .Cm TrustedUserCAKeys , |
| 333 | this file lists names, one of which must appear in the certificate for it |
| 334 | to be accepted for authentication. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 335 | Names are listed one per line preceded by key options (as described in |
| 336 | .Sx AUTHORIZED_KEYS FILE FORMAT |
| 337 | in |
Damien Miller | d59dab8 | 2010-07-02 13:37:17 +1000 | [diff] [blame] | 338 | .Xr sshd 8 ) . |
Damien Miller | 6018a36 | 2010-07-02 13:35:19 +1000 | [diff] [blame] | 339 | Empty lines and comments starting with |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 340 | .Ql # |
| 341 | are ignored. |
| 342 | .Pp |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 343 | Arguments to |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 344 | .Cm AuthorizedPrincipalsFile |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 345 | accept the tokens described in the |
| 346 | .Sx TOKENS |
| 347 | section. |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 348 | After expansion, |
| 349 | .Cm AuthorizedPrincipalsFile |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 350 | is taken to be an absolute path or one relative to the user's home directory. |
Damien Miller | 8fef9eb | 2012-04-22 11:25:10 +1000 | [diff] [blame] | 351 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 352 | .Cm none , |
Damien Miller | 8fef9eb | 2012-04-22 11:25:10 +1000 | [diff] [blame] | 353 | 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] | 354 | of the user must appear in a certificate's principals list for it to be |
| 355 | accepted. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 356 | .Pp |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 357 | Note that |
| 358 | .Cm AuthorizedPrincipalsFile |
| 359 | is only used when authentication proceeds using a CA listed in |
| 360 | .Cm TrustedUserCAKeys |
| 361 | and is not consulted for certification authorities trusted via |
| 362 | .Pa ~/.ssh/authorized_keys , |
| 363 | though the |
| 364 | .Cm principals= |
| 365 | key option offers a similar facility (see |
| 366 | .Xr sshd 8 |
| 367 | for details). |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 368 | .It Cm Banner |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 369 | The contents of the specified file are sent to the remote user before |
| 370 | authentication is allowed. |
Damien Miller | 4890e53 | 2007-09-17 11:57:38 +1000 | [diff] [blame] | 371 | If the argument is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 372 | .Cm none |
Damien Miller | 4890e53 | 2007-09-17 11:57:38 +1000 | [diff] [blame] | 373 | then no banner is displayed. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 374 | By default, no banner is displayed. |
djm@openbsd.org | 86e5737 | 2018-09-20 03:28:06 +0000 | [diff] [blame] | 375 | .It Cm CASignatureAlgorithms |
| 376 | Specifies which algorithms are allowed for signing of certificates |
| 377 | by certificate authorities (CAs). |
| 378 | The default is: |
| 379 | .Bd -literal -offset indent |
dtucker@openbsd.org | 0e2fe18 | 2019-07-23 23:06:57 +0000 | [diff] [blame] | 380 | ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, |
djm@openbsd.org | 86e5737 | 2018-09-20 03:28:06 +0000 | [diff] [blame] | 381 | ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa |
| 382 | .Ed |
| 383 | .Pp |
| 384 | Certificates signed using other algorithms will not be accepted for |
| 385 | public key or host-based authentication. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 386 | .It Cm ChallengeResponseAuthentication |
Damien Miller | 9c7bf8d | 2009-08-28 10:27:08 +1000 | [diff] [blame] | 387 | Specifies whether challenge-response authentication is allowed (e.g. via |
Damien Miller | e8c9f26 | 2014-10-03 09:24:56 +1000 | [diff] [blame] | 388 | PAM or through authentication styles supported in |
Damien Miller | 9c7bf8d | 2009-08-28 10:27:08 +1000 | [diff] [blame] | 389 | .Xr login.conf 5 ) |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 390 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 391 | .Cm yes . |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 392 | .It Cm ChrootDirectory |
Darren Tucker | b8c884a | 2010-01-08 18:53:43 +1100 | [diff] [blame] | 393 | Specifies the pathname of a directory to |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 394 | .Xr chroot 2 |
| 395 | to after authentication. |
deraadt@openbsd.org | dcff581 | 2015-01-22 20:24:41 +0000 | [diff] [blame] | 396 | At session startup |
| 397 | .Xr sshd 8 |
| 398 | checks that all components of the pathname are root-owned directories |
| 399 | which are not writable by any other user or group. |
Darren Tucker | 51dbe50 | 2009-06-21 17:56:51 +1000 | [diff] [blame] | 400 | After the chroot, |
| 401 | .Xr sshd 8 |
| 402 | changes the working directory to the user's home directory. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 403 | Arguments to |
| 404 | .Cm ChrootDirectory |
| 405 | accept the tokens described in the |
| 406 | .Sx TOKENS |
| 407 | section. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 408 | .Pp |
| 409 | The |
| 410 | .Cm ChrootDirectory |
| 411 | must contain the necessary files and directories to support the |
Darren Tucker | af501cf | 2009-06-21 17:53:04 +1000 | [diff] [blame] | 412 | user's session. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 413 | For an interactive session this requires at least a shell, typically |
| 414 | .Xr sh 1 , |
| 415 | and basic |
| 416 | .Pa /dev |
| 417 | nodes such as |
| 418 | .Xr null 4 , |
| 419 | .Xr zero 4 , |
| 420 | .Xr stdin 4 , |
| 421 | .Xr stdout 4 , |
| 422 | .Xr stderr 4 , |
jmc@openbsd.org | 08c0eeb | 2014-11-22 19:21:03 +0000 | [diff] [blame] | 423 | and |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 424 | .Xr tty 4 |
| 425 | devices. |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 426 | For file transfer sessions using SFTP |
| 427 | no additional configuration of the environment is necessary if the in-process |
| 428 | sftp-server is used, |
Damien Miller | 426117b | 2014-07-30 12:33:20 +1000 | [diff] [blame] | 429 | though sessions which use logging may require |
Darren Tucker | 00fcd71 | 2009-06-21 17:56:00 +1000 | [diff] [blame] | 430 | .Pa /dev/log |
Damien Miller | 426117b | 2014-07-30 12:33:20 +1000 | [diff] [blame] | 431 | inside the chroot directory on some operating systems (see |
Darren Tucker | 00fcd71 | 2009-06-21 17:56:00 +1000 | [diff] [blame] | 432 | .Xr sftp-server 8 |
| 433 | for details). |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 434 | .Pp |
jmc@openbsd.org | a5a3e33 | 2015-01-22 21:00:42 +0000 | [diff] [blame] | 435 | For safety, it is very important that the directory hierarchy be |
deraadt@openbsd.org | dcff581 | 2015-01-22 20:24:41 +0000 | [diff] [blame] | 436 | prevented from modification by other processes on the system (especially |
| 437 | those outside the jail). |
| 438 | Misconfiguration can lead to unsafe environments which |
| 439 | .Xr sshd 8 |
| 440 | cannot detect. |
| 441 | .Pp |
djm@openbsd.org | 9fd0468 | 2015-11-13 04:38:06 +0000 | [diff] [blame] | 442 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 443 | .Cm none , |
djm@openbsd.org | 9fd0468 | 2015-11-13 04:38:06 +0000 | [diff] [blame] | 444 | indicating not to |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 445 | .Xr chroot 2 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 446 | .It Cm Ciphers |
jmc@openbsd.org | a685ae8 | 2016-02-17 07:38:19 +0000 | [diff] [blame] | 447 | Specifies the ciphers allowed. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 448 | Multiple ciphers must be comma-separated. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 449 | If the specified list begins with a |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 450 | .Sq + |
| 451 | character, then the specified ciphers will be appended to the default set |
| 452 | instead of replacing them. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 453 | If the specified list begins with a |
djm@openbsd.org | 68bc8cf | 2017-02-03 23:01:19 +0000 | [diff] [blame] | 454 | .Sq - |
| 455 | character, then the specified ciphers (including wildcards) will be removed |
| 456 | from the default set instead of replacing them. |
naddy@openbsd.org | 91a2135 | 2019-09-06 14:45:34 +0000 | [diff] [blame] | 457 | If the specified list begins with a |
| 458 | .Sq ^ |
| 459 | character, then the specified ciphers will be placed at the head of the |
| 460 | default set. |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 461 | .Pp |
Damien Miller | 0fde8ac | 2013-11-21 14:12:23 +1100 | [diff] [blame] | 462 | The supported ciphers are: |
| 463 | .Pp |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 464 | .Bl -item -compact -offset indent |
| 465 | .It |
| 466 | 3des-cbc |
| 467 | .It |
| 468 | aes128-cbc |
| 469 | .It |
| 470 | aes192-cbc |
| 471 | .It |
| 472 | aes256-cbc |
| 473 | .It |
| 474 | aes128-ctr |
| 475 | .It |
| 476 | aes192-ctr |
| 477 | .It |
| 478 | aes256-ctr |
| 479 | .It |
| 480 | aes128-gcm@openssh.com |
| 481 | .It |
| 482 | aes256-gcm@openssh.com |
| 483 | .It |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 484 | chacha20-poly1305@openssh.com |
| 485 | .El |
Damien Miller | 0fde8ac | 2013-11-21 14:12:23 +1100 | [diff] [blame] | 486 | .Pp |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 487 | The default is: |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 488 | .Bd -literal -offset indent |
jmc@openbsd.org | 1f8d3d6 | 2015-08-14 15:32:41 +0000 | [diff] [blame] | 489 | chacha20-poly1305@openssh.com, |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 490 | aes128-ctr,aes192-ctr,aes256-ctr, |
jmc@openbsd.org | 1f8d3d6 | 2015-08-14 15:32:41 +0000 | [diff] [blame] | 491 | aes128-gcm@openssh.com,aes256-gcm@openssh.com |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 492 | .Ed |
Damien Miller | 0fde8ac | 2013-11-21 14:12:23 +1100 | [diff] [blame] | 493 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 494 | The list of available ciphers may also be obtained using |
| 495 | .Qq ssh -Q cipher . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 496 | .It Cm ClientAliveCountMax |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 497 | Sets the number of client alive messages which may be sent without |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 498 | .Xr sshd 8 |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 499 | receiving any messages back from the client. |
| 500 | If this threshold is reached while client alive messages are being sent, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 501 | sshd will disconnect the client, terminating the session. |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 502 | It is important to note that the use of client alive messages is very |
| 503 | different from |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 504 | .Cm TCPKeepAlive . |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 505 | The client alive messages are sent through the encrypted channel |
| 506 | and therefore will not be spoofable. |
| 507 | The TCP keepalive option enabled by |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 508 | .Cm TCPKeepAlive |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 509 | is spoofable. |
| 510 | The client alive mechanism is valuable when the client or |
dtucker@openbsd.org | 8fdbc72 | 2019-08-09 04:24:03 +0000 | [diff] [blame] | 511 | server depend on knowing when a connection has become unresponsive. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 512 | .Pp |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 513 | The default value is 3. |
| 514 | If |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 515 | .Cm ClientAliveInterval |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 516 | is set to 15, and |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 517 | .Cm ClientAliveCountMax |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 518 | is left at the default, unresponsive SSH clients |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 519 | will be disconnected after approximately 45 seconds. |
djm@openbsd.org | 6933499 | 2020-01-25 22:41:01 +0000 | [diff] [blame] | 520 | Setting a zero |
| 521 | .Cm ClientAliveCountMax |
| 522 | disables connection termination. |
Damien Miller | 1594ad5 | 2005-05-26 12:12:19 +1000 | [diff] [blame] | 523 | .It Cm ClientAliveInterval |
| 524 | Sets a timeout interval in seconds after which if no data has been received |
| 525 | from the client, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 526 | .Xr sshd 8 |
Damien Miller | 1594ad5 | 2005-05-26 12:12:19 +1000 | [diff] [blame] | 527 | will send a message through the encrypted |
| 528 | channel to request a response from the client. |
| 529 | The default |
| 530 | is 0, indicating that these messages will not be sent to the client. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 531 | .It Cm Compression |
djm@openbsd.org | 4577ade | 2016-09-28 20:32:42 +0000 | [diff] [blame] | 532 | Specifies whether compression is enabled after |
Damien Miller | 9786e6e | 2005-07-26 21:54:56 +1000 | [diff] [blame] | 533 | the user has authenticated successfully. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 534 | The argument must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 535 | .Cm yes , |
| 536 | .Cm delayed |
djm@openbsd.org | 4577ade | 2016-09-28 20:32:42 +0000 | [diff] [blame] | 537 | (a legacy synonym for |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 538 | .Cm yes ) |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 539 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 540 | .Cm no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 541 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 542 | .Cm yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 543 | .It Cm DenyGroups |
| 544 | This keyword can be followed by a list of group name patterns, separated |
| 545 | by spaces. |
| 546 | Login is disallowed for users whose primary group or supplementary |
| 547 | group list matches one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 548 | Only group names are valid; a numerical group ID is not recognized. |
| 549 | By default, login is allowed for all groups. |
djm@openbsd.org | bf986a9 | 2020-01-25 22:36:22 +0000 | [diff] [blame] | 550 | The allow/deny groups directives are processed in the following order: |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 551 | .Cm DenyGroups , |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 552 | .Cm AllowGroups . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 553 | .Pp |
Damien Miller | fecfd11 | 2013-07-18 16:11:50 +1000 | [diff] [blame] | 554 | See PATTERNS in |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 555 | .Xr ssh_config 5 |
| 556 | for more information on patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 557 | .It Cm DenyUsers |
| 558 | This keyword can be followed by a list of user name patterns, separated |
| 559 | by spaces. |
| 560 | Login is disallowed for user names that match one of the patterns. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 561 | Only user names are valid; a numerical user ID is not recognized. |
| 562 | By default, login is allowed for all users. |
| 563 | If the pattern takes the form USER@HOST then USER and HOST |
| 564 | are separately checked, restricting logins to particular |
| 565 | users from particular hosts. |
jmc@openbsd.org | ee1e0a1 | 2016-04-27 13:53:48 +0000 | [diff] [blame] | 566 | HOST criteria may additionally contain addresses to match in CIDR |
| 567 | address/masklen format. |
djm@openbsd.org | bf986a9 | 2020-01-25 22:36:22 +0000 | [diff] [blame] | 568 | The allow/deny users directives are processed in the following order: |
Damien Miller | ac73e51 | 2006-03-15 11:58:49 +1100 | [diff] [blame] | 569 | .Cm DenyUsers , |
djm@openbsd.org | bf986a9 | 2020-01-25 22:36:22 +0000 | [diff] [blame] | 570 | .Cm AllowUsers . |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 571 | .Pp |
Damien Miller | fecfd11 | 2013-07-18 16:11:50 +1000 | [diff] [blame] | 572 | See PATTERNS in |
Damien Miller | 0c2079d | 2006-03-15 11:54:21 +1100 | [diff] [blame] | 573 | .Xr ssh_config 5 |
| 574 | for more information on patterns. |
djm@openbsd.org | 7844f35 | 2016-11-30 03:00:05 +0000 | [diff] [blame] | 575 | .It Cm DisableForwarding |
| 576 | Disables all forwarding features, including X11, |
| 577 | .Xr ssh-agent 1 , |
| 578 | TCP and StreamLocal. |
| 579 | This option overrides all other forwarding-related options and may |
| 580 | simplify restricted configurations. |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 581 | .It Cm ExposeAuthInfo |
jmc@openbsd.org | 5fa1407 | 2017-09-27 06:45:53 +0000 | [diff] [blame] | 582 | Writes a temporary file containing a list of authentication methods and |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 583 | public credentials (e.g. keys) used to authenticate the user. |
jmc@openbsd.org | 4096219 | 2017-06-24 06:57:04 +0000 | [diff] [blame] | 584 | The location of the file is exposed to the user session through the |
djm@openbsd.org | f17ee61 | 2017-06-24 07:08:57 +0000 | [diff] [blame] | 585 | .Ev SSH_USER_AUTH |
jmc@openbsd.org | 4096219 | 2017-06-24 06:57:04 +0000 | [diff] [blame] | 586 | environment variable. |
jmc@openbsd.org | 5fa1407 | 2017-09-27 06:45:53 +0000 | [diff] [blame] | 587 | The default is |
| 588 | .Cm no . |
djm@openbsd.org | 56d1c83 | 2014-12-21 22:27:55 +0000 | [diff] [blame] | 589 | .It Cm FingerprintHash |
| 590 | Specifies the hash algorithm used when logging key fingerprints. |
| 591 | Valid options are: |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 592 | .Cm md5 |
djm@openbsd.org | 56d1c83 | 2014-12-21 22:27:55 +0000 | [diff] [blame] | 593 | and |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 594 | .Cm sha256 . |
djm@openbsd.org | 56d1c83 | 2014-12-21 22:27:55 +0000 | [diff] [blame] | 595 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 596 | .Cm sha256 . |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 597 | .It Cm ForceCommand |
| 598 | Forces the execution of the command specified by |
| 599 | .Cm ForceCommand , |
Damien Miller | a1b48cc | 2008-03-27 11:02:02 +1100 | [diff] [blame] | 600 | ignoring any command supplied by the client and |
| 601 | .Pa ~/.ssh/rc |
| 602 | if present. |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 603 | The command is invoked by using the user's login shell with the -c option. |
| 604 | This applies to shell, command, or subsystem execution. |
| 605 | It is most useful inside a |
| 606 | .Cm Match |
| 607 | block. |
| 608 | The command originally supplied by the client is available in the |
| 609 | .Ev SSH_ORIGINAL_COMMAND |
| 610 | environment variable. |
Damien Miller | cdb6e65 | 2008-02-10 22:47:24 +1100 | [diff] [blame] | 611 | Specifying a command of |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 612 | .Cm internal-sftp |
| 613 | will force the use of an in-process SFTP server that requires no support |
Damien Miller | cdb6e65 | 2008-02-10 22:47:24 +1100 | [diff] [blame] | 614 | files when used with |
| 615 | .Cm ChrootDirectory . |
djm@openbsd.org | 9fd0468 | 2015-11-13 04:38:06 +0000 | [diff] [blame] | 616 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 617 | .Cm none . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 618 | .It Cm GatewayPorts |
| 619 | Specifies whether remote hosts are allowed to connect to ports |
| 620 | forwarded for the client. |
| 621 | By default, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 622 | .Xr sshd 8 |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 623 | binds remote port forwardings to the loopback address. |
| 624 | This prevents other remote hosts from connecting to forwarded ports. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 625 | .Cm GatewayPorts |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 626 | can be used to specify that sshd |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 627 | should allow remote port forwardings to bind to non-loopback addresses, thus |
| 628 | allowing other hosts to connect. |
| 629 | The argument may be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 630 | .Cm no |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 631 | to force remote port forwardings to be available to the local host only, |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 632 | .Cm yes |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 633 | to force remote port forwardings to bind to the wildcard address, or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 634 | .Cm clientspecified |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 635 | 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] | 636 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 637 | .Cm no . |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 638 | .It Cm GSSAPIAuthentication |
Damien Miller | 9b7b03b | 2003-09-02 22:57:05 +1000 | [diff] [blame] | 639 | Specifies whether user authentication based on GSSAPI is allowed. |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 640 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 641 | .Cm no . |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 642 | .It Cm GSSAPICleanupCredentials |
| 643 | Specifies whether to automatically destroy the user's credentials cache |
| 644 | on logout. |
| 645 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 646 | .Cm yes . |
djm@openbsd.org | d7c31da | 2015-05-22 03:50:02 +0000 | [diff] [blame] | 647 | .It Cm GSSAPIStrictAcceptorCheck |
| 648 | Determines whether to be strict about the identity of the GSSAPI acceptor |
| 649 | a client authenticates against. |
| 650 | If set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 651 | .Cm yes |
| 652 | then the client must authenticate against the host |
djm@openbsd.org | d7c31da | 2015-05-22 03:50:02 +0000 | [diff] [blame] | 653 | service on the current hostname. |
| 654 | If set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 655 | .Cm no |
djm@openbsd.org | d7c31da | 2015-05-22 03:50:02 +0000 | [diff] [blame] | 656 | then the client may authenticate against any service key stored in the |
| 657 | machine's default store. |
| 658 | This facility is provided to assist with operation on multi homed machines. |
| 659 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 660 | .Cm yes . |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 661 | .It Cm HostbasedAcceptedKeyTypes |
| 662 | Specifies the key types that will be accepted for hostbased authentication |
djm@openbsd.org | 312d2f2 | 2018-07-04 13:49:31 +0000 | [diff] [blame] | 663 | as a list of comma-separated patterns. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 664 | Alternately if the specified list begins with a |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 665 | .Sq + |
| 666 | character, then the specified key types will be appended to the default set |
| 667 | instead of replacing them. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 668 | If the specified list begins with a |
djm@openbsd.org | 68bc8cf | 2017-02-03 23:01:19 +0000 | [diff] [blame] | 669 | .Sq - |
| 670 | character, then the specified key types (including wildcards) will be removed |
| 671 | from the default set instead of replacing them. |
naddy@openbsd.org | 91a2135 | 2019-09-06 14:45:34 +0000 | [diff] [blame] | 672 | If the specified list begins with a |
| 673 | .Sq ^ |
| 674 | character, then the specified key types will be placed at the head of the |
| 675 | default set. |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 676 | The default for this option is: |
| 677 | .Bd -literal -offset 3n |
| 678 | ecdsa-sha2-nistp256-cert-v01@openssh.com, |
| 679 | ecdsa-sha2-nistp384-cert-v01@openssh.com, |
| 680 | ecdsa-sha2-nistp521-cert-v01@openssh.com, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 681 | sk-ecdsa-sha2-nistp256-cert-v01@openssh.com, |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 682 | ssh-ed25519-cert-v01@openssh.com, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 683 | sk-ssh-ed25519-cert-v01@openssh.com, |
naddy@openbsd.org | aa4c640 | 2019-11-07 08:38:38 +0000 | [diff] [blame] | 684 | rsa-sha2-512-cert-v01@openssh.com, |
| 685 | rsa-sha2-256-cert-v01@openssh.com, |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 686 | ssh-rsa-cert-v01@openssh.com, |
| 687 | ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 688 | sk-ecdsa-sha2-nistp256@openssh.com, |
| 689 | ssh-ed25519,sk-ssh-ed25519@openssh.com, |
| 690 | rsa-sha2-512,rsa-sha2-256,ssh-rsa |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 691 | .Ed |
| 692 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 693 | The list of available key types may also be obtained using |
dtucker@openbsd.org | d4d9e1d | 2020-02-07 03:54:44 +0000 | [diff] [blame] | 694 | .Qq ssh -Q HostbasedAcceptedKeyTypes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 695 | .It Cm HostbasedAuthentication |
| 696 | Specifies whether rhosts or /etc/hosts.equiv authentication together |
| 697 | with successful public key client host authentication is allowed |
Damien Miller | 1faa713 | 2006-03-15 11:55:31 +1100 | [diff] [blame] | 698 | (host-based authentication). |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 699 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 700 | .Cm no . |
Damien Miller | b594f38 | 2006-08-30 11:06:34 +1000 | [diff] [blame] | 701 | .It Cm HostbasedUsesNameFromPacketOnly |
| 702 | Specifies whether or not the server will attempt to perform a reverse |
| 703 | name lookup when matching the name in the |
| 704 | .Pa ~/.shosts , |
| 705 | .Pa ~/.rhosts , |
| 706 | and |
| 707 | .Pa /etc/hosts.equiv |
| 708 | files during |
| 709 | .Cm HostbasedAuthentication . |
| 710 | A setting of |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 711 | .Cm yes |
Damien Miller | b594f38 | 2006-08-30 11:06:34 +1000 | [diff] [blame] | 712 | means that |
| 713 | .Xr sshd 8 |
| 714 | uses the name supplied by the client rather than |
| 715 | attempting to resolve the name from the TCP connection itself. |
| 716 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 717 | .Cm no . |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 718 | .It Cm HostCertificate |
| 719 | Specifies a file containing a public host certificate. |
| 720 | The certificate's public key must match a private host key already specified |
| 721 | by |
| 722 | .Cm HostKey . |
| 723 | The default behaviour of |
| 724 | .Xr sshd 8 |
| 725 | is not to load any certificates. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 726 | .It Cm HostKey |
| 727 | Specifies a file containing a private host key |
| 728 | used by SSH. |
naddy@openbsd.org | ffe6549 | 2016-08-15 12:32:04 +0000 | [diff] [blame] | 729 | The defaults are |
Damien Miller | 8ba0ead | 2013-12-18 17:46:27 +1100 | [diff] [blame] | 730 | .Pa /etc/ssh/ssh_host_ecdsa_key , |
| 731 | .Pa /etc/ssh/ssh_host_ed25519_key |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 732 | and |
naddy@openbsd.org | ffe6549 | 2016-08-15 12:32:04 +0000 | [diff] [blame] | 733 | .Pa /etc/ssh/ssh_host_rsa_key . |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 734 | .Pp |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 735 | Note that |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 736 | .Xr sshd 8 |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 737 | will refuse to use a file if it is group/world-accessible |
| 738 | and that the |
| 739 | .Cm HostKeyAlgorithms |
| 740 | option restricts which of the keys are actually used by |
| 741 | .Xr sshd 8 . |
| 742 | .Pp |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 743 | It is possible to have multiple host key files. |
Damien Miller | 85b45e0 | 2013-07-20 13:21:52 +1000 | [diff] [blame] | 744 | It is also possible to specify public host key files instead. |
| 745 | In this case operations on the private key will be delegated |
| 746 | to an |
| 747 | .Xr ssh-agent 1 . |
| 748 | .It Cm HostKeyAgent |
| 749 | Identifies the UNIX-domain socket used to communicate |
| 750 | with an agent that has access to the private host keys. |
markus@openbsd.org | 1a75d14 | 2016-05-04 14:29:58 +0000 | [diff] [blame] | 751 | If the string |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 752 | .Qq SSH_AUTH_SOCK |
Damien Miller | 85b45e0 | 2013-07-20 13:21:52 +1000 | [diff] [blame] | 753 | is specified, the location of the socket will be read from the |
| 754 | .Ev SSH_AUTH_SOCK |
| 755 | environment variable. |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 756 | .It Cm HostKeyAlgorithms |
jmc@openbsd.org | a685ae8 | 2016-02-17 07:38:19 +0000 | [diff] [blame] | 757 | Specifies the host key algorithms |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 758 | that the server offers. |
| 759 | The default for this option is: |
| 760 | .Bd -literal -offset 3n |
| 761 | ecdsa-sha2-nistp256-cert-v01@openssh.com, |
| 762 | ecdsa-sha2-nistp384-cert-v01@openssh.com, |
| 763 | ecdsa-sha2-nistp521-cert-v01@openssh.com, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 764 | sk-ecdsa-sha2-nistp256-cert-v01@openssh.com, |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 765 | ssh-ed25519-cert-v01@openssh.com, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 766 | sk-ssh-ed25519-cert-v01@openssh.com, |
naddy@openbsd.org | aa4c640 | 2019-11-07 08:38:38 +0000 | [diff] [blame] | 767 | rsa-sha2-512-cert-v01@openssh.com, |
| 768 | rsa-sha2-256-cert-v01@openssh.com, |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 769 | ssh-rsa-cert-v01@openssh.com, |
| 770 | ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 771 | sk-ecdsa-sha2-nistp256@openssh.com, |
| 772 | ssh-ed25519,sk-ssh-ed25519@openssh.com, |
| 773 | rsa-sha2-512,rsa-sha2-256,ssh-rsa |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 774 | .Ed |
| 775 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 776 | The list of available key types may also be obtained using |
dtucker@openbsd.org | d4d9e1d | 2020-02-07 03:54:44 +0000 | [diff] [blame] | 777 | .Qq ssh -Q HostKeyAlgorithms . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 778 | .It Cm IgnoreRhosts |
djm@openbsd.org | c90f72d | 2020-04-17 03:30:05 +0000 | [diff] [blame] | 779 | Specifies whether to ignore per-user |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 780 | .Pa .rhosts |
| 781 | and |
| 782 | .Pa .shosts |
djm@openbsd.org | c90f72d | 2020-04-17 03:30:05 +0000 | [diff] [blame] | 783 | files during |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 784 | .Cm HostbasedAuthentication . |
djm@openbsd.org | c90f72d | 2020-04-17 03:30:05 +0000 | [diff] [blame] | 785 | The system-wide |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 786 | .Pa /etc/hosts.equiv |
| 787 | and |
| 788 | .Pa /etc/shosts.equiv |
djm@openbsd.org | c90f72d | 2020-04-17 03:30:05 +0000 | [diff] [blame] | 789 | are still used regardless of this setting. |
| 790 | .Pp |
| 791 | Accepted values are |
| 792 | .Cm yes |
| 793 | (the default) to ignore all per-user files, |
| 794 | .Cm shosts-only |
| 795 | to allow the use of |
| 796 | .Pa .shosts |
| 797 | but to ignore |
| 798 | .Pa .rhosts |
| 799 | or |
| 800 | .Cm no |
| 801 | to allow both |
| 802 | .Pa .shosts |
| 803 | and |
jmc@openbsd.org | 4e04f46 | 2020-04-17 06:12:41 +0000 | [diff] [blame] | 804 | .Pa rhosts . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 805 | .It Cm IgnoreUserKnownHosts |
| 806 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 807 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 808 | should ignore the user's |
Damien Miller | 167ea5d | 2005-05-26 12:04:02 +1000 | [diff] [blame] | 809 | .Pa ~/.ssh/known_hosts |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 810 | during |
djm@openbsd.org | 62562ce | 2018-02-10 06:54:38 +0000 | [diff] [blame] | 811 | .Cm HostbasedAuthentication |
| 812 | and use only the system-wide known hosts file |
| 813 | .Pa /etc/ssh/known_hosts . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 814 | The default is |
djm@openbsd.org | c2bd7f7 | 2020-01-31 22:42:45 +0000 | [diff] [blame] | 815 | .Dq no . |
| 816 | .It Cm Include |
| 817 | Include the specified configuration file(s). |
jmc@openbsd.org | 6fb3dd0 | 2020-02-01 06:53:12 +0000 | [diff] [blame] | 818 | Multiple pathnames may be specified and each pathname may contain |
djm@openbsd.org | c2bd7f7 | 2020-01-31 22:42:45 +0000 | [diff] [blame] | 819 | .Xr glob 7 |
| 820 | wildcards. |
| 821 | Files without absolute paths are assumed to be in |
| 822 | .Pa /etc/ssh . |
jmc@openbsd.org | 6fb3dd0 | 2020-02-01 06:53:12 +0000 | [diff] [blame] | 823 | An |
djm@openbsd.org | c2bd7f7 | 2020-01-31 22:42:45 +0000 | [diff] [blame] | 824 | .Cm Include |
| 825 | directive may appear inside a |
| 826 | .Cm Match |
| 827 | block |
| 828 | to perform conditional inclusion. |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 829 | .It Cm IPQoS |
| 830 | Specifies the IPv4 type-of-service or DSCP class for the connection. |
| 831 | Accepted values are |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 832 | .Cm af11 , |
| 833 | .Cm af12 , |
| 834 | .Cm af13 , |
| 835 | .Cm af21 , |
| 836 | .Cm af22 , |
| 837 | .Cm af23 , |
| 838 | .Cm af31 , |
| 839 | .Cm af32 , |
| 840 | .Cm af33 , |
| 841 | .Cm af41 , |
| 842 | .Cm af42 , |
| 843 | .Cm af43 , |
| 844 | .Cm cs0 , |
| 845 | .Cm cs1 , |
| 846 | .Cm cs2 , |
| 847 | .Cm cs3 , |
| 848 | .Cm cs4 , |
| 849 | .Cm cs5 , |
| 850 | .Cm cs6 , |
| 851 | .Cm cs7 , |
| 852 | .Cm ef , |
djm@openbsd.org | 4594c76 | 2020-01-28 01:49:36 +0000 | [diff] [blame] | 853 | .Cm le , |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 854 | .Cm lowdelay , |
| 855 | .Cm throughput , |
| 856 | .Cm reliability , |
djm@openbsd.org | 51676ec | 2017-07-23 23:37:02 +0000 | [diff] [blame] | 857 | a numeric value, or |
| 858 | .Cm none |
| 859 | to use the operating system default. |
Damien Miller | 928362d | 2010-12-26 14:26:45 +1100 | [diff] [blame] | 860 | This option may take one or two arguments, separated by whitespace. |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 861 | If one argument is specified, it is used as the packet class unconditionally. |
| 862 | If two values are specified, the first is automatically selected for |
| 863 | interactive sessions and the second for non-interactive sessions. |
| 864 | The default is |
job@openbsd.org | 5ee8448 | 2018-04-04 15:12:17 +0000 | [diff] [blame] | 865 | .Cm af21 |
jmc@openbsd.org | 3e36f28 | 2018-04-08 07:36:02 +0000 | [diff] [blame] | 866 | (Low-Latency Data) |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 867 | for interactive sessions and |
job@openbsd.org | 5ee8448 | 2018-04-04 15:12:17 +0000 | [diff] [blame] | 868 | .Cm cs1 |
jmc@openbsd.org | 3e36f28 | 2018-04-08 07:36:02 +0000 | [diff] [blame] | 869 | (Lower Effort) |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 870 | for non-interactive sessions. |
Damien Miller | e1e480a | 2014-02-04 11:13:17 +1100 | [diff] [blame] | 871 | .It Cm KbdInteractiveAuthentication |
| 872 | Specifies whether to allow keyboard-interactive authentication. |
| 873 | The argument to this keyword must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 874 | .Cm yes |
Damien Miller | e1e480a | 2014-02-04 11:13:17 +1100 | [diff] [blame] | 875 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 876 | .Cm no . |
Damien Miller | e1e480a | 2014-02-04 11:13:17 +1100 | [diff] [blame] | 877 | The default is to use whatever value |
| 878 | .Cm ChallengeResponseAuthentication |
| 879 | is set to |
| 880 | (by default |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 881 | .Cm yes ) . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 882 | .It Cm KerberosAuthentication |
Damien Miller | 1a0c0b9 | 2003-09-02 22:51:17 +1000 | [diff] [blame] | 883 | Specifies whether the password provided by the user for |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 884 | .Cm PasswordAuthentication |
Damien Miller | 1a0c0b9 | 2003-09-02 22:51:17 +1000 | [diff] [blame] | 885 | will be validated through the Kerberos KDC. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 886 | To use this option, the server needs a |
| 887 | Kerberos servtab which allows the verification of the KDC's identity. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 888 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 889 | .Cm no . |
Damien Miller | 8448e66 | 2004-03-08 23:13:15 +1100 | [diff] [blame] | 890 | .It Cm KerberosGetAFSToken |
Darren Tucker | e2dd2d5 | 2005-10-03 18:19:06 +1000 | [diff] [blame] | 891 | 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] | 892 | an AFS token before accessing the user's home directory. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 893 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 894 | .Cm no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 895 | .It Cm KerberosOrLocalPasswd |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 896 | If password authentication through Kerberos fails then |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 897 | the password will be validated via any additional local mechanism |
| 898 | such as |
| 899 | .Pa /etc/passwd . |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 900 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 901 | .Cm yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 902 | .It Cm KerberosTicketCleanup |
| 903 | Specifies whether to automatically destroy the user's ticket cache |
| 904 | file on logout. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 905 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 906 | .Cm yes . |
Damien Miller | d5f62bf | 2010-09-24 22:11:14 +1000 | [diff] [blame] | 907 | .It Cm KexAlgorithms |
| 908 | Specifies the available KEX (Key Exchange) algorithms. |
| 909 | Multiple algorithms must be comma-separated. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 910 | Alternately if the specified list begins with a |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 911 | .Sq + |
| 912 | character, then the specified methods will be appended to the default set |
| 913 | instead of replacing them. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 914 | If the specified list begins with a |
djm@openbsd.org | 68bc8cf | 2017-02-03 23:01:19 +0000 | [diff] [blame] | 915 | .Sq - |
| 916 | character, then the specified methods (including wildcards) will be removed |
| 917 | from the default set instead of replacing them. |
naddy@openbsd.org | 91a2135 | 2019-09-06 14:45:34 +0000 | [diff] [blame] | 918 | If the specified list begins with a |
| 919 | .Sq ^ |
| 920 | character, then the specified methods will be placed at the head of the |
| 921 | default set. |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 922 | The supported algorithms are: |
| 923 | .Pp |
| 924 | .Bl -item -compact -offset indent |
| 925 | .It |
djm@openbsd.org | 16277fc | 2016-09-22 17:55:13 +0000 | [diff] [blame] | 926 | curve25519-sha256 |
| 927 | .It |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 928 | curve25519-sha256@libssh.org |
| 929 | .It |
| 930 | diffie-hellman-group1-sha1 |
| 931 | .It |
| 932 | diffie-hellman-group14-sha1 |
| 933 | .It |
djm@openbsd.org | 680321f | 2018-02-16 02:40:45 +0000 | [diff] [blame] | 934 | diffie-hellman-group14-sha256 |
| 935 | .It |
| 936 | diffie-hellman-group16-sha512 |
| 937 | .It |
| 938 | diffie-hellman-group18-sha512 |
| 939 | .It |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 940 | diffie-hellman-group-exchange-sha1 |
| 941 | .It |
| 942 | diffie-hellman-group-exchange-sha256 |
| 943 | .It |
| 944 | ecdh-sha2-nistp256 |
| 945 | .It |
| 946 | ecdh-sha2-nistp384 |
| 947 | .It |
| 948 | ecdh-sha2-nistp521 |
dtucker@openbsd.org | 56bced4 | 2020-01-21 06:09:56 +0000 | [diff] [blame] | 949 | .It |
| 950 | sntrup4591761x25519-sha512@tinyssh.org |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 951 | .El |
| 952 | .Pp |
| 953 | The default is: |
Damien Miller | 6575c3a | 2013-12-18 17:47:02 +1100 | [diff] [blame] | 954 | .Bd -literal -offset indent |
djm@openbsd.org | 16277fc | 2016-09-22 17:55:13 +0000 | [diff] [blame] | 955 | curve25519-sha256,curve25519-sha256@libssh.org, |
Damien Miller | 6575c3a | 2013-12-18 17:47:02 +1100 | [diff] [blame] | 956 | ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521, |
| 957 | diffie-hellman-group-exchange-sha256, |
djm@openbsd.org | 680321f | 2018-02-16 02:40:45 +0000 | [diff] [blame] | 958 | diffie-hellman-group16-sha512,diffie-hellman-group18-sha512, |
tedu@openbsd.org | 0b81343 | 2020-01-25 07:09:14 +0000 | [diff] [blame] | 959 | diffie-hellman-group14-sha256 |
Damien Miller | 6575c3a | 2013-12-18 17:47:02 +1100 | [diff] [blame] | 960 | .Ed |
djm@openbsd.org | 8f6784f | 2014-12-22 09:05:17 +0000 | [diff] [blame] | 961 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 962 | The list of available key exchange algorithms may also be obtained using |
dtucker@openbsd.org | d4d9e1d | 2020-02-07 03:54:44 +0000 | [diff] [blame] | 963 | .Qq ssh -Q KexAlgorithms . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 964 | .It Cm ListenAddress |
| 965 | Specifies the local addresses |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 966 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 967 | should listen on. |
| 968 | The following forms may be used: |
| 969 | .Pp |
| 970 | .Bl -item -offset indent -compact |
| 971 | .It |
| 972 | .Cm ListenAddress |
| 973 | .Sm off |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 974 | .Ar hostname | address |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 975 | .Sm on |
jmc@openbsd.org@openbsd.org | 68d3bbb | 2017-10-26 06:44:01 +0000 | [diff] [blame] | 976 | .Op Cm rdomain Ar domain |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 977 | .It |
| 978 | .Cm ListenAddress |
| 979 | .Sm off |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 980 | .Ar hostname : port |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 981 | .Sm on |
jmc@openbsd.org@openbsd.org | 68d3bbb | 2017-10-26 06:44:01 +0000 | [diff] [blame] | 982 | .Op Cm rdomain Ar domain |
djm@openbsd.org | acf559e | 2017-10-25 00:15:35 +0000 | [diff] [blame] | 983 | .It |
| 984 | .Cm ListenAddress |
| 985 | .Sm off |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 986 | .Ar IPv4_address : port |
djm@openbsd.org | acf559e | 2017-10-25 00:15:35 +0000 | [diff] [blame] | 987 | .Sm on |
jmc@openbsd.org@openbsd.org | 68d3bbb | 2017-10-26 06:44:01 +0000 | [diff] [blame] | 988 | .Op Cm rdomain Ar domain |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 989 | .It |
| 990 | .Cm ListenAddress |
| 991 | .Sm off |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 992 | .Oo Ar hostname | address Oc : Ar port |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 993 | .Sm on |
jmc@openbsd.org@openbsd.org | 68d3bbb | 2017-10-26 06:44:01 +0000 | [diff] [blame] | 994 | .Op Cm rdomain Ar domain |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 995 | .El |
| 996 | .Pp |
djm@openbsd.org | acf559e | 2017-10-25 00:15:35 +0000 | [diff] [blame] | 997 | The optional |
| 998 | .Cm rdomain |
| 999 | qualifier requests |
| 1000 | .Xr sshd 8 |
| 1001 | listen in an explicit routing domain. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1002 | If |
| 1003 | .Ar port |
| 1004 | is not specified, |
dtucker@openbsd.org | 531a57a | 2015-04-29 03:48:56 +0000 | [diff] [blame] | 1005 | sshd will listen on the address and all |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1006 | .Cm Port |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 1007 | options specified. |
djm@openbsd.org | acf559e | 2017-10-25 00:15:35 +0000 | [diff] [blame] | 1008 | The default is to listen on all local addresses on the current default |
| 1009 | routing domain. |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 1010 | Multiple |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1011 | .Cm ListenAddress |
Damien Miller | fbf486b | 2003-05-23 18:44:23 +1000 | [diff] [blame] | 1012 | options are permitted. |
djm@openbsd.org | acf559e | 2017-10-25 00:15:35 +0000 | [diff] [blame] | 1013 | For more information on routing domains, see |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 1014 | .Xr rdomain 4 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1015 | .It Cm LoginGraceTime |
| 1016 | The server disconnects after this time if the user has not |
| 1017 | successfully logged in. |
| 1018 | If the value is 0, there is no time limit. |
Damien Miller | c134863 | 2002-09-05 14:35:14 +1000 | [diff] [blame] | 1019 | The default is 120 seconds. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1020 | .It Cm LogLevel |
| 1021 | Gives the verbosity level that is used when logging messages from |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1022 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1023 | The possible values are: |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1024 | QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3. |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 1025 | The default is INFO. |
| 1026 | DEBUG and DEBUG1 are equivalent. |
| 1027 | DEBUG2 and DEBUG3 each specify higher levels of debugging output. |
| 1028 | 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] | 1029 | .It Cm MACs |
| 1030 | Specifies the available MAC (message authentication code) algorithms. |
jmc@openbsd.org | a685ae8 | 2016-02-17 07:38:19 +0000 | [diff] [blame] | 1031 | The MAC algorithm is used for data integrity protection. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1032 | Multiple algorithms must be comma-separated. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 1033 | If the specified list begins with a |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 1034 | .Sq + |
| 1035 | character, then the specified algorithms will be appended to the default set |
| 1036 | instead of replacing them. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 1037 | If the specified list begins with a |
djm@openbsd.org | 68bc8cf | 2017-02-03 23:01:19 +0000 | [diff] [blame] | 1038 | .Sq - |
| 1039 | character, then the specified algorithms (including wildcards) will be removed |
| 1040 | from the default set instead of replacing them. |
naddy@openbsd.org | 91a2135 | 2019-09-06 14:45:34 +0000 | [diff] [blame] | 1041 | If the specified list begins with a |
| 1042 | .Sq ^ |
| 1043 | character, then the specified algorithms will be placed at the head of the |
| 1044 | default set. |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 1045 | .Pp |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 1046 | The algorithms that contain |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1047 | .Qq -etm |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 1048 | calculate the MAC after encryption (encrypt-then-mac). |
| 1049 | These are considered safer and their use recommended. |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 1050 | The supported MACs are: |
| 1051 | .Pp |
| 1052 | .Bl -item -compact -offset indent |
| 1053 | .It |
| 1054 | hmac-md5 |
| 1055 | .It |
| 1056 | hmac-md5-96 |
| 1057 | .It |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 1058 | hmac-sha1 |
| 1059 | .It |
| 1060 | hmac-sha1-96 |
| 1061 | .It |
| 1062 | hmac-sha2-256 |
| 1063 | .It |
| 1064 | hmac-sha2-512 |
| 1065 | .It |
| 1066 | umac-64@openssh.com |
| 1067 | .It |
| 1068 | umac-128@openssh.com |
| 1069 | .It |
| 1070 | hmac-md5-etm@openssh.com |
| 1071 | .It |
| 1072 | hmac-md5-96-etm@openssh.com |
| 1073 | .It |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 1074 | hmac-sha1-etm@openssh.com |
| 1075 | .It |
| 1076 | hmac-sha1-96-etm@openssh.com |
| 1077 | .It |
| 1078 | hmac-sha2-256-etm@openssh.com |
| 1079 | .It |
| 1080 | hmac-sha2-512-etm@openssh.com |
| 1081 | .It |
| 1082 | umac-64-etm@openssh.com |
| 1083 | .It |
| 1084 | umac-128-etm@openssh.com |
| 1085 | .El |
| 1086 | .Pp |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1087 | The default is: |
Damien Miller | 22b7b49 | 2007-06-11 14:07:12 +1000 | [diff] [blame] | 1088 | .Bd -literal -offset indent |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 1089 | umac-64-etm@openssh.com,umac-128-etm@openssh.com, |
| 1090 | hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com, |
djm@openbsd.org | e4c918a | 2016-02-11 02:56:32 +0000 | [diff] [blame] | 1091 | hmac-sha1-etm@openssh.com, |
Damien Miller | c1621c8 | 2014-04-20 13:22:46 +1000 | [diff] [blame] | 1092 | umac-64@openssh.com,umac-128@openssh.com, |
djm@openbsd.org | e4c918a | 2016-02-11 02:56:32 +0000 | [diff] [blame] | 1093 | hmac-sha2-256,hmac-sha2-512,hmac-sha1 |
Damien Miller | 22b7b49 | 2007-06-11 14:07:12 +1000 | [diff] [blame] | 1094 | .Ed |
djm@openbsd.org | 8f6784f | 2014-12-22 09:05:17 +0000 | [diff] [blame] | 1095 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1096 | The list of available MAC algorithms may also be obtained using |
| 1097 | .Qq ssh -Q mac . |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1098 | .It Cm Match |
Damien Miller | d04f357 | 2006-07-24 13:46:50 +1000 | [diff] [blame] | 1099 | Introduces a conditional block. |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 1100 | If all of the criteria on the |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1101 | .Cm Match |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 1102 | line are satisfied, the keywords on the following lines override those |
| 1103 | set in the global section of the config file, until either another |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1104 | .Cm Match |
Damien Miller | 8c23403 | 2006-07-24 14:05:08 +1000 | [diff] [blame] | 1105 | line or the end of the file. |
Damien Miller | fc5d675 | 2014-02-28 10:01:28 +1100 | [diff] [blame] | 1106 | If a keyword appears in multiple |
| 1107 | .Cm Match |
sobrado@openbsd.org | 180bcb4 | 2014-08-30 16:32:25 +0000 | [diff] [blame] | 1108 | blocks that are satisfied, only the first instance of the keyword is |
Damien Miller | fc5d675 | 2014-02-28 10:01:28 +1100 | [diff] [blame] | 1109 | applied. |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 1110 | .Pp |
Damien Miller | d04f357 | 2006-07-24 13:46:50 +1000 | [diff] [blame] | 1111 | The arguments to |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1112 | .Cm Match |
Damien Miller | cf31f38 | 2013-10-24 21:02:56 +1100 | [diff] [blame] | 1113 | are one or more criteria-pattern pairs or the single token |
| 1114 | .Cm All |
| 1115 | which matches all criteria. |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1116 | The available criteria are |
| 1117 | .Cm User , |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 1118 | .Cm Group , |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1119 | .Cm Host , |
Darren Tucker | fbcf827 | 2012-05-19 19:37:01 +1000 | [diff] [blame] | 1120 | .Cm LocalAddress , |
| 1121 | .Cm LocalPort , |
djm@openbsd.org | 68af80e | 2017-10-25 00:19:47 +0000 | [diff] [blame] | 1122 | .Cm RDomain , |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1123 | and |
djm@openbsd.org | 68af80e | 2017-10-25 00:19:47 +0000 | [diff] [blame] | 1124 | .Cm Address |
| 1125 | (with |
| 1126 | .Cm RDomain |
| 1127 | representing the |
| 1128 | .Xr rdomain 4 |
jmc@openbsd.org | 62949c5 | 2019-03-22 20:58:34 +0000 | [diff] [blame] | 1129 | on which the connection was received). |
djm@openbsd.org | 68af80e | 2017-10-25 00:19:47 +0000 | [diff] [blame] | 1130 | .Pp |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 1131 | The match patterns may consist of single entries or comma-separated |
| 1132 | lists and may use the wildcard and negation operators described in the |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1133 | .Sx PATTERNS |
| 1134 | section of |
Darren Tucker | b06cc4a | 2008-06-10 22:59:53 +1000 | [diff] [blame] | 1135 | .Xr ssh_config 5 . |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 1136 | .Pp |
| 1137 | The patterns in an |
| 1138 | .Cm Address |
| 1139 | criteria may additionally contain addresses to match in CIDR |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1140 | address/masklen format, |
| 1141 | such as 192.0.2.0/24 or 2001:db8::/32. |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 1142 | Note that the mask length provided must be consistent with the address - |
| 1143 | 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] | 1144 | or one with bits set in this host portion of the address. |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1145 | For example, 192.0.2.0/33 and 192.0.2.0/8, respectively. |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 1146 | .Pp |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1147 | Only a subset of keywords may be used on the lines following a |
| 1148 | .Cm Match |
| 1149 | keyword. |
| 1150 | Available keywords are |
Damien Miller | f826850 | 2012-06-20 21:54:15 +1000 | [diff] [blame] | 1151 | .Cm AcceptEnv , |
Damien Miller | 1781901 | 2009-01-28 16:20:17 +1100 | [diff] [blame] | 1152 | .Cm AllowAgentForwarding , |
Damien Miller | f826850 | 2012-06-20 21:54:15 +1000 | [diff] [blame] | 1153 | .Cm AllowGroups , |
djm@openbsd.org | 18a208d | 2015-02-20 22:40:32 +0000 | [diff] [blame] | 1154 | .Cm AllowStreamLocalForwarding , |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1155 | .Cm AllowTcpForwarding , |
Damien Miller | c24da77 | 2012-06-20 21:53:58 +1000 | [diff] [blame] | 1156 | .Cm AllowUsers , |
Damien Miller | a6e3f01 | 2012-11-04 23:21:40 +1100 | [diff] [blame] | 1157 | .Cm AuthenticationMethods , |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 1158 | .Cm AuthorizedKeysCommand , |
| 1159 | .Cm AuthorizedKeysCommandUser , |
Damien Miller | f33580e | 2012-11-04 22:22:52 +1100 | [diff] [blame] | 1160 | .Cm AuthorizedKeysFile , |
djm@openbsd.org | b6b9108 | 2015-11-13 02:57:46 +0000 | [diff] [blame] | 1161 | .Cm AuthorizedPrincipalsCommand , |
| 1162 | .Cm AuthorizedPrincipalsCommandUser , |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 1163 | .Cm AuthorizedPrincipalsFile , |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1164 | .Cm Banner , |
Damien Miller | 797e3d1 | 2008-05-19 14:27:42 +1000 | [diff] [blame] | 1165 | .Cm ChrootDirectory , |
markus@openbsd.org | f0ddede | 2016-11-23 23:14:15 +0000 | [diff] [blame] | 1166 | .Cm ClientAliveCountMax , |
| 1167 | .Cm ClientAliveInterval , |
Damien Miller | c24da77 | 2012-06-20 21:53:58 +1000 | [diff] [blame] | 1168 | .Cm DenyGroups , |
| 1169 | .Cm DenyUsers , |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 1170 | .Cm ForceCommand , |
djm@openbsd.org | 18a208d | 2015-02-20 22:40:32 +0000 | [diff] [blame] | 1171 | .Cm GatewayPorts , |
djm@openbsd.org | bd49da2 | 2015-02-20 23:46:01 +0000 | [diff] [blame] | 1172 | .Cm GSSAPIAuthentication , |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 1173 | .Cm HostbasedAcceptedKeyTypes , |
Damien Miller | 25434de | 2008-05-19 14:29:08 +1000 | [diff] [blame] | 1174 | .Cm HostbasedAuthentication , |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 1175 | .Cm HostbasedUsesNameFromPacketOnly , |
djm@openbsd.org | 321c714 | 2020-04-17 03:23:13 +0000 | [diff] [blame] | 1176 | .Cm IgnoreRhosts , |
naddy@openbsd.org | a6ac5d3 | 2020-02-06 22:34:58 +0000 | [diff] [blame] | 1177 | .Cm Include , |
djm@openbsd.org | 18a208d | 2015-02-20 22:40:32 +0000 | [diff] [blame] | 1178 | .Cm IPQoS , |
Darren Tucker | 1d75f22 | 2007-03-01 21:31:28 +1100 | [diff] [blame] | 1179 | .Cm KbdInteractiveAuthentication , |
Damien Miller | 5737e36 | 2007-03-06 21:21:18 +1100 | [diff] [blame] | 1180 | .Cm KerberosAuthentication , |
djm@openbsd.org | 54cd41a | 2017-05-17 01:24:17 +0000 | [diff] [blame] | 1181 | .Cm LogLevel , |
Damien Miller | 307c1d1 | 2008-06-16 07:56:20 +1000 | [diff] [blame] | 1182 | .Cm MaxAuthTries , |
Damien Miller | c62a5af | 2008-06-16 07:55:46 +1000 | [diff] [blame] | 1183 | .Cm MaxSessions , |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1184 | .Cm PasswordAuthentication , |
Damien Miller | 51bde60 | 2008-11-03 19:23:10 +1100 | [diff] [blame] | 1185 | .Cm PermitEmptyPasswords , |
djm@openbsd.org | 04df432 | 2018-06-06 18:24:00 +0000 | [diff] [blame] | 1186 | .Cm PermitListen , |
Damien Miller | d1de995 | 2006-07-24 14:05:48 +1000 | [diff] [blame] | 1187 | .Cm PermitOpen , |
Darren Tucker | 15f9427 | 2008-01-01 20:36:56 +1100 | [diff] [blame] | 1188 | .Cm PermitRootLogin , |
Damien Miller | 5ff30c6 | 2013-10-30 22:21:50 +1100 | [diff] [blame] | 1189 | .Cm PermitTTY , |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 1190 | .Cm PermitTunnel , |
Damien Miller | 72e6b5c | 2014-07-04 09:00:04 +1000 | [diff] [blame] | 1191 | .Cm PermitUserRC , |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 1192 | .Cm PubkeyAcceptedKeyTypes , |
Darren Tucker | 1477ea1 | 2009-10-07 08:36:05 +1100 | [diff] [blame] | 1193 | .Cm PubkeyAuthentication , |
djm@openbsd.org | 18a208d | 2015-02-20 22:40:32 +0000 | [diff] [blame] | 1194 | .Cm RekeyLimit , |
| 1195 | .Cm RevokedKeys , |
djm@openbsd.org | 35eb33f | 2017-10-25 00:17:08 +0000 | [diff] [blame] | 1196 | .Cm RDomain , |
djm@openbsd.org | 2801375 | 2018-06-09 03:03:10 +0000 | [diff] [blame] | 1197 | .Cm SetEnv , |
djm@openbsd.org | 18a208d | 2015-02-20 22:40:32 +0000 | [diff] [blame] | 1198 | .Cm StreamLocalBindMask , |
| 1199 | .Cm StreamLocalBindUnlink , |
| 1200 | .Cm TrustedUserCAKeys , |
Damien Miller | d1de995 | 2006-07-24 14:05:48 +1000 | [diff] [blame] | 1201 | .Cm X11DisplayOffset , |
Damien Miller | 1991384 | 2009-02-23 10:53:58 +1100 | [diff] [blame] | 1202 | .Cm X11Forwarding |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1203 | and |
jmc@openbsd.org | 76af9c5 | 2019-06-12 05:53:21 +0000 | [diff] [blame] | 1204 | .Cm X11UseLocalhost . |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 1205 | .It Cm MaxAuthTries |
| 1206 | Specifies the maximum number of authentication attempts permitted per |
Damien Miller | 26213e5 | 2004-06-30 22:39:34 +1000 | [diff] [blame] | 1207 | connection. |
| 1208 | Once the number of failures reaches half this value, |
| 1209 | additional failures are logged. |
| 1210 | The default is 6. |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 1211 | .It Cm MaxSessions |
djm@openbsd.org | cac3b66 | 2016-02-05 02:37:56 +0000 | [diff] [blame] | 1212 | Specifies the maximum number of open shell, login or subsystem (e.g. sftp) |
| 1213 | sessions permitted per network connection. |
| 1214 | Multiple sessions may be established by clients that support connection |
| 1215 | multiplexing. |
| 1216 | Setting |
| 1217 | .Cm MaxSessions |
| 1218 | to 1 will effectively disable session multiplexing, whereas setting it to 0 |
| 1219 | will prevent all shell, login and subsystem sessions while still permitting |
| 1220 | forwarding. |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 1221 | The default is 10. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1222 | .It Cm MaxStartups |
| 1223 | Specifies the maximum number of concurrent unauthenticated connections to the |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1224 | SSH daemon. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1225 | Additional connections will be dropped until authentication succeeds or the |
| 1226 | .Cm LoginGraceTime |
| 1227 | expires for a connection. |
Damien Miller | 1f583df | 2013-02-12 11:02:08 +1100 | [diff] [blame] | 1228 | The default is 10:30:100. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1229 | .Pp |
| 1230 | Alternatively, random early drop can be enabled by specifying |
| 1231 | the three colon separated values |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1232 | start:rate:full (e.g. "10:30:60"). |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1233 | .Xr sshd 8 |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1234 | will refuse connection attempts with a probability of rate/100 (30%) |
| 1235 | if there are currently start (10) unauthenticated connections. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1236 | The probability increases linearly and all connection attempts |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1237 | are refused if the number of unauthenticated connections reaches full (60). |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1238 | .It Cm PasswordAuthentication |
| 1239 | Specifies whether password authentication is allowed. |
| 1240 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1241 | .Cm yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1242 | .It Cm PermitEmptyPasswords |
| 1243 | When password authentication is allowed, it specifies whether the |
| 1244 | server allows login to accounts with empty password strings. |
| 1245 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1246 | .Cm no . |
djm@openbsd.org | 04df432 | 2018-06-06 18:24:00 +0000 | [diff] [blame] | 1247 | .It Cm PermitListen |
| 1248 | Specifies the addresses/ports on which a remote TCP port forwarding may listen. |
| 1249 | The listen specification must be one of the following forms: |
| 1250 | .Pp |
| 1251 | .Bl -item -offset indent -compact |
| 1252 | .It |
| 1253 | .Cm PermitListen |
| 1254 | .Sm off |
djm@openbsd.org | 87ddd67 | 2018-06-19 02:59:41 +0000 | [diff] [blame] | 1255 | .Ar port |
| 1256 | .Sm on |
| 1257 | .It |
| 1258 | .Cm PermitListen |
| 1259 | .Sm off |
djm@openbsd.org | 04df432 | 2018-06-06 18:24:00 +0000 | [diff] [blame] | 1260 | .Ar host : port |
| 1261 | .Sm on |
djm@openbsd.org | 04df432 | 2018-06-06 18:24:00 +0000 | [diff] [blame] | 1262 | .El |
| 1263 | .Pp |
| 1264 | Multiple permissions may be specified by separating them with whitespace. |
| 1265 | An argument of |
| 1266 | .Cm any |
| 1267 | can be used to remove all restrictions and permit any listen requests. |
| 1268 | An argument of |
| 1269 | .Cm none |
| 1270 | can be used to prohibit all listen requests. |
| 1271 | The host name may contain wildcards as described in the PATTERNS section in |
| 1272 | .Xr ssh_config 5 . |
| 1273 | The wildcard |
| 1274 | .Sq * |
| 1275 | can also be used in place of a port number to allow all ports. |
| 1276 | By default all port forwarding listen requests are permitted. |
jmc@openbsd.org | 6ff6fda | 2018-06-07 11:26:14 +0000 | [diff] [blame] | 1277 | Note that the |
djm@openbsd.org | 04df432 | 2018-06-06 18:24:00 +0000 | [diff] [blame] | 1278 | .Cm GatewayPorts |
| 1279 | option may further restrict which addresses may be listened on. |
djm@openbsd.org | 87ddd67 | 2018-06-19 02:59:41 +0000 | [diff] [blame] | 1280 | Note also that |
| 1281 | .Xr ssh 1 |
| 1282 | will request a listen host of |
| 1283 | .Dq localhost |
dtucker@openbsd.org | 177d6c8 | 2019-01-23 20:48:52 +0000 | [diff] [blame] | 1284 | if no listen host was specifically requested, and this name is |
jmc@openbsd.org | f535ff9 | 2018-06-19 05:36:57 +0000 | [diff] [blame] | 1285 | treated differently to explicit localhost addresses of |
djm@openbsd.org | 87ddd67 | 2018-06-19 02:59:41 +0000 | [diff] [blame] | 1286 | .Dq 127.0.0.1 |
| 1287 | and |
| 1288 | .Dq ::1 . |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1289 | .It Cm PermitOpen |
| 1290 | Specifies the destinations to which TCP port forwarding is permitted. |
| 1291 | The forwarding specification must be one of the following forms: |
| 1292 | .Pp |
| 1293 | .Bl -item -offset indent -compact |
| 1294 | .It |
| 1295 | .Cm PermitOpen |
| 1296 | .Sm off |
| 1297 | .Ar host : port |
| 1298 | .Sm on |
| 1299 | .It |
| 1300 | .Cm PermitOpen |
| 1301 | .Sm off |
| 1302 | .Ar IPv4_addr : port |
| 1303 | .Sm on |
| 1304 | .It |
| 1305 | .Cm PermitOpen |
| 1306 | .Sm off |
| 1307 | .Ar \&[ IPv6_addr \&] : port |
| 1308 | .Sm on |
| 1309 | .El |
| 1310 | .Pp |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 1311 | Multiple forwards may be specified by separating them with whitespace. |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1312 | An argument of |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1313 | .Cm any |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1314 | can be used to remove all restrictions and permit any forwarding requests. |
Darren Tucker | ba9ea32 | 2012-05-19 19:37:33 +1000 | [diff] [blame] | 1315 | An argument of |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1316 | .Cm none |
Darren Tucker | ba9ea32 | 2012-05-19 19:37:33 +1000 | [diff] [blame] | 1317 | can be used to prohibit all forwarding requests. |
jmc@openbsd.org | 32d921c | 2016-07-19 12:59:16 +0000 | [diff] [blame] | 1318 | The wildcard |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1319 | .Sq * |
djm@openbsd.org | 734f2f8 | 2020-01-25 06:03:10 +0000 | [diff] [blame] | 1320 | can be used for host or port to allow all hosts or ports respectively. |
| 1321 | Otherwise, no pattern matching or address lookups are performed on supplied |
| 1322 | names. |
Damien Miller | 65bc2c4 | 2006-07-24 14:04:16 +1000 | [diff] [blame] | 1323 | By default all port forwarding requests are permitted. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1324 | .It Cm PermitRootLogin |
Darren Tucker | b350901 | 2005-01-20 11:01:46 +1100 | [diff] [blame] | 1325 | Specifies whether root can log in using |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1326 | .Xr ssh 1 . |
| 1327 | The argument must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1328 | .Cm yes , |
| 1329 | .Cm prohibit-password , |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1330 | .Cm forced-commands-only , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1331 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1332 | .Cm no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1333 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1334 | .Cm prohibit-password . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1335 | .Pp |
| 1336 | If this option is set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1337 | .Cm prohibit-password |
jmc@openbsd.org | 071325f | 2017-10-13 16:50:45 +0000 | [diff] [blame] | 1338 | (or its deprecated alias, |
| 1339 | .Cm without-password ) , |
deraadt@openbsd.org | 1dc8d93 | 2015-08-06 14:53:21 +0000 | [diff] [blame] | 1340 | password and keyboard-interactive authentication are disabled for root. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1341 | .Pp |
| 1342 | If this option is set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1343 | .Cm forced-commands-only , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1344 | root login with public key authentication will be allowed, |
| 1345 | but only if the |
| 1346 | .Ar command |
| 1347 | option has been specified |
| 1348 | (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] | 1349 | normally not allowed). |
| 1350 | All other authentication methods are disabled for root. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1351 | .Pp |
| 1352 | If this option is set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1353 | .Cm no , |
Darren Tucker | b350901 | 2005-01-20 11:01:46 +1100 | [diff] [blame] | 1354 | root is not allowed to log in. |
jmc@openbsd.org | f219fc8 | 2016-09-07 18:39:24 +0000 | [diff] [blame] | 1355 | .It Cm PermitTTY |
| 1356 | Specifies whether |
| 1357 | .Xr pty 4 |
| 1358 | allocation is permitted. |
| 1359 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1360 | .Cm yes . |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 1361 | .It Cm PermitTunnel |
| 1362 | Specifies whether |
| 1363 | .Xr tun 4 |
| 1364 | device forwarding is allowed. |
Damien Miller | 7b58e80 | 2005-12-13 19:33:19 +1100 | [diff] [blame] | 1365 | The argument must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1366 | .Cm yes , |
| 1367 | .Cm point-to-point |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 1368 | (layer 3), |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1369 | .Cm ethernet |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 1370 | (layer 2), or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1371 | .Cm no . |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 1372 | Specifying |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1373 | .Cm yes |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 1374 | permits both |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1375 | .Cm point-to-point |
Damien Miller | 991dba4 | 2006-07-10 20:16:27 +1000 | [diff] [blame] | 1376 | and |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1377 | .Cm ethernet . |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 1378 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1379 | .Cm no . |
djm@openbsd.org | 48dffd5 | 2014-09-09 09:45:36 +0000 | [diff] [blame] | 1380 | .Pp |
| 1381 | Independent of this setting, the permissions of the selected |
| 1382 | .Xr tun 4 |
| 1383 | device must allow access to the user. |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 1384 | .It Cm PermitUserEnvironment |
| 1385 | Specifies whether |
| 1386 | .Pa ~/.ssh/environment |
Ben Lindstrom | bd9bf38 | 2002-08-20 18:54:20 +0000 | [diff] [blame] | 1387 | and |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 1388 | .Cm environment= |
| 1389 | options in |
| 1390 | .Pa ~/.ssh/authorized_keys |
Ben Lindstrom | bd9bf38 | 2002-08-20 18:54:20 +0000 | [diff] [blame] | 1391 | are processed by |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1392 | .Xr sshd 8 . |
djm@openbsd.org | 95344c2 | 2018-07-03 10:59:35 +0000 | [diff] [blame] | 1393 | Valid options are |
| 1394 | .Cm yes , |
| 1395 | .Cm no |
| 1396 | or a pattern-list specifying which environment variable names to accept |
| 1397 | (for example |
| 1398 | .Qq LANG,LC_* ) . |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 1399 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1400 | .Cm no . |
Ben Lindstrom | bd9bf38 | 2002-08-20 18:54:20 +0000 | [diff] [blame] | 1401 | Enabling environment processing may enable users to bypass access |
| 1402 | restrictions in some configurations using mechanisms such as |
| 1403 | .Ev LD_PRELOAD . |
Damien Miller | 72e6b5c | 2014-07-04 09:00:04 +1000 | [diff] [blame] | 1404 | .It Cm PermitUserRC |
| 1405 | Specifies whether any |
| 1406 | .Pa ~/.ssh/rc |
| 1407 | file is executed. |
| 1408 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1409 | .Cm yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1410 | .It Cm PidFile |
Ben Lindstrom | 959de99 | 2002-06-23 00:35:25 +0000 | [diff] [blame] | 1411 | Specifies the file that contains the process ID of the |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1412 | SSH daemon, or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1413 | .Cm none |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1414 | to not write one. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1415 | The default is |
| 1416 | .Pa /var/run/sshd.pid . |
| 1417 | .It Cm Port |
| 1418 | Specifies the port number that |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1419 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1420 | listens on. |
| 1421 | The default is 22. |
| 1422 | Multiple options of this type are permitted. |
| 1423 | See also |
| 1424 | .Cm ListenAddress . |
| 1425 | .It Cm PrintLastLog |
| 1426 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1427 | .Xr sshd 8 |
Darren Tucker | 7cc5c23 | 2004-11-05 20:06:59 +1100 | [diff] [blame] | 1428 | should print the date and time of the last user login when a user logs |
| 1429 | in interactively. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1430 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1431 | .Cm yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1432 | .It Cm PrintMotd |
| 1433 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1434 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1435 | should print |
| 1436 | .Pa /etc/motd |
| 1437 | when a user logs in interactively. |
| 1438 | (On some systems it is also printed by the shell, |
| 1439 | .Pa /etc/profile , |
| 1440 | or equivalent.) |
| 1441 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1442 | .Cm yes . |
djm@openbsd.org | 1f729f0 | 2015-01-13 07:39:19 +0000 | [diff] [blame] | 1443 | .It Cm PubkeyAcceptedKeyTypes |
| 1444 | Specifies the key types that will be accepted for public key authentication |
djm@openbsd.org | 312d2f2 | 2018-07-04 13:49:31 +0000 | [diff] [blame] | 1445 | as a list of comma-separated patterns. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 1446 | Alternately if the specified list begins with a |
djm@openbsd.org | f9eca24 | 2015-07-30 00:01:34 +0000 | [diff] [blame] | 1447 | .Sq + |
| 1448 | character, then the specified key types will be appended to the default set |
| 1449 | instead of replacing them. |
naddy@openbsd.org | 4f9d75f | 2019-09-04 20:31:15 +0000 | [diff] [blame] | 1450 | If the specified list begins with a |
djm@openbsd.org | 68bc8cf | 2017-02-03 23:01:19 +0000 | [diff] [blame] | 1451 | .Sq - |
| 1452 | character, then the specified key types (including wildcards) will be removed |
| 1453 | from the default set instead of replacing them. |
naddy@openbsd.org | 91a2135 | 2019-09-06 14:45:34 +0000 | [diff] [blame] | 1454 | If the specified list begins with a |
| 1455 | .Sq ^ |
| 1456 | character, then the specified key types will be placed at the head of the |
| 1457 | default set. |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 1458 | The default for this option is: |
| 1459 | .Bd -literal -offset 3n |
| 1460 | ecdsa-sha2-nistp256-cert-v01@openssh.com, |
| 1461 | ecdsa-sha2-nistp384-cert-v01@openssh.com, |
| 1462 | ecdsa-sha2-nistp521-cert-v01@openssh.com, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 1463 | sk-ecdsa-sha2-nistp256-cert-v01@openssh.com, |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 1464 | ssh-ed25519-cert-v01@openssh.com, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 1465 | sk-ssh-ed25519-cert-v01@openssh.com, |
naddy@openbsd.org | aa4c640 | 2019-11-07 08:38:38 +0000 | [diff] [blame] | 1466 | rsa-sha2-512-cert-v01@openssh.com, |
| 1467 | rsa-sha2-256-cert-v01@openssh.com, |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 1468 | ssh-rsa-cert-v01@openssh.com, |
| 1469 | ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 1470 | sk-ecdsa-sha2-nistp256@openssh.com, |
| 1471 | ssh-ed25519,sk-ssh-ed25519@openssh.com, |
| 1472 | rsa-sha2-512,rsa-sha2-256,ssh-rsa |
markus@openbsd.org | 3a1638d | 2015-07-10 06:21:53 +0000 | [diff] [blame] | 1473 | .Ed |
| 1474 | .Pp |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1475 | The list of available key types may also be obtained using |
dtucker@openbsd.org | d4d9e1d | 2020-02-07 03:54:44 +0000 | [diff] [blame] | 1476 | .Qq ssh -Q PubkeyAcceptedKeyTypes . |
djm@openbsd.org | 0fddf29 | 2019-11-25 00:52:46 +0000 | [diff] [blame] | 1477 | .It Cm PubkeyAuthOptions |
| 1478 | Sets one or more public key authentication options. |
| 1479 | Two option keywords are currently supported: |
jmc@openbsd.org | 8635afa | 2019-11-26 22:42:26 +0000 | [diff] [blame] | 1480 | .Cm none |
| 1481 | (the default; indicating no additional options are enabled) |
djm@openbsd.org | 0fddf29 | 2019-11-25 00:52:46 +0000 | [diff] [blame] | 1482 | and |
| 1483 | .Cm touch-required . |
| 1484 | .Pp |
| 1485 | The |
| 1486 | .Cm touch-required |
naddy@openbsd.org | 141df48 | 2019-12-21 20:22:34 +0000 | [diff] [blame] | 1487 | option causes public key authentication using a FIDO authenticator algorithm |
jmc@openbsd.org | 8635afa | 2019-11-26 22:42:26 +0000 | [diff] [blame] | 1488 | (i.e.\& |
djm@openbsd.org | 0fddf29 | 2019-11-25 00:52:46 +0000 | [diff] [blame] | 1489 | .Cm ecdsa-sk |
| 1490 | or |
| 1491 | .Cm ed25519-sk ) |
| 1492 | to always require the signature to attest that a physically present user |
naddy@openbsd.org | 141df48 | 2019-12-21 20:22:34 +0000 | [diff] [blame] | 1493 | explicitly confirmed the authentication (usually by touching the authenticator). |
djm@openbsd.org | 0fddf29 | 2019-11-25 00:52:46 +0000 | [diff] [blame] | 1494 | By default, |
| 1495 | .Xr sshd 8 |
naddy@openbsd.org | 141df48 | 2019-12-21 20:22:34 +0000 | [diff] [blame] | 1496 | requires user presence unless overridden with an authorized_keys option. |
djm@openbsd.org | 0fddf29 | 2019-11-25 00:52:46 +0000 | [diff] [blame] | 1497 | The |
| 1498 | .Cm touch-required |
| 1499 | flag disables this override. |
naddy@openbsd.org | 141df48 | 2019-12-21 20:22:34 +0000 | [diff] [blame] | 1500 | This option has no effect for other, non-authenticator public key types. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1501 | .It Cm PubkeyAuthentication |
| 1502 | Specifies whether public key authentication is allowed. |
| 1503 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1504 | .Cm yes . |
Darren Tucker | 5f96f3b | 2013-05-16 20:29:28 +1000 | [diff] [blame] | 1505 | .It Cm RekeyLimit |
| 1506 | Specifies the maximum amount of data that may be transmitted before the |
| 1507 | session key is renegotiated, optionally followed a maximum amount of |
| 1508 | time that may pass before the session key is renegotiated. |
| 1509 | The first argument is specified in bytes and may have a suffix of |
| 1510 | .Sq K , |
| 1511 | .Sq M , |
| 1512 | or |
| 1513 | .Sq G |
| 1514 | to indicate Kilobytes, Megabytes, or Gigabytes, respectively. |
| 1515 | The default is between |
| 1516 | .Sq 1G |
| 1517 | and |
| 1518 | .Sq 4G , |
| 1519 | depending on the cipher. |
| 1520 | The optional second value is specified in seconds and may use any of the |
| 1521 | units documented in the |
| 1522 | .Sx TIME FORMATS |
Darren Tucker | 64d2294 | 2013-05-16 20:31:29 +1000 | [diff] [blame] | 1523 | section. |
Darren Tucker | 5f96f3b | 2013-05-16 20:29:28 +1000 | [diff] [blame] | 1524 | The default value for |
| 1525 | .Cm RekeyLimit |
| 1526 | is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1527 | .Cm default none , |
Darren Tucker | 5f96f3b | 2013-05-16 20:29:28 +1000 | [diff] [blame] | 1528 | which means that rekeying is performed after the cipher's default amount |
| 1529 | of data has been sent or received and no time based rekeying is done. |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1530 | .It Cm RevokedKeys |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1531 | Specifies revoked public keys file, or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1532 | .Cm none |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1533 | to not use one. |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1534 | Keys listed in this file will be refused for public key authentication. |
| 1535 | Note that if this file is not readable, then public key authentication will |
| 1536 | be refused for all users. |
Damien Miller | f3747bf | 2013-01-18 11:44:04 +1100 | [diff] [blame] | 1537 | Keys may be specified as a text file, listing one public key per line, or as |
| 1538 | an OpenSSH Key Revocation List (KRL) as generated by |
Damien Miller | 72abeb7 | 2013-01-20 22:33:44 +1100 | [diff] [blame] | 1539 | .Xr ssh-keygen 1 . |
Damien Miller | fecfd11 | 2013-07-18 16:11:50 +1000 | [diff] [blame] | 1540 | For more information on KRLs, see the KEY REVOCATION LISTS section in |
Damien Miller | f3747bf | 2013-01-18 11:44:04 +1100 | [diff] [blame] | 1541 | .Xr ssh-keygen 1 . |
djm@openbsd.org | 35eb33f | 2017-10-25 00:17:08 +0000 | [diff] [blame] | 1542 | .It Cm RDomain |
| 1543 | Specifies an explicit routing domain that is applied after authentication |
| 1544 | has completed. |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 1545 | The user session, as well and any forwarded or listening IP sockets, |
| 1546 | will be bound to this |
djm@openbsd.org | 35eb33f | 2017-10-25 00:17:08 +0000 | [diff] [blame] | 1547 | .Xr rdomain 4 . |
| 1548 | If the routing domain is set to |
| 1549 | .Cm \&%D , |
jmc@openbsd.org@openbsd.org | 7530e77 | 2017-10-25 06:18:06 +0000 | [diff] [blame] | 1550 | then the domain in which the incoming connection was received will be applied. |
naddy@openbsd.org | ae024b2 | 2019-12-19 15:09:30 +0000 | [diff] [blame] | 1551 | .It Cm SecurityKeyProvider |
naddy@openbsd.org | 141df48 | 2019-12-21 20:22:34 +0000 | [diff] [blame] | 1552 | Specifies a path to a library that will be used when loading |
| 1553 | FIDO authenticator-hosted keys, overriding the default of using |
| 1554 | the built-in USB HID support. |
djm@openbsd.org | 2801375 | 2018-06-09 03:03:10 +0000 | [diff] [blame] | 1555 | .It Cm SetEnv |
| 1556 | Specifies one or more environment variables to set in child sessions started |
| 1557 | by |
| 1558 | .Xr sshd 8 |
| 1559 | as |
| 1560 | .Dq NAME=VALUE . |
| 1561 | The environment value may be quoted (e.g. if it contains whitespace |
| 1562 | characters). |
| 1563 | Environment variables set by |
| 1564 | .Cm SetEnv |
| 1565 | override the default environment and any variables specified by the user |
| 1566 | via |
| 1567 | .Cm AcceptEnv |
| 1568 | or |
| 1569 | .Cm PermitUserEnvironment . |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 1570 | .It Cm StreamLocalBindMask |
| 1571 | Sets the octal file creation mode mask |
| 1572 | .Pq umask |
| 1573 | used when creating a Unix-domain socket file for local or remote |
| 1574 | port forwarding. |
| 1575 | This option is only used for port forwarding to a Unix-domain socket file. |
| 1576 | .Pp |
| 1577 | The default value is 0177, which creates a Unix-domain socket file that is |
| 1578 | readable and writable only by the owner. |
| 1579 | Note that not all operating systems honor the file mode on Unix-domain |
| 1580 | socket files. |
| 1581 | .It Cm StreamLocalBindUnlink |
| 1582 | Specifies whether to remove an existing Unix-domain socket file for local |
| 1583 | or remote port forwarding before creating a new one. |
| 1584 | If the socket file already exists and |
| 1585 | .Cm StreamLocalBindUnlink |
| 1586 | is not enabled, |
| 1587 | .Nm sshd |
| 1588 | will be unable to forward the port to the Unix-domain socket file. |
| 1589 | This option is only used for port forwarding to a Unix-domain socket file. |
| 1590 | .Pp |
| 1591 | The argument must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1592 | .Cm yes |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 1593 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1594 | .Cm no . |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 1595 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1596 | .Cm no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1597 | .It Cm StrictModes |
| 1598 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1599 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1600 | should check file modes and ownership of the |
| 1601 | user's files and home directory before accepting login. |
| 1602 | This is normally desirable because novices sometimes accidentally leave their |
| 1603 | directory or files world-writable. |
| 1604 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1605 | .Cm yes . |
Darren Tucker | f788a91 | 2010-01-08 17:06:47 +1100 | [diff] [blame] | 1606 | Note that this does not apply to |
| 1607 | .Cm ChrootDirectory , |
| 1608 | whose permissions and ownership are checked unconditionally. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1609 | .It Cm Subsystem |
Damien Miller | 208f1ed | 2006-03-15 11:56:03 +1100 | [diff] [blame] | 1610 | Configures an external subsystem (e.g. file transfer daemon). |
Damien Miller | 917f9b6 | 2006-07-10 20:36:47 +1000 | [diff] [blame] | 1611 | Arguments should be a subsystem name and a command (with optional arguments) |
| 1612 | to execute upon subsystem request. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1613 | .Pp |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1614 | The command |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1615 | .Cm sftp-server |
| 1616 | implements the SFTP file transfer subsystem. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1617 | .Pp |
| 1618 | Alternately the name |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1619 | .Cm internal-sftp |
| 1620 | implements an in-process SFTP server. |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1621 | This may simplify configurations using |
| 1622 | .Cm ChrootDirectory |
| 1623 | to force a different filesystem root on clients. |
| 1624 | .Pp |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1625 | By default no subsystems are defined. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1626 | .It Cm SyslogFacility |
| 1627 | Gives the facility code that is used when logging messages from |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1628 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1629 | The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2, |
| 1630 | LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. |
| 1631 | The default is AUTH. |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 1632 | .It Cm TCPKeepAlive |
| 1633 | Specifies whether the system should send TCP keepalive messages to the |
| 1634 | other side. |
| 1635 | If they are sent, death of the connection or crash of one |
| 1636 | of the machines will be properly noticed. |
| 1637 | However, this means that |
| 1638 | connections will die if the route is down temporarily, and some people |
| 1639 | find it annoying. |
| 1640 | On the other hand, if TCP keepalives are not sent, |
| 1641 | sessions may hang indefinitely on the server, leaving |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1642 | .Qq ghost |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 1643 | users and consuming server resources. |
| 1644 | .Pp |
| 1645 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1646 | .Cm yes |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 1647 | (to send TCP keepalive messages), and the server will notice |
| 1648 | if the network goes down or the client host crashes. |
| 1649 | This avoids infinitely hanging sessions. |
| 1650 | .Pp |
| 1651 | To disable TCP keepalive messages, the value should be set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1652 | .Cm no . |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1653 | .It Cm TrustedUserCAKeys |
| 1654 | Specifies a file containing public keys of certificate authorities that are |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1655 | trusted to sign user certificates for authentication, or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1656 | .Cm none |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1657 | to not use one. |
Damien Miller | 72b3382 | 2010-03-05 07:39:01 +1100 | [diff] [blame] | 1658 | Keys are listed one per line; empty lines and comments starting with |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1659 | .Ql # |
| 1660 | are allowed. |
| 1661 | If a certificate is presented for authentication and has its signing CA key |
| 1662 | listed in this file, then it may be used for authentication for any user |
| 1663 | listed in the certificate's principals list. |
| 1664 | Note that certificates that lack a list of principals will not be permitted |
| 1665 | for authentication using |
| 1666 | .Cm TrustedUserCAKeys . |
Damien Miller | fecfd11 | 2013-07-18 16:11:50 +1000 | [diff] [blame] | 1667 | For more details on certificates, see the CERTIFICATES section in |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1668 | .Xr ssh-keygen 1 . |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 1669 | .It Cm UseDNS |
| 1670 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1671 | .Xr sshd 8 |
djm@openbsd.org | c63c9a6 | 2015-07-20 00:30:01 +0000 | [diff] [blame] | 1672 | should look up the remote host name, and to check that |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 1673 | the resolved host name for the remote IP address maps back to the |
| 1674 | very same IP address. |
djm@openbsd.org | c63c9a6 | 2015-07-20 00:30:01 +0000 | [diff] [blame] | 1675 | .Pp |
| 1676 | If this option is set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1677 | .Cm no |
djm@openbsd.org | c63c9a6 | 2015-07-20 00:30:01 +0000 | [diff] [blame] | 1678 | (the default) then only addresses and not host names may be used in |
djm@openbsd.org | 0235a5f | 2016-03-17 17:19:43 +0000 | [diff] [blame] | 1679 | .Pa ~/.ssh/authorized_keys |
djm@openbsd.org | c63c9a6 | 2015-07-20 00:30:01 +0000 | [diff] [blame] | 1680 | .Cm from |
| 1681 | and |
jmc@openbsd.org | 1f8d3d6 | 2015-08-14 15:32:41 +0000 | [diff] [blame] | 1682 | .Nm |
djm@openbsd.org | c63c9a6 | 2015-07-20 00:30:01 +0000 | [diff] [blame] | 1683 | .Cm Match |
| 1684 | .Cm Host |
| 1685 | directives. |
Damien Miller | 2e193e2 | 2003-05-14 15:13:03 +1000 | [diff] [blame] | 1686 | .It Cm UsePAM |
Darren Tucker | 1dcff9a | 2004-05-13 16:51:40 +1000 | [diff] [blame] | 1687 | Enables the Pluggable Authentication Module interface. |
| 1688 | If set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1689 | .Cm yes |
Darren Tucker | 1dcff9a | 2004-05-13 16:51:40 +1000 | [diff] [blame] | 1690 | this will enable PAM authentication using |
| 1691 | .Cm ChallengeResponseAuthentication |
Darren Tucker | a4904f7 | 2006-02-23 21:35:30 +1100 | [diff] [blame] | 1692 | and |
| 1693 | .Cm PasswordAuthentication |
| 1694 | in addition to PAM account and session module processing for all |
| 1695 | authentication types. |
Darren Tucker | 1dcff9a | 2004-05-13 16:51:40 +1000 | [diff] [blame] | 1696 | .Pp |
| 1697 | Because PAM challenge-response authentication usually serves an equivalent |
| 1698 | role to password authentication, you should disable either |
| 1699 | .Cm PasswordAuthentication |
| 1700 | or |
| 1701 | .Cm ChallengeResponseAuthentication. |
| 1702 | .Pp |
| 1703 | If |
| 1704 | .Cm UsePAM |
| 1705 | is enabled, you will not be able to run |
| 1706 | .Xr sshd 8 |
| 1707 | as a non-root user. |
| 1708 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1709 | .Cm no . |
Damien Miller | 2352881 | 2012-04-22 11:24:43 +1000 | [diff] [blame] | 1710 | .It Cm VersionAddendum |
| 1711 | Optionally specifies additional text to append to the SSH protocol banner |
| 1712 | sent by the server upon connection. |
| 1713 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1714 | .Cm none . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1715 | .It Cm X11DisplayOffset |
| 1716 | Specifies the first display number available for |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1717 | .Xr sshd 8 Ns 's |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1718 | X11 forwarding. |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1719 | This prevents sshd from interfering with real X11 servers. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1720 | The default is 10. |
| 1721 | .It Cm X11Forwarding |
| 1722 | Specifies whether X11 forwarding is permitted. |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1723 | The argument must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1724 | .Cm yes |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1725 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1726 | .Cm no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1727 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1728 | .Cm no . |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1729 | .Pp |
| 1730 | When X11 forwarding is enabled, there may be additional exposure to |
| 1731 | the server and to client displays if the |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1732 | .Xr sshd 8 |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1733 | proxy display is configured to listen on the wildcard address (see |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1734 | .Cm X11UseLocalhost ) , |
| 1735 | though this is not the default. |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1736 | Additionally, the authentication spoofing and authentication data |
| 1737 | verification and substitution occur on the client side. |
| 1738 | 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] | 1739 | display server may be exposed to attack when the SSH client requests |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1740 | forwarding (see the warnings for |
| 1741 | .Cm ForwardX11 |
| 1742 | in |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 1743 | .Xr ssh_config 5 ) . |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1744 | A system administrator may have a stance in which they want to |
| 1745 | protect clients that may expose themselves to attack by unwittingly |
| 1746 | requesting X11 forwarding, which can warrant a |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1747 | .Cm no |
Damien Miller | 101c4a7 | 2002-09-19 11:51:21 +1000 | [diff] [blame] | 1748 | setting. |
| 1749 | .Pp |
| 1750 | Note that disabling X11 forwarding does not prevent users from |
| 1751 | forwarding X11 traffic, as users can always install their own forwarders. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1752 | .It Cm X11UseLocalhost |
| 1753 | Specifies whether |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1754 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1755 | should bind the X11 forwarding server to the loopback address or to |
Damien Miller | 495dca3 | 2003-04-01 21:42:14 +1000 | [diff] [blame] | 1756 | the wildcard address. |
| 1757 | By default, |
Damien Miller | 5b0d63f | 2006-03-15 11:56:56 +1100 | [diff] [blame] | 1758 | sshd binds the forwarding server to the loopback address and sets the |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1759 | hostname part of the |
| 1760 | .Ev DISPLAY |
| 1761 | environment variable to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1762 | .Cm localhost . |
Ben Lindstrom | 15b6120 | 2002-08-20 18:44:24 +0000 | [diff] [blame] | 1763 | This prevents remote hosts from connecting to the proxy display. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1764 | However, some older X11 clients may not function with this |
| 1765 | configuration. |
| 1766 | .Cm X11UseLocalhost |
| 1767 | may be set to |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1768 | .Cm no |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1769 | to specify that the forwarding server should be bound to the wildcard |
| 1770 | address. |
| 1771 | The argument must be |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1772 | .Cm yes |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1773 | or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1774 | .Cm no . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1775 | The default is |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1776 | .Cm yes . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1777 | .It Cm XAuthLocation |
Damien Miller | 05913ba | 2002-09-04 16:51:03 +1000 | [diff] [blame] | 1778 | Specifies the full pathname of the |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1779 | .Xr xauth 1 |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1780 | program, or |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1781 | .Cm none |
dtucker@openbsd.org | 6cc7cfa | 2015-04-16 23:25:50 +0000 | [diff] [blame] | 1782 | to not use one. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1783 | The default is |
| 1784 | .Pa /usr/X11R6/bin/xauth . |
| 1785 | .El |
Damien Miller | e3beba2 | 2006-03-15 11:59:25 +1100 | [diff] [blame] | 1786 | .Sh TIME FORMATS |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1787 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1788 | command-line arguments and configuration file options that specify time |
| 1789 | may be expressed using a sequence of the form: |
| 1790 | .Sm off |
Ben Lindstrom | 1f8cf4f | 2002-08-20 18:43:27 +0000 | [diff] [blame] | 1791 | .Ar time Op Ar qualifier , |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1792 | .Sm on |
| 1793 | where |
| 1794 | .Ar time |
| 1795 | is a positive integer value and |
| 1796 | .Ar qualifier |
| 1797 | is one of the following: |
| 1798 | .Pp |
| 1799 | .Bl -tag -width Ds -compact -offset indent |
Damien Miller | 393821a | 2006-07-24 14:04:53 +1000 | [diff] [blame] | 1800 | .It Aq Cm none |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1801 | seconds |
| 1802 | .It Cm s | Cm S |
| 1803 | seconds |
| 1804 | .It Cm m | Cm M |
| 1805 | minutes |
| 1806 | .It Cm h | Cm H |
| 1807 | hours |
| 1808 | .It Cm d | Cm D |
| 1809 | days |
| 1810 | .It Cm w | Cm W |
| 1811 | weeks |
| 1812 | .El |
| 1813 | .Pp |
| 1814 | Each member of the sequence is added together to calculate |
| 1815 | the total time value. |
| 1816 | .Pp |
| 1817 | Time format examples: |
| 1818 | .Pp |
| 1819 | .Bl -tag -width Ds -compact -offset indent |
| 1820 | .It 600 |
| 1821 | 600 seconds (10 minutes) |
| 1822 | .It 10m |
| 1823 | 10 minutes |
| 1824 | .It 1h30m |
| 1825 | 1 hour 30 minutes (90 minutes) |
| 1826 | .El |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1827 | .Sh TOKENS |
| 1828 | Arguments to some keywords can make use of tokens, |
| 1829 | which are expanded at runtime: |
| 1830 | .Pp |
| 1831 | .Bl -tag -width XXXX -offset indent -compact |
| 1832 | .It %% |
| 1833 | A literal |
| 1834 | .Sq % . |
djm@openbsd.org | 35eb33f | 2017-10-25 00:17:08 +0000 | [diff] [blame] | 1835 | .It \&%D |
| 1836 | The routing domain in which the incoming connection was received. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1837 | .It %F |
| 1838 | The fingerprint of the CA key. |
| 1839 | .It %f |
| 1840 | The fingerprint of the key or certificate. |
| 1841 | .It %h |
| 1842 | The home directory of the user. |
| 1843 | .It %i |
| 1844 | The key ID in the certificate. |
| 1845 | .It %K |
| 1846 | The base64-encoded CA key. |
| 1847 | .It %k |
| 1848 | The base64-encoded key or certificate for authentication. |
| 1849 | .It %s |
| 1850 | The serial number of the certificate. |
| 1851 | .It \&%T |
| 1852 | The type of the CA key. |
| 1853 | .It %t |
| 1854 | The key or certificate type. |
jmc@openbsd.org | 2940284 | 2018-06-01 05:50:18 +0000 | [diff] [blame] | 1855 | .It \&%U |
| 1856 | The numeric user ID of the target user. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1857 | .It %u |
| 1858 | The username. |
| 1859 | .El |
| 1860 | .Pp |
| 1861 | .Cm AuthorizedKeysCommand |
jmc@openbsd.org | e8d59fe | 2018-06-01 06:23:10 +0000 | [diff] [blame] | 1862 | accepts the tokens %%, %f, %h, %k, %t, %U, and %u. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1863 | .Pp |
| 1864 | .Cm AuthorizedKeysFile |
jmc@openbsd.org | e8d59fe | 2018-06-01 06:23:10 +0000 | [diff] [blame] | 1865 | accepts the tokens %%, %h, %U, and %u. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1866 | .Pp |
| 1867 | .Cm AuthorizedPrincipalsCommand |
jmc@openbsd.org | e8d59fe | 2018-06-01 06:23:10 +0000 | [diff] [blame] | 1868 | accepts the tokens %%, %F, %f, %h, %i, %K, %k, %s, %T, %t, %U, and %u. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1869 | .Pp |
| 1870 | .Cm AuthorizedPrincipalsFile |
jmc@openbsd.org | e8d59fe | 2018-06-01 06:23:10 +0000 | [diff] [blame] | 1871 | accepts the tokens %%, %h, %U, and %u. |
jmc@openbsd.org | de6a175 | 2016-09-22 19:19:01 +0000 | [diff] [blame] | 1872 | .Pp |
| 1873 | .Cm ChrootDirectory |
jmc@openbsd.org | e8d59fe | 2018-06-01 06:23:10 +0000 | [diff] [blame] | 1874 | accepts the tokens %%, %h, %U, and %u. |
djm@openbsd.org | 35eb33f | 2017-10-25 00:17:08 +0000 | [diff] [blame] | 1875 | .Pp |
| 1876 | .Cm RoutingDomain |
| 1877 | accepts the token %D. |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1878 | .Sh FILES |
| 1879 | .Bl -tag -width Ds |
| 1880 | .It Pa /etc/ssh/sshd_config |
| 1881 | Contains configuration data for |
Damien Miller | f4f22b5 | 2006-03-15 11:57:25 +1100 | [diff] [blame] | 1882 | .Xr sshd 8 . |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1883 | This file should be writable by root only, but it is recommended |
| 1884 | (though not necessary) that it be world-readable. |
| 1885 | .El |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 1886 | .Sh SEE ALSO |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1887 | .Xr sftp-server 8 , |
Damien Miller | f1ce505 | 2003-06-11 22:04:39 +1000 | [diff] [blame] | 1888 | .Xr sshd 8 |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1889 | .Sh AUTHORS |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1890 | .An -nosplit |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1891 | OpenSSH is a derivative of the original and free |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1892 | ssh 1.2.12 release by |
| 1893 | .An Tatu Ylonen . |
| 1894 | .An Aaron Campbell , Bob Beck , Markus Friedl , Niels Provos , |
| 1895 | .An Theo de Raadt |
| 1896 | and |
| 1897 | .An Dug Song |
Ben Lindstrom | 9f04903 | 2002-06-21 00:59:05 +0000 | [diff] [blame] | 1898 | removed many bugs, re-added newer features and |
| 1899 | created OpenSSH. |
jmc@openbsd.org | aae4dbd | 2016-10-07 14:41:52 +0000 | [diff] [blame] | 1900 | .An Markus Friedl |
| 1901 | contributed the support for SSH protocol versions 1.5 and 2.0. |
| 1902 | .An Niels Provos |
| 1903 | and |
| 1904 | .An Markus Friedl |
| 1905 | contributed support for privilege separation. |