Linux:uname -a:2.6.18以及2.6.39
我很新... 首次加载驱动程序时,ifconfig可以更改MAC 地址,现有(永久)MAC地址存储,能够 通过这个ioctl检索。
case ETHTOOL_GPERMADDR:
rc = ethtool_get_perm_addr(dev, useraddr);
break;
是谁测试过的?我可以获取代码或代码的一部分来实现它吗?
答案 0 :(得分:1)
像这样调用它:
# ethtool -P eth0
来自ethtool源(ethtool.c来自包ethtool-debugsource-3.2-3.1.2.x86_64):
static int do_permaddr(struct cmd_context *ctx)
{
int i, err;
struct ethtool_perm_addr *epaddr;
epaddr = malloc(sizeof(struct ethtool_perm_addr) + MAX_ADDR_LEN);
epaddr->cmd = ETHTOOL_GPERMADDR;
epaddr->size = MAX_ADDR_LEN;
err = send_ioctl(ctx, epaddr);
if (err < 0)
perror("Cannot read permanent address");
else {
printf("Permanent address:");
for (i = 0; i < epaddr->size; i++)
printf("%c%02x", (i == 0) ? ' ' : ':',
epaddr->data[i]);
printf("\n");
}
free(epaddr);
return err;
}