On Tue, 21 May 2002, Rick Matthews wrote:
> Create an expressionlist that matches everything.
> Create a destination group that consists of only that expressionlist:
>
> dest internet {
> expressionlist internet/expressions
> redirect http://someplace
> logfile internet.log
> }
>
> Rewrite your acl:
>
> acl {
> exceptips {
> pass all
> }
> default {
> pass allowcustom !internet none
> redirect http://...
> }
> }
>
> That should do it.
Thanks!!! That works beautifully!
My expressionlist, btw, is a single ".". Seems to do the trick! :)
Lawrence