一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

Linux下檢測(cè)網(wǎng)卡與網(wǎng)線連接狀態(tài)

 錢入室攻城仕 2014-04-11
Linux下檢測(cè)網(wǎng)卡與網(wǎng)線連接狀態(tài):

方法一:使用ioctl向socket發(fā)送SIOCETHTOOL命令字

  1. #include<stdio.h>   
  2. #include<stdlib.h>   
  3. #include<string.h>   
  4.   
  5. #include <fcntl.h>   
  6. #include <errno.h>   
  7. #include <sys/ioctl.h>   
  8.   
  9. #include <sys/types.h>   
  10. #include <sys/socket.h>   
  11. #include <linux/if.h>   
  12. #include <linux/sockios.h>   
  13. #include <linux/ethtool.h>   
  14.   
  15. int get_netlink_status(constchar *if_name);  
  16.   
  17. int main()  
  18. {  
  19.     if(getuid()!= 0)  
  20.     {  
  21.         fprintf(stderr,"Netlink Status Check Need Root Power.\n");  
  22.         return 1;  
  23.     }  
  24.       
  25.     printf("Net link status: %d\n", get_netlink_status("eth0"));  
  26.   
  27.     return 0;  
  28. }  
  29.   
  30. // if_name like "ath0", "eth0". Notice: call this function   
  31. // need root privilege.   
  32. // return value:   
  33. // -1 -- error , details can check errno   
  34. // 1 -- interface link up   
  35. // 0 -- interface link down.   
  36. int get_netlink_status(constchar *if_name)  
  37. {  
  38.     int skfd;  
  39.     struct ifreq ifr;  
  40.     struct ethtool_value edata;  
  41.   
  42.     edata.cmd = ETHTOOL_GLINK;  
  43.     edata.data = 0;  
  44.   
  45.     memset(&ifr, 0,sizeof(ifr));  
  46.     strncpy(ifr.ifr_name, if_name,sizeof(ifr.ifr_name)- 1);  
  47.     ifr.ifr_data =(char *) &edata;  
  48.   
  49.     if (( skfd= socket(AF_INET, SOCK_DGRAM, 0 )) < 0)  
  50.         return -1;  
  51.   
  52.     if(ioctl( skfd, SIOCETHTOOL,&ifr ) == -1)  
  53.     {  
  54.         close(skfd);  
  55.         return -1;  
  56.     }  
  57.   
  58.     close(skfd);  
  59.     return edata.data;  
  60.   
  61. }  
  1. #include<stdio.h>  
  2. #include<stdlib.h>  
  3. #include<string.h>  
  4.   
  5. #include <fcntl.h>  
  6. #include <errno.h>  
  7. #include <sys/ioctl.h>  
  8.   
  9. #include <sys/types.h>  
  10. #include <sys/socket.h>  
  11. #include <linux/if.h>  
  12. #include <linux/sockios.h>  
  13. #include <linux/ethtool.h>  
  14.   
  15. int get_netlink_status(constchar *if_name);  
  16.   
  17. int main()  
  18. {  
  19.     if(getuid()!= 0)  
  20.     {  
  21.         fprintf(stderr,"Netlink Status Check Need Root Power.\n");  
  22.         return 1;  
  23.     }  
  24.       
  25.     printf("Net link status: %d\n", get_netlink_status("eth0"));  
  26.   
  27.     return 0;  
  28. }  
  29.   
  30. // if_name like "ath0", "eth0". Notice: call this function  
  31. // need root privilege.  
  32. // return value:  
  33. // -1 -- error , details can check errno  
  34. // 1 -- interface link up  
  35. // 0 -- interface link down.  
  36. int get_netlink_status(constchar *if_name)  
  37. {  
  38.     int skfd;  
  39.     struct ifreq ifr;  
  40.     struct ethtool_value edata;  
  41.   
  42.     edata.cmd = ETHTOOL_GLINK;  
  43.     edata.data = 0;  
  44.   
  45.     memset(&ifr, 0,sizeof(ifr));  
  46.     strncpy(ifr.ifr_name, if_name,sizeof(ifr.ifr_name)- 1);  
  47.     ifr.ifr_data =(char *) &edata;  
  48.   
  49.     if (( skfd= socket(AF_INET, SOCK_DGRAM, 0 )) < 0)  
  50.         return -1;  
  51.   
  52.     if(ioctl( skfd, SIOCETHTOOL,&ifr ) == -1)  
  53.     {  
  54.         close(skfd);  
  55.         return -1;  
  56.     }  
  57.   
  58.     close(skfd);  
  59.     return edata.data;  
  60.   
  61. }  


方法二: 使用ifconfigl命令能很方便的查看網(wǎng)卡與網(wǎng)線是否連通:

# ifconfig eth0
eth0      Link encap:Ethernet  HWaddr 00:25:35:68:CC:D6 
          inet addr:192.168.1.168  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::215:c5ff:fe18:ccd6/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:130722 errors:0 dropped:0 overruns:0 frame:0
          TX packets:112560 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:104371099 (99.5 MiB)  TX bytes:20518584 (19.5 MiB)
          Interrupt:16 

其中的RUNNING就表示網(wǎng)卡與網(wǎng)線正常鏈接,拔掉網(wǎng)線再運(yùn)行此命令就會(huì)發(fā)現(xiàn)RUNNING不在了。

    linux系統(tǒng)提供了popen/pclose進(jìn)程管道讓C和shell很方便的交互,下面C代碼結(jié)合shell命令檢測(cè)網(wǎng)卡與網(wǎng)線連通狀況:

  1. #include <unistd.h>   
  2. #include <stdlib.h>   
  3. #include <stdio.h>   
  4. #include <string.h>   
  5.   
  6. int GetNetStat( )  
  7. {  
  8.     char    buffer[BUFSIZ];  
  9.     FILE    *read_fp;  
  10.     int        chars_read;  
  11.     int        ret;  
  12.      
  13.     memset( buffer, 0, BUFSIZ );  
  14.     read_fp = popen("ifconfig eth0 | grep RUNNING""r");  
  15.     if ( read_fp != NULL )  
  16.     {  
  17.         chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);  
  18.         if (chars_read > 0)  
  19.         {  
  20.             ret = 1;  
  21.         }  
  22.         else  
  23.         {  
  24.             ret = -1;  
  25.         }  
  26.         pclose(read_fp);  
  27.     }  
  28.     else  
  29.     {  
  30.         ret = -1;  
  31.     }  
  32.   
  33.     return ret;  
  34. }  
  35.   
  36.   
  37. int main()  
  38. {  
  39.     int i=0;  
  40.     i = GetNetStat();  
  41.     printf( "\nNetStat = %d\n", i );  
  42.     return 0;  
  43. }  

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多

    国自产拍偷拍福利精品图片| 精品国产亚洲一区二区三区| 欧美成人免费一级特黄| 日韩中文字幕狠狠人妻| 高清国产日韩欧美熟女| 亚洲免费视频中文字幕在线观看 | 国产成人精品一区二区三区| 懂色一区二区三区四区| 国产精品日韩欧美一区二区| 色一情一乱一区二区三区码| 国产午夜精品久久福利| 精品人妻一区二区三区四区久久| 高清亚洲精品中文字幕乱码| 欧美一区二区三区不卡高清视| 日韩精品一区二区三区含羞含羞草| 国产精品白丝一区二区| 91亚洲国产成人久久精品麻豆| 欧美久久一区二区精品| 尹人大香蕉中文在线播放| 草草视频精品在线观看| 精品日韩视频在线观看| 九九热这里只有精品哦 | 欧美大黄片在线免费观看| 国产精品日韩欧美第一页| 中文字幕在线五月婷婷| 久久99午夜福利视频| 中文字幕亚洲精品在线播放| 亚洲天堂国产精品久久精品| 国产精品一区二区成人在线| 日本人妻丰满熟妇久久| 免费在线播放一区二区| 久热久热精品视频在线观看| 日韩日韩欧美国产精品| 亚洲最新一区二区三区| 久久精品色妇熟妇丰满人妻91 | 国产又大又硬又粗又湿| 九九热国产这里只有精品| 亚洲一区二区精品福利| 亚洲国产av国产av| 日韩在线免费看中文字幕| 99久久人妻中文字幕|