ERROR:Unable to negotiate with port 22:no matching host key type found.Their offer: ssh-rsa,ssh-dss【转】
原因是 Terminal 找不到支持的密钥交换方法,因为新版 Openssh 中认为 SHA1 这种 hash 散列算法过于薄弱,已经不再支持,所以我们需要手动去允许对于 SHA1 的支持。
解决办法:
在生成公钥的 ~/.ssh 文件夹下,(如果没有的话)新建一个 config 文件( config 文件没有后缀),文件中添加如下内容:
Host * HostkeyAlgorithms +ssh-rsa PubkeyAcceptedKeyTypes +ssh-rsa
转自
Unable to negotiate with xxx port 22: no matching host key type found. Their offer: ssh-rsa 报错的解决方法_unable to negotiate with 192.168.31.1 port 22: no -CSDN博客
https://blog.csdn.net/mybest4545/article/details/142834903
参考
Unable to negotiate with xx.xx.xxx.xx port 22: no matching host key type found. - 掘金
https://juejin.cn/post/7320431099608203290
ERROR:Unable to negotiate with port 22:no matching host key type found.Their offer: ssh-rsa,ssh-dss_port 22: no matching host key type found. their of-CSDN博客
https://blog.csdn.net/qq_58432108/article/details/144064517