7

我需要(在 rdp 中)连接到我大学网络中的一台机器(我们称之为 #1)(我有它的内部 IP),我还可以在 ssh 中访问同一网络中的 Linux 服务器机器,我可以用来访问#1,我正在使用腻子,有人可以向我解释如何连接到它吗?

[我的笔记本电脑] --->[Linux 服务器] --->[windows 机器] in rdp

谢谢,

4

1 回答 1

12

让我们假设以下内容:

Linux 服务器 - gate.college-server.com:22(SSH 侦听端口 22)

内部服务器 - internal.college-server.com:3389(RDP 侦听端口 3389)

RDP 连接将打开localhost:3399(应该打开)

如何通过带有 RDP 转发的 Putty 配置 SSH 隧道:

  • 打开 Putty 并在Session输入 Linux 服务器的连接信息
  • 转到分支 > 连接 > SSH > 隧道
  • 选择LocalAuto
  • Source Portenter3399Destination- 内部机器的连接信息中,格式为:hostname:port.
  • 点击添加

您将在该部分中看到条目Forwarded ports,例如:

4L3399   internal.college-server.com:3389

保存您的连接,即可使用。

接下来,PuTTy Session使用 Saved Connection启动 a,成功登录 远程服务器,您可以启动 Windows RDP 客户端。gate.college-server.com:22

将其连接到 localhost:3399 并使用 RDP 凭据internal.college-server.com:3389

于 2013-02-02T16:36:38.813 回答