C語言+shell實現(xiàn)linux網(wǎng)卡狀態(tài)檢測
更新時間:2018年06月29日 10:04:47 作者:handyhuang
這篇文章主要為大家詳細介紹了C語言+shell實現(xiàn)linux網(wǎng)卡狀態(tài)檢測,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了C語言+shell實現(xiàn)linux網(wǎng)卡狀態(tài)檢測的具體代碼,供大家參考,具體內(nèi)容如下
不解釋,直接上代碼 要求linux環(huán)境具備grep和awk(awk可選)
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int get_if_status(char *if_name)
{
char buffer[BUFSIZ];
char cmd[100];
FILE *read_fp;
int chars_read;
int ret =0;
memset( buffer, 0, BUFSIZ );
memset( cmd, 0, 100 );
sprintf(cmd, "ifconfig -a | grep %s",if_name);
read_fp = popen(cmd, "r");
if ( read_fp != NULL )
{
chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);
pclose(read_fp);
if (chars_read > 0)
{
ret = 1;
}
else
{
fprintf(stderr, "%s: NO FOUND\r\n",if_name);
return 0;
}
}
if(ret == 1)
{
memset( buffer, 0, BUFSIZ );
memset( cmd, 0, 100 );
sprintf(cmd, "ifconfig |grep %s",if_name);
read_fp = popen(cmd, "r");
if ( read_fp != NULL )
{
chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);
pclose(read_fp);
if (chars_read > 0)
{
ret = 2;
}
else
{
fprintf(stderr, "%s: DOWN\r\n",if_name);
return 1;
}
}
}
if(ret == 2)
{
memset( buffer, 0, BUFSIZ );
memset( cmd, 0, 100 );
sprintf(cmd, "ifconfig %s | grep RUNNING | awk '{print $3}'",if_name);
read_fp = popen(cmd, "r");
if ( read_fp != NULL )
{
chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);
pclose(read_fp);
if (chars_read > 0)
{
fprintf(stderr, "%s: LINKED\r\n",if_name);
return 3;
}
else
{
fprintf(stderr, "%s: UNPLUGGED\r\n",if_name);
return 2;
}
}
}
return -1;
}
int main(int argc, char* argv[])
{
int i=0;
if(argc != 2)
{
fprintf(stderr, "usage: %s <ethname>", argv[0]);
return -1;
}
i = get_if_status(argv[1]);
printf( "if_status = %d\n", i );
return 0;
}
嵌入式編譯 mips-linux-gnu-gcc -mips32 -EL -mhard-float -Wall -o netlink netlink.c
測試結(jié)果
# ./netlink eth100 eth100: NO FOUND if_status = 0 # # ifconfig eth0 down # ./netlink eth0 eth0: DOWN if_status = 1 # # ifconfig eth0 up # ./netlink eth0 eth0: UNPLUGGED if_status = 2 # # ./netlink eth0 eth0: LINKED if_status = 3
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
使用c語言輕松實現(xiàn)動態(tài)內(nèi)存管
這篇文章主要介紹了使用c語言輕松實現(xiàn)動態(tài)內(nèi)存管,本文章內(nèi)容詳細,具有很好的參考價值,希望對大家有所幫助,需要的朋友可以參考下2023-01-01
VS2019開發(fā)Linux C++程序的實現(xiàn)步驟
由于很多unix特有的函數(shù)無法在Windows上使用,而Vim又用的不太順手,突然想到最初用vs的時候有一個基于Linux的C++開發(fā)。本文就來介紹一下,感興趣的可以了解一下2021-07-07
Java3D實例之創(chuàng)建空間幾何模型的實現(xiàn)方法
本篇文章是對Java3D 創(chuàng)建空間幾何模型的實現(xiàn)方法進行了詳細的介紹。需要的朋友參考下2013-05-05

