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

发布时间:2024年01月10日

目录

先备份配置文件

解决方法一:

1.编辑/etc/ssh/sshd_config,如下所示:

2.重启sshd服务

解决方法二

1.编辑/etc/ssh/sshd_config,如下所示:

2.重启sshd服务


先备份配置文件

sudo cp  /etc/ssh/sshd_config /etc/ssh/sshd_config.bak

解决方法一:


1.编辑/etc/ssh/sshd_config,如下所示:

sudo vim  /etc/ssh/sshd_config

增加如下内容

# 在行尾增加",ecdh-sha2-nistp521",以满足ecdsa公钥方式登录(密钥长度521)
KexAlgorithms curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp521

# 在行尾增加",ssh-rsa",以满足RSA 登录
HostKeyAlgorithms ssh-ed25519,ssh-ed25519-cert-v01@openssh.com,rsa-sha2-256,rsa-sha2-512,ssh-rsa

# 在行尾增加",ssh-rsa",以满足RSA 登录
PubkeyAcceptedKeyTypes ssh-ed25519,ssh-ed25519-cert-v01@openssh.com,rsa-sha2-256,rsa-sha2-512,ssh-rsa



2.重启sshd服务

systemctl restart sshd

解决方法二


1.编辑/etc/ssh/sshd_config,如下所示:

# 屏蔽下面的2行(最后2行)

# HostKeyAlgorithms ssh-ed25519,ssh-ed25519-cert-v01@openssh.com,rsa-sha2-256,rsa-sha2-512
# PubkeyAcceptedKeyTypes ssh-ed25519,ssh-ed25519-cert-v01@openssh.com,rsa-sha2-256,rsa-sha2-512



2.重启sshd服务

systemctl restart sshd



参考链接:https://blog.csdn.net/mosaicwang/article/details/131693377

文章来源:https://blog.csdn.net/wangwenzhe222/article/details/135506036
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。