On Tue, 2009-07-21 at 15:03 +0200, Erwann PENCREACH wrote: > Muhammad Sharfuddin a écrit : > > On Tue, 2009-07-21 at 22:53 +1200, Amos Jeffries wrote: > >> Muhammad Sharfuddin wrote: > >>> Squid 2.7 STABLE 5 > >>> > >>> how can I block audio/video streaming via squid ? > >>> > >>> I have blocked a lot many streaming wesbites(like youtube) but I want to > >>> block all of them.. and I think the best method is to block all types of > >>> audio/video streaming rather then blocking websites(that are increasing > >>> day-by-day) > >>> > >>> Regards > >>> -ms > >>> > >> http://wiki.squid-cache.org/ConfigExamples > >> > >> > >> Amos > > > > nice url, but there I did not found any thing to block audio/video > > streaming. > > Please help > > > > Regards > > -ms > > > > > > > > -- > > Ce courrier électronique a été vérifié et est exempt de virus connus à ce jour. > > Contactez votre administrateur pour plus de renseignement. > > postmaster@xxxxxxxxxxxxxx > > Here is what I've done on my test squid conf which hasn't been validated yet > > acl novid rep_mime_type audio video > > http_reply_access deny novid > > -- > Ce courrier ÿlectronique a ÿtÿ vÿrifiÿ et est exempt de virus connus ÿ ce jour. > Contactez votre administrateur pour plus de renseignement. > postmaster@xxxxxxxxxxxxxx > after testing for almost 10 days, I can say that the following works 100% ;) acl audio_video_request req_mime_type -i ^application/x-shockwave-flash$ acl audio_video_request req_mime_type -i ^video/x-ms-asf$ acl audio_video_request req_mime_type -i ^application/vnd.ms.wms-hdr.asfv1$ acl audio_video_request req_mime_type -i ^application/x-mms-framed$ acl audio_video_request req_mime_type -i ^audio/x-pn-realaudio$ acl audio_video_reply rep_mime_type -i ^application/x-shockwave-flash$ acl audio_video_reply rep_mime_type -i ^video/x-ms-asf$ acl audio_video_reply rep_mime_type -i ^application/vnd.ms.wms-hdr.asfv1 $ acl audio_video_reply rep_mime_type -i ^application/x-mms-framed$ acl audio_video_reply rep_mime_type -i ^audio/x-pn-realaudio$ http_access deny audio_video_request http_reply_access deny audio_video_reply Thanks Regards -ms