currently I have the following problem: i can connect to Server B via ssh only if I connect to Server A (via ssh), create socks proxy with putty, and use it in order to connect to server B.

So connection is MyPC->Server A->Server B. What i need is to be able to call from server B localhost:xx and forward it to MyPc:xx

With single tunnel it can be done via Putty by simply adding rule "R7869 localhost:7869" (and it's working for Server A which connection is being made directly), however if I'm trying to do the same on Server B (which is proxyfied) it's not working.

Any ideas?

Thx in advance.

EDIT: I have found solution to this problem. Instead of creating new network connection with putty to server B, i need to call "ssh -R 7869:localhost:7869 root@ServerB" from Server A .

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

"What i need is to be able to call from server B localhost:xx and forward it to MyPc:xx"

First session to server_A: a.example.com:22

 L22000 b.example.com:22

Second session to server_B (via tunnel from first session): localhost:22000

 L8080 localhost:8080

The end effect is MyPC:8080 <-> b.example.com:8080

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.