您的位置:首页 > 大数据 > 人工智能

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

2016-07-31 16:02 531 查看
ssh工具下载地址:


ssh secure file transfer

http://download.csdn.net/detail/wyx100/9591076

问题:

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

server  responded “Algorithm negotiation failes”



原因:

服务器响应通过失败

解决方法:

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-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

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.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ubuntu-16.04 win7 ssh