报错:Unable to negotiate with xx.xx.xx.xx port 22: no matching key exchange method found. Their offer:

用ssh连接linux服务器时,报错Unable to negotiate with xx.xx.xx.xx port 22: no matching key exchange method found.

Their offer:diffie-hellman-group1-sha1

解决办法:在~/.ssh文件夹下,新建一个config文件(config文件没有后缀),文件中添加如下内容:

Host xx.xx.xx.xx

                  KexAlgorithms +diffie-hellman-group1-sha1

然后保存即可。

注意:xx.xx.xx.xx为服务器ip;+前面有一个空格!
此方法只支持当前用户连接Linux服务器,不支持其他用户登陆。

你可能感兴趣的:(Linux问题解决)