0


ssh 报错:no matching host key type found. 解决方法

今天在工作中想通过ssh连接到远程linux服务器时报错:Unable to negotiate with 192.168.22.166 port 2222: no matching host key type found. Their offer: ssh-rsa

网上搜索到的解决方案,记录一下:

ssh -oHostKeyAlgorithms=+ssh-rsa -p 2222 mogui@192.168.22.166

另外,记录一下端口映射命令:

ssh -L 本地网卡地址:本地端口:目标地址:目标端口 用户@目标地址

ssh -L 127.0.0.1:3306:127.0.0.1:3306 [email protected]
标签: ssh 运维

本文转载自: https://blog.csdn.net/boweiqiang/article/details/135624274
版权归原作者 boweiqiang 所有, 如有侵权,请联系我们删除。

“ssh 报错:no matching host key type found. 解决方法”的评论:

还没有评论