Re: [squid-users] how ccan i block aplication and media file downloading in squid

2004-06-10 Thread aol
salam, Thenx, for your kind reply my acl list is == 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

Re: [squid-users] how ccan i block aplication and media file downloading in squid

2004-06-10 Thread Muthukumar
snip acl mylan src 10.1.1.1-10.1.1.150/255.255.255.255 acl dlb urlpath_regex -i \.exe$ \.mp3$ \.mov$ \.mpg$ \.mp?$ \.avi$ \.rm$ \.wma$ \.mpeg$ snip It is normal setting except the two acls dlb and mylan. http_access allow mylan http_access deny dlb It will allow allow all requests of

Re: [squid-users] how ccan i block aplication and media file downloading in squid

2004-06-10 Thread Mohsin Khan
Try http_access allow mylan ! dlb. --- [EMAIL PROTECTED] wrote: salam, Thenx, for your kind reply my acl list is == 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

[squid-users] how ccan i block aplication and media file downloading in squid

2004-06-09 Thread aol
my acl is for blocking downloading acl dlb urlpath_regex -i \.exe$ \.mp3$ \.mov$ \.mpg$ \.mp?$ \.avi$ \.rm$ \.wma$ \.mpeg$ http_access deny dlb but it is not working and also how can i block down loading in a time range

Re: [squid-users] how ccan i block aplication and media file downloading in squid

2004-06-09 Thread Muthukumar
my acl is for blocking downloading acl dlb urlpath_regex -i \.exe$ \.mp3$ \.mov$ \.mpg$ \.mp?$ \.avi$ \.rm$ \.wma$ \.mpeg$ http_access deny dlb but it is not working Are you using anymore http_access rules with this. You have to be very careful while setting the http_access rules. how