取得网卡的ip和mac地址

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#include <net/if_arp.h>
#include <arpa/inet.h>




#define MAXINTERFACES   16


int main (int argc, char **argv)
{


    int fd, intrface, ret = 0;
    struct ifreq buf[MAXINTERFACES];
    struct arpreq arp;
    struct ifconf ifc;
    if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) >= 0)
    {
        ifc.ifc_len = sizeof(buf);
        ifc.ifc_buf = (caddr_t) buf;


        if (!ioctl(fd, SIOCGIFCONF, (char *) &ifc))
        {
            //获取接口信息
            intrface = ifc.ifc_len / sizeof (struct ifreq);
            printf("interface num is intrface=%d\n\n\n",intrface);
            //根据借口信息循环获取设备IP和MAC地址
            while (intrface-- > 0)
            {
                //获取设备名称
                printf ("net device %s\n", buf[intrface].ifr_name);
                //判断网卡类型
                if (!(ioctl(fd, SIOCGIFFLAGS, (char *) &buf[intrface])))
                {
                    if (buf[intrface].ifr_flags & IFF_PROMISC)
                    {
                        puts ("the interface is PROMISC");
                        ret++;
                    }
                }
                else

                {

                    char str[256];
                    sprintf (str, "cpm: ioctl device %s", buf[intrface].ifr_name);
                    perror (str);
                }


                //判断网卡状态
                if (buf[intrface].ifr_flags & IFF_UP)
                {
                    puts("the interface status is UP");
                }
                else
                {
                    puts("the interface status is DOWN");
                }     //获取当前网卡的IP地址


                if (!(ioctl(fd, SIOCGIFADDR, (char *) &buf[intrface])))
                {
                    puts ("IP address is:");
                    puts(inet_ntoa(((struct sockaddr_in*)(&buf[intrface].ifr_addr))->sin_addr));
                    puts("");
                }
                else
                {
                    char str[256];
                    sprintf (str, "cpm: ioctl device %s", buf[intrface].ifr_name);
                    perror (str);
                }
                /* this section can't get Hardware Address,I don't know whether the reason is module driver*/


              #if 0
                 /*Get HW ADDRESS of the net card */
                if (!(ioctl(fd, SIOCGENADDR, (char *) &buf[intrface])))
                {
                   puts ("HW address is:");
                   printf("%02x:%02x:%02x:%02x:%02x:%02x\n",
                   (unsigned char)buf[intrface].ifr_enaddr[0],
                   (unsigned char)buf[intrface].ifr_enaddr[1],
                   (unsigned char)buf[intrface].ifr_enaddr[2],
                   (unsigned char)buf[intrface].ifr_enaddr[3],
                   (unsigned char)buf[intrface].ifr_enaddr[4],
                   (unsigned char)buf[intrface].ifr_enaddr[5]);                 puts("");
                   puts("");
                }
               #endif


                if (!(ioctl(fd, SIOCGIFHWADDR, (char *) &buf[intrface])))
                {
                    puts ("HW address is:");
                    printf("%02x:%02x:%02x:%02x:%02x:%02x\n",
                    (unsigned char)buf[intrface].ifr_hwaddr.sa_data[0],
                    (unsigned char)buf[intrface].ifr_hwaddr.sa_data[1],
                    (unsigned char)buf[intrface].ifr_hwaddr.sa_data[2],
                    (unsigned char)buf[intrface].ifr_hwaddr.sa_data[3],
                    (unsigned char)buf[intrface].ifr_hwaddr.sa_data[4],
                    (unsigned char)buf[intrface].ifr_hwaddr.sa_data[5]);
                    puts("");
                    puts("");
                }
                else
                {
                    char str[256];
                    sprintf (str, "cpm: ioctl device %s", buf[intrface].ifr_name);
                    perror (str);
                }
            } //while
        }
        else
        {
            perror ("cpm: ioctl");
        }
        close (fd);


    } else {
        perror ("cpm: socket");
    }


    return ret;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值