操作系统:REDHAT LINUX Linux 管理:2.6.18.8-1 #
这可以直接从网卡读取MAC地址吗?我有下面的代码,但它只是从上层读取而不是卡本身!
我试图弄清楚如何在我的 linux 机器上找到以太网 NIC 的原始 MAC 地址。我了解如何使用 ifconfig 找到当前的 MAC 地址,但是如果地址已更改,例如
使用 .this 文件'ifconfig eth0 hw ether uu:vv:ww:yy:xx:zz'
,或者我使用 .this 文件设置“永久”它......vi /etc/sysconfig/network-scripts/ifcfg-eth0
我也可以成功。如何找到原件?一定有办法找到它,因为它仍然被永久烧录到卡中,但我找不到读取烧录地址的工具。是否有任何实用程序或命令?我想为它编写C代码。但不知道在上述情况下如何做到这一点。UP
REBOOT
** 下面的代码给出了我当前的MAC 但不是原始 MAC
#include <stdio.h> /* Standard I/O */
#include <stdlib.h> /* Standard Library */
#include <errno.h> /* Error number and related */
#define ENUMS
#include <sys/socket.h>
#include <net/route.h>
#include <net/if.h>
#include <features.h> /* for the glibc version number */
#if __GLIBC__ >= 2 && __GLIBC_MINOR >= 1
#include <netpacket/packet.h>
#include <net/ethernet.h> /* the L2 protocols */
#else
#include <asm/types.h>
#include <linux/if_packet.h>
#include <linux/if_ether.h> /* The L2 protocols */
#endif
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/un.h>
#include <sys/ioctl.h>
#include <netdb.h>
int main( int argc, char * argv[] ){
unsigned char mac[IFHWADDRLEN];
int i;
get_local_hwaddr( argv[1], mac );
for( i = 0; i < IFHWADDRLEN; i++ ){
printf( "%02X:", (unsigned int)(mac[i]) );
}
}
int get_local_hwaddr(const char *ifname, unsigned char *mac)
{
struct ifreq ifr;
int fd;
int rv; // return value - error value from df or ioctl call
/* determine the local MAC address */
strcpy(ifr.ifr_name, ifname);
fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
if (fd < 0)
rv = fd;
else {
rv = ioctl(fd, SIOCGIFHWADDR, &ifr);
if (rv >= 0) /* worked okay */
memcpy(mac, ifr.ifr_hwaddr.sa_data, IFHWADDRLEN);
}
return rv;
}