最近一直使用VSCODE远程连接服务器进行开始,毕竟服务器比较多,VSCODE的远程服务开始又很方便,而且加入秘钥以后就等于秒开。但是最近我需要远程登录一台跳板机转的服务器,找了很多技术文档,这里总结一下。
首先参考了这个201117-MacOS上通过VsCode配置跳板机连接服务器
,刚开始没看懂,后面配置大致就了解了
# Jump box with public IP address
Host <HUST> #跳板机服务器A名称<HUST>
HostName <xxx.xxx.xxx.xxx> # A服务器外网地址
User <user_name> #登录账户名
IdentityFile /Users/<user_name>/.ssh/id_rsa # 本地秘钥地址
# Target machine with private IP address
Host <Titan> #目标服务器B名称<Titan>
HostName <xx.xx.xx.xxx> # 都是阿里云服务器的话,这时内网地址,和上面外网不同
User <user_name> #登录账户名
IdentityFile /Users/<user_name>/.ssh/id_rsa # 本地秘钥地址
ProxyCommand ssh -q -W %h:%p <HUST> #跳板机服务器A名称<HUST>
但是每次登录都需要输入密码,这个可以在两个服务器上都加上秘钥就好。其实就是把本地的
/Users/<user_name>/.ssh/id_rsa.pub 拷贝到服务器A和服务器B上
然后分别执行
cat id_rsa.pub >> ~/.ssh/authorized_keys
就是把秘钥配对放到服务器上,这样就可以免密码登录了,非常方便
对于Win10系统,可参考win10 上使用 SSH 实践