今天在工作中想通过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 root@192.168.13.142