Latest update ssh stopped supporting RSA?

I had this issue with bitbucket the other day, as a work around I put this in my ~/.ssh/config

Host bitbucket.org
    HostkeyAlgorithms +ssh-rsa
    PubkeyAcceptedAlgorithms +ssh-rsa

Basically it’s been disabled in open ssh for security reasons and bitbucket hasn’t updated their servers yet (don’t know what you’re connecting to)

2 Likes