From owner-freebsd-pf@FreeBSD.ORG Sat Mar 28 15:08:28 2009 Return-Path: Delivered-To: freebsd-pf@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C279810656C1 for ; Sat, 28 Mar 2009 15:08:28 +0000 (UTC) (envelope-from grishin-mailing-lists@minselhoz.samara.ru) Received: from mail.minselhoz.samara.ru (mail.minselhoz.samara.ru [195.128.135.231]) by mx1.freebsd.org (Postfix) with ESMTP id 747868FC14 for ; Sat, 28 Mar 2009 15:08:28 +0000 (UTC) (envelope-from grishin-mailing-lists@minselhoz.samara.ru) Received: from [94.180.156.209] (helo=[192.168.0.15]) by mail.minselhoz.samara.ru with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Lna8r-000H7j-KL; Sat, 28 Mar 2009 19:08:13 +0400 Message-ID: <49CE3D6B.90503@minselhoz.samara.ru> Date: Sat, 28 Mar 2009 19:08:27 +0400 From: Yuriy Grishin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.19) Gecko/20081204 SeaMonkey/1.1.14 MIME-Version: 1.0 To: Jay Aikat References: <49CE29DB.7010803@unc.edu> <49CE3822.409@minselhoz.samara.ru> <49CE399C.2080406@unc.edu> In-Reply-To: <49CE399C.2080406@unc.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-pf@freebsd.org Subject: Re: pftop queue stats X-BeenThere: freebsd-pf@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Technical discussion and general questions about packet filter \(pf\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Mar 2009 15:08:29 -0000 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.