安装在 Ubuntu 服务器 22.04 上的网卡 Intel X550T 不会公布所有可用速度,因此(如果这是原因)自动协商无法连接到可用速度(源是 2.5GB 连接):
Supported link modes: 100baseT/Full
1000baseT/Full
10000baseT/Full
2500baseT/Full
5000baseT/Full
Supported pause frame use: Symmetric
Supports auto-negotiation: Yes
Supported FEC modes: Not reported
Advertised link modes: 100baseT/Full
1000baseT/Full
10000baseT/Full
Advertised pause frame use: Symmetric
Advertised auto-negotiation: Yes
Advertised FEC modes: Not reported
Speed: 1000Mb/s
Duplex: Full
Auto-negotiation: on
我该怎么办,在寻找解决方案后似乎是驱动问题,但另一方面似乎 Ubuntu 22.04 中的内核应该完全支持这张卡?
编辑:按照@waltinator的建议,我通过运行修改了卡的速度:
sudo ethtool -s <name_of_card> speed 2500
上面的命令按预期将速度提高到 2.5GB。但是,我无法关闭自动协商(@waltinator 评论似乎建议这样做);如果我运行命令:
sudo ethtool -s <name_of_card> autoneg off speed 2500 duplex full
或者:
sudo ethtool -s <name_of_card> autoneg off speed 2500
或者:
sudo ethtool -s <name_of_card> autoneg off
没有错误但没有效果,速度和自动协商没有改变。
编辑2:经过一些测试,使用上述命令更改链接模式会导致随机断开连接。也许关闭自动协商可以解决这个问题,但是尝试关闭卡上的自动协商没有效果(我想如果开关需要自动协商,卡上的自动协商参数不能关闭,我是不允许在开关上更改)。