I need to run some coommands from a remote computer using a ssh connection, but the problem is the following:
The client computer(Running Win) is connected to a network where I can see a server remote(Second computer( nix),In the same network) I can do ssh connections with it, however the computer that contains the files(Running unix) isn't in this network, I only can connect with this trough a dynamic tunnel ssh open in the second computer, where I normally use Putty for configure this connection then I've got access to the remote files.
The Following picture represents the architecture, (The firewall is like the seconda machine)

I need to make this work automatically so I've done some test with java and the JSch library, here is some code:
/* Direccion y puerto del host local */
String host = "localhost";
int lport = 5040;
/* Direccion y puerto del host remoto*/
String rhost = "localhost";
int rport = 80;
/* Usuario y password para conectarse al servidor ssh*/
String user = "test";
String pwd = "test";
try{
JSch jsch=new JSch();
Session session=jsch.getSession(user, host, 22);
session.setPassword("test");
Properties config = new Properties();
config.put("StrictHostKeyChecking","no");
session.setConfig(config);
session.connect();
int assinged_port=session.setPortForwardingL(lport, rhost, rport);
System.out.println("localhost:"+assinged_port+" -> "+rhost+":"+rport);
I got connection, however when i run a command usin object session the answer is from the second machine not from the third machine as I expected, I would like to know if there is another library that helps to make this work or I'm using wrong JSch.