Debian testing 部署 BBR TCP拥塞算法
Linux 内核4.9 rc8 之后引入了BBR 算法,按以下步骤可以在KVM VPS上打开 增加experimental 源
deb http://ftp.us.debian.org/debian experimental main
安装新版内核:
apt update
apt -t experimental install linux-image-4.9.0-rc8-amd64-unsigned
增加内核参数开启BBR:
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
保存生效:
sysctl -p
执行下面命令如果看到有bbr,即已开启:
sysctl net.ipv4.tcp_available_congestion_control
看一下内核模块有没有加载
lsmod | grep bbr
- 原文作者:Hello,world!
- 原文链接:https://330220.xyz/post/Debian-testing-%E9%83%A8%E7%BD%B2-BBR-TCP%E6%8B%A5%E5%A1%9E%E7%AE%97%E6%B3%95/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. 进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。