ssh 远程连接的时候报错 Algorithm negotiation failed

 

报错现象:

ssh 远程连接的时候报错 Algorithm negotiation failed_第1张图片

 

错误原因:

这个问题是因为ssh客户端远程连接服务器之间的加密算法不一致导致的

 

解决办法:

修改ssh配置文件

1、编辑/etc/ssh/sshd_config 在配置文件最后添加以下信息

Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc

MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96

KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]

 

2、修改完毕后保存退出命令 :wq

 

3、重启ssh服务

CentOS 7命令:systemctl restart sshd.service

CentOS 6命令:service sshd restart

 

你可能感兴趣的:(运维,Liunx系统,ssh,linux,centos)