Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a low CPU software that measures the bandwidth of a network. So far I am using to BandWidthD. I want something the same but with a lower CPU.

I have looked at DU Meter, and a few other ones but they

Thank you

share|improve this question

2 Answers

up vote 1 down vote accepted

You could fairly easily to write a script for something like this if you want it to be VERY low on processor "intensive'ness". That'd be the best solution if you want it to have as small a footprint on your system resources as possible.

I'd suggest Python, it has some good packet manipulation/network tools built it that should work.

share|improve this answer
Yeah I wanted to avoid doing this but I got it thanks. – Eric Sauer Jun 30 '11 at 18:56
@Eric no problem.. inevitably, in most cases, if all you want is simple functionality it's best to write it yourself. Most 'published' software is going to have a variety of other uses/processes involved that (if you don't want them) are just going to take up unnecessary cycles on your computer. – DKGasser Jun 30 '11 at 18:57

nuttcp (see http://www.wcisd.hpc.mil/nuttcp/Nuttcp-HOWTO.html) will tell you how much CPU it used (on both ends) as part of the test, and these are usually low single-digit percentages, if not almost zero, e.g.:

    7.8520 MB /  10.08 sec =    6.5319 Mbps 0 %TX 0 %RX 3 host-retrans 104.38 msRTT

Wow, 0% for both transmitter and receiver.

I'm using nuttcp to periodically measure the bandwidth I'm getting on my home internet connection (because it seems to be dropping out each afternoon), using the command-line:

nuttcp -a -i1 -r -F -T15 -fparse -I"$(date | tr -d '\n')" damp-ssc.dren.net

damp-ssc.dren.net appears to be an open nuttcp server, but you can create your own server elsewhere if you can login there (and sort out any firewall port issues).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.