在Windows下使用xshell和secureCRT工具连接发现如下报错
Key exchange failed.
No compatible hostkey. The server supports these methods: ecdsa-sha2-nistp256

而在Linux机器下ssh user@IP无报错,且能够访问


快速解决方法
1、先停掉SSH服务:sudo stop ssh
2、卸载openssh-server和openssh-client

apt-get remove openssh-server openssh-client

3、安装openssh-server和openssh-client

apt-get remove openssh-server openssh-client

4、安装完成以后,启动服务:sudo /etc/init.d/ssh start  
5、启动后,查看服务是否正确启动: ps -ef | grep ssh  
6、确认ssh-server已经正常工作: netstat -tlp


原因分析:

1,场景

  因使用场景为Remastersys备份后的Linux系统,制作完成后安装系统发现使用xshell和secureCRT报错;

2,猜测

  猜测一:配置了相关ECDSA选项,分析之前的系统配置过sshd_config文件的选项,结果发现没有相关的文件;

  猜测二:因为安装SSH是在新属性机器上进行安装,考虑 .ssh 文件夹有相关文件配置过之前计算机的相关硬件信息;

  猜测三:SSH在做系统备份之前已经无法使用;