Ubuntu18.04 install Google BBR

 If the kernel version does not meet the requirements will be prompted to change the kernel, follow the prompts to go just fine, and then restart the machine can be installed

 

 

Method
1, modified system variables

echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf

2, save the entry into force

sysctl -p

3, to see whether the kernel is on BBR

sysctl net.ipv4.tcp_available_congestion_control

Already open to display the following:

# sysctl net.ipv4.tcp_available_congestion_control
net.ipv4.tcp_available_congestion_control = bbr cubic reno

4, to see whether the start BBR

lsmod | grep bbr

That following the successful launch:

# lsmod | grep bbr
tcp_bbr 20480 14

 

Method
1, modified system variables

echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf

2, save the entry into force

sysctl -p

3, to see whether the kernel is on BBR

sysctl net.ipv4.tcp_available_congestion_control

Already open to display the following:

# sysctl net.ipv4.tcp_available_congestion_control
net.ipv4.tcp_available_congestion_control = bbr cubic reno

4, to see whether the start BBR

lsmod | grep bbr

That following the successful launch:

# lsmod | grep bbr
tcp_bbr 20480 14

Guess you like

Origin www.cnblogs.com/mieba88/p/11584103.html