Networking 计算机网络:第70段在哪一轮传输中发送?

Networking 计算机网络:第70段在哪一轮传输中发送?,networking,tcp,protocols,Networking,Tcp,Protocols,在练习一些练习的时候,我遇到了下面的练习,我简直无法控制自己。看看这个解决方案,我不明白他们是如何得出结论的,即数据包32到63是在第六轮传输中发送的。63是如何计算的 第70段在哪一轮传输中发送? 解决方案: During the 1st transmission round, packet 1 is sent; packet 2-3 are sent in the 2nd transmission round; packets 4-7 are sent in the 3rd trans

在练习一些练习的时候,我遇到了下面的练习,我简直无法控制自己。看看这个解决方案,我不明白他们是如何得出结论的,即数据包32到63是在第六轮传输中发送的。63是如何计算的

第70段在哪一轮传输中发送?

解决方案:

During the 1st transmission round, packet 1 is sent; 
packet 2-3 are sent in the 2nd transmission round; 
packets 4-7 are sent in the 3rd transmission round; 
packets 8-15 are sent in the 4th transmission round;
packets 16 to 31 are sent in the 5th transmission round; 
packets 32 to 63 are sent in the 6th transmission round; 
packets 64 to 96 are sent in the 7th transmission round. 
Thus packet 70 is sent in the 7th transmission round.

通过提供的练习链接,我们可以看到在练习1的第6轮传输中,TCP传输从慢速启动移动到拥塞避免(我们可以看到图形变化梯度,下一段解释原因)

根据RFC 2001 Article.1和.2(),我们可以看到,当我们进入TCP拥塞避免时,拥塞窗口大小(cwnd),每个传输轮的段大小将仅增加1

再次查看练习(以及上面的注释),我们看到正在传输的段大小如下(请注意数据包是包含的,因此第6轮传输包含32个数据包,第7轮传输包含33个数据包):


由于数据包是包含的,因此练习是正确的,它指出数据包32,一直到并包括数据包63(因此,让我们设想数据包63的结尾基本上是数据包64的开头)构成了第6轮传输。

提供了练习链接,在练习1中,我们可以看到TCP传输在传输第6轮时从慢速启动转变为拥塞避免(我们可以看到图形变化梯度,下一段解释原因)

根据RFC 2001 Article.1和.2(),我们可以看到,当我们进入TCP拥塞避免时,拥塞窗口大小(cwnd),每个传输轮的段大小将仅增加1

再次查看练习(以及上面的注释),我们看到正在传输的段大小如下(请注意数据包是包含的,因此第6轮传输包含32个数据包,第7轮传输包含33个数据包):


由于数据包是包含的,所以练习是正确的,说明数据包32,一直到并包括数据包63(因此,让我们设想数据包63的结尾基本上是数据包64的开头)构成了第6轮传输。

什么练习?你能提供一个链接吗?我看不出这有什么关系,但练习来自什么练习?你能提供一个链接吗?我不知道这有什么关系,但练习来自
During the 1st transmission round, packet 1 is sent;      | Current Window Size of (1)
packet 2-3 are sent in the 2nd transmission round;        | Increase window by 1 segment (2)
packets 4-7 are sent in the 3rd transmission round;       | Increase window by 2 segments (4)
packets 8-15 are sent in the 4th transmission round;      | Increase window by 4 segments (8)
packets 16 to 31 are sent in the 5th transmission round;  | Increase window by 8 segments (16)
packets 32 to 63 are sent in the 6th transmission round;  | Increase window by 16 segments (32)
*** Here we switch to Congestion Avoidance
packets 64 to 96 are sent in the 7th transmission round.  | Increase windows by 1 segment (33)