gpt4 book ai didi

c - 如何在 IRIX 上以编程方式查找 MAC 地址?

转载 作者:太空宇宙 更新时间:2023-11-04 02:20:10 27 4
gpt4 key购买 nike

如何在 IRIX 上找到网卡的 MAC 地址?我宁愿不花钱去显示它并解析输出。

我正在编写 C。

需要 root 访问权限的方法是可以接受的。

最佳答案

#include <net/raw.h>
#include <net/if.h>
#include <net/soioctl.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>

...

struct ifreq ifdat;
int s;

s = socket (PF_RAW, SOCK_RAW, RAWPROTO_SNOOP);
strcpy (ifdat.ifr_name, "en0");
ioctl (s, SIOCGIFADDR, &ifdat);

...

稍微清理一下,ifdat 应该包含您的 MAC 地址。

关于c - 如何在 IRIX 上以编程方式查找 MAC 地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1485837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com