I need to create ssh tunnel with putty in windows, that would do the same as this command in Linux:

ssh -fN -L 2000:SomeIp:2000 myusername@myLinuxBox

I tried many options in putty, including setting source port in GUI to "2000" and destination to "SomeIp:2000". Destination is set to local (as the -L switch suggests). I successfully login to my sshbox but port forward is not made.

Is this even possible in Windows, so that all the connections made by programs that use this port (2000) will go through this tunnel?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You probably want to use plink.exe instead of the GUI client. The command line syntax is compatible iirc.

link|improve this answer
I've tried plink with but it seems ports are not forwarded. How to check if ports are forwarded once you logged in to remote sshbox? – DixieFlatline Feb 12 '11 at 9:22
I don't know of any server-side command to view which tunnels have been created by clients. Perhaps someone on serverfault can help you there :-). – Barend Garvelink Feb 12 '11 at 12:14
feedback

Or you can wade through the putty GUI, which also allows this. See Connection > SSH > Tunnels on the left side with the option tree.

http://realprogrammers.com/how_to/putty_tunnel.png

link|improve this answer
I have tried setting many different optins from GUi, but forward is still not working. How can i display all forwards after i login to my sshbox? – DixieFlatline Feb 12 '11 at 9:14
feedback

Here's a guide I keep going back to. Scroll down half way for putty tunneling settings.

http://mike.geek-republic.com/2009/02/17/securing-windows-remote-desktop-with-copssh/

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.