使用 putty 进行端口转发(隧道)

发布于 2024-10-09 02:45:35 字数 635 浏览 8 评论 0原文

我的连接隧道有问题。因此,我使用两个安装了 oracle xe(端口 1521)的 ubuntu 服务器虚拟机,我们称它们为 uvm1 和 uvm2。我的目标是为两台服务器创建两条隧道,并将端口映射到主机,并使与两个数据库系统的连接可访问。端口映射应如下所示:

 vm name | vm port | host port
-------------------------------
 uvm1    | 1521    | 1521
 uvm2    | 1521    | 1522
------------------------------- 

对于隧道创建,我在 Windows 计算机上使用 putty:用于连接 uvm1 的 putty 配置如下所示:

用于连接 uvm2 的 putty 配置如下所示:

我可以通过 ssh 连接到两台机器。问题是我的 uvm1 隧道有效,而 uvm2 无效。

有谁知道我该如何解决这个奇怪的问题?

干杯,凯文

I have a problem with my connection tunneling. So I'm using two ubuntu server virtual machines where the oracle xe (port 1521) is installed, lets call them uvm1 and uvm2. My goal is to create two tunnels for both servers and to map the ports to the host machine and make the connection to both database systems accessable. The port mapping should look like:

 vm name | vm port | host port
-------------------------------
 uvm1    | 1521    | 1521
 uvm2    | 1521    | 1522
------------------------------- 

For tunnel creation I'm using putty on my windows machine: the configuration of putty for connection to the uvm1 looks like:

And the configuration of putty for connection to the uvm2 looks like:

I'm able to connect via ssh to both of the machines. The strage issue is that my tunneling for uvm1 works and for the uvm2 not.

Do anyone know how can I fix this strange issue?!

Cheers, Kevin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聊慰 2024-10-16 02:45:35

如果你通过 SSH 连接到你的 ubuntu 盒子,那么端口转发应该是:

source port: 1521
destination: <address-of-vm1>:1521

并且

source port: 1522
destination: <address-of-vm2>:1521

你似乎转发到 ubuntu 盒子上的 1521 和 1522,这是没有意义的。

If you SSH into your ubuntu box, then the port forwarding should be:

source port: 1521
destination: <address-of-vm1>:1521

and

source port: 1522
destination: <address-of-vm2>:1521

You seem to be forwarding to 1521 and 1522 on the ubuntu box, which doesn't make sense.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文