试图了解 wwan0 上传输的数据量?
Trying to understand the amount of data transfered on wwan0?
我有 linux 系统,它通过 LTE 调制解调器连接到互联网,我通过调制解调器管理器与其通信。所以我有点难以理解消耗的数据字节数。
root@raspberrypi-cm3:~# mmcli -b 0
-------------------------
Status | connected : 'yes'
| suspended : 'no'
| interfaces: 'wwan0'
| IP timeout: '20'
-------------------------
Properties | apn: 'myapn'
| roaming: 'allowed'
| IP type: 'none'
| user: 'none'
| password: 'none'
| number: 'none'
-------------------------
Stats | Duration: '105060'
| Bytes received: '6300'
| Bytes transmitted: '6209'
root@raspberrypi-cm3:~# ping -c 1 -s 0 www.opendns.com
8 bytes from ****.****.****.*** seq =0 ttl=50
1 packet transmitted, 1 packet received, 0% packet loss
root@raspberrypi-cm3:~# mmcli -b 0
-------------------------
Status | connected : 'yes'
| suspended : 'no'
| interfaces: 'wwan0'
| IP timeout: '20'
-------------------------
Properties | apn: 'myapn'
| roaming: 'allowed'
| IP type: 'none'
| user: 'none'
| password: 'none'
| number: 'none'
-------------------------
Stats | Duration: '105090'
| Bytes received: '6512'
| Bytes transmitted: '6359'
根据调制解调器管理器的说法。我正在消耗 150 字节的数据来向 opendns 发送 ping
我收到了 212 字节的数据?
但这怎么可能。我正在使用 ICMP header 传输 8 个字节并接收 8 个字节,总共将接收到 16 个字节的数据。
谁能解释一下这些附加数据字节是从哪里来的?
当我与我的名称服务器通信时,它们只是一个 over-head 吗?如果那是 over-head 是否有某种公式可用于计算消耗的近似数据?
我的最终目标只是 cross-verify 消耗的总数据字节数
我通过使用 tcpdump
创建 pcap 文件找到了答案。感谢您对我的问题投反对票并且没有提供任何答案。对于像我这样的其他初学者。如果您遇到类似的问题。请使用 tcpdump
这将为您提供有关设备发送和接收的数据包的详细说明。
我有 linux 系统,它通过 LTE 调制解调器连接到互联网,我通过调制解调器管理器与其通信。所以我有点难以理解消耗的数据字节数。
root@raspberrypi-cm3:~# mmcli -b 0
-------------------------
Status | connected : 'yes'
| suspended : 'no'
| interfaces: 'wwan0'
| IP timeout: '20'
-------------------------
Properties | apn: 'myapn'
| roaming: 'allowed'
| IP type: 'none'
| user: 'none'
| password: 'none'
| number: 'none'
-------------------------
Stats | Duration: '105060'
| Bytes received: '6300'
| Bytes transmitted: '6209'
root@raspberrypi-cm3:~# ping -c 1 -s 0 www.opendns.com
8 bytes from ****.****.****.*** seq =0 ttl=50
1 packet transmitted, 1 packet received, 0% packet loss
root@raspberrypi-cm3:~# mmcli -b 0
-------------------------
Status | connected : 'yes'
| suspended : 'no'
| interfaces: 'wwan0'
| IP timeout: '20'
-------------------------
Properties | apn: 'myapn'
| roaming: 'allowed'
| IP type: 'none'
| user: 'none'
| password: 'none'
| number: 'none'
-------------------------
Stats | Duration: '105090'
| Bytes received: '6512'
| Bytes transmitted: '6359'
根据调制解调器管理器的说法。我正在消耗 150 字节的数据来向 opendns 发送 ping 我收到了 212 字节的数据?
但这怎么可能。我正在使用 ICMP header 传输 8 个字节并接收 8 个字节,总共将接收到 16 个字节的数据。
谁能解释一下这些附加数据字节是从哪里来的? 当我与我的名称服务器通信时,它们只是一个 over-head 吗?如果那是 over-head 是否有某种公式可用于计算消耗的近似数据?
我的最终目标只是 cross-verify 消耗的总数据字节数
我通过使用 tcpdump
创建 pcap 文件找到了答案。感谢您对我的问题投反对票并且没有提供任何答案。对于像我这样的其他初学者。如果您遇到类似的问题。请使用 tcpdump
这将为您提供有关设备发送和接收的数据包的详细说明。