mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
This will be easier to typset also in the PDF generated version. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
20 lines
2.8 KiB
Markdown
20 lines
2.8 KiB
Markdown
# RMON Counters
|
|
|
|
This document show the mapping between YANG and Linux / Ethtool counters.
|
|
|
|
| **YANG** | **Linux / Ethtool** |
|
|
|--------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
| `in-total-octets` | `FramesReceivedOK`, `FrameCheckSequenceErrors`, `FramesLostDueToIntMACRcvError`, `AlignmentErrors`, `etherStatsOversizePkts`, `etherStatsJabbers` |
|
|
| `in-frames` | `FramesReceivedOK` |
|
|
| `in-multicast-frames` | `MulticastFramesReceivedOK` |
|
|
| `in-broadcast-frames` | `BroadcastFramesReceivedOK` |
|
|
| `in-error-fcs-frames` | `FrameCheckSequenceErrors` |
|
|
| `in-error-undersize-frames` | `undersize_pkts` |
|
|
| `in-error-oversize-frames` | `etherStatsJabbers`, `etherStatsOversizePkts` |
|
|
| `in-error-mac-internal-frames` | `FramesLostDueToIntMACRcvError` |
|
|
| `out-frames` | `FramesTransmittedOK` |
|
|
| `out-multicast-frames` | `MulticastFramesXmittedOK` |
|
|
| `out-broadcast-frames` | `BroadcastFramesXmittedOK` |
|
|
| `infix-eth:out-good-octets` | `OctetsTransmittedOK` |
|
|
| `infix-eth:in-good-octets` | `OctetsReceivedOK` |
|