MacOS/远程桌面通过 Linux 代理到 Windows Web Server 2008?

MacOS/远程桌面通过 Linux 代理到 Windows Web Server 2008?

我想使用具有动态 IP 的移动 MacBook 连接到受防火墙保护且 IP 地址受限的 Windows Server(远程桌面)。我可以使用另一个 Linux Web 服务器作为代理来获取静态 IP 吗?如何使用?

答案1

一个简单的方法可能是使用 ssh 端口转发:

ssh -L 3389:winhost.com:3389 [email protected] 

其中 winhost.com 是您的 Windows 服务器的主机名(必须可由 Linux 服务器访问,即未被防火墙阻止)。然后,您将连接到 localhost 或 127.0.0.1 而不是 Windows 主机来创建 RDC 连接。

在这里效果很好。

相关内容