Re: Limit to number of items in an ACL matching src IP

2010-02-18 Thread Andrew Azarov
Hi Graeme, ./include/common/defaults.h #define LINESIZE 2048 #define MAX_LINE_ARGS 64 But you can change them any time - repercussions: memory and cpu usage. Mine are #define LINESIZE 65536 #define MAX_LINE_ARGS 4096 everything runs fine. BRG, Andrew On 16.02.2010 10:28,

Limit to number of items in an ACL matching src IP

2010-02-16 Thread Graeme Donaldson
Hi I'm playing around with something like this: acl src_goaway src 10.0.0.1 redirect location http://example.com/goaway.html I have seen examples in the docs where src is specified as multiple IPs in a single ACL, but I don't see any mention of how many IPs can be in a single ACL. Did I miss