I was just studying at TCP congestion control. When I read chapter about slow start, I turned to RFC5681, I found that the standard showed that
- If SMSS > 2190 bytes:IW = 2 * SMSS bytes and MUST NOT be more than 2 segments
- If (SMSS > 1095 bytes) and (SMSS <= 2190 bytes): IW = 3 * SMSS bytes and MUST NOT be more than 3 segments
- if SMSS <= 1095 bytes: IW = 4 * SMSS bytes and MUST NOT be more than 4 segments
But I tested on my ubuntu server as well as looking up material on google, I found that the init cwnd
was about 10.
I just can't understand it.Help.