更改每个连接的拥塞控制算法

发布于 2024-10-11 23:44:49 字数 190 浏览 2 评论 0原文

目前,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

伪装你 2024-10-18 23:44:49

这是使用 -Z 选项在 iperf 中完成的 - 补丁是 此处

这是它的实现方式(PerfSocket.cpp,第 93 行):

    if ( isCongestionControl( inSettings ) ) {
#ifdef TCP_CONGESTION
    Socklen_t len = strlen( inSettings->mCongestion ) + 1;
    int rc = setsockopt( inSettings->mSock, IPPROTO_TCP, TCP_CONGESTION,
                 inSettings->mCongestion, len);
    if (rc == SOCKET_ERROR ) {
        fprintf(stderr, "Attempt to set '%s' congestion control failed: %s\n",
            inSettings->mCongestion, strerror(errno));
        exit(1);
    }
#else
    fprintf( stderr, "The -Z option is not available on this operating system\n");
#endif

其中 mCongestion 是一个包含要使用的算法名称的字符串

This is done in iperf using the -Z option - the patch is here.

This is how it is implemented (PerfSocket.cpp, line 93) :

    if ( isCongestionControl( inSettings ) ) {
#ifdef TCP_CONGESTION
    Socklen_t len = strlen( inSettings->mCongestion ) + 1;
    int rc = setsockopt( inSettings->mSock, IPPROTO_TCP, TCP_CONGESTION,
                 inSettings->mCongestion, len);
    if (rc == SOCKET_ERROR ) {
        fprintf(stderr, "Attempt to set '%s' congestion control failed: %s\n",
            inSettings->mCongestion, strerror(errno));
        exit(1);
    }
#else
    fprintf( stderr, "The -Z option is not available on this operating system\n");
#endif

Where mCongestion is a string containing the name of the algorithm to use

み青杉依旧 2024-10-18 23:44:49

看来这可以通过 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

﹏半生如梦愿梦如真 2024-10-18 23:44:49

在较新版本的 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.

水波映月 2024-10-18 23:44:49

据我所知,没有办法改变每个进程的默认 TCP 拥塞控制(我希望 bash 脚本能够说该脚本执行的任何内容都应该默认拥塞控制 lp)。

我知道的唯一用户模式 ​​API 如下:

setsockopt(socket, SOL_TCP, TCP_CONGESTION, congestion_alg, strlen(congestion_alg));

其中 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:

setsockopt(socket, SOL_TCP, TCP_CONGESTION, congestion_alg, strlen(congestion_alg));

where socket is an open socket, and congestion_alg is a string containing one of the words in /proc/sys/net/ipv4/tcp_allowed_congestion_control.

森末i 2024-10-18 23:44:49

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文