使用 putty 进行端口转发(隧道)
我的连接隧道有问题。因此,我使用两个安装了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你通过 SSH 连接到你的 ubuntu 盒子,那么端口转发应该是:
并且
你似乎转发到 ubuntu 盒子上的 1521 和 1522,这是没有意义的。
If you SSH into your ubuntu box, then the port forwarding should be:
and
You seem to be forwarding to 1521 and 1522 on the ubuntu box, which doesn't make sense.