Debian NIC Bonding 写入缓慢

Debian NIC Bonding 写入缓慢

我在我的 Debian 8 机器上设置了 NIC 绑定作为测试,然后遇到了以下问题。
没有绑定时,写入速度约为 90MB/s,读取速度约为 100MB/s。启用绑定后,写入速度下降到 30-35 MB/s 左右,但读取速度仍然在 90MB/s 左右。

我的内容/etc/network/interfaces

auto bond0
        iface bond0 inet static
        address 192.168.1.2
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        gateway 192.168.1.1
        dns-nameservers 192.168.1.2 8.8.8.8
        dns-domain dev
        bond-mode 0
        bond-miimon 100
        bond-slaves eth0 eth1
        bond-updelay 200
        bond-downdelay 200
        mtu 7152

服务器连接到 16 端口 TP-Link Gbit 交换机。
我更换了电缆并使用了另一台交换机,但问题仍然存在

测试的 bond-modes:
模式 0 - 读取 90MB/s 写入 30MB/s
模式 1 - 读取 100MB/s 写入 90MB/s
模式 5 - 读取 50MB/s 写入 90MB/s
模式 6 - 读取 90MB/s 写入 80MB/s

相关内容