Getting ethtool rx-crc-errors programmatically?
Hi,
I need to get the rx-crc-errors output from ethtool programmatically in C. I've seen examples for getting ethernet speed, etc., using ioctl(), but not for the NIC statistics output from 'ethtool -S eth0'.
> ethtool -S eth0
NIC statistics:
rx-dropped-by-kernel: 0
rx-large-frame-errors: 0
rx-short-frame-errors: 0
rx-non-octet-errors: 0
rx-crc-errors: 0
.....
Any ideas? Thanks.
|