博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSH Secure Shell登录报错: Ubuntu SSH Algorithm negotiation failed
阅读量:2397 次
发布时间:2019-05-10

本文共 1559 字,大约阅读时间需要 5 分钟。

SSH Secure Shell Client 连接VMware Ubuntu系统报错:

Ubuntu SSH Algorithm negotiation failed

摘自: http://chenqinfeng.com/2016/02/19/Ubuntu%20SSH%20Algorithm%20negotiation%20failed/

Situation

 
Server responded"Algorithm negotiation failed"Key exchange with the remote host failed. This can happen forexample computer does not support the selected  algorthms.

When ssh to a ubuntu system,putty can connect but ‘SSH Secure Shell Client’ is failed,according to the pop-up error message we can know that

the algorithm negotiation failed, after searching high-and-low for this fix, I finally found it’s fix…

Reason

Because i had past updated server, it’s that means i had updated the sshd algorithm negotiation on server meanwhile, but the sshd algorithm negotiation in client is the old, so server cannot compatible the algorithm negotiation from client.

The Way to resolve

  1. Use a different system or the console to drop to a shell. Such as Putty
  2. Chmod 777 & Edit the “/etc/ssh/sshd_config” file
  3. Add all of the algorithm negotiation to sshd_config
  4. Restart sshd sevice
    Add following code to 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-96KexAlgorithms 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

转载地址:http://gffob.baihongyu.com/

你可能感兴趣的文章
缓存篇(二)- JetCache
查看>>
缓存篇(三)- Spring Cache框架
查看>>
MySQL基本原理和使用技巧
查看>>
别踩坑!使用MySQL唯一索引请注意
查看>>
Java8新特性学习(一)- 开篇介绍
查看>>
Java8新特性学习(二)- Optional类
查看>>
Java8新特性学习(三)- Stream类
查看>>
ForkJoin框架使用和原理剖析
查看>>
设计模式-观察者模式
查看>>
CacheLoader returned null for key分析和解决
查看>>
Top100案例参会总结
查看>>
Redis源码学习感悟
查看>>
Redis内存节省策略
查看>>
实测win8下安装使用QT4.8+qt creator2.8.0
查看>>
整理:深度学习 vs 机器学习 vs 模式识别
查看>>
深度学习 vs. 概率图模型 vs. 逻辑学
查看>>
IDL box plot
查看>>
IDL vector filed plot
查看>>
piecewise constant function 阶跃常函数
查看>>
IDL save postscript file
查看>>