On Linux, how can I (programmatically) retrieve the following counters on a per-interface basis:
- Sent/received ethernet frames,
- Sent/received IPv4 packets,
- Sent/received IPv6 packets.
|
|
On Linux, how can I (programmatically) retrieve the following counters on a per-interface basis:
|
||||||
|
|
|
You should be able to do this using
And to view the stats, parse the output of these:
You should also look up the |
||||||
|
|
|
On my system, there are files under /sys/class/net/eth0/statistics which give various stats about network interfaces. This is assuming a vaguely recent Linux which has /sys mounted |
||
|
|
|
|
You can always parse the various kernel status files yourself, I think this is what tools like netstat do. The man page suggests:
I guess there should be a non-proc way to do this, perhaps in /sys too? I had a quick look but didn't find anything. |
||
|
|
|
Either just parse the output of |
||
|
|
|
|
||||
|
|
|
|
||||
|
|
|
cat /proc/net/dev |
||
|
|