Linux – How to check what congestion algorithm supported on the linux kernel

compilingkernellinuxtcp

I want to enable google bbr on my VPS. But I don't know this feature is integrated on linux kernel or not. How can I check it?

Best Answer

Below command used to find the available tcp congestion control algorithms supported.

1. cat /proc/sys/net/ipv4/tcp_available_congestion_control

bic reno cubic

2. This command used to find which tcp congestion control configured for your Linux.

sysctl net.ipv4.tcp_congestion_control

3. Below command is used to change to desired one from the available list.

sysctl -w net.ipv4.tcp_congestion_control=bic
Related Question