简体   繁体   中英

Does changing TCP congestion control algorithm system wide in linux affect already established connections?

If I change system wide TCP congestion control algorithm as shown below, does it affect already established connections also ? Is there any adverse impact on them or it occurs seamlessly ?

# echo reno > /proc/sys/net/ipv4/tcp_congestion_control

The answer is "NO". Changing the congestion algorithm at run time do not effect already established connections.

I have tested changing and selecting the best congestion algorithm for our infrastructure.

The reason is that changing the algorithm will only effect the handling of current traffic, and after changing the packets handling will be based on the algorithm you selected.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM