当前位置: 首页 > 工具软件 > Down > 使用案例 >

linux网卡updown命令,linuxc获取网卡状态(UPorDOWN)

曹乐意
2023-12-01

源码如下:

#include

#include

#include

#include

#include

char *net_detect(char* net_name)

{

int skfd = 0;

struct ifreq ifr;

skfd = socket(AF_INET, SOCK_DGRAM, 0);

if(skfd < 0) {

printf("%s:%d Open socket error!n", __FILE__, __LINE__);

return NULL;

}

strcpy(ifr.ifr_name, net_name);

if(ioctl(skfd, SIOCGIFFLAGS, &ifr) <0 ) {

printf("%s:%d IOCTL error!n", __FILE__, __LINE__);

printf("Maybe ethernet inferface %s is not valid!", ifr.ifr_name);

close(skfd);

return NULL;

}

if(ifr.ifr_flags & IFF_RUNNING) {

return "UP";

} else {

return "DOWN";

}

}

int main()

{

printf("%sn",net_detect("eth0"));

return 0;

}

总结:

该程序是测试 ifconfig 命令中 指定网卡 是有用 RUNNING 。可以配合 ifconfig eth0 up 和 ifconfig eth0 down 测试。

 类似资料: