如何验证网卡的速度?


119

我刚刚在Linux中安装了新的千兆网络接口卡(NIC)。我如何知道它是否真的设置为千兆速度?我看到ethtool有一个设置速度的选项,但是我似乎无法弄清楚如何报告其当前速度。


1
ethtool -h说:ethtool DEVNAME显示有关设备的标准信息
Ryan Babchishin 2015年

Answers:


165

只需使用以下命令即可:ethtool eth0获得所需的信息。例如:

$ sudo ethtool eth0 | grep Speed

Speed: 1000Mb/s

2
如果您想以自己的速度获得所有接口的完整列表,可以使用以下命令:for i in $(netstat -i | cut -f1 -d" " | tail -n+3) ; do echo "$i: $(ethtool "$i" | grep Speed | sed 's/Speed://g')" ; done
Code-Source

如果您收到“速度:未知!” 您可能使用了错误的ethXX名称,值得仔细检查:)
rogerdpack 18/09/24

76

缺少ethtool时,可以使用内核中的信息:

cat /sys/class/net/<interface>/speed

名为eth0的接口的示例:

cat /sys/class/net/eth0/speed

5
注意:仅自2.6.33版开始可用
zhaorufei '16

6
得到“无效的论点”
-WI1

@ wi1:添加了一个示例以阐明用法。现在可以了吗?
基督徒

@Christian是的,谢谢,但是只能在我已阅读的某些界面上使用,所以我一切都很好
wi1 2017年

RHEL6已将此移植到其2.6.32内核中。
丹·普里兹

42

注意:的手册页mii-tool具有以下免责声明:

This program is obsolete. For replacement check ethtool.

使用mii-tool观看协商网络速度。

例如

eth0: no link
eth1: negotiated 100baseTx-FD, link ok

15
对于基于Debian的系统,ethtool默认情况下未安装。但这mii-tool是必不可少的“ net-tools”软件包的一部分。所以这对我来说是最好的解决方案。
mivk 2014年

1
我在mii-tool的手册页中看到“此程序已过时。有效的介质只有100baseT4、100baseTx-FD,100baseTx-HD,10baseT-FD和10baseT-HD以太网卡。要更换ethtool,请检查。” :|
rogerdpack

虽然mii-tool报告“协商100 baseTx-FD流量控制,连接正常”,既ethtoolcat /sys/class/net/eth…/speed上“同意1000 Mb / s的全双工”。这用于USB 3.0控制器,即ASIX AX88179(Linux的'ax88179_178a'驱动程序)。
安东·萨姆索诺夫

23

这里有一些很好的答案,我只是想添加一些其他选项。

1.我知道这不是您所要的(其他方式请继续阅读)。但是,如果您想知道NIC的真实性能,而不是计算机说的那样,则可以使用iperf。我通常这样做-因为您永远不知道。我最近购买了一个1Gb NIC,该NIC仅以672Mbps的速度传输,但其上行链路为1Gb。我检查过的好东西。

您将需要两台计算机。

在第一台计算机上,以服务器模式运行iperf:

iperf -s

另一方面,在客户端模式下运行iperf:

iperf -c 192.168.0.10

如果要查看全双工速度,请尝试以下方法:

iperf -d -c 192.168.0.10

用192.168.0.10代替服务器IP地址

2.在Ubuntu系统上,/var/log/kern.log内核事件的日志记录受到限制。更改时,它将记录NIC的链接速度和状态。我确信其他发行版可能会执行类似的操作或可以将其设置为执行此操作。

$ tail -n 300 /var/log/kern.log.1 | grep slave0
Aug 28 12:54:04 haze kernel: [ 9452.766248] e1000e: slave0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Aug 28 12:54:41 haze NetworkManager[921]: <info>  [1472403281.8486] device (slave0): link disconnected
Aug 28 12:54:41 haze kernel: [ 9489.898476] e1000e: slave0 NIC Link is Down

3.您可能永远都不需要走这么远,但是您可以编写提高速度的C代码。不需要经过测试的工作和root。

https://stackoverflow.com/questions/2872058/get-link-speed-programmatically

#include <stdio.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <linux/sockios.h>
#include <linux/if.h>
#include <linux/ethtool.h>
#include <string.h>
#include <stdlib.h>
int main (int argc, char **argv)
{
    int sock;
    struct ifreq ifr;
    struct ethtool_cmd edata;
    int rc;
    sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
    if (sock < 0) {
        perror("socket");
        exit(1);
    }
    strncpy(ifr.ifr_name, "eth0", sizeof(ifr.ifr_name));
    ifr.ifr_data = &edata;
    edata.cmd = ETHTOOL_GSET;
    rc = ioctl(sock, SIOCETHTOOL, &ifr);
    if (rc < 0) {
        perror("ioctl");
        exit(1);
    }
    switch (ethtool_cmd_speed(&edata)) {
        case SPEED_10: printf("10Mbps\n"); break;
        case SPEED_100: printf("100Mbps\n"); break;
        case SPEED_1000: printf("1Gbps\n"); break;
        case SPEED_2500: printf("2.5Gbps\n"); break;
        case SPEED_10000: printf("10Gbps\n"); break;
        default: printf("Speed returned is %d\n", edata.speed);
    }
    return (0);
}

1
您最终对非预期表现的解决方案是什么?
rogerdpack

如您所说,使用iperf是一个答案,如果您想获得当前速度,而不仅仅是获得潜在的速度。
droid-zilla

18

正如Khaled提到的那样,您应该能够仅将接口作为参数来运行ethtool。这将列出支持的速度,公告的速度,当前速度以及其他一些内容:

Settings for eth0:
    Supported ports: [ TP ]
    Supported link modes:   10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
                            1000baseT/Full 
    Supports auto-negotiation: Yes
    Advertised link modes:  10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
                            1000baseT/Full 
    Advertised auto-negotiation: Yes
    Speed: 1000Mb/s
    Duplex: Full
    Port: Twisted Pair
    PHYAD: 0
    Transceiver: internal
    Auto-negotiation: on
    Supports Wake-on: d
    Wake-on: d
    Current message level: 0x00000007 (7)
    Link detected: yes

您还可以运行dmesg,并在界面上使用grep,但是如果您的系统已经运行了很长时间并且当前缓冲区不再具有该信息,则此方法可能无法工作(在这种情况下,您必须grep较旧的/ var /log/dmesg.*文件):

dmesg |grep eth0
[    2.867481] e1000: eth0: e1000_probe: Intel(R) PRO/1000 Network Connection
[   19.429444] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   19.431555] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   19.449341] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.972379] e1000: eth0: e1000_set_tso: TSO is Enabled
[   29.920458] eth0: no IPv6 routers present


1

另外,为了将来参考,我注意到ethtool中的speed字段给出了NIC支持的最大速度,而mii-tool提供了NIC运行的实际速度。

[ root @  ]# mii-tool
eth0: negotiated 100baseTx-FD, link ok
[ root @  ]# ethtool eth0
Settings for eth0:
        Supported ports: [ TP ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Supported pause frame use: No
        Supports auto-negotiation: Yes
        Advertised link modes:  10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Advertised pause frame use: No
        Advertised auto-negotiation: Yes
        Speed: 1000Mb/s
        Duplex: Full
        Port: Twisted Pair
        PHYAD: 2
        Transceiver: internal
        Auto-negotiation: on
        MDI-X: off (auto)
        Supports Wake-on: pumbg
        Wake-on: g
        Current message level: 0x00000007 (7)
                               drv probe link
        Link detected: yes

更新:过了一会儿,发现mii-tool并没有返回正确的速度,因为它已经过时和过时,ethtool返回了协商的速度。


-6

ethtool eth0为我工作。例:

$ethtool eth0 |grep -i speed
Speed: 1000Mb/s

1
请在回答之前阅读其他答案。这已经在六年前说过了,是66票赞成的公认答案。
Sven

无论如何,仍然可以发布他的答案。给定答案可能不适用于某人,因此只想添加另一个适合我的情况的选项。

您的答案与接受的答案完全相同,不会增加价值。
斯文

先前选项中提到的ethtool命令在哪里?

看看最上面的答案,旁边是绿色的勾号。这是公认的答案,非常清楚地使用ethtool
斯文
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.