ฉันเพิ่งติดตั้งการ์ดเชื่อมต่อเครือข่ายกิกะบิตใหม่ (NIC) ใน Linux ฉันจะบอกได้อย่างไรว่ามันถูกตั้งค่าเป็นความเร็วกิกะบิตหรือไม่ ฉันเห็นethtool
มีตัวเลือกในการตั้งค่าความเร็ว แต่ฉันไม่สามารถหาวิธีรายงานความเร็วปัจจุบันได้
ฉันเพิ่งติดตั้งการ์ดเชื่อมต่อเครือข่ายกิกะบิตใหม่ (NIC) ใน Linux ฉันจะบอกได้อย่างไรว่ามันถูกตั้งค่าเป็นความเร็วกิกะบิตหรือไม่ ฉันเห็นethtool
มีตัวเลือกในการตั้งค่าความเร็ว แต่ฉันไม่สามารถหาวิธีรายงานความเร็วปัจจุบันได้
คำตอบ:
เพียงใช้คำสั่งเช่น: ethtool eth0
เพื่อรับข้อมูลที่จำเป็น Ex:
$ sudo ethtool eth0 | grep Speed
Speed: 1000Mb/s
for i in $(netstat -i | cut -f1 -d" " | tail -n+3) ; do echo "$i: $(ethtool "$i" | grep Speed | sed 's/Speed://g')" ; done
เป็นไปได้ที่จะใช้ข้อมูลจากเคอร์เนลเมื่อไม่มี ethtool:
cat /sys/class/net/<interface>/speed
ตัวอย่างสำหรับอินเตอร์เฟสชื่อ eth0:
cat /sys/class/net/eth0/speed
หมายเหตุ:หน้าคนสำหรับmii-tool
มีข้อจำกัดความรับผิดชอบนี้:
This program is obsolete. For replacement check ethtool.
ใช้mii-tool
เพื่อดูความเร็วเครือข่ายที่ต่อรองได้
อดีต
eth0: no link
eth1: negotiated 100baseTx-FD, link ok
ethtool
จะไม่ได้รับการติดตั้งตามค่าเริ่มต้น แต่mii-tool
เป็นส่วนหนึ่งของแพ็คเกจ "เครื่องมือสุทธิ" ที่จำเป็น นี่คือทางออกที่ดีที่สุดสำหรับฉัน
mii-tool
รายงาน 'เจรจาต่อรอง100 baseTx-FD ควบคุมการไหลลิงค์ ok' ทั้งสองethtool
และcat /sys/class/net/eth…/speed
ตกลงที่ ' 1000 Mb / s เต็มเพล็กซ์' นี่สำหรับคอนโทรลเลอร์ USB 3.0 คือ ASIX AX88179 (ไดรเวอร์ 'ax88179_178a' สำหรับ Linux)
มีคำตอบที่ยอดเยี่ยมที่นี่ฉันแค่ต้องการเพิ่มตัวเลือกอีกไม่กี่
1.ฉันรู้ว่านี่ไม่ใช่สิ่งที่คุณถาม (อ่านต่อสำหรับวิธีอื่น ๆ ) แต่ถ้าคุณต้องการทราบถึงประสิทธิภาพการทำงานในโลกแห่งความเป็นจริงของ NICแทนที่จะเป็นสิ่งที่คอมพิวเตอร์ของคุณบอกว่าควรจะเป็นคุณสามารถใช้ iperf ได้ ฉันมักจะทำสิ่งนี้ - เพราะคุณไม่เคยรู้ ฉันซื้อ NIC 1Gb เมื่อเร็ว ๆ นี้ว่าถ่ายโอนได้เพียง 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เพื่อรับความเร็วได้ การทำงานที่ผ่านการทดสอบและไม่จำเป็นต้องรูท
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);
}
ดังที่ 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
ใช้คำสั่งด้านล่าง
dmesg | grep -i duplex
Output: eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
แนะนำสิ่งนี้
นอกจากนี้สำหรับการอ้างอิงในอนาคตฉันสังเกตเห็นว่าเขตข้อมูลความเร็วใน ethtool ให้ความเร็วสูงสุดที่สนับสนุนโดย NIC และเครื่องมือ mii ให้ความเร็วจริงที่ 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
UPDATE: หลังจากนั้นครู่หนึ่งพบว่า mii-tool ไม่ได้กลับมาด้วยความเร็วที่ถูกต้องเนื่องจากมันล้าสมัยและเลิกใช้แล้วและ ethtool ก็กลับมาความเร็วที่ตกลงกัน
ethtool eth0
ทำงานให้ฉัน ตัวอย่าง:
$ethtool eth0 |grep -i speed
Speed: 1000Mb/s
ethtool
นี่คือคำตอบที่ได้รับการยอมรับและใช้อย่างชัดเจน