We have configured the BBR settings on all our RHEL 8.6 machines as follows: (according to Red Hat's documentation [https://access.redhat.com/solutions/3713681]). The goal is to assess whether the BBR configuration provides any network improvements. If not, we plan to revert to the default Cubic settings
sysctl -w net.ipv4.tcp_congestion_control=bbr
echo "net.ipv4.tcp_congestion_control = bbr" >> /etc/sysctl.conf
modprobe tcp_bbr
in order to revert the changes I wrote the following steps
sysctl -w net.ipv4.tcp_congestion_control=cubic
delete from /etc/sysctl.conf the line with net.ipv4.tcp_congestion_control = bbr
but I am not sure how to revert the changes about modprobe tcp_bbr
do we need just do:
modprobe tcp_cubic
or
rmmod tcp_bbr
rmmod: ERROR: Module tcp_bbr is in use
or else ?