On Sat, 07 Oct 2006, Jochen Topf wrote:

> Package: privoxy
> Version: 3.0.5-beta-1
> Severity: important

> In the newest version in testing the "listen-address" config option
> doesn't work. Whatever I put there, privoxy always listens to 127.0.0.1.

I cannot believe this.  I've configured 
listen-address  0.0.0.0:8118
and it listens on any address:
# netstat -tpln | grep 8118
tcp        0      0 0.0.0.0:8118            0.0.0.0:*               LISTEN     
6785/privoxy       

And if I change this to my eth0 IP it also works:
listen-address  192.168.42.17:8118

# netstat -tpln | grep 8118
tcp        0      0 192.168.42.17:8118      0.0.0.0:*               LISTEN     
11865/privoxy

Maybe you tried to enter two listen-address lines into your config
file?  This does not work, in this case to have to listen on the
wildcard (0.0.0.0:8118) and restrict access using access lists
(permit-access and deny-access commands) like this:

listen-address  0.0.0.0:8118
permit-access localhost
permit-access 192.168.42.0/24
deny-access 0.0.0.0

With this configuration privoxy listens on all interfaces, but access
is only granted from localhost and from local network and from
localhost.

Does this solve your problem?

Tschoeeee

        Roland


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to