如何从 LabWindows\CVI C 代码或 CMD 命令获取当前 运行 以太网速度
How to get current running ethernet speed from LabWindows\CVI C code or CMD commands
我正在开发具有几个以太网端口的测试设备。作为测试的一部分,我想在连接测试单元时检查以太网端口 (10/100/1000) 的当前速度。
我怎样才能得到这些信息?是否有我可以使用的 C 库或 CMD 命令可以提供此信息?
C# 启动和 运行 可能比 API 使用 c/c++ 访问更快。
尝试使用 System.Net.NetworkInformation 类。特别是,System.Net.NetworkInformation.IPv4InterfaceStatistics
应该有一些与您正在寻找的内容相一致的信息。
具体来说,您可以检查 bytesReceived
属性,等待给定的时间间隔,然后再次检查 bytesReceived
属性 以了解有多少 bytes/second 您的连接正在处理中。但是,要获得一个好的数字,您应该尝试从给定来源下载大量信息,然后进行检查;这样你在做测试时就应该'maxing'连接,这应该会提供更多有用的数字。
您需要 linux 运行 机器才能运行代码
您需要在 Linux.
中使用 SIOCETHTOOL ioctl()
调用
#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;
default: printf("Speed returned is %d\n", edata.speed);
}
return (0);
}
我不确定Windows。也许你可以参考这里:Microsoft Developer Network
像这样使用wmic
命令
wmic PATH Win32_NetworkAdapter WHERE "PhysicalAdapter = TRUE AND NetEnabled = TRUE" GET Name, Speed
我正在开发具有几个以太网端口的测试设备。作为测试的一部分,我想在连接测试单元时检查以太网端口 (10/100/1000) 的当前速度。
我怎样才能得到这些信息?是否有我可以使用的 C 库或 CMD 命令可以提供此信息?
C# 启动和 运行 可能比 API 使用 c/c++ 访问更快。
尝试使用 System.Net.NetworkInformation 类。特别是,System.Net.NetworkInformation.IPv4InterfaceStatistics
应该有一些与您正在寻找的内容相一致的信息。
具体来说,您可以检查 bytesReceived
属性,等待给定的时间间隔,然后再次检查 bytesReceived
属性 以了解有多少 bytes/second 您的连接正在处理中。但是,要获得一个好的数字,您应该尝试从给定来源下载大量信息,然后进行检查;这样你在做测试时就应该'maxing'连接,这应该会提供更多有用的数字。
您需要 linux 运行 机器才能运行代码 您需要在 Linux.
中使用SIOCETHTOOL ioctl()
调用
#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;
default: printf("Speed returned is %d\n", edata.speed);
}
return (0);
}
我不确定Windows。也许你可以参考这里:Microsoft Developer Network
像这样使用wmic
命令
wmic PATH Win32_NetworkAdapter WHERE "PhysicalAdapter = TRUE AND NetEnabled = TRUE" GET Name, Speed