Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 TCP/IP 堆栈的应用程序有 2500 字节的数据要发送。它将整个数据发送到网络堆栈。使用的底层 LAN 是以太网 (802.3)。在这种情况下,数据会发生什么变化?为什么?
TCP 将拆分 2500 字节并仅发送适合 MSS 的段,从而适合 MTU 的数据包。例如,它将发送 2 个段,1480 + 1020。