简体   繁体   English

在Linux范围内更改TCP拥塞控制算法系统是否会影响已经建立的连接?

[英]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 ? 如果按如下所示更改系统范围的TCP拥塞控制算法,是否还会影响已经建立的连接? Is there any adverse impact on them or it occurs seamlessly ? 对它们有不利影响还是无缝发生?

# echo reno > /proc/sys/net/ipv4/tcp_congestion_control #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. 原因是更改算法只会影响当前流量的处理,更改数据包后的处理将基于您选择的算法。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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