Skip to content

Commit

Permalink
Merge pull request #3 from Xunop/autocorrect-fixes
Browse files Browse the repository at this point in the history
AutoCorrect: Fix syntax errors detected in main branch
  • Loading branch information
Xunop authored Aug 30, 2024
2 parents dedd797 + 27be3f9 commit 966097a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/mss-mtu-tcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ TCP 拥塞堵塞就是根据 MSS 的大小来控制。比如拥塞控制窗口 c
## TSO(tcp-segmentation-offload)

我们抓包会发现实际上的 tcp payload 大小会超过 MTU(1500) 限制,其中一个原因(其他未了解)是开启了 [tcp-segmentation-offload 参数][4]
这个参数利用 NIC (网络接收卡)接收较大的数据包,并在硬件层面将其分成适合 MTU 的较小段发送到网络。所以我们抓到的包实际上会显示成更大的包,
这个参数利用 NIC(网络接收卡)接收较大的数据包,并在硬件层面将其分成适合 MTU 的较小段发送到网络。所以我们抓到的包实际上会显示成更大的包,
但是在网络上传输的是被分段的小包。

关闭 `tcp-segmentation-offload`,以后面测试环境为例:
Expand Down

0 comments on commit 966097a

Please sign in to comment.