赞
踩
目录
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
错误原因是SecureCRT 7.0客户端支持的和kali作为ssh服务端支持的SSH秘钥交换算法不匹配。
Secure CRT 7.0的默认支持key exchange算法
第一种: 升级SecureCRT为最新版,或者使用其他连接工具(无效)
第二种: 修改服务器,使其兼容老系统的算法(无效)第三种:删除配置文件(无效)
第四种:下载新版本后添加密钥支持(有效)
需要修改两个地方:
sudo vi /etc/ssh/ssh_config
1.1 打开这两行的注释
sudo vi /etc/ssh/sshd_config
2.1加入下面的代码
- #加入下面的文本
- 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
重启sshd服务
sudo service sshd restart
1、查看配置文件路径
全局选项
或者是这个页面
删除ssh2.ini
CRT的会话设置内有关于密匙交互的选项,如下图,将密匙交换内的选项全部勾选后,ssh登录即可恢复
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。