ethtool 限制接口速度错误

ethtool 限制接口速度错误

我使用 ethtool 限制带宽并使用了以下命令: sudo ethtool -s eth2 速度 500

但我收到错误消息:

无法宣传速度 500

我尝试添加双工半双工全自动协商关闭自动协商 0n

我仍然收到此消息,但找不到该问题的原因,有什么想法吗?

注意我在 ubuntu 机器上,我的 eth2 最初是 1G。

答案1

ethtool 不能作为 NIC 的带宽限制器,该参数仅设置 NIC 速度,该速度将被宣传为能够达到该速度,您不能对该参数设置任意值并期望它能正常工作。它需要非常具体的可能值列表中的一个(或多个值的组合),这些值与双工模式设置相关。摘自 ethtool 的手册页:

advertise N
              Sets  the  speed  and duplex advertised by autonegotiation. The
              argument is a hexidecimal value using one or a combination of
              the following values:
              0x001    10 Half
              0x002    10 Full
              0x004    100 Half
              0x008    100 Full
              0x010    1000 Half(not supported by IEEE standards)
              0x020    1000 Full
              0x8000   2500 Full(not supported by IEEE standards)
              0x1000   10000 Full
              0x03F    Auto

相关内容