vote up 3 vote down star

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.
flag

It's probably somewhere in /proc, but as a quick-and-dirty you could probably parse it out of the output of "ifconfig" – Paul Tomblin Dec 8 '08 at 13:55
Paul, that would work only for the frame count as ifconfig doesn't give a packet count per IP protocol. – xahtep Dec 8 '08 at 13:59
xahtep hit the nail on the head: it is easy the find the frame count. I'm looking for IPv4 and IPv6 packet counts as well. – Cayle Spandon Dec 8 '08 at 15:05

7 Answers

vote up 2 vote down check

You should be able to do this using iptables rules and packet counters, e.g.

# input and output must be accounted for separately
# ipv4, eth0
iptables -I INPUT -i eth0
iptables -I OUTPUT -o eth0
# ipv6, eth0
ip6tables -I INPUT -i eth0
ip6tables -I OUTPUT -o eth0

And to view the stats, parse the output of these:

iptables -L -vxn
ip6tables -L -vxn

You should also look up the -Z flag for when you want to reset the counters.

link|flag
Sounds promising. Can you elaborate and/or point to a book/website describing this? Also, would there be a performance implication if I want this turned on "all the time" on a production system? – Cayle Spandon Dec 8 '08 at 15:07
I updated the answer to have an example, hope this helps. There won't be any noticeable performance hit for this as it just updates a few in-memory counters as the packets flow through. – xahtep Dec 8 '08 at 16:11
Great! This is what I needed. Thanks! – Cayle Spandon Dec 8 '08 at 16:15
vote up 2 vote down

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

link|flag
vote up 1 vote down

You can always parse the various kernel status files yourself, I think this is what tools like netstat do. The man page suggests:

  • /proc/net/raw -- RAW socket information
  • /proc/net/tcp -- TCP socket information
  • /proc/net/udp -- UDP socket information

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.

link|flag
The only relevant kernel status file which I could find was /proc/dev/net. It reports RX-OK and TX-OK per interface. I suspect these are ethernet frame counters. How would I get IPv4 and IPv6 packet counters? Note that I'm looking for itnerface stats, not for connection (socket) stats. – Cayle Spandon Dec 8 '08 at 15:02
vote up 0 vote down

Either just parse the output of netstat -i. Or strace netstat -i, and use that to work out where it looks for the information.

link|flag
netstat reports RX-OK and TX-OK per interface. I suspect these are ethernet frame counters. How would I get IPv4 and IPv6 packet counters? – Cayle Spandon Dec 8 '08 at 15:00
vote up 0 vote down

Wireshark (used to be Ethereal) can help you with that.

Netstat Would be my second guess

link|flag
Thanks, but I'm looking for a way to retrieve these counters on a "standard" linux system without installing any additional software. – Cayle Spandon Dec 8 '08 at 15:02
Netstat should come pre-installed in most *nixes – dsm Dec 10 '08 at 16:36
vote up 0 vote down

ifconfig tells you the amount of data transferred (bytes and packets).

link|flag
ifconfig reports RX packets and TX packet per interface. I suspect these are ethernet frame counters. How would I get IPv4 and IPv6 packet counters? – Cayle Spandon Dec 8 '08 at 15:03
No idea :/ I don't have an IPv6 system so I can't tell what ifconfig prints there :( – Aaron Digulla Dec 8 '08 at 16:25
vote up 0 vote down

cat /proc/net/dev

link|flag

Your Answer

Get an OpenID
or

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