Simulation of TCP NewReno vs. TCP Cubic with Varying Round Trip Time (RTT) and Throughput Analysis using NS-3
Simulation of TCP NewReno vs. TCP Cubic with Varying Round Trip Time (RTT) and Throughput Analysis using NS-3 2. ONE-PAGE WRITE-UP 2.1 Introduction The Transmission Control Protocol (TCP) is the backbone of reliable communication over the Internet. It uses congestion control algorithms to manage traffic and prevent network collapse. This experiment compares two widely-used TCP algorithms — NewReno and Cubic — under three different Round Trip Time (RTT) conditions using the NS-3 network simulator, measuring throughput, convergence time, and packet loss. 2.2 TCP NewReno TCP NewReno improves TCP Reno's Fast Recovery by correctly handling multiple packet losses within one congestion window. It uses AIMD (Additive Increase Multiplicative Decrease): the congestion window grows by 1 MSS per RTT during slow start / congestion avoidance and is halved on loss. Since throughput ∝ 1/RTT (Mathis equation), NewReno underperforms on high-latency links. 2.3 TCP Cubic TCP Cubi...