From owner-freebsd-questions@FreeBSD.ORG Mon Apr 28 19:46:26 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4152106564A for ; Mon, 28 Apr 2008 19:46:26 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.freebsd.org (Postfix) with ESMTP id A11258FC19 for ; Mon, 28 Apr 2008 19:46:26 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1JqZIs-000OFO-V4; Mon, 28 Apr 2008 15:46:23 -0400 Message-ID: <013d01c8a968$89c71e00$6501a8c0@GRANT> From: "Grant Peel" To: , References: <20080424181040.GB14991@nupfel.de> <200804281800.46883.beni@brinckman.info> Date: Mon, 28 Apr 2008 15:46:22 -0400 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="UTF-8"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 Cc: Tobias Kirschstein Subject: Re: simple network traffic query tool X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2008 19:46:26 -0000 Take a look at ipa. -Grant ----- Original Message ----- From: "beni" To: Cc: "Tobias Kirschstein" Sent: Monday, April 28, 2008 2:00 PM Subject: Re: simple network traffic query tool > On Thursday 24 April 2008 18:10:40 Tobias Kirschstein wrote: >> hi, >> >> i'm looking for a small tool to query the current network traffic (kb >> IN and OUT) per interface. is there any sysctl or tool which gives me a >> similar output to "systat -ifstat": >> >> /0 /1 /2 /3 /4 /5 /6 /7 /8 /9 /10 >> Load Average |||| >> >> Interface Traffic Peak Total >> lo0 in 0.000 KB/s 0.000 KB/s 226.079 >> KB >> out 0.000 KB/s 0.000 KB/s 226.079 >> KB >> >> wpi0 in 0.000 KB/s 0.000 KB/s 164.577 >> MB >> out 0.000 KB/s 0.000 KB/s 6.205 >> MB >> >> the background: >> unfortunately the network monitor build into superkaramba does not work >> for freebsd, os i want to write a widget which uses sysctl or any other >> tool if available got get this information. systat is not appropriate >> to be used because it does not terminate on its own as i see. > > I'm using a modified version of Superkarambas CompactMonitor. It is > written > for Linux I think, but easily adaptable for freebsd. > All I did was moddify the > ~/.kde/share/apps/superkaramba/themes/CompactMonitor/CompactMonitor.theme > file : > > text x=435 y=50 sensor=network device="vr0" format="%in KB/s" > decimals=1 > text x=370 y=50 value="Download" > text x=570 y=50 sensor=program program="netstat -ibh | grep Link#1 | > awk '{print $7}'" align=right interval=1000 > > text x=435 y=65 sensor=network device="vr0" format="%out KB/s" decimals=1 > text x=370 y=65 value="Upload" > text x=570 y=65 sensor=program program="netstat -ibh | grep Link#1 | > awk '{print $10}'" align=right interval=1000 > > Add > graph x=370 y=30 sensor=network device="vr0" format="%out" w=200 h=15 > color=255,127,127 interval=1000 max=100 > graph x=370 y=30 sensor=network device="vr0" format="%in" w=200 h=15 > color=127,230,180 interval=1000 max=100 > if you want to add a graphic representation and change the "vr0" according > to > your (ethernet) device. > > It works for me with kde 3.5.8 on 7.0-stable. > -- > Beni. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > >