Jay Aikat wrote:
The large queue limit is just for testing purposes. Once I figure out this logging of the queue at better granularity, I plan to have more realistic queue limits.

These are for experiments I am running in our lab to study network traffic characteristics and the effect of that on router queuing - just FYI.

Thanks.

I see....

There is no simple way to use a value less than 1 with "-s" parameter because :

**********pftop.c***********
       case 's':
           delay = atoi(optarg);
           if (delay < 1)
               delay = 1;
           break;
**********pftop.c***********
and :
**********engine.c**********
int delay = 5;
**********engine.c**********

Although, you can rewrite the program.
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-pf
To unsubscribe, send any mail to "[email protected]"

Reply via email to