Reverse connection and port forwarding

From KitwarePublic
Revision as of 05:21, 15 February 2010 by Burlen (talk | contribs)
Jump to navigationJump to search

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

The ParaView server makes a reverse connection (blue arrow) through a firewall to a waiting ParaView client.

When only the server side firewall is preventing the connection no tunnel is required if ParaView's reverse connection mechanism is employed. In the reverse connection scenario the ParaView client blocks, listening on a port for an incoming connection request from the ParaView server. The ParaView client can automatically launch a PaarVeiw server and establish a reverse connection. This can be configured as follows:

  1. In the ParaView client from either the File menu or main toolbar open the Connect dialog.
  2. Add a server
    1. Configure the server
      1. Name: REMOTEHOST-XXXXX-rc
      2. Type: Client-Server (reverse connection)
      3. Port: XXXXX
    2. Configure the command
      1. Startup type: command
      2. Command: ssh -i /LOCAL/PATH/TO/SSH/PRIVATE/KEY REMOTEHOST /REMOTE/PATH/TO/pvserver --reverse-connection --server-port=XXXXX --client-host=LOCALHOST

You will replace the values of REMOTEHOST with the hostname of the host where the ParaView server will run, LOCALHOST with the hostname of the host where the ParaView client will run, XXXXX with the port number you wish to use, and the /LOCAL/PATH... and /REMOTE/PATH... entries with paths from the respective systems. This command assumes that you have configured ssh for password-less login.

Reverse Connection Over an ssh Tunnel

ParaView reverse connection (blue arrow) over a reverse ssh tunnel (black arrow).

When there are firewalls on both the client and server side, and the user has no control over either or it is undesirable to open ports on the client side firewall, ssh can be used to set up a tunnel between the two networks. The tunnel can be created such that ParaView can then establish either a reverse or a forward connection. We will only describe the configuration used for the reverse connection because creating the reverse connection can be automated by the ParaView client.


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

  1. Two important options in the server side sshd configuration are GatewayPorts and AllowTcpForwarding.
  2. 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

ParaView forward connection over a two hop ssh tunnel (black arrows).

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

  1. 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