I want to setup a simple ssh tunnel from a local machine to a machine on the internet. I'm using
ssh -D 8080 -f -C -q -N -p 12122 <username>@<hostname>
Setup works fine (I think) cause ssh returs asking for the credentials, which I provide.
Then i do
export http_proxy=http://localhost:8080
and
wget http://www.google.com
Wget returns that the request has been sent to the proxy, but no data is received back. What i need is a way to look at how ssh is processing the request....