HI I have just configured a squid proxy server. I have created a group called marketing and allowed http access to that particular group ( following is my config )
acl marketing src "/etc/squid/marketing.squid"
http_access allow marketing
###########################################
how ever i now need to give certain permission to the group *"marketing "* ( like disallowing access to certain sites ... limiting bandwidth to this group )
How is this possible ?
Can some one please help me here !!
Thank you !!!
HI I have just configured a squid proxy server. I have created a group called marketing and allowed http access to that particular group ( following is my config )
acl marketing src "/etc/squid/marketing.squid"
http_access allow marketing
###########################################
how ever i now need to give certain permission to the group *"marketing "* ( like disallowing access to certain sites ... limiting bandwidth to this group )
How is this possible ?
Can some one please help me here !!
Thank you !!!
On Nov 29, 2007 2:36 PM, Agnello George agnello.dsouza@gmail.com wrote:
HI I have just configured a squid proxy server. I have created a group called marketing and allowed http access to that particular group ( following is my config )
acl marketing src "/etc/squid/marketing.squid"
http_access allow marketing
###########################################
how ever i now need to give certain permission to the group *"marketing "* ( like disallowing access to certain sites ... limiting bandwidth to this group )
For disallowing websites
acl noway url_regex "/etc/squid/block-web.txt" http_access deny noway
this will block all the websites mentioned in block-web.txt. You can mention one website in each line of block-web.txt
regards VK
On 30-Nov-07, at 9:30 PM, vivek khurana wrote:
this will block all the websites mentioned in block-web.txt. You can mention one website in each line of block-web.txt
is this one website per line or one regex per line?
On 12/1/07, Kenneth Gonsalves lawgon@au-kbc.org wrote:
On 30-Nov-07, at 9:30 PM, vivek khurana wrote:
this will block all the websites mentioned in block-web.txt. You can mention one website in each line of block-web.txt
is this one website per line or one regex per line?
I have got the bellow recomendation from one of my friend ( i still have to implement it ) :
line 1. acl special_client src 192.168.11.0 < type here ip ranage or single ip address or multiple ip separted with single space )
line 2. acl special_url url_regex -i chat.yahoo.com ( type here webaddress separated with | e.g. yahoo.com|rediff.com , last webaddress should not have any | (pipe))
line 3 http_access deny special_client special_url
line 4 http_access allow marketing ( or whatever ip address range)
( will update this thread as soon as i implement it today )
Thank you
On Dec 1, 2007 6:22 AM, Kenneth Gonsalves lawgon@au-kbc.org wrote:
On 30-Nov-07, at 9:30 PM, vivek khurana wrote:
this will block all the websites mentioned in block-web.txt. You can mention one website in each line of block-web.txt
is this one website per line or one regex per line?
one website per line or one regex per line.
regards VK