开发者

port forwarding with putty (tunneling)

开发者 https://www.devze.com 2023-02-01 12:34 出处:网络
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 tun

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:

port forwarding with putty (tunneling)

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

port forwarding with putty (tunneling)

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 开发者_StackOverflowI fix this strange issue?!

Cheers, Kevin


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消