The question is simple, but the answer is not :
ssh -D 8080 user@host
or
ssh -gCNf -D 8080 user@host
or
wathever with -D #
I need a kind of proxy that i can use with http_proxy variable, in an embedded device that doesn't support SOCKS.
What should i do?
ssh -D user@host:8080? – ngen May 6 '11 at 14:51-Dspecifies a port to open the tunnel on, not the port to connect to. (Even the connection port is specified as-p port, not:port, for compatibility reasons.) – grawity May 6 '11 at 15:05