【发布时间】:2015-11-16 16:15:31
【问题描述】:
我刚刚在网络模拟器 3 中模拟了多路径 tcp 协议从客户端向服务器发送 100,000 个字节。我得到了跟踪文件 (pcap) 并在 Wire Shark 中对其进行了分析。 flow graph 很奇怪。双方如何发送和接收 ACK?
【问题讨论】:
标签: networking tcp ip wireshark ns-3
我刚刚在网络模拟器 3 中模拟了多路径 tcp 协议从客户端向服务器发送 100,000 个字节。我得到了跟踪文件 (pcap) 并在 Wire Shark 中对其进行了分析。 flow graph 很奇怪。双方如何发送和接收 ACK?
【问题讨论】:
标签: networking tcp ip wireshark ns-3
双方如何发送和接收ACK?
因为 TCP 就是这样工作的。 RFC 793 说:
Acknowledgment Number: 32 bits
If the ACK control bit is set this field contains the value of the
next sequence number the sender of the segment is expecting to
receive. Once a connection is established this is always sent.
因此,一旦建立连接,连接中的每个数据包都会设置 ACK 位。
【讨论】: