0

我尝试使用tc来模拟数据包损坏并通过 ifconfig 或 cat /proc/net/dev 查看网络接口统计信息。

数据包损坏按预期工作,但是我想知道我们是否可以通过 ifconfig 检查结果?

步骤 1. 创建数据包损坏

~$ tc qdisc add dev eth0 root netem corrupt 10%

步骤 2. 发送数据包

~$ ping 8.8.8.8

步骤 3. 检查 ping 结果,icmp_seq 85,89 和 90 如预期丢失。

64 bytes from 8.8.8.8: icmp_seq=84 ttl=109 time=7.41 ms
64 bytes from 8.8.8.8: icmp_seq=86 ttl=109 time=7.45 ms
64 bytes from 8.8.8.8: icmp_seq=87 ttl=109 time=7.45 ms
64 bytes from 8.8.8.8: icmp_seq=89 ttl=109 time=7.51 ms
64 bytes from 8.8.8.8: icmp_seq=91 ttl=109 time=7.43 ms

步骤 4. 检查网络接口

~$ ifconfig

eth0: flags=4163 mtu 9001
inet 10.100.100.41 netmask 255.255.255.224 broadcast 10.100.100.63
inet6 fe80::af:d5ff:fe32:eb24 prefixlen 64 scopeid 0x20
ether 02:af:d5:33:eb:24 txqueuelen 1000 (Ethernet)
RX packets 522086 bytes 693054828 (693.0 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 238600 bytes 23556732 (23.5 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

我想知道为什么ifconfig显示没有数据包错误,丢弃?

任何意见,将不胜感激。

4

0 回答 0