Author:
erics , May 19th, 2023
I was unable to login from my old iMac running Yosemite to my new iMac running Ventura using RSA keys. It turns out that RSA key support was disabled in Ventura. To correct the problem, I added the following two lines to the bottom of /etc/ssh/sshd_config:
HostkeyAlgorithms + ssh - rsa
PubkeyAcceptedAlgorithms + ssh - rsa
Categories: How-To's , Technology Tags: denied , HostKeyAlgorithms , howto , key , login , MacOS , OSX , Permission , Pubkey , PubkeyAcceptedAlgorithms , PublicKey , RSA , ssh , sshd , tips , Ventura , Yosemite
| No comments
Author:
erics , February 24th, 2023
SSH login from older hosts running OS X Yosemite 10.10.5 to macOS Ventura 13.2.1 was not working. SSH failed with a “No hostkey alg” error.
vi / etc / ssh / sshd_config
HostKeyAlgorithms + ssh - rsa , ssh - dss
PubkeyAcceptedKeyTypes + ssh - rsa , ssh - dss
Be sure to stop and start Remote Login under System Settings -> General -> Sharing
Categories: How-To's , Technology Tags: dss , HostKeyAlgorithms , howto , MacOS , PubkeyAcceptedKeyTypes , RSA , ssh , ssh-dss , ssh-rsa , sshd , sshd_config , tips , Ventura , Yosemite
| No comments