Zero's Blog - 2022年12月 https://l2dy.sourceforge.io/2022/12/ Linux 4.20+ 开启 BBR TCP 拥塞控制算法 https://l2dy.sourceforge.io/2022/12/27/linux-4-10-tcp-bbr.html 2022-12-27T15:57:00+00:00 参考谷歌提供的文档,对于高负载(如何定义?)的服务器建议同时使用 fq qdisc。# copy following into /etc/sysctl.d/98-tcp-bbr.conf net.core.default_qdisc = fq net.ipv4.tcp_congestion_control = bbr普通负载的虚拟机可以直接用默认的 fq_codel qdisc,只配置 tcp_congestion_control。#net.core.default_qdisc = fq_codel net.ipv4.tcp_congestion_control = bbr注意对于 qdisc 的修改需要重启服务器生效。