SSH登录时“no matching host key type found. Their offer: ssh-rsa,ssh-dss“的错误解决方法

Posted 格格巫 MMQ!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSH登录时“no matching host key type found. Their offer: ssh-rsa,ssh-dss“的错误解决方法相关的知识,希望对你有一定的参考价值。

问题描述

在利用SSH登录某目标时,出现下述报错:

ssh loneferret@192.168.140.146

Unable to negotiate with 192.168.140.146 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss
  解决方案

之所以报错是因为OpenSSH 7.0以后的版本不再支持ssh-dss (DSA)算法,解决方法是增加选项-oHostKeyAlgorithms=+ssh-dss,即可成功解决

ssh -oHostKeyAlgorithms=+ssh-dss loneferret@192.168.140.146

以上是关于SSH登录时“no matching host key type found. Their offer: ssh-rsa,ssh-dss“的错误解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Windows ssh 免密登录

ubuntu ssh 登录时使用root,登录被拒绝的解决

配置ssh无密码登录时,ssh localhost登陆本机时输入密码错误,显示permission denied,怎么解决?

ssh 登录我的 EC2 实例时使用哪个密钥?

SSH无密码登录:只需两个简单步骤 (Linux)

ssh登录时较慢的解决方法