SSH提示Unable to negotiate Their offer: ssh-rsa

2024-08-08 16:30:09 浏览数 (1)

连接ssh服务时,提示:

代码语言:shell复制
Unable to negotiate with xxx.xxx.xxx.xxx port 22: no matching host key type found. Their offer: ssh-rsa

此问题是由于两遍的加密方式不同,此时可以通过指定加密方式来临时进入

代码语言:shell复制
ssh -o HostKeyAlgorithms= ssh-rsa -o PubkeyAcceptedKeyTypes= ssh-rsa root@xxx.xxx.xxx.xxx

此方法用于临时进入,若要彻底解决,需要进行其他配置

ssh

0 人点赞