1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
<!--
%CopyrightBegin%
SPDX-License-Identifier: Apache-2.0
Copyright Ericsson AB 2023-2025. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
%CopyrightEnd%
-->
# SSH Application
The ssh application implements the Secure Shell (SSH) protocol and provides an
SSH File Transfer Protocol (SFTP) client and server.
## Description
The `ssh` application is an implementation of the SSH protocol in Erlang. `ssh`
offers API functions to write customized SSH clients and servers as well as
making the Erlang shell available over SSH. An SFTP client, `ssh_sftp`, and
server, `ssh_sftpd`, are also included.
## Dependencies
The `ssh` application uses the applications `m:public_key` and `m:crypto` to
handle public keys and encryption. Hence, these applications must be loaded for
the `ssh` application to work. The call `ssh:start/0` will do the necessary
calls to [application:start/1,2](`application:start/1`) before it starts the
`ssh` itself.
## Configuration
The SSH application uses Configuration Parameters. Where to set them are
described in [config User's Guide](`e:kernel:config.md`) with SSH details in
[Configuration in SSH](configurations.md).
Some special configuration files from OpenSSH are also used:
- `known_hosts`
- `authorized_keys`
- `authorized_keys2`
- `id_dsa` _(supported but disabled by default)_
- `id_rsa` _(SHA1 sign/verify are supported but disabled by default from
OTP-24)_
- `id_ecdsa`
- `id_ed25519`
- `id_ed448`
- `ssh_host_dsa_key` _(supported but disabled by default)_
- `ssh_host_rsa_key` _(SHA1 sign/verify are supported but disabled by default
from OTP-24)_
- `ssh_host_ecdsa_key`
- `ssh_host_ed25519_key`
- `ssh_host_ed448_key`
By default, `ssh` looks for `id_*`, `known_hosts`, and `authorized_keys` in
`~/.ssh`, and for the ssh\_host\_\*\_key files in `/etc/ssh`. These locations can
be changed by the options [`user_dir`](`t:ssh_file:user_dir_common_option/0`)
and [`system_dir`](`t:ssh_file:system_dir_daemon_option/0`). More about where to
set them is described in [Configuration in SSH](configurations.md).
Public key handling can also be customized through a callback module that
implements the behaviors `m:ssh_client_key_api` and `m:ssh_server_key_api`.
See also the default callback module documentation in `m:ssh_file`.
Disabled public key algorithms can be enabled with the
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) options. See
[Example 9](configure_algos.md#example-9) in
[Configuring algorithms in SSH](configure_algos.md) for a description.
## Public Keys
`id_*` are the users private key files. Notice that the public key is part of
the private key so the `ssh` application does not use the `id_*.pub` files.
These are for the user's convenience when it is needed to convey the user's
public key.
See [ssh_file](`m:ssh_file#FILE-id_STAR`) for details.
## Known Hosts
The `known_hosts` file contains a list of approved servers and their public
keys. Once a server is listed, it can be verified without user interaction.
See [ssh_file](`m:ssh_file#FILE-known_hosts`) for details.
## Authorized Keys
The `authorized_key` file keeps track of the user's authorized public keys. The
most common use of this file is to let users log in without entering their
password, which is supported by the Erlang `ssh` daemon.
See [ssh_file](`m:ssh_file#FILE-authorized_keys`) for details.
## Host Keys
RSA, DSA (if enabled), ECDSA, ED25519 and ED448 host keys are supported and are
expected to be found in files named `ssh_host_rsa_key`, `ssh_host_dsa_key`,
`ssh_host_ecdsa_key`, `ssh_host_ed25519_key` and `ssh_host_ed448_key`.
See [ssh_file](`m:ssh_file#FILE-ssh_host_STAR_key`) for details.
## Error Logger and Event Handlers
The `ssh` application uses the default [OTP error logger](`m:error_logger`) to
log unexpected errors or print information about special events.
[](){: #supported }
## Supported Specifications and Standards
The supported SSH version is 2.0.
## Algorithms
The actual set of algorithms may vary depending on which OpenSSL crypto library
that is installed on the machine. For the list on a particular installation, use
the command `ssh:default_algorithms/0`. The user may override the default
algorithm configuration both on the server side and the client side. See the
options [preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) and
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) in the
[ssh:daemon/1,2,3](`ssh:daemon/1`) and [ssh:connect/3,4](`ssh:connect/3`)
functions.
Supported algorithms are (in the default order):
[](){: #supported_algos }
**Key exchange algorithms**
- curve25519-sha256
- curve25519-sha256@libssh.org
- curve448-sha512
- ecdh-sha2-nistp521
- ecdh-sha2-nistp384
- ecdh-sha2-nistp256
- diffie-hellman-group-exchange-sha256
- diffie-hellman-group16-sha512
- diffie-hellman-group18-sha512
- diffie-hellman-group14-sha256
The following unsecure `SHA1` algorithms are now disabled by default:
- (diffie-hellman-group14-sha1)
- (diffie-hellman-group-exchange-sha1)
- (diffie-hellman-group1-sha1)
They can be enabled with the
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) options. Use
for example the Option value
`{modify_algorithms, [{append, [{kex,['diffie-hellman-group1-sha1']}]}]}`)
**Public key algorithms**
- ssh-ed25519
- ssh-ed448
- ecdsa-sha2-nistp521
- ecdsa-sha2-nistp384
- ecdsa-sha2-nistp256
- rsa-sha2-512
- rsa-sha2-256
The following unsecure `SHA1` algorithms are supported but disabled by
default:
- (ssh-dss)
- (ssh-rsa)
Disabled public key algorithms can be enabled with the
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) options. See
[Example 9](configure_algos.md#example-9) in
[Configuring algorithms in SSH](configure_algos.md) for a description.
**MAC algorithms**
- hmac-sha2-512-etm@openssh.com
- hmac-sha2-256-etm@openssh.com
- hmac-sha2-512
- hmac-sha2-256
- hmac-sha1-etm@openssh.com
- hmac-sha1
The following unsecure `SHA1` algorithm is disabled by default:
- (hmac-sha1-96)
It can be enabled with the
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) options. Use
for example the Option value
`{modify_algorithms, [{append, [{mac,['hmac-sha1-96']}]}]}`)
**Encryption algorithms (ciphers)**
- aes256-gcm@openssh.com
- aes256-ctr
- aes192-ctr
- aes128-gcm@openssh.com
- aes128-ctr
- chacha20-poly1305@openssh.com
- aes256-cbc
- aes192-cbc
- aes128-cbc
- 3des-cbc
The following unsecure algorithms are disabled by default:
- (AEAD_AES_128_GCM)
- (AEAD_AES_256_GCM)
See the text at the description of
[the rfc 5647 further down](ssh_app.md#rfc5647_note) for more information
regarding AEAD\_AES\_\*\_GCM.
Following the internet de-facto standard, the cipher and mac algorithm
AEAD_AES_128_GCM is selected when the cipher aes128-gcm@openssh.com is
negotiated. The cipher and mac algorithm AEAD_AES_256_GCM is selected when the
cipher aes256-gcm@openssh.com is negotiated.
**Compression algorithms**
- none
- zlib@openssh.com
- zlib
## Unicode support
Unicode filenames are supported if the emulator and the underlying OS supports
it. See `m:file` manual page in Kernel for
information about this subject.
The shell and the cli both support unicode.
## RFCs
The following RFCs are supported:
- [RFC 4251](https://tools.ietf.org/html/rfc4251), The Secure Shell (SSH)
Protocol Architecture.
Except
- 9\.4.6 Host-Based Authentication
- 9\.5.2 Proxy Forwarding
- 9\.5.3 X11 Forwarding
- [RFC 4252](https://tools.ietf.org/html/rfc4252), The Secure Shell (SSH)
Authentication Protocol.
Except
- 9\. Host-Based Authentication: "hostbased"
- [RFC 4253](https://tools.ietf.org/html/rfc4253), The Secure Shell (SSH)
Transport Layer Protocol.
Except
- 8\.1. diffie-hellman-group1-sha1
- 6\.6. Public Key Algorithms
- ssh-dss
- ssh-rsa
They are disabled by default as they now are regarded insecure, but they can
be enabled with the
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) options. See
[Example 8](configure_algos.md#example-8) (diffie-hellman-group1-sha1) and
[Example 9](configure_algos.md#example-9) (ssh-dss) in
[Configuring algorithms in SSH](configure_algos.md) for descriptions.
- [RFC 4254](https://tools.ietf.org/html/rfc4254), The Secure Shell (SSH)
Connection Protocol.
Except
- 6\.3. X11 Forwarding
- 7\. TCP/IP Port Forwarding
- [RFC 4256](https://tools.ietf.org/html/rfc4256), Generic Message Exchange
Authentication for the Secure Shell Protocol (SSH).
Except
- `num-prompts > 1`
- password changing
- other identification methods than userid-password
- [RFC 4419](https://tools.ietf.org/html/rfc4419), Diffie-Hellman Group Exchange
for the Secure Shell (SSH) Transport Layer Protocol.
Except
- 4\.1. diffie-hellman-group-exchange-sha1
It is disabled by default as it now is regarded insecure, but it can be
enabled with the
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`) options.
- [RFC 4716](https://tools.ietf.org/html/rfc4716), The Secure Shell (SSH) Public
Key File Format.
- [RFC 5647](https://tools.ietf.org/html/rfc5647), AES Galois Counter Mode for
the Secure Shell Transport Layer Protocol.
[](){: #rfc5647_note } There is an ambiguity in the synchronized selection of
cipher and mac algorithm. This is resolved by OpenSSH in the ciphers
aes128-gcm@openssh.com and aes256-gcm@openssh.com which are implemented. If
the explicit ciphers and macs AEAD_AES_128_GCM or AEAD_AES_256_GCM are needed,
they could be enabled with the options
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`).
> #### Warning {: .warning }
>
> If the client or the server is not Erlang/OTP, it is the users
> responsibility to check that other implementation has the same
> interpretation of AEAD\_AES\_\*\_GCM as the Erlang/OTP SSH before enabling
> them. The aes\*-gcm@openssh.com variants are always safe to use since they
> lack the ambiguity.
The second paragraph in section 5.1 is resolved as:
1. If the negotiated cipher is AEAD_AES_128_GCM, the mac algorithm is set to
AEAD_AES_128_GCM.
1. If the negotiated cipher is AEAD_AES_256_GCM, the mac algorithm is set to
AEAD_AES_256_GCM.
1. If the mac algorithm is AEAD_AES_128_GCM, the cipher is set to
AEAD_AES_128_GCM.
1. If the mac algorithm is AEAD_AES_256_GCM, the cipher is set to
AEAD_AES_256_GCM.
The first rule that matches when read in order from the top is applied
- [RFC 5656](https://tools.ietf.org/html/rfc5656), Elliptic Curve Algorithm
Integration in the Secure Shell Transport Layer.
Except
- 5\. ECMQV Key Exchange
- 6\.4. ECMQV Key Exchange and Verification Method Name
- 7\.2. ECMQV Message Numbers
- 10\.2. Recommended Curves
- [RFC 6668](https://tools.ietf.org/html/rfc6668), SHA-2 Data Integrity
Verification for the Secure Shell (SSH) Transport Layer Protocol
Comment: Defines hmac-sha2-256 and hmac-sha2-512
- [Draft-ietf-curdle-ssh-kex-sha2 (work in progress)](https://tools.ietf.org/html/draft-ietf-curdle-ssh-kex-sha2),
Key Exchange (KEX) Method Updates and Recommendations for Secure Shell (SSH).
Deviations:
- `diffie-hellman-group1-sha1`
- `diffie-hellman-group-exchange-sha1`
- `diffie-hellman-group14-sha1`
are not enabled by default as they now are regarded insecure, but are still
supported and can be enabled with the options
[preferred_algorithms](`t:ssh:preferred_algorithms_common_option/0`) or
[modify_algorithms](`t:ssh:modify_algorithms_common_option/0`).
- [RFC 8332](https://tools.ietf.org/html/rfc8332), Use of RSA Keys with SHA-256
and SHA-512 in the Secure Shell (SSH) Protocol.
- [](){: #supported-ext-info } [RFC 8308](https://tools.ietf.org/html/rfc8308),
Extension Negotiation in the Secure Shell (SSH) Protocol.
Implemented are:
- The Extension Negotiation Mechanism
- The extension `server-sig-algs`
- [Secure Shell (SSH) Key Exchange Method Using Curve25519 and Curve448](https://tools.ietf.org/html/rfc8731)
- [RFC 8709](https://tools.ietf.org/html/rfc8709) Ed25519 and Ed448 public key
algorithms for the Secure Shell (SSH) protocol
## See Also
`m:application`
|