Hi Shai,
cheers, I purchased your program but it does not seem to allow me to run the equivalent of this ssh command:
Note the *: in the comman? This opens the port to anyone. Yours is only available to 127.0.0.1 (see my netstat output below).
The idea is to forward port 2511 on the android phone out to 12511 on the linux box.
My port forward setting in your program is:
R2511=localhost:12511
But this only works locally on the linux box - I need it open to the world.
When I use a proper ssh client with * in the command I get a listening socket for all ip addresses via the 0.0.0.0 ip address::
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:12511 0.0.0.0:* LISTEN
But when i create the tunnel with your program on the android I get only the local one:
127.0.0.1:
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 127.0.0.1:12511 0.0.0.0:* LISTEN
I can't connect from other machines to the server, which is kinda the point of my plan.