>
> acl ie_browser browser ^Mozilla/4\.0 .compatible; MSIE
> acl blacklist url_regex "/etc/squid/squid.deny"
> acl wplink src 192.168.10.0/24
>
> http_access deny ie_browser
> http_access deny blacklist
> http_access allow wplink
>
> I have 5 IP address in Intranet ( 192.168.10.1 , 192.168.10.2, ....10.5  ) 
> and all IP use squid proxy.
>
> My goal is to deny internet explorer from all IP address. This is not a 
> problem.
> But i want to allow Internet Explorer for 192.168.10.4 and 192.168.10.5 
> because this users don't know to use another browser than 
> Internet Explorer (an example).

IF your acl ie_browser is correct then,
Make an acl to have 192.168.10.4 and 192.168.10.5 to allow I.E access as,

acl spl_ie_users src 192.168.10.4-5/32

# Access rule
http_access deny !spl_ie_users  ie_browser

To know more about access controls then refer,
http://squid.visolve.com/squid/squid24s1/access_controls.htm#acl

Best Wishes
Visolve Squid Development Team.
================================================================================================================
URL : http://squid.visolve.com/
mail : [EMAIL PROTECTED]
================================================================================================================





Reply via email to