升级macOs Ventura以后 ssh报错...

当你使用ssh命令报错输出:

no matching host key type found. Their offer: ssh-rsa

可能是因为mac终端不支持ssh-rsa算法,所以需要修改ssh的config配置:

vim ~/.ssh/config

添加以下两行:

HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa

你可能感兴趣的:(ssh,macos,服务器)