developer

Change TCP congestion control to BBR (Bottleneck Bandwidth and RTT)

Mar 27th, 2022 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # Current
  2. sysctl net.ipv4.tcp_congestion_control
  3.  
  4. # Available
  5. sysctl net.ipv4.tcp_available_congestion_control
  6.  
  7. # Change TCP congestion control to BBR (Bottleneck Bandwidth and RTT)
  8. sudo vi /etc/sysctl.conf
  9.  
  10. Append the following two lines:
  11.  
  12. net.core.default_qdisc=fq
  13. net.ipv4.tcp_congestion_control=bbr
  14.  
  15. reboot
Add Comment
Please, Sign In to add comment