Unable to negotiate with 10.74.185.240 port 29420: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 Unable to negotiate with 10.74.185.240 port 29420: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1怎么解决
时间: 2024-01-01 18:13:55 浏览: 291
东南大学密码学实验——Diffie-Hellman密钥协商算法
5星 · 资源好评率100%
这个错误通常是由于SSH客户端和服务器之间的密钥交换方法不匹配导致的。你可以尝试以下方法解决这个问题:
1. 升级SSH客户端到最新版本,以支持更多的密钥交换方法。
2. 修改SSH服务器端的配置文件,增加支持的密钥交换方法。具体方法是:编辑SSH服务器端的sshd_config文件,在文件中添加以下代码:
```
KexAlgorithms diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
```
3. 如果你无法修改SSH服务器端的配置文件,那么你可以尝试使用其他的SSH客户端,例如PuTTY或者SecureCRT,这些客户端通常支持更多的密钥交换方法,可以避免这个问题。
希望这些方法能够帮助你解决问题!
阅读全文