How to: http proxy over ssh, not socks #it #fix #answer
How to: http proxy over ssh, not socks #it #fix #answer
http proxy over ssh, not socks
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?
Answer [by lesmana]: http proxy over ssh, not socks
ssh -L 8080:localhost:12345 user@host
This will open…
View On WordPress














