no matching host key type found. Their offer: ssh-rsa错误临时解决办法

报错如下:
Unable to negotiate with 1.1.1.1 port 8022: no matching host key type found. Their offer: ssh-rsa
原因:
由于ssh使用了ssh-rsa加密,当前已经逐渐退出支持。
解决办法:
在ssh链接时加上参数,指定使用ssh-rsa即可。
ssh -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa -p 8022 root@1.1.1.1

发表回复

登录... 后才能评论