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

评论

ethtool -h说:ethtool DEVNAME显示有关设备的标准信息

#1 楼

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

$ sudo ethtool eth0 | grep Speed

Speed: 1000Mb/s


评论


如果要以theyr速度获得所有接口的完整列表,可以使用以下命令:for $(netstat -i | cut -f1 -d“” | tail -n + 3)中的i;做echo“ $ i:$(ethtool” $ i“ | grep Speed | sed's / Speed:// g')”;完成

–代码源
17年11月11日在20:13

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

–rogerdpack
18年9月24日在16:00

这只会给您当前网络配置的协商速度(因此必须连接以太网端口)。指示的速度还取决于电缆和连接的另一端。这不会提供PC上NIC的最大支持速度。为此,您需要查看ethtool中也显示的“支持的链接模式”。 1000baseT表示千兆以太网等。

– Rufus
20/11/15在2:19



#2 楼

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

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


eth0接口的示例:

cat /sys/class/net/eth0/speed


评论


注意:仅从2.6.33版本开始可用

–赵如飞
16年5月5日在5:55



获取“无效参数”

–wi1
17年9月20日在15:28

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

–基督徒
17/09/25在13:00



如果cat / sys / class / net / eth1 / speed显示10000但“ ip a”仅显示1000,这是什么意思?有人可以澄清吗?

– jsterr
19年2月6日在16:14

看来/ sys / class接口是正确的。 Dmesg还列出了100Mbit / s#dmesg | grep双工[5.417536] smsc95xx 1-1.1:1.0 eth0:链接,100Mbps,全双工,lpa 0xC5E1。我在没有ethtool的特殊目的OS上运行。

–user643011
19/12/31在15:48



#3 楼

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


This program is obsolete. For replacement check ethtool.




使用mii-tool来观察协商的网络速度。

例如。

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


评论


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

– mivk
2014年7月6日在13:20



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

–rogerdpack
17年6月28日在16:13

当mii-tool报告“已协商100baseTx-FD流控制,链接正常”时,ethtool和cat / sys / class / net / eth…/ speed都同意“ 1000Mb / s全双工”。这用于USB 3.0控制器,即ASIX AX88179(Linux的'ax88179_178a'驱动程序)。

–安东·萨姆索诺夫(Anton Samsonov)
18-09-24在10:11



#4 楼

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

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);
}


评论


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

–rogerdpack
19年1月22日,0:39

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

– droid-zilla
19年2月23日在2:50

#5 楼

正如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


#6 楼

使用以下命令

 dmesg | grep -i duplex
 Output: eth0: link up, 100Mbps, full-duplex, lpa 0x45E1


请参考

评论


没有root用户访问权限时很有用。

– Mehdi Sadeghi
16年4月11日在8:24

当日志未被覆盖时很有用。我很不幸。

–赵如飞
16年5月5日在6:01

当我没有超级用户特权时,这就派上用场了。谢谢!

–桑卡普
17年8月24日在8:07

#7 楼

另外,为了将来参考,我注意到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返回了协商的速度。

#8 楼

ethtool eth0为我工作。示例:

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


评论


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

– Sven
16年7月11日在12:15

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

–龙
16年7月19日在16:00

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

– Sven
16年7月19日在16:28

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

–龙
16年8月12日在10:46

看看最上面的答案,旁边是绿色的勾号。这是公认的答案,并且非常清楚地使用ethtool。

– Sven
16年8月12日在11:17