怎么用C语言获取Linux系统的网卡IP地址

怎么用C语言获取Linux系统的网卡IP地址,第1张

#include <stdio.h>

#include <stdlib.h>

#include <unistd.h>

#include <string.h>

#include <sys/socket.h>

#include <netinet/in.h>

#include <net/if.h>

#include <netdb.h>

#include <arpa/inet.h>

#include <sys/ioctl.h>

//获取地址

//返回IP地址字符串

int getlocalip(char* outip)

{

int i=0

int sockfd

struct ifconf ifconf

char buf = (char)malloc(512)

struct ifreq *ifreq

char* ip

//初始化ifconf

ifconf.ifc_len = 512

ifconf.ifc_buf = buf

if((sockfd = socket(AF_INET, SOCK_DGRAM, 0))<0)

{

return -1

}

ioctl(sockfd, SIOCGIFCONF, &ifconf) //获取所有接口信息

close(sockfd)

//接下来一个一个的获取IP地址

ifreq = (struct ifreq*)buf

i = ifconf.ifc_len/sizeof(struct ifreq)

char *pos = outip

int count

for(count = 0 (count < 5 && i > 0) i--)

{

ip = inet_ntoa(((struct sockaddr_in*)&(ifreq->ifr_addr))->sin_addr)

if(strncmp(ip,"127.0.0.1", 3)==0) //排除127.x.x.x,继续下一个

{

ifreq++

continue

}else

{

printf("%s\n", ip)

strcpy(pos,ip)

int len = strlen(ip)

pos = '\t'

pos += len+1

count ++

ifreq++

}

}

free(buf)

return 0

}

//——————————-函数的调用方式————————————-

int main(int argc, char** argv)

{

char ip = {'*'}

if ( getlocalip( ip ) == 0 )

{

printf("本机IP地址是: %s\n", ip )

}

else

{

printf("无法获取本机IP地址 ")

}

return 0

}

提供一个思路:

可以用libpcap,先不设置IP,设置网口为混杂模式,抓取一定时间的包,然后统计包里面没被使用的IP地址,如果一个IP被使用,必定在网络中会有ARP通信。

写程序去读/proc/pid/ 下面的文件, PID是你要监控的进程ID。

建议你去下载top的源代码看, 在这里 http://procps.sourceforge.net/

大多数实现都在readproc.c那个文件里。

当然也可以在C代码里执行top命令然后解析输出,不过这么写太丑了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8290162.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存