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

来源:互联网 发布:骆家辉 杨澜 张欣 知乎 编辑:程序博客网 时间:2024/05/22 06:08

ssh工具下载地址:

ssh secure file transfer

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

问题:

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

server  responded “Algorithm negotiation failes”


原因:

服务器响应通过失败

解决方法:

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

[java] view plain copy
  1. sudo vi /etc/ssh/sshd_config  

sudo vi /etc/ssh/sshd_config

2.在sshd_config配置文件末尾中添加:
[java] view plain copy
  1. Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc  
  2. MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160,hmac-sha1-96,hmac-md5-96  
  3. 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服务后,即可正常连接:

[java] view plain copy
  1. sudo /etc/init.d/ssh restart  

sudo /etc/init.d/ssh restart

4.log

[java] view plain copy
  1. root@Master:~# sudo vi /etc/ssh/sshd_config  
  2. root@Master:~# sudo /etc/init.d/ssh restart  
  3. [ ok ] Restarting ssh (via systemctl): ssh.service.  
阅读全文
0 0
原创粉丝点击