Reverse connection and port forwarding: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
This page describes how to | This page describes how to use ssh to create a tunnel between hosts on two networks so that a ParaView client running on a host one of the networks can connect to a ParaView server running on a host on the other network, and vise-versa. These two scenarios are called forward and reverse connections respectively. Often each of the involved networks has a firewall blocking incoming traffic on all but a few ports. If one or both of the two networks are not guarded by a firewall, or specific ports on one of the firewalls are left open for ParaView's use, then a tunnel is not necessary. Even when one has the option to open ports on a firewall, it is advantageous to use an ssh tunnel for security purposes. When running the ParaView client and server processes on the same host or multiple hosts on the same network the tunnel is not necessary. The networking tool called ''portfwd'' is also discussed. | ||
= Reverse Connection = | |||
In the reverse connection scenario the ParaView client blocks, listening on a port for an incoming connection request from the ParaView server. | |||
TOOD | |||
= Tunnel for a forward connection = | |||
In the forward connection scenario the ParaView server blocks listening on a port for a connection request from the ParaView client. | |||
TODO | |||
= Tunnel for a reverse connection = | |||
In the reverse connection scenario the ParaView client blocks listening on a port for a connection request from the ParaView server. | |||
[[Image:rc-tunnel.png|frame|ParaView reverse connection (blue arrow) over a reverse ssh tunnel (black arrow). ]] | [[Image:rc-tunnel.png|frame|ParaView reverse connection (blue arrow) over a reverse ssh tunnel (black arrow). ]] | ||
Revision as of 00:52, 12 February 2010
This page describes how to use ssh to create a tunnel between hosts on two networks so that a ParaView client running on a host one of the networks can connect to a ParaView server running on a host on the other network, and vise-versa. These two scenarios are called forward and reverse connections respectively. Often each of the involved networks has a firewall blocking incoming traffic on all but a few ports. If one or both of the two networks are not guarded by a firewall, or specific ports on one of the firewalls are left open for ParaView's use, then a tunnel is not necessary. Even when one has the option to open ports on a firewall, it is advantageous to use an ssh tunnel for security purposes. When running the ParaView client and server processes on the same host or multiple hosts on the same network the tunnel is not necessary. The networking tool called portfwd is also discussed.
Reverse Connection
In the reverse connection scenario the ParaView client blocks, listening on a port for an incoming connection request from the ParaView server.
TOOD
Tunnel for a forward connection
In the forward connection scenario the ParaView server blocks listening on a port for a connection request from the ParaView client.
TODO
Tunnel for a reverse connection
In the reverse connection scenario the ParaView client blocks listening on a port for a connection request from the ParaView server.
This method can be automated in ParaView or executed manually. In the automated approach you will create a .pvsc file which will instruct the ParaView client to call ssh with both the tunnel options and the commands to submit the batch job. For example:
ssh -R XXXX:localhost:YYYY remote_machine submit_my_job.sh
This means that port XXXX on remote_machine will be the port to which the server must connect. Port YYYY (e.g., 11111) on your client machine is the one on which PV listens. You'd have to tell the server (in the batch submission script, for example) the name of the node and port XXXX to which to connect. For example the ParaView server might be started like this:
mpiexec pvserver --reverse-connection --client-host=WWWW --server-port=XXXX
For more information on the .pvsc format see this.
Caveats
- Two important options in the server side sshd configuration are GatewayPorts and AllowTcpForwarding.
- A firewall between the client and server may also interfere.
Thanks
Thanks to Sean Ziegeler for submitting this solution.
Forward or Reverse Connection Over A Two Hop ssh Tunnel
In the case there is an additional firewall in between the cluster's front end and compute nodes or the cluster sshd configuration prevents the above method from working one can make a two hop tunnel. This is slightly more complicated and requires two ssh sessions, and may not be automated. (If you know of a way please let us know!).
This will require two terminals(or putty instances), the first terminal is used to submit the batch job, once the job is scheduled, one manually gets the root node's hostname and uses the second terminal to establish the tunnel. Once the tunnel is established one launches ParaView server and proceeds as usual. A normal or reverse ssh tunnel may be used, however since this is a manual method the forward tunnel may be easier.
In the following the two terminals are denoted by t1$ and t2$, and fe denotes the hostname of the cluster's front end (login node). In the first terminal you'll submit your batch job, for example:
t1$ ssh fe t1$ qsub -I -V -l select=XX -l walltime=XX:XX:XX qsub: waiting for job 498525.pbspl1 to start Job 498525.pbspl1 started on Mon Feb 08 12:51:25 PST 2010 On NODE: NODE$
where XX is replaced by your values. After the job is scheduled you're automatically ssh'd into some compute node, which has the hostname NODE. Now in the second terminal, you will create the ssh tunnel:
t2$ ssh -L ZZZZ:NODE:YYYY fe
where ZZZZ is a port number on your workstation. YYYY is a port number on the server. Now switch back to the first terminal, and your waiting compute node and start the ParaView server. For example:
NODE$ mpiexec pvserver --server-port=YYYY Listen on port: YYYY Waiting for client...
At this point you may start a ParaView client on you workstation and proceed as normal by connecting to localhost port ZZZZ.
Caveats
- The tunnel must established before the ParaView server is started.
Reverse Connection with portfwd
Using a reverse connection the paraview client will bind to a port and wait for an incoming connection from the server. When the mpi enabled paraview server (referred to as pvserver) is launched on a set of compute nodes, the 0th pvserver process opens a connection to the host machine where the paraview client is waiting.
The problem arises when it is not possible for the compute node to connect to the host machine- the compute node can only connect to a login node. The problem is solved by forwarding traffic from a port on the login node to a port on the host machine. This can be accomplished using a simple utility called portfwd found at http://portfwd.sourceforge.net/.
For this example, let's say the paraview client is waiting for a reverse connection on port 11111 of host client_host (client_host:11111), and the compute node can only connect to port 11111 of host login_node (login_node:11111). In this example pvserver is launched on the compute nodes using the command:
mpirun -np 512 pvserver --reverse-connection --client-host=login_node --server-port=11111
Next, we use portfwd to forward login_node:11111 to client_host:11111. In some situtations it is possible to accomplish this kind of port fowarding using ssh tunnels, but portfwd is much simpler. First write a configuration file, fwd.cfg:
/* fwd.cfg forwards localhost:11111 to client_host:11111 */ tcp { 11111 { => client_host:11111 } }
Then launch portfwd on the login node (this example uses the flag --foreground to keep portfwd running in the foreground so it can be killed with control-c):
portfwd --config fwd.cfg --foreground
Now when the pvserver connects to login_node:11111 the traffic will be forwarded to client_host:11111.
Reverse Connection over a Reverse ssh Tunnel with portfwd
This is described here