LEEUNITYAssets / Content / 博客.asset
层级
⌄ Lee / Homepage
INSPECTOR
Type
Content
Name
博客
lee@mtftm.com ↗GitHub ↗
N011SYSTEM / LINUX

技术 / English

Enable BBR Congestion Control Algorithm on Debian

Edit etc/sysctl.conf and append at the end:

更新
2026.07.18
阅读
1 分钟
语言
English

Manual Method

Edit etc/sysctl.conf and append at the end:

net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr

Run sysctl -p to save and apply

Automatic Method

echo -e "\nnet.core.default_qdisc=fq\nnet.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf && sysctl -p