Post Reply 
Configure privoxy to use specific network interface
Jul. 14, 2018, 05:59 PM (This post was last modified: Jul. 14, 2018 05:59 PM by ryszardzonk.)
Post: #2
RE: Configure privoxy to use specific network interface
It should be something along those lines
Code:
iptables -t nat -A PREROUTING -i localhost -p tcp -s 127.0.0.1 --sport 3128 --dport 80 -j DNAT --to 192.168.1.2:80

that should work to
Code:
iptables -t nat -A PREROUTING -p tcp -s 127.0.0.1 --sport 3128 --dport 80 -j DNAT --to 192.168.1.2:80

obviously you have to change 3128 to your privoxy port and ip adress from 192.168.1.2 to the network card you want to send traffic to
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Configure privoxy to use specific network interface - ryszardzonk - Jul. 14, 2018 05:59 PM

Forum Jump: