BBR

Bottleneck Bandwidth and Round-trip propagation time

To view available congestion control algorithms on this linux kernel

1
sysctl net.ipv4.tcp_available_congestion_control

Append to /etc/sysctl.conf

1
2
3
4
5
6
7
###################################################################
# user custom configuration - NOT a default part
#
# bbr
net.ipv4.tcp_congestion_control = bbr
# qdisc fq for bbr
net.core.default_qdisc = fq

And reboot system or sudo tc qdisc replace dev <dev_name> root fq

Licensed under CC BY-NC-SA 4.0