Thank you, I've modifed this, do not recall why I had it this way in the
first place. Just the same, I am still unable to open cachemgr.cgi and am
stil able to use ssh as well as my original problem with regards to hiding
my site data.
PS I've also tried modifying localhost to read:
acl localhost src 127.0.0.1/255.0.0.0
versus
acl localhost src 127.0.0.1/255.255.255.255
Thank you again,
.vp
From: Henrik Nordstrom <henrik@xxxxxxxxxxxxxxxxxxx>
To: Vadim Pushkin <wiskbroom@xxxxxxxxxxx>
ons 2006-04-05 klockan 17:13 +0000 skrev Vadim Pushkin:
> You could be right on the order, I am also having some problems using
the
> cachemgr.cgi which I believe is due to the order. Also, I am able to
ssh
> out using my proxy, and I wish not to.
Your definition of "all" is wrong, and can not match anything.
It should be defined as
acl all src 0.0.0.0/0
which matches any IP address.
while yours reads
acl all src 0.0.0.0/255.255.255.255 (same as /32)
which only matches the single IP address 0.0.0.0 which is impossible
(it's a broadcast address)
Regards
Henrik