分类
标签
alpine api bbr bilibili blue archive codeforces combination data structure dfs discrete divide edgeone fenwick games greedy icpc introduction inversion javascript leetcode linux loli math misc moe music netcup python simulate sliding window sort string tcp tls torrent trisection vertex wordpress xcpc zsh
以下所有操作均需在 root 用户下执行,非 root 先切换到 root 用户
sudo -i随后配置开启 BBR
nano /etc/sysctl.d/00-bbr.conf
# 添加如下文本后保存退出net.core.default_qdisc=fqnet.ipv4.tcp_congestion_control=bbr以上操作需要重启生效
reboot重新连接后,可以运行如下指令。如果输出中与此类似就是生效了。
❯ lsmod | grep bbrtcp_bbr 20480 20❯ sysctl net.core.default_qdiscnet.core.default_qdisc = fq❯ sysctl net.ipv4.tcp_congestion_controlnet.ipv4.tcp_congestion_control = bbr至此,我们已经在 Alpine 中成功配置了 TCP BBR 模块。
Alpine Linux 开启 TCP BBR
https://zrn.net/posts/alpine-linux-open-tcp-bbr/