You are not logged in.
Hi.
I can tunnel to ssh server using this:
ssh -N -D $myport $user@$serverip
It's working good. I tunneled to the server.
But I have a problem!
the created proxy is a Socks v5 proxy. I want to create a http proxy how can i do it?
Thanks! I waiting for your answers...
Last edited by ojZim (2013-05-26 17:55:36)
Offline
You can't. What you can do is run a local http proxy that uses the ssh-created Socks5 as parent. Example config for polipo:
daemonise=true
proxyAddress=127.0.0.1
proxyName=localhost
allowedClients=127.0.0.1
socksParentProxy=localhost:7777
socksProxyType=socks5
7777 is an example, use $myport there. The default polipo port is 8123, meaning apps should be configured to use localhost:8123 as proxy.
Offline
You can't. What you can do is run a local http proxy that uses the ssh-created Socks5 as parent. Example config for polipo:
daemonise=true proxyAddress=127.0.0.1 proxyName=localhost allowedClients=127.0.0.1 socksParentProxy=localhost:7777 socksProxyType=socks5
7777 is an example, use $myport there. The default polipo port is 8123, meaning apps should be configured to use localhost:8123 as proxy.
Thanks for your help! It's worked very good and my problem is solved.
For installing and configuration polipo, other users can read this:
https://wiki.archlinux.org/index.php/Polipo
Last edited by ojZim (2013-05-26 17:56:39)
Offline