The listing below is an excerpt from a Squid configuration file:

The listing below is an excerpt from a Squid configuration file:

 

The listing below is an excerpt from a Squid configuration file:

 

A.
Users connecting from localhost will be able to access web sites through this proxy.

B.
It’s necessary to include a http_access rule denying access to all, at the end of the rules.

C.
It’s possible to use this proxy to access SSL enabled web sites listening on any port.

D.
This proxy can’t be used to access FTP servers listening on the default port.

E.
This proxy is misconfigured and no user will be able to access web sites through it.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


marcus

marcus

Here is the listing:

[…]
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443
acl Safe_ports port 80 443 1025-65535
acl CONNECT method CONNECT
acl localhost src 10.0.0.0/24
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
[…]

mr_tienvu

mr_tienvu

I choose