#!/bin/bash # BBR Blast Smooth - Debian 12/13 暴力平滑版 # 兼顾突发性能与稳定性 🚀 set -e # 检查系统版本 if ! grep -q "Debian GNU/Linux 1[23]" /etc/os-release; then echo "❌ 本脚本仅支持 Debian 12/13" exit 1 fi echo "==> 启用 BBR v1 (更稳定)" modprobe tcp_bbr 2>/dev/null || true echo "tcp_bbr" > /etc/modules-load.d/bbr.conf echo "==> 写入 BBR 暴力平滑参数 (永久)" cat >> /etc/sysctl.conf < 应用参数" sysctl -p echo "✅ 系统已进入 BBR Blast Smooth 模式 (平滑暴力版)"