我有 2 台机器,Intrim 和 Remote。我必须通过 Intrim 才能到达 Remote。通常我只是这样做:
ssh -X Intrim #now I'm in Intrim
ssh -X Remote
我只需使用转发的 x 即可打开内容。但 vnc 更好。我该如何使用 vnc 做到这一点?
一个完美的解决方案是让我只需通过 VNC 连接到 Intrim 即可自动查看我的远程桌面。
答案1
从您的工作站:
$ ssh -L5900:localhost:5900 [email protected]
从interim.host
:
$ ssh -L5900:localhost:5900 [email protected]
然后将您的本地 VNC 客户端连接到localhost:5900
。