美文网首页
SecureCRT:无法链接Linux服务器

SecureCRT:无法链接Linux服务器

作者: 九点四十 | 来源:发表于2022-06-09 19:07 被阅读0次

一、问题:

使用SecureCRT链接Linux服务器报错:

Key exchange failed.

No compatible key exchange method. The server supports these methods: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256


二、解决办法:

1、需要修改两个地方:
(1)vim /etc/ssh/ssh_config

将下面两行注释去掉

(2)vim /etc/ssh/sshd_config

找到:PasswordAuthentication,设置成yes

PasswordAuthentication yes

最后一行增加:

KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1

2、重启sshd服务

(1)查看 sshd 服务是否启动:systemctl status sshd.service

(2)启动sshd服务:systemctl start sshd.service

(3)重启sshd服务:service sshd restart(或者 systemctl restart sshd.service )


三、SecureCRT Linux风格配置

1、Options->Session:

Terminal->Emulation: Terminal: Linux

Terminal->Appearance:Fonts->Character encoding: UTF-8

相关文章

  • SecureCRT:无法链接Linux服务器

    一、问题: 使用SecureCRT链接Linux服务器报错: Key exchange failed. No co...

  • 服务器运维一

    服务器运维 by vector 2018/5/29 一、SecureCRT使用(连接远程Linux服务器). 1、...

  • java 云服务器使用配置

    云服务器使用 linux 使用secureCRT软件。 可以参考https://www.jianshu.com/p...

  • 2018-06-29

    【0】用SecureCRT连接阿里云服务器自动断开的解决方法 【1】用SecureCRT传输文件无法识别rz、sz...

  • 使用rz上传压缩文件遇到的一些坑

    我们知道用linux命令rz/sz可以通过一些终端软件如secureCRT等在linux服务器与本地windows...

  • MobaXterm安装使用教程

    由于工作需要连接远程 Linux 服务器,早期使用过 Putty,SecureCRT,后面主要使用 Xshell。...

  • ubuntu 下的SecureCRT配置

    摘要: 关键词:SecureCRT配色, SecureCRT设置颜色, Linux终端配色,Linux终端颜色设置...

  • 解决SecureCRTPortable与SecureCRTPor

    解决SecureCRT中文显示乱码和全屏无法显示菜单的问题Linux命令:export LANG=zh_CN.UT...

  • 终端编码问题

    使用场景: secureCRT 远程访问 unix/linux服务器 解析 主要涉及3个编码 操作系统编码环境ex...

  • hbase

    1、hbase输入错误无法删除解决方法 SecureCRT的终端修改为Linux Ctrl+退格键(Backspa...

网友评论

      本文标题:SecureCRT:无法链接Linux服务器

      本文链接:https://www.haomeiwen.com/subject/hjwmmrtx.html