On the PC there are several programs that will show you your bandwidth usage on a per process or per program basis. Is there anyway of doing something similar on the Mac?

link|improve this question
Henwen: seiryu.home.comcast.net/~seiryu/henwen.html (Not exactly the same thing, so didn't post as an answer) – zengr Oct 20 '10 at 9:12
Similar question on SU: superuser.com/questions/50515/… – Cawas Nov 19 '10 at 0:40
feedback

closed as off topic by Will Dec 13 '10 at 13:50

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

4 Answers

Little Snitch

link|improve this answer
how can we use it for measuring individual (or any at all) bandwidth usage? – Cawas Nov 19 '10 at 0:14
2  
for the record... Little Snitch only show's activity per process not how much bandwidth each process is using. – Clint Modien Aug 7 '11 at 3:11
Little Snitch at least tells you which processes are actively using bandwidth, which in some cases is enough. – rogerdpack Jan 15 at 1:40
1  
I don't think that's what the OP had in mind: Little Snitch is great for seeing the currently active processes using the network, but it doesn't provide any statistics on how many bytes were sent/received – DaGaMs Jan 20 at 9:48
feedback

Install macports and then run

sudo port install iftop

which will install iftop. Now run

sudo iftop

link|improve this answer
iftop doesn't measure per-process bandwidth, it measures bandwidth between pairs of hosts – Alnitak Dec 23 '08 at 23:27
feedback

Out of the box, OS X will give you data totals with netstat

$ netstat -a
Proto Recv-Q Send-Q  Local Address          Foreign Address        (state)
tcp4       0      0  192.168.1.113.62913    blah.http              ESTABLISHED
tcp4  199610      0  192.168.1.113.61334    blah                   ESTABLISHED
link|improve this answer
that's not right - that Recv-Q column only tells you how much data has been received by the kernel and not yet read by the application. It's not a running total – Alnitak Dec 23 '08 at 23:25
feedback

In addition to LittleSnitch (which I love for other reasons), there is a more UNIX-like way to monitor network traffic: ntop.

ntop has the advantage of being portable to other UNIX systems.

You'll need to download and install gdbm. A note about the gdbm install, you'll want to edit the Makefile and set the user and group, the package default of bin doesn't exist on macosx.

I actually went to compile ntop on my mac, and found to my disgust that they expanded the basic app out into a pseudo network monitoring application... thereby requiring a lot of crap that I don't want ;( Not a very UNIX thing to do.

link|improve this answer
I don't think ntop does the job either, it's just a glorified tcpdump and can't account for packets on a per-process basis. – Alnitak Dec 23 '08 at 23:45
feedback

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