phxc8 发表于 2023-2-19 20:34:25

bbr/bbrplus/bbr2/锐速内核一键安装脚本

预先准备
centos:yum install ca-certificates wget -y && update-ca-trust force-enable
debian/ubuntu:apt-get install ca-certificates wget -y && update-ca-certificates不卸载内核版本wget -O tcpx.sh "https://github.com/ylx2016/Linux-NetSpeed/raw/master/tcpx.sh" && chmod +x tcpx.sh && ./tcpx.sh
卸载内核版本
wget -O tcp.sh "https://github.com/ylx2016/Linux-NetSpeed/raw/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
关联action自动编译内核https://github.com/ylx2016/kernel/双持bbr+锐速
bbr 添加
echo "net.core.default_qdisc=fq" >> /etc/sysctl.d/99-sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.d/99-sysctl.conf
sysctl -p编辑锐速文件nano /appex/etc/config检测代码有BUG,如果锐速正常 运行查看bash /appex/bin/lotServer.sh status | grep "LotServer"检查bbr 内核默认bbr算法不会有输出lsmod | grep bbr检查centos安装内核grubby --info=ALL|awk -F= '$1=="kernel" {print i++ " : " $2}'查看当前支持TCP算法cat /proc/sys/net/ipv4/tcp_allowed_congestion_control查看当前运行的算法
cat /proc/sys/net/ipv4/tcp_congestion_control查看当前队列算法
sysctl net.core.default_qdisc命令: uname -a作用: 查看系统内核版本号及系统名称命令: cat /proc/version
作用: 查看目录"/proc"下version的信息,也可以得到当前系统的内核版本号及系统名称真实队列查看? 更改队列算法可能需要重启生效
tc -s qdisc show

/etc/sysctl.d/99-sysctl.conf
sysctl --system
页: [1]
查看完整版本: bbr/bbrplus/bbr2/锐速内核一键安装脚本