更改每个连接的拥塞控制算法
目前,Linux 中的“sysctl”命令在全局范围内更改了整个系统的拥塞控制算法。但是拥塞控制(TCP 窗口大小和其他类似参数不同)通常是针对每个 TCP 连接进行的。所以我的问题是:
- 是否存在一种方法可以更改每个 TCP 连接使用的拥塞控制算法?
或者我在这里错过了一些琐碎的事情?如果是这样,那是什么?
The command 'sysctl' in linux as of now changes the congestion control algorithm globally for the entire system. But congestion control, where the TCP window size and other similar parameters are varied, are normally done per TCP connection. So my question is:
- Does there exist a way where I can change the congestion control algorithm being used per TCP connection?
Or am I missing something trivial here? If so, what is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是使用 -Z 选项在 iperf 中完成的 - 补丁是 此处。
这是它的实现方式(PerfSocket.cpp,第 93 行):
其中 mCongestion 是一个包含要使用的算法名称的字符串
This is done in iperf using the -Z option - the patch is here.
This is how it is implemented (PerfSocket.cpp, line 93) :
Where mCongestion is a string containing the name of the algorithm to use
看来这可以通过 get/setsockopt 实现。我找到的唯一文档是:
http://lkml.indiana.edu/hypermail/linux/net/0811.2 /00020.html
It seems this is possible via get/setsockopt. The only documentation i found is:
http://lkml.indiana.edu/hypermail/linux/net/0811.2/00020.html
在较新版本的 Linux 中,可以使用 ip route ... congctl 设置特定目的地的拥塞控制。
如果有人熟悉这种方法,请编辑这篇文章。
In newer versions of Linux it is possible to set the congestion control for a specific destination using ip route ... congctl .
If anyone are familiar with this approach, please edit this post.
据我所知,没有办法改变每个进程的默认 TCP 拥塞控制(我希望 bash 脚本能够说该脚本执行的任何内容都应该默认拥塞控制
lp
)。我知道的唯一用户模式 API 如下:
其中
socket
是一个打开的套接字,congestion_alg
是一个包含/ 中的单词之一的字符串proc/sys/net/ipv4/tcp_allowed_congestion_control
。As far as I know, there's no way to change default TCP congestion control per process (I'd love bash script being able to say that whatever is executed by this script should default the congestion control
lp
).The only user mode API I'm aware of is as follows:
where
socket
is an open socket, andcongestion_alg
is a string containing one of the words in/proc/sys/net/ipv4/tcp_allowed_congestion_control
.Linux 有可插入拥塞算法,它可以动态更改使用的算法,但这是系统范围的设置不是每个连接。
Linux has pluggable congestion algorithms which can change the algorithm used on the fly but this is a system wide setting not per connection.