This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. {{tag>centos kernel network bbr}} ====== Enable BBR ====== Setup the flags in sysctl.conf and reload sysctl. <sxh bash> echo 'net.core.default_qdisc=fq' | tee -a /etc/sysctl.conf echo 'net.ipv4.tcp_congestion_control=bbr' | tee -a /etc/sysctl.conf sysctl -p </sxh> ====== Check if BBR is active ====== <sxh bash> sysctl net.ipv4.tcp_available_congestion_control sysctl -n net.ipv4.tcp_congestion_control lsmod | grep bbr </sxh>