Jest tu kilka świetnych odpowiedzi, chciałem tylko dodać kilka dodatkowych opcji.
1. Wiem, że nie do końca o to prosiłeś (czytaj dalej na inne sposoby). Ale jeśli chcesz poznać rzeczywistą wydajność swojej karty sieciowej , a nie to, co mówi twój komputer, możesz użyć iperf. Zwykle to robię - bo nigdy nie wiadomo. Niedawno kupiłem kartę sieciową 1 Gb, która przesłała ją tylko przy 672 Mb / s, ale jej łącze w górę było 1 Gb. Dobrze, że sprawdziłem.
Potrzebujesz dwóch komputerów.
Na komputerze pierwszym uruchom iperf w trybie serwera:
iperf -s
Z drugiej strony uruchom iperf w trybie klienta:
iperf -c 192.168.0.10
Jeśli chcesz zobaczyć pełną prędkość drukowania dwustronnego, spróbuj tego:
iperf -d -c 192.168.0.10
Zastąp 192.168.0.10 adresem IP serwera
2. W systemach Ubuntu /var/log/kern.log
ma ograniczone rejestrowanie zdarzeń jądra. Będzie rejestrować prędkość łącza i status karty sieciowej, gdy się zmieni. Jestem pewien, że inne dystrybucje prawdopodobnie robią coś podobnego lub można to skonfigurować.
$ 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. Prawdopodobnie nigdy, nigdy nie będziesz musiał iść tak daleko, ale możesz napisać kod c , aby uzyskać prędkość. Testowane działanie i rootowanie nie jest wymagane.
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);
}