adb shell cat/proc/6763/net/dev获取到的接口分别表示什么
时间: 2023-07-04 09:05:08 浏览: 213
OS + Linux Shell bash / sh / ksh / csh / tcsh / adb shell
`adb shell cat /proc/6763/net/dev` 命令是用来显示网络设备的统计信息,其中的数字代表进程ID(PID),可以根据需要替换为其他进程的ID号。
输出的每一行都包含一个网络接口的统计信息,格式如下:
```
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
eth0: 1157326 12967 0 0 0 0 0 0 440103 10994 0 0 0 0 0 0
```
其中,各列的含义如下:
- Inter-:网络接口名称
- Receive bytes:接收到的总字节数
- Receive packets:接收到的总数据包数
- Receive errs:接收到的总错误数(比如校验和出错)
- Receive drop:接收到的总丢弃数(比如缓冲区满了)
- Receive fifo:接收到的总FIFO错误数(比如FIFO溢出)
- Receive frame:接收到的总帧数
- Receive compressed:接收到的总压缩数
- Receive multicast:接收到的总组播数
- Transmit bytes:发送的总字节数
- Transmit packets:发送的总数据包数
- Transmit errs:发送的总错误数
- Transmit drop:发送的总丢弃数
- Transmit fifo:发送的总FIFO错误数
- Transmit colls:发送的总冲突数
- Transmit carrier:发送的总载波错误数
- Transmit compressed:发送的总压缩数
需要注意的是,这里的接口包含了物理接口和虚拟接口(比如Loopback接口)。
阅读全文