Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 362 Bytes

faster_tcp.md

File metadata and controls

17 lines (14 loc) · 362 Bytes

Use google's TCP BBR, it may increase network speed by fixing some TCP's limitations

sudo tee /etc/sysctl.d/10-bbr-networking.conf <<EOF
# Make networking faster
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
EOF

# apply changes
sudo sysctl --system

To check (should show bbr)

sysctl net.ipv4.tcp_congestion_control