View previous topic :: View next topic |
Author |
Message |
Clay n00b
Joined: 22 May 2002 Posts: 23
|
Posted: Fri Jun 07, 2002 1:50 pm Post subject: Tracking bandwidth? |
|
|
Can anybody recommend a good solution for tracking how much traffic goes out on a certain interface on a certain port? I need to track what my http server is sending out...
is there an emergable package out there I can do this with? |
|
Back to top |
|
|
kang Retired Dev
Joined: 17 May 2002 Posts: 60
|
Posted: Sat Jun 08, 2002 1:08 pm Post subject: |
|
|
i dunno which are the best, but you can try trafshow and netwatch, also statd
i like the last one because it tracks also AppleTalk traffic=) |
|
Back to top |
|
|
CowboyNeal n00b
Joined: 16 May 2002 Posts: 44 Location: The Netherlands
|
Posted: Sun Jun 09, 2002 9:48 pm Post subject: |
|
|
Why don't use iptables?
iptables -A OUTPUT -o eth0 -p tcp --sport 80
iptables -L OUTPUT -v
shows byte en packet count.
Just write a simple script to calc bandwidth |
|
Back to top |
|
|
|