根据以下链接,我了解到通过创建netlink套接字并收听RTMGRP_LINK,我们可以检测事件(网络接口创建/删除/上/下事件)。
How can I monitor the NIC status(up/down) in a C program without polling the kernel?
一旦检测到新添加的接口,是否可以获取pci地址?
答案 0 :(得分:5)
一旦知道了它的接口名称(例如eth0),就可以使用ethtool API查询该信息:
#include <linux/ethtool.h>
#include <linux/sockios.h>
.. and other socket headers.
...
int sock = socket(PF_INET, SOCK_DGRAM, 0);
struct ifreq ifr;
struct ethtool_cmd cmd;
struct ethtool_drvinfo drvinfo;
memset(&ifr, 0, sizeof ifr);
memset(&cmd, 0, sizeof cmd);
memset(&drvinfo, 0, sizeof drvinfo);
strcpy(ifr.ifr_name, "eno1");
ifr.ifr_data = &drvinfo;
drvinfo.cmd = ETHTOOL_GDRVINFO;
if(ioctl(sock, SIOCETHTOOL, &ifr) < 0) {
perror("ioctl")
return;
}
现在,PCI总线地址在drvinfo.bus_info
中以字符串形式提供 - 假设NIC实际上是PCI设备。
您也可以通过命令行查看:
$ ethtool -i eno1
driver: e1000e
version: 2.3.2-k
firmware-version: 0.13-4
bus-info: 0000:00:19.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes
supports-priv-flags: no