server responded “Algorithm negotiation failes” 报错问题解决办法,win7+ubuntu16.04

时间:2021-01-12 23:44:11

ssh工具下载地址:

ssh secure file transfer

问题:

ssh连接ubunt16.04系统出现错误:

server  responded “Algorithm negotiation failes”

server responded “Algorithm negotiation failes” 报错问题解决办法,win7+ubuntu16.04

原因:

服务器响应通过失败

解决方法:

1.在ubuntu命令行打开ssh的配置文件:

sudo vi /etc/ssh/sshd_config

sudo vi /etc/ssh/sshd_config

2.在sshd_config配置文件末尾中添加:
Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbcMACs hmac-md5,hmac-sha1,umac-64@openssh.com,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,curve25519-sha256@libssh.org

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,umac-64@openssh.com,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,curve25519-sha256@libssh.org

3.重启sshd服务后,即可正常连接:

sudo /etc/init.d/ssh restart

sudo /etc/init.d/ssh restart

4.log

root@Master:~# sudo vi /etc/ssh/sshd_config
root@Master:~# sudo /etc/init.d/ssh restart
[ ok ] Restarting ssh (via systemctl): ssh.service.