CUBIC for Fast Long-Distance Networks
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://ipfyi.com/iframe/entity//" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://ipfyi.com/entity//
Add a dynamic SVG badge to your README or docs.
[](https://ipfyi.com/entity//)
Use the native HTML custom element.
I. Rhee, L. Xu, S. Ha, A. Zimmermann, L. Eggert, R. Scheffenegger · 2018-02
Abstract
RFC 8312 documents CUBIC, a TCP congestion control algorithm designed for high-bandwidth, long-delay networks. CUBIC uses a cubic function to compute the congestion window size, allowing faster window growth than the standard AIMD algorithm while remaining fair to legacy TCP flows.
Why This RFC Matters
CUBIC became the default TCP congestion control algorithm in Linux 2.6.19 (2006) and subsequently in most server operating systems, meaning it handles the majority of the world's internet traffic. Its key insight is that standard AIMD congestion control leaves bandwidth underutilized on high-bandwidth, high-latency paths (e.g., 10 Gbps transcontinental links) because the window grows too slowly after a loss event. CUBIC's cubic growth function reaches the previous window size quickly and then probes cautiously for more, achieving significantly higher throughput on these 'fat long-distance pipes' while remaining TCP-friendly. RFC 8312 documenting CUBIC as Informational reflects that it was already a de facto standard long before formal IETF publication.