{"id":427,"date":"2026-06-18T12:54:47","date_gmt":"2026-06-18T12:54:47","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=427"},"modified":"2026-06-18T12:54:47","modified_gmt":"2026-06-18T12:54:47","slug":"enable-bbr-congestion-control-vps-faster-network-speeds","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/","title":{"rendered":"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">BBR (Bottleneck Bandwidth and Round-trip propagation time) is Google&#8217;s TCP congestion control algorithm that significantly improves throughput and reduces latency compared to default Linux algorithms like CUBIC. On long-distance or high-latency connections, BBR can deliver <strong>2-3x higher throughput<\/strong> and <strong>40-60% lower latency<\/strong>. This guide walks through enabling BBR on any modern Linux VPS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What BBR Does Differently<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Traditional congestion control (CUBIC, Reno) detects congestion only <em>after<\/em> packet loss occurs \u2014 they keep increasing send rate until the buffer fills and drops packets. BBR <em>models<\/em> the network path by measuring bandwidth and RTT in real time, then paces packets at the exact rate the link can sustain. The result: no bufferbloat, lower retransmit rates, and consistently higher throughput on lossy or high-latency paths.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Checking Your Current Congestion Control<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">First, check what algorithm your VPS currently uses:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Check available congestion control algorithms\nsysctl net.ipv4.tcp_available_congestion_control\n\n# Check current active algorithm\nsysctl net.ipv4.tcp_congestion_control\n\n# Check if BBR module is available\nlsmod | grep tcp_bbr\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">On most modern kernels (4.9+), BBR is either built-in or available as a loadable module. If <code>lsmod | grep tcp_bbr<\/code> returns nothing, you can load it manually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Enable BBR on Ubuntu \/ Debian<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Check your kernel version:<\/strong> <code>uname -r<\/code> \u2014 BBR requires kernel 4.9 or newer. Ubuntu 18.04+ and Debian 10+ satisfy this.<\/p>\n\n\n<!-- wp:paragraph\"&gt;-->\n<p>Edit sysctl configuration:<\/p>\n<!-- \/wp:post-content -->\n\n<!-- wp:code -->\n<pre class=\"wp-block-code\"><code># Load BBR module\nmodprobe tcp_bbr\n\n# Make it persistent\necho \"tcp_bbr\" &gt;&gt; \/etc\/modules-load.d\/bbr.conf\n\n# Set BBR as the active congestion control\necho \"net.core.default_qdisc = fq\" &gt;&gt; \/etc\/sysctl.d\/bbr.conf\necho \"net.ipv4.tcp_congestion_control = bbr\" &gt;&gt; \/etc\/sysctl.d\/bbr.conf\n\n# Apply\nsysctl -p \/etc\/sysctl.d\/bbr.conf\n<\/code><\/pre>\n<!-- \/wp:code -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Step 2: Enable BBR on CentOS \/ Rocky \/ AlmaLinux<\/h2>\n<!-- \/wp:heading -->\n\n<!-- wp:paragraph&gt;-->\n<p>Enterprise Linux 8+ kernels (4.18+) include BBR support natively:<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:code -->\n<pre class=\"wp-block-code\"><code># Load module\nmodprobe tcp_bbr\n\n# Persistent config\necho \"tcp_bbr\" | tee \/etc\/modules-load.d\/99-bbr.conf\n\n# Apply via sysctl\nsysctl -w net.core.default_qdisc=fq\nsysctl -w net.ipv4.tcp_congestion_control=bbr\n\n# Make persistent\ncat &gt;&gt; \/etc\/sysctl.d\/99-bbr.conf &lt;&lt;EOF\nnet.core.default_qdisc = fq\nnet.ipv4.tcp_congestion_control = bbr\nEOF\n<\/code><\/pre>\n<!-- \/wp:code -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Step 3: Verify BBR Is Active<\/h2>\n<!-- \/wp:heading -->\n\n<!-- wp:paragraph&gt;-->\n<p>After applying, confirm the change took effect:<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:code -->\n<pre class=\"wp-block-code\"><code>sysctl net.ipv4.tcp_congestion_control\n# Output should show: net.ipv4.tcp_congestion_control = bbr\n\n# Also check loaded modules\nlsmod | grep bbr\n# Output should show: tcp_bbr\n<\/code><\/pre>\n<!-- \/wp:code -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Benchmarking the Improvement<\/h2>\n<!-- \/wp:heading -->\n\n<!-- wp:paragraph&gt;-->\n<p>Run a quick benchmark using <code>iperf3<\/code> to compare before and after:<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:code -->\n<pre class=\"wp-block-code\"><code># On a remote server (or use a public iperf server):\niperf3 -c iperf.he.net -t 30\n\n# BBR typically shows 2-3x the throughput of CUBIC\n# on paths with 50ms+ RTT or any packet loss\n<\/code><\/pre>\n<!-- \/wp:code -->\n\n<!-- wp:paragraph&gt;-->\n<p>For real-world testing, use <code>curl -o \/dev\/null -s -w '%{speed_download}\n' https:\/\/testfile.example.com<\/code> to measure download speeds from your actual content sources.<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Additional Tuning for Maximum BBR Performance<\/h2>\n<!-- \/wp:heading -->\n\n<!-- wp:list -->\n<ul>\n<li><strong>Increase TCP buffer sizes:<\/strong> <code>sysctl -w net.core.rmem_max=134217728 net.core.wmem_max=134217728<\/code><\/li>\n<li><strong>Enable TCP fast open:<\/strong> <code>sysctl -w net.ipv4.tcp_fastopen=3<\/code><\/li>\n<li><strong>Disable slow start after idle:<\/strong> <code>sysctl -w net.ipv4.tcp_slow_start_after_idle=0<\/code><\/li>\n<li><strong>Monitor with tcptrace:<\/strong> <code>tcptrace -l \/tmp\/bbr.pcap<\/code> to visualize BBR&#8217;s bandwidth probing<\/li>\n<\/ul>\n<!-- \/wp:list -->\n\n<!-- wp:paragraph -->\n<p>VPS performance tuning is an ongoing process. After enabling BBR, test your server&#8217;s network throughput and compare providers on the <a href=\"https:\/\/virtualserversvps.com\/#providers\">VPS provider comparison table<\/a> to see which hosts deliver the best real-world performance.<\/p>\n<!-- \/wp:paragraph -->\n","protected":false},"excerpt":{"rendered":"<p>How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds BBR (Bottleneck Bandwidth and Round-trip propagation time) is Google&#8217;s TCP congestion control algorithm that significantly improves&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":0,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-427","post","type-post","status-publish","format-standard","hentry","category-performance-optimization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds - Virtual Servers VPS Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds\" \/>\n<meta property=\"og:description\" content=\"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-18T12:54:47+00:00\" \/>\n<meta name=\"author\" content=\"Virtual-Servers-Vps-Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virtual-Servers-Vps-Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/\",\"name\":\"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"datePublished\":\"2026-06-18T12:54:47+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/\",\"name\":\"Virtual Servers VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\",\"name\":\"Virtual-Servers-Vps-Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"caption\":\"Virtual-Servers-Vps-Editor\"},\"sameAs\":[\"https:\/\/virtualserversvps.com\/blog\"],\"url\":\"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds - Virtual Servers VPS Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds","og_description":"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds","og_url":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2026-06-18T12:54:47+00:00","author":"Virtual-Servers-Vps-Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Virtual-Servers-Vps-Editor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/","url":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/","name":"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"datePublished":"2026-06-18T12:54:47+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/enable-bbr-congestion-control-vps-faster-network-speeds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable BBR Congestion Control on Your VPS for 3x Faster Network Speeds"}]},{"@type":"WebSite","@id":"https:\/\/virtualserversvps.com\/blog\/#website","url":"https:\/\/virtualserversvps.com\/blog\/","name":"Virtual Servers VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0","name":"Virtual-Servers-Vps-Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","caption":"Virtual-Servers-Vps-Editor"},"sameAs":["https:\/\/virtualserversvps.com\/blog"],"url":"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/"}]}},"_links":{"self":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/427","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/comments?post=427"}],"version-history":[{"count":1,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/427\/revisions"}],"predecessor-version":[{"id":457,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/427\/revisions\/457"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=427"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=427"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=427"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}