tcp 丢包分析

tcp 丢包分析

网卡丢包:

ethtool -S enp65s0np0 | grep -v ": 0" | grep -i err

rx_err_lane_0_phy: 8903968

rx_err_lane_1_phy: 4966332

rx_err_lane_2_phy: 8617141

rx_err_lane_3_phy: 3389624

ethtool -S enp65s0np0 | grep -v ": 0" | grep -i drop

ethtool -S enp65s0np0 | grep -v ": 0" | grep -i out

rx_out_of_buffer: 5754794

outbound_pci_stalled_wr: 2

outbound_pci_stalled_rd_events: 3

outbound_pci_stalled_wr_events: 195

ethtool -S enp65s0np0 | grep -v ": 0" | grep -i discard

rx_discards_phy: 82701994

rx_prio0_discards: 82701994

ethtool -S enp65s0np0 | grep -v ": 0" | grep -i pause

tx_pause_ctrl_phy: 4972302

tx_global_pause: 4972302

tx_global_pause_duration: 248784369

网卡驱动丢包:

ifconfig enp65s0np0

enp65s0np0: flags=6211<UP,BROADCAST,RUNNING,SLAVE,MULTICAST> mtu 1500

ether cc:40:f3:97:2e:9c txqueuelen 1000 (Ethernet)

RX packets 140579183255 bytes 198917938320559 (180.9 TiB)

RX errors 0 dropped 5754796 overruns 0 frame 0

TX packets 84004722862 bytes 110666821867388 (100.6 TiB)

TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

内核丢包:

nettrace-1.2.11-1.tl3.aarch64

相关推荐
桌面运维家1 天前
理解 Linux Front Page:构建动态Web首页指南
linux·运维·服务器
旺仔.2911 天前
死锁 详解
linux·开发语言·计算机网络·安全
季明洵1 天前
预处理详解(上)
linux·c语言·数据结构·预定义
toooooop81 天前
linux常用命令nano和vim有啥区别
linux·运维·vim
i建模1 天前
在Ubuntu中解压ZIP文件
linux·chrome·ubuntu
小赖同学啊1 天前
飞书集成openclaw
服务器·飞书
BUTCHER51 天前
Netty Channel 生命周期
java·服务器·网络
骥龙1 天前
第四篇:部署阶段安全加固——从裸奔到生产级防护
运维·网络·人工智能·安全
@土豆1 天前
ETCD集群部署指导(复制粘贴即可完成构建)
服务器·数据库·etcd
big_rabbit05021 天前
网络IO模型?什么是多路复用IO?select和epoll 的差别?
网络