Skip to content

Instantly share code, notes, and snippets.

@epyonavenger
Forked from sendya/ArchLinux_Kernel4.13_enable_BBR.sh
Last active June 27, 2023 12:51
  • Star 13 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Arch Linux - Enable BBR

Enabling BBR On Arch Linux 4.13+

Become Root
  • sudo su
Set Up sysctl Config File
  • echo "net.core.default_qdisc=fq" >> /etc/sysctl.d/bbr.conf
  • echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.d/bbr.conf
Load Module
  • modprobe tcp_bbr
Load Config From File
  • sysctl -p /etc/sysctl.d/bbr.conf
Check Running Config
  • sysctl net.ipv4.tcp_available_congestion_control
  • sysctl net.ipv4.tcp_congestion_control
(Optional) Reboot To Make Sure Settings Persisted
  • reboot
(Optional) Post-Reboot Check Module Is Loaded
  • lsmod | grep bbr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment