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);
}
}
#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="弓箭勇者最新版" />
飞行射击 下载- 4 <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="弓箭勇者最新版" />下载73.78MB · 99℃
1970-01-01
- 5 <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="弓箭勇者最新版" />下载43.7 MB · 99℃
1970-01-01
- 6 <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="弓箭勇者最新版" />下载110.69MB · 90℃
1970-01-01