Skip to content

Instantly share code, notes, and snippets.

@viliampucik
Created August 22, 2020 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viliampucik/e13ded6a4f6bddf343e5726142e0220f to your computer and use it in GitHub Desktop.
Save viliampucik/e13ded6a4f6bddf343e5726142e0220f to your computer and use it in GitHub Desktop.
TCP BBR
# Enable TCP BBR module
echo tcp_bbr | sudo tee /etc/modules-load.d/tcp-bbr.conf
# Set TCP to use BBR
sudo tee /etc/sysctl.d/99-tcp-bbr.conf > /dev/null <<'EOF'
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
EOF
# Apply the changes
sudo modprobe tcp_bbr
sudo sysctl --system
@viliampucik
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment