SecureCRT SSH连接报错Key exchange failed 问题处理记录

发布时间 2023-05-28 23:24:31作者: brilliant_999

 

SecureCRT连接服务器时报错,报错信息为:

Key exchange failed. No compatible key exchange method. The server supports these methods: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group14-sha256

1、原因分析
错误原因是SecureCRT 7.0客户端支持的和kali作为ssh服务端支持的SSH秘钥交换算法不匹配。
Secure CRT 7.0的默认支持key exchange算法:
2、解决方法有以下两种

第一种: 升级SecureCRT为最新版,或者使用其他连接工具
第二种: 修改服务器,使其兼容老系统的算法

vi /etc/ssh/sshd_config
#加入下面的文本  
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
#重启ssh
systemctl restart sshd.service

 

版权声明:本文为CSDN博主「feverlook」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/feverlook/article/details/116794725