以编程方式获取链接速度?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以编程方式获取链接速度?相关的知识,希望对你有一定的参考价值。
我正在编写一个报告本地计算机上网络设备属性的应用程序。我需要mac地址,mtu,链接速度和其他一些。我正在使用udev。我已经弄清楚如何获取mac地址和mtu,但不知道如何获得链接速度。我可以从终端使用ethtool获取它,但我需要一种方法来以编程方式获取它。
有谁知道如何使用udev或其他库获取链接速度属性?
答案
你需要使用SIOCETHTOOL
ioctl()调用。在LinuxJournal上有一个很好的introduction to ioctl/SIOCETHTOOL调用,下面的代码(这不是一个好的C实践的例子!)应该告诉你如何使用它来获得速度。
#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
"); break;
case SPEED_100: printf("100Mbps
"); break;
case SPEED_1000: printf("1Gbps
"); break;
case SPEED_2500: printf("2.5Gbps
"); break;
case SPEED_10000: printf("10Gbps
"); break;
default: printf("Speed returned is %d
", edata.speed);
}
return (0);
}
另一答案
您可以使用sysfs
接口以每秒位数获得链接速度:
cat /sys/class/net/eth0/speed
1000
以上是关于以编程方式获取链接速度?的主要内容,如果未能解决你的问题,请参考以下文章
在 Android 设备上以编程方式获取 CPU 时钟速度?