[squid-users] Block Windows Live Messenger with Squid

2008-05-21 Thread adnann5
Hi Guys, I've a running a transparently working copy of squid 2.6 stable 19 on a Linux FC9 box. I wanted to block msn/windows live messenger through it, i've add following code in my squid.conf acl msnmime req_mime_type ^application/x-msn-messenger acl msngw url_regex -i gateway.dll

Re: [squid-users] Block Windows Live Messenger with Squid

2008-05-21 Thread Cassiano Martin
Messenger uses port 1863 tcp for communication, and some HTTPS SOAP requests to M$ servers. You need to block this port using iptables. iptables -A FORWARD -p tcp --dport 1863 -j DROP iptables -A FORWARD -p tcp --sport 1863 -j DROP adnann5 wrote: Hi Guys, I've a running a transparently

RE: [squid-users] Block Windows Live Messenger with Squid

2008-05-21 Thread Thomas Raef
the archives. Sorry, but I don't have the exact details in front of me. Thomas J. Raef -Original Message- From: Cassiano Martin [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 11:05 AM To: adnann5 Cc: squid-users@squid-cache.org Subject: Re: [squid-users] Block Windows Live Messenger

Re: [squid-users] Block Windows Live Messenger with Squid

2008-05-21 Thread Indunil Jayasooriya
PROTECTED] Sent: Wednesday, May 21, 2008 11:05 AM To: adnann5 Cc: squid-users@squid-cache.org Subject: Re: [squid-users] Block Windows Live Messenger with Squid Messenger uses port 1863 tcp for communication, and some HTTPS SOAP requests to M$ servers. You need to block this port using iptables