#用pycharm工具ssh client 报 algorithm negotiation failed
#导致原因:是ssh升级后,为了安全,默认不再采用原来一些加密算法,我们手工添加进去即可
#目前出错openssh版本如下:
[root@q704-jzdfwuat-2 ~]# rpm -qa | grep openssh
openssh-6.6.1p1-35.el7_3.x86_64
openssh-clients-6.6.1p1-35.el7_3.x86_64
openssh-server-6.6.1p1-35.el7_3.x86_64

#解决办法
vim /etc/ssh/sshd_config
#在配置文件中添加

#Ciphers aes192-ctr,aes256-ctr
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

#重启
systemctl restart sshd.service

最新文章

  1. SQLServer(MSSQL)、MySQL、SQLite、Access相互迁移转换工具 DB2DB v1.3
  2. unity4.6 failed to update unity web player
  3. 271. Encode and Decode Strings
  4. codeforces 675A A. Infinite Sequence(水题)
  5. H3 BPM 笔记
  6. 【原版的】Redis事件驱动内核
  7. 使用POI 导入excel
  8. IDEA下创建Maven项目,并整合使用Spring、Spring MVC、Mybatis框架
  9. java数组排序(冒泡、直排)反转
  10. java基础回顾(一)
  11. 3D Slicer中文教程(六)—调用matlab函数(MatlabBridge使用方法)
  12. JavaScript中的classList的使用
  13. mybatis 多个接口参数的注解使用方式(@Param)
  14. 福州大学软件工程1816 | W班 第4次作业(团队展示)成绩排名
  15. Hbase 架构体系
  16. JDBC几种常见的数据库连接
  17. python 多进程、多线程
  18. Docker--从安装到搭建环境
  19. iOS保存数据的4种方式
  20. JVM虚拟机系列(一)类的加载

热门文章

  1. Java主线程在子线程执行完毕后再执行
  2. UVALive 4394 String painter ——(区间DP)
  3. this关键字的用法小结
  4. python数据分析与应用
  5. java代码连接oracle数据库的方法
  6. java实现磁盘先来先服务算法
  7. getBoundingClientRect使用指南
  8. IDEA 好用的插件
  9. P3015 [USACO11FEB]最好的括号Best Parenthesis
  10. Go 代码审查建议