I need to get some files from a remote computer using a ssh connection, but the problem is the following:

The client computer(Running Windows) where I'll run my application is connected to a network where I can see a server remote(Second computer(Running unix),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)

Architecture

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.

link|improve this question

18% accept rate
feedback

1 Answer

It's the same answer as to your other question (where you are using a shell connection instead of file transfer):

Put the right hostName as rhost, namely the name of the target server as seen from the firewall server.

If it works with HTTP, I suppose that the firewall server also has a HTTP proxy running which forwards requests on port 80 to your target port ... and of course, it can't do this for SSH if it also should be an SSH server itself.

If you want to do both connections from JSch, instead of doing a local port forwarding and then connecting to this forwarded port, you can use my ProxySSH class, to find in the JSch wiki.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.