What are meanings of fields in /proc/net/dev?

后端 未结 3 2039
鱼传尺愫
鱼传尺愫 2021-02-02 09:44

The Linux file /proc/net/dev reads like this:

[me@host ~]$ cat /proc/net/dev
Inter-|   Receive                                                |  Transmit
 face |         


        
3条回答
  •  南旧
    南旧 (楼主)
    2021-02-02 10:46

    According to http://www.onlamp.com/pub/a/linux/2000/11/16/LinuxAdmin.html, the meanings of each of the columns are:

    bytes The total number of bytes of data transmitted or received by the interface.

    packets The total number of packets of data transmitted or received by the interface.

    errs The total number of transmit or receive errors detected by the device driver.

    drop The total number of packets dropped by the device driver.

    fifo The number of FIFO buffer errors.

    frame The number of packet framing errors.

    colls The number of collisions detected on the interface.

    compressed The number of compressed packets transmitted or received by the device driver. (This appears to be unused in the 2.2.15 kernel.)

    carrier The number of carrier losses detected by the device driver.

    multicast The number of multicast frames transmitted or received by the device driver.

提交回复
热议问题