From Wiki I was able to install privoxy and every things working fine. Now I want to use Tor and privoxy together. But Tor is running on my Win XP desktop(at 192.168.1.3 on 9150 port). Using  chain Privoxy with Tor I've added following lines to /etc/privoxy/config

forward-socks5             /     192.168.1.3:9150 .
forward         192.168.*.*/     .
forward           127.*.*.*/     .


root@OpenWrtRouter:~# /etc/init.d/privoxy stop
root@OpenWrtRouter:~# /etc/init.d/privoxy start

I'm getting tha following error

503 - forwarding failure (privoxy@OpenWrtRouter)

Privoxy was unable to scoks5- forward you reqquest http://websitename/ through 192.168.1.3 sock5 server unreachable

Privoxy verison - 3.0.19

Tor Browser Bundle Version 2.3.25-8


edit :

forgot to edit torcc file..

ocksPort 9150 # what port to open for local application connections
SocksListenAddress 127.0.0.1 # accept connections only from localhost
SocksListenAddress 192.168.1.3:9100 # accept connections from the  internal interface as well (match this to your server's internal ip address)

## Entry policies to allow/deny SOCKS requests based on IP address.
## First entry that matches wins. If no SocksPolicy is set, we accept
## all (and only) requests from SocksListenAddress.
SocksPolicy accept 192.168.1.0/24 # accept connections from the local network; set X to match your network configuration
SocksPolicy accept 127.0.0.1 # accept local connections
SocksPolicy reject * # by default, reject all connections that have not matched one of the rules above'''

(Last edited by old_router on 10 Jun 2013, 07:52)