Last active
May 25, 2018 10:58
-
-
Save hangox/1b7c6b1e675cba36e654e5d9f546085d to your computer and use it in GitHub Desktop.
打开bbr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf | |
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf | |
sysctl -p | |
sysctl net.ipv4.tcp_available_congestion_control | |
sysctl net.ipv4.tcp_congestion_control | |
lsmod | grep bbr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment