1/10 Gigabit 卡的网络速度

射线

我有一台带有“NetXtreme II BCM57800 1/10 Gigabit Ethernet”网卡的计算机,我试图以 10 Gigabits/s 的速度连接,但它以 1 Gigabits/s 的速度连接。它正在运行 Ubuntu 18.04.4。

在另一台标有“10 Gigabit Ethernet”的不同网卡的计算机上,我连接了电缆,打开了链接,使用静态 IP 地址编辑了 Netplan YAML 文件,连接从一开始就正常工作。也就是说ethtool,我看到了“速度:10000Mb/s”。

对第一台计算机应用相同的步骤只能得到“速度:1000Mb/s”。所以,我想知道我是否必须做些什么来“打开”10 Gb 以太网?也就是说,名称中的“1/10”是否意味着我需要明确地做某事。当我运行时ethtool,我看到以下内容:

Supported link modes:   10baseT/Half 10baseT/Full 
                        100baseT/Half 100baseT/Full 
                        1000baseT/Full 

所以,这不是很令人鼓舞。

在这台计算机上,我连接了两个端口,这两个端口都有这个问题。所以,除非我有两条有问题的电缆,否则我认为这不可能是电缆问题。此外,它是连接到我之前提到的另一台计算机的同一个 10 GBaseT 交换机;所以我认为/希望这不是交换机的问题。

无论如何帮助将不胜感激!

编辑1:

$ sudo lshw -C network
  *-network:0                       
       description: Ethernet interface
       product: NetXtreme II BCM57800 1/10 Gigabit Ethernet
       vendor: Broadcom Inc. and subsidiaries
       physical id: 0
       bus info: pci@0000:01:00.0
       logical name: eno1
       version: 10
       serial: [...]
       size: 1Gbit/s
       capacity: 10Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm vpd msi msix pciexpress bus_master cap_list rom ethernet physical tp 100bt 100bt-fd 1000bt-fd 10000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=bnx2x driverversion=1.712.30-0 duplex=full firmware=FFV14.05.01 bc 7.14.11 phy 1.45 ip=[...] latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
       resources: irq:99 memory:99000000-997fffff memory:99800000-99ffffff memory:9a030000-9a03ffff memory:95a00000-95a7ffff
  *-network:1 DISABLED
       description: Ethernet interface
       product: NetXtreme II BCM57800 1/10 Gigabit Ethernet
       vendor: Broadcom Inc. and subsidiaries
       physical id: 0.1
       bus info: pci@0000:01:00.1
       logical name: eno2
       version: 10
       serial: [...]
       capacity: 10Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm vpd msi msix pciexpress bus_master cap_list rom ethernet physical tp 100bt 100bt-fd 1000bt-fd 10000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=bnx2x driverversion=1.712.30-0 firmware=FFV14.05.01 bc 7.14.11 phy 1.45 latency=0 link=no multicast=yes port=twisted pair
       resources: irq:111 memory:98000000-987fffff memory:98800000-98ffffff memory:9a020000-9a02ffff memory:95a80000-95afffff
  *-network:2
       description: Ethernet interface
       product: NetXtreme II BCM57800 1/10 Gigabit Ethernet
       vendor: Broadcom Inc. and subsidiaries
       physical id: 0.2
       bus info: pci@0000:01:00.2
       logical name: eno3
       version: 10
       serial: [...]
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm vpd msi msix pciexpress bus_master cap_list rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=bnx2x driverversion=1.712.30-0 duplex=full firmware=FFV14.05.01 bc 7.14.11 ip=[...] latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
       resources: irq:111 memory:97000000-977fffff memory:97800000-97ffffff memory:9a010000-9a01ffff memory:95b00000-95b7ffff
  *-network:3
       description: Ethernet interface
       product: NetXtreme II BCM57800 1/10 Gigabit Ethernet
       vendor: Broadcom Inc. and subsidiaries
       physical id: 0.3
       bus info: pci@0000:01:00.3
       logical name: eno4
       version: 10
       serial: [...]
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm vpd msi msix pciexpress bus_master cap_list rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=bnx2x driverversion=1.712.30-0 duplex=full firmware=FFV14.05.01 bc 7.14.11 ip=[...] latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
       resources: irq:132 memory:96000000-967fffff memory:96800000-96ffffff memory:9a000000-9a00ffff memory:95b80000-95bfffff
海尼玛

BCM57800 卡有四个端口,其中两个端口的运行速度最高可达 1G,另外两个端口的运行速度最高可达 10G,具体取决于连接的布线。Ethtool 目前告诉我们您的布线不适合 10G 操作。

  • 该卡必须位于 PCI Express 3.0 x8 插槽中。

  • 对于 1G 操作,需要使用 5e 类或更高级别的电缆。

  • 对于 10G 操作,您必须使用 6a 类或 7 类电缆(尽管至少可以使用 6 类电缆)。

  • 对于10G运行,路径中的所有网络设备,即:交换机等也必须是10G设备。

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

基于H110的主板上的低Internet(有线)速度

来自分类Dev

联想ideapad 110 - 无法检测无线网络适配器

来自分类Dev

缺少MSCVR110.dll

来自分类Dev

NullPointerException 和跳过 110 帧

来自分类Dev

限制WebSocket的网络速度

来自分类Dev

网络速度慢

来自分类Dev

网络下载速度减半

来自分类Dev

GK110 GPU上的最大扭曲

来自分类Dev

MariaDB gcomm后端连接失败110

来自分类Dev

REP-110:无法打开文件

来自分类Dev

无法加载DLL'VSPerf110.dll'

来自分类Dev

PowerEdge T110 II的RAM升级

来自分类Dev

nginx connect()失败(110:连接超时)

来自分类Dev

运行make时出现错误110

来自分类Dev

无法打印到佳能 ip110

来自分类Dev

Javascript将110,000变成110K,而不是0.11M

来自分类Dev

网络速度比ISP提供的速度更快

来自分类Dev

智能卡访问速度

来自分类Dev

更加真实的网络速度指标

来自分类Dev

LXC容器网络速度问题

来自分类Dev

请求与网络速度相关的时间?

来自分类Dev

静态内容在上游超时(110:连接超时)?

来自分类Dev

MSVCP110D.dll和Visual Studio 2013

来自分类Dev

GLSL从v110移植到v150?

来自分类Dev

如何在NSMutableData的末尾附加3个字节的“ 110”

来自分类Dev

套接字错误110:连接超时-Android Delphi SMTP Gmail

来自分类Dev

110连接超时-使用play 2.1.3和nginx

来自分类Dev

110连接超时-使用play 2.1.3和nginx

来自分类Dev

msvcr110d.dll中未处理的异常