首页 > 系统相关 >Xshell5登录报“找不到匹配的host key 算法“的错误

Xshell5登录报“找不到匹配的host key 算法“的错误

时间:2024-11-06 15:08:43浏览次数:1  
标签:sha2 sshd 登录 Xshell5 rsa host ssh key ed25519

Xshell5登录报"找不到匹配的host key 算法"的错误
现象
解决方法一:
解决方法二

 


现象
xshell5登录欧拉22.03时报错:找不到匹配的host key 算法

解决方法一:
1.编辑/etc/ssh/sshd_config,如下所示:

  1.   # 在行尾增加",ecdh-sha2-nistp521",以满足ecdsa公钥方式登录(密钥长度521)
  2.   KexAlgorithms curve25519-sha256,[email protected],diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp521
  3.    
  4.   # 在行尾增加",ssh-rsa",以满足RSA 登录
  5.   HostKeyAlgorithms ssh-ed25519,[email protected],rsa-sha2-256,rsa-sha2-512,ssh-rsa
  6.    
  7.   # 在行尾增加",ssh-rsa",以满足RSA 登录
  8.   PubkeyAcceptedKeyTypes ssh-ed25519,[email protected],rsa-sha2-256,rsa-sha2-512,ssh-rsa


2.重启sshd服务
systemctl restart sshd

解决方法二
1.编辑/etc/ssh/sshd_config,如下所示:

  1.   # 屏蔽下面的2行(最后2行)
  2.   # HostKeyAlgorithms ssh-ed25519,[email protected],rsa-sha2-256,rsa-sha2-512
  3.   # PubkeyAcceptedKeyTypes ssh-ed25519,[email protected],rsa-sha2-256,rsa-sha2-512


2.重启sshd服务
systemctl restart sshd

 

文档摘自https://blog.csdn.net/u011250186/article/details/134438273

 

标签:sha2,sshd,登录,Xshell5,rsa,host,ssh,key,ed25519
From: https://www.cnblogs.com/jiguibu/p/18530279

相关文章

  • PbootCMS 模板修改 tags 实现 keywords 内容关联匹配
    修改ParserController.php文件:打开 apps/home/controller/ParserController.php 文件,找到以下代码://tags数据参数筛选$where2=array();if($tags){$tags_arr=explode(',',$tags);foreach($tags_arras$value){if($value){if($fuzzy)......
  • SQLSTATE[HY000] [1045] Access denied for user ‘root‘@‘localhost‘ (using pass
    错误解析错误代码:SQLSTATE[HY000][1045]错误信息:Accessdeniedforuser‘root’@‘localhost’(usingpassword:YES)可能的原因密码错误:提供的密码与数据库中存储的密码不匹配。用户权限问题:用户root可能没有从localhost访问数据库的权限。配置文件问题:MySQL的配置......
  • 闯关leetcode——3270. Find the Key of the Numbers
    大纲题目地址内容解题代码地址题目地址https://leetcode.com/problems/find-the-key-of-the-numbers/description/内容Youaregiventhreepositiveintegersnum1,num2,andnum3.Thekeyofnum1,num2,andnum3isdefinedasafour-digitnumbersuch......
  • CentOS7执行yum命令遇到“Could not resolve host: mirrorlist.centos.org; 未知的错误
    LoadingmirrorspeedsfromcachedhostfileCouldnotretrievemirrorlisthttp://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stockerrorwas14:curl#6-"Couldnotresolvehost:mirrorlist.centos.org;未知的错误"Oneo......
  • install-kubesphere-kubekey
    在K8s上安装KubeSphere在Kubernetes之上安装KubeSphere准备确认现有的Kubernetes版本为1.20.x,1.21.x,1.22.x,1.23.x(experimental),可以执行kubectlversion来确认集群现有的可用内存至少在2G以上。如果是执行的allinone安装,那么执行free-g可以看下可用......
  • install-k8s-kubekey
    使用KubeKey安装K8s集群Github地址在Kubernetes之上安装KubeSphere多节点安装准备Linux主机对主机的各种要求见官方文档多节点安装,下面只列一些重要的操作步骤升级内核版本#如果使用Kube-proxy使用的是ipvs模式,一定的升级内核版本到4.1及以上安装依赖yuminstal......
  • 在 C# 中,如果您有一个 Dictionary<TKey, TValue>,并且您知道某个值(value),想要找到对应的键
    usingSystem;usingSystem.Collections.Generic;classProgram{staticvoidMain(){//创建一个字典Dictionary<string,int>sports=newDictionary<string,int>{{"篮球",1},{&qu......
  • Dify 中的 Bearer Token 与 API-Key 鉴权方式
    本文使用Difyv0.10.2版本,在Dify中包括BearerToken与API-Key鉴权这2种方式。console(URL前缀/console/api)和web(URL前缀/api)蓝图使用的是BearerToken鉴权方式,而service_api(URL前缀/v1)蓝图使用的是API-Key鉴权方式。console蓝图通过login_required装饰......
  • macOS电脑实时渲染和动画制作软件:KeyShot 2024.3 中文激活补丁版
    KeyShotKeyShot是一款互动性的光线追踪与全域光渲染程序,它凭借强大的技术算法和全局光照研究,无需复杂设定即可产生相片般真实的3D渲染影像。该软件用户界面简单直观,运行快速,支持多种3D模型格式和渲染模式,为设计师、工程师等提供了丰富的材质库、灯光库和动画功能,能够满足用户从静......
  • JavaScript(事件监听,点击事件,事件类型:鼠标事件mouseenter,mouseleave,焦点事件focus,blur,
    事件监听目标:能够给DOM元素添加事件监听什么是事件?事件是在编程时系统内发生的动作或者发生的事情比如用户在网页上单击一个按钮什么是事件监听?就是让程序检测是否有事件产生,一旦有事件触发,就立即调用一个函数做出响应,也称为绑定事件或者注册事件比如鼠标经过显示下拉菜......