How can I run Bitcoin-QT client behind a restrictive firewall using a putty tunnel?

5

2

I am on Windows machine on a network that is closed for all incoming packets and outgoing packets only work for port 80.

In the network I have access to a Linux via SSH that is open for in and out access.

I want to run the wallet client Bitcoin-QT on the restricted Windows machine, I setup a tunnel using D9050 to the open Linux and then I told Bitcoin-QT that there is socks proxy on localhost port 9050.

The client runs and starts to show connections (which is doesn't show without the tunnel) but it doesn't start downloading the block chain :(

Help ?

thedrs

Posted 2012-05-13T14:59:15.113

Reputation: 299

i think i should have some process listening on 8332 on the linux so that when other nodes try to contact me they will reach something ... but i am not surethedrs 2012-05-13T15:17:35.917

Answers

2

The easiest way to make this work would be to install cygwin on your windows machine, specifically ssh client package.

Then from a cygwin shell, run ssh -D 8080 user@linuxHost.

Now you can point the qt client to localhost:8080 as the socks proxy.

Tuxavant

Posted 2012-05-13T14:59:15.113

Reputation: 306

It seems like it works if one changes socks protocol to 4 in Bitcoin-QT.dma_k 2015-04-10T14:05:10.003

is this different from setting up a tunnel using putty like i mentioned above ?thedrs 2012-05-15T05:30:42.087

2

Andrew Burns

Posted 2012-05-13T14:59:15.113

Reputation: 601