I have a computer with windows 7 under a firewall which can only initiate connections to other computers. It has a proxy server on it (port 9000) and I want to forward it to another machine (192.168.1.1) using netcat.

Suggestions/ideas as to how to do it? My plan was to use something like

1) On the remote machine: nc -l -p 80 -e 'nc -l -p 9000'

2) On the firewalled computer: nc 127.0.0.1 9000 -e 'nc 192.168.1.1 80'

The problem is: it doesnt work. I would love to use putty's ssh2 port forwarding, but it is completely broken and the bug is there since 2003. I doubt it will ever be fixed.

link|improve this question
which bug? For me, it uses to work... – glglgl Nov 18 '11 at 8:04
This bug: askldjd.wordpress.com/2010/07/07/… – user59067 Nov 18 '11 at 23:01
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.