文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Linux 获取本机IP地址和MAC地址(四)

Linux 获取本机IP地址和MAC地址(四)

时间:2010-07-05  来源:visky

获取eth*接口的IP地址

#include <stdio.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
#include <string.h>

#define MAXINTERFACES 16
#define MAC_ADDR_LEN 18
#define ADDR_LEN 16

#define ETH_INTERFACE_NAME "eth"

void err_quit(char *msg);
void getIP(char *addr);

int main(int argc, char *argv[])
{
        char addr[ADDR_LEN] = {0,};

        getIP(addr);

        printf("%s\n", addr);

        return 0;
}

void err_quit(char *msg)
{
        perror(msg);
        exit(1);
}

void getIP(char *addr)
{
        int sock_fd;
        struct ifreq buf[MAXINTERFACES];
        struct ifconf ifc;
        int inter_num;
        char *temp = NULL;

        if((sock_fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
                err_quit("Create socket failed");

        ifc.ifc_len = sizeof(buf);
        ifc.ifc_req = buf;

        if(ioctl(sock_fd, SIOCGIFCONF, (char *)&ifc) < 0)
                err_quit("Get a list of interface addresses failed");

        inter_num = ifc.ifc_len / sizeof(struct ifreq);
        printf("The number of interfaces is %d\n", inter_num);

        while(inter_num--) {
                if(strstr(buf[inter_num].ifr_name, ETH_INTERFACE_NAME) == NULL)
                        continue;

                if(ioctl(sock_fd, SIOCGIFADDR, (char *)&buf[inter_num]) < 0)
                        err_quit("Get interface address failed");

                temp = inet_ntoa(((struct sockaddr_in*)(&buf[inter_num].ifr_addr))->sin_addr);
                strncpy(addr, temp, ADDR_LEN);
                printf("IP address is %s\n", addr);
        }
}

相关阅读 更多 +
排行榜 更多 +
<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />

<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />

飞行射击 下载
<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />

<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />

飞行射击 下载
<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />

<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />

飞行射击 下载