> Hi all, > > I have configured the latest version of squid on Ubuntu Studio 8.0 - > AMD 64bit. I have also configured samba. > I am in need of blocking the samba users from accessing the internet > anytime except 18:00 - 20:00 Hrs everyday. How do i do this? > The samba is configured as a PDC with WinXP clients. > Standard samba config. http://wiki.squid-cache.org/SquidFaq/ProxyAuthentication Then this at the appropriate place of your config: acl sambaUsers proxy_auth REQUIRED acl deadHours time 18:00-20:00 http_access deny deadHours sambaUsers Amos