diff --git a/vpnsetup_centos.sh b/vpnsetup_centos.sh index 7b355c9..ec789fc 100755 --- a/vpnsetup_centos.sh +++ b/vpnsetup_centos.sh @@ -549,7 +549,8 @@ net.core.rmem_max = 16777216 net.ipv4.tcp_rmem = 4096 87380 16777216 net.ipv4.tcp_wmem = 4096 87380 16777216 EOF - if modprobe -q tcp_bbr; then + if modprobe -q tcp_bbr \ + && printf '%s\n%s' "4.20" "$(uname -r)" | sort -C -V; then cat >> /etc/sysctl.conf <<'EOF' net.core.default_qdisc = fq net.ipv4.tcp_congestion_control = bbr diff --git a/vpnsetup_ubuntu.sh b/vpnsetup_ubuntu.sh index fa55400..186b2db 100755 --- a/vpnsetup_ubuntu.sh +++ b/vpnsetup_ubuntu.sh @@ -499,7 +499,8 @@ net.core.rmem_max = 16777216 net.ipv4.tcp_rmem = 4096 87380 16777216 net.ipv4.tcp_wmem = 4096 87380 16777216 EOF - if modprobe -q tcp_bbr; then + if modprobe -q tcp_bbr \ + && printf '%s\n%s' "4.20" "$(uname -r)" | sort -C -V; then cat >> /etc/sysctl.conf <<'EOF' net.core.default_qdisc = fq net.ipv4.tcp_congestion_control = bbr