On Mon, Mar 08, 2004 at 07:30:16PM +0530, Sandeep Agarwal wrote: > I have squid proxy server. I have blocked messenger, chat in it by using acl. > Now I want to make two group of users on the basis of IP address (in the range > 192.168.100.0). > One who has all permission > One who has restricted permission
acl group1_1 src 192.168.100.10 acl group1_2 src 192.168.100.24 acl group1_3 src 192.168.100.51 acl allothers src 192.168.100.0/255.255.255.0 ... http_access allow group1_1 http_access allow group1_2 http_access allow group1_3 http_access deny messenger http_access deny chat http_access allow allothers http_access deny all Binand -- [EMAIL PROTECTED] root]# uptime 11:55am up 58 days, 4:49, 2 users, load average: 1023.78, 419.92, 158.90 ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
