DEV Community

Discussion on: Why OpenSSH 8.8 cannot find a host key type if ssh-rsa is provided

Collapse
 
navarroaxel profile image
Axel Navarro Cloud(x);

The best option is upgrade OpenSSH in the server.

If you can't upgrade the server, you can create new keys using ed25519, or ecdsa.

ssh-keygen -t ecdsa -a 64 -b 384
Enter fullscreen mode Exit fullscreen mode