You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure that your key algorithm of choice is supported.
174
+
On Ubuntu 20.04 or later you must explicitly allow the use of the ssh-rsa algorithm. Add the following line to your OpenSSH daemon file (which is either `/etc/ssh/sshd_config` or a drop-in file under
175
+
`/etc/ssh/sshd_config.d/`):
176
+
177
+
```
178
+
CASignatureAlgorithms +ssh-rsa
179
+
```
180
+
181
+
Alternatively, `ed25519` keys are accepted by default in OpenSSH. You could use this instead of rsa if needed:
0 commit comments