I think it is possible to do acls via username and time. taken from - http://www.squid-cache.org/Doc/FAQ/FAQ-23.html#ss23.2 ----------------- START COPY ---------------------- "23.2 How do I use authentication in access controls?
Make sure that your authentication program is installed and working correctly. You can test it by hand. Add some proxy_auth ACL entries to your squid configuration. For example: acl foo proxy_auth REQUIRED acl all src 0/0 http_access allow foo http_access deny all The REQURIED term means that any authenticated user will match the ACL named foo. Squid allows you to provide fine-grained controls by specifying individual user names. For example: acl foo proxy_auth REQUIRED acl bar proxy_auth lisa sarah frank joe acl daytime time 08:00-17:00 acl all src 0/0 http_access allow bar http_access allow foo daytime http_access deny all In this example, users named lisa, sarah, joe, and frank are allowed to use the proxy at all times. Other users are allowed only during daytime hours." ------------- END OF COPY-PASTE -------------- --- Der Smighul <[EMAIL PROTECTED]> wrote: > Hmmm... i think you should consider squid's proxy > authentication. Squid supports a number of > authentication methods... > > LDAP NCSA SMB PAM etc.. > > once the users have authenticated then you can use > "authentication on access contol" > __________________________________ Do you Yahoo!? Free Pop-Up Blocker - Get it now http://companion.yahoo.com/ -- Philippine Linux Users' Group (PLUG) Mailing List [EMAIL PROTECTED] (#PLUG @ irc.free.net.ph) Official Website: http://plug.linux.org.ph Searchable Archives: http://marc.free.net.ph . To leave, go to http://lists.q-linux.com/mailman/listinfo/plug . Are you a Linux newbie? To join the newbie list, go to http://lists.q-linux.com/mailman/listinfo/ph-linux-newbie
