在 Linux 中通过 SIOCGIFCONF 轮询接口名称
我正在尝试轮询网络设备名称。我从各种片段中将其拼凑在一起,
- http://unixhelp.ed .ac.uk/CGI/man-cgi?netdevice+7
- http://lists.apple.com/archives/Unix-porting/2002/Apr/msg00134.html
- http://ubuntuforums.org/showthread.php?t=1421487
但我的输出只是乱码。
#include <stdio.h>
#include <stdlib.h>
#include <net/route.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#define BUFLEN 1024
#define SEQ 9999
int main (int argc, const char* argv[])
{
// File descriptor for socket
int socketfd;
struct ifconf conf;
struct ifreq req[10];
struct ifreq *ifr;
printf("Opening socket...");
socketfd = socket(AF_ROUTE, SOCK_RAW, 0);
if (socketfd >= 0) {
printf(" OK\n");
conf.ifc_len = sizeof(req);
conf.ifc_buf = (__caddr_t) req;
ioctl(socketfd,SIOCGIFCONF,&conf);
printf("Discovering interfaces...\n");
int i;
for (i=0; i<conf.ifc_len/sizeof(req[0]); i++) {
ifr = &conf.ifc_req[i];
printf("%d. %s\n", i+1, req[i].ifr_name);
}
}
else {
printf("Failed!\n");
}
return 0;
}
输出:
Opening socket... OK
Discovering interfaces...
?u???}??Gh???
2. p?9}?
3.
4. v?=?n??u?`?y??]g?<?~?v??
5.
6.
7.
8. ?v?T?
9. ?|?mw??j??v??h??|??v?T00~??v?$?|??|?@
10. T00~??v?$?|??|?@
我尝试逐一输出 ifr_name 数组的每个字符,看看它们是否以 null 终止,但这并没有太大变化。我的程序的每次迭代都会输出不同的内容,因此这使我认为我引用了错误的内容。有人可以告诉我一些关于我可能做错了什么的见解吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是我为 Mac OS X 编写的一些代码:
Here's some code I put together for Mac OS X:
轮询您是否希望在添加或删除接口时收到通知?或者像您只想从系统中找出接口名称一样进行轮询?如果是后者,请查看 getifaddrs() 。
Poll as in you want to be notified if an interface is added or removed? Or polled as in you just want to find out the interface names once from the system? If the latter, take a look at getifaddrs().
请参阅 http://git.netfilter.org/cgi-bin/gitweb.cgi?p=libmnl.git;a=blob;f=examples/rtnl/rtnl-link-dump.c ;hb=HEAD 了解如何获取 Linux 上的接口列表。 AF_ROUTE 是一些 BSD 的东西,并且在 Linux 上不鼓励使用 ioctl,因为它有明显的局限性(例如在单个接口上传送多个地址)。
Please see http://git.netfilter.org/cgi-bin/gitweb.cgi?p=libmnl.git;a=blob;f=examples/rtnl/rtnl-link-dump.c;hb=HEAD on how to get the list of interfaces on Linux. AF_ROUTE is some BSD thing and the use of ioctl is discouraged on Linux for its apparent limitations (such as to convey multiple addresses on a single interface).