----- Original Message ----- From: "tonahtiu ramirez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 16, 2004 7:10 AM Subject: [squid-users] acl newbie
> Hi to all! > > Im new in this, i want to install the squid in my network > and i have a rules like this > > > # ACCESS CONTROLS > # > ---------------------------------------------------------------------------- > - > 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 563 > acl Safe_ports port 80 # http > acl Safe_ports port 21 # ftp > acl Safe_ports port 443 563 # https, snews > acl Safe_ports port 70 # gopher > acl Safe_ports port 210 # wais > acl Safe_ports port 1025-65535 # unregistered ports > acl Safe_ports port 280 # http-mgmt > acl Safe_ports port 488 # gss-http > acl Safe_ports port 591 # filemaker > acl Safe_ports port 777 # multiling http > acl CONNECT method CONNECT > > http_access allow manager localhost > http_access deny manager > http_access deny !Safe_ports > http_access deny CONNECT !SSL_ports > http_access deny to_localhost > > http_access allow localhost > > http_reply_access allow all > icp_access allow all > > # own rules > acl permitidos src "/etc/squid/permitidos" > http_access allow permitidos > http_access deny all > > #more permitidos > 192.168.0.1 > 192.168.0.2 > 192.168.0.3 Put the netmask with the IP-Addresses. Here you are using individual address. #more permitidos 192.168.0.1/32 192.168.0.2/32 192.168.0.3/32 Or use as with the ip-range as #more permitidos 192.168.0.1-3/32 Regards, Muthukumar.
