On Mon, Jun 26, 2006 at 12:02:14PM +0700, Karl Sumpter wrote: > I'm trying to apply the following ACL to block skype traffic... > > acl numeric_IPs urlpath_regex ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+ > acl Connect method CONNECT I believe that urlpath_regex is the wrong ACL type. It would match the part *after* the hostname which is not what you want. What about: acl numeric_IPs url_regex ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+: Regards Christoph -- Please reply to the list - not to me personally. Personal replies are ignored.