溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么用C/C++實現(xiàn)linux下檢測網(wǎng)絡(luò)接口狀態(tài)

發(fā)布時間:2021-04-14 11:21:37 來源:億速云 閱讀:577 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)怎么用C/C++實現(xiàn)linux下檢測網(wǎng)絡(luò)接口狀態(tài),小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體內(nèi)容如下

要寫個檢測網(wǎng)絡(luò)接口鏈接狀態(tài)的東西,又不喜歡不斷的ping別的地址,也不想調(diào)用其他命令行工具來做這個,于是在google了n多內(nèi)容未果之后,搜到個檢測工具的源代碼。

以下代碼在fedora 9 / CentOS 5.2下調(diào)試通過:)

#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <errno.h>
#include <net/if.h>
 
struct ethtool_value 
{
 __uint32_t cmd;
 __uint32_t data;
};
 
/*return 1:has cable; return 0:no cable*/
int detect_eth_cable(char *ifname) 
{
 struct ethtool_value edata;
 struct ifreq ifr;
 int fd = -1, err = 0;
 
 memset(&ifr, 0, sizeof(ifr));
 strcpy(ifr.ifr_name, ifname);
 
 fd = socket(AF_INET, SOCK_DGRAM, 0);
 if (fd < 0) {
  //perror("Cannot get control socket");
  return -1;
  }
 edata.cmd = 0x0000000A;
 ifr.ifr_data = (caddr_t)&edata;
 err = ioctl(fd, 0x8946, &ifr);
 if (err == 0) {
  fprintf(stdout, "Link detected: %s\n", edata.data ? "yes":"no");
 } else if (errno != EOPNOTSUPP) {
  perror("Cannot get link status");
  }
 return(edata.data==1 ? 1:0);
}
int main(int argc, char**argv)
{
 detect_eth_cable("p1p1");
 return 0;
}

其他代碼:

int get_netportstatus(const char *interface) {
 char cmd[1024];
 char *tt;
 FILE *fp;
 int devflag;
 devflag=get_netflag(interface);
 if (devflag==DEV_DOWN) {
 sprintf(cmd,"ifconfig %s up",interface);
 system(cmd);
 }
 sprintf(cmd,"ethtool %s | grep \"Link detected\" > /tmp/eth.temp",interface);
 system(cmd);
 if (devflag==DEV_DOWN) {
 sprintf(cmd,"ifconfig %s down",interface);
 system(cmd);
 }
 fp=fopen("/tmp/eth.temp","r");
 if (fp==NULL) {
 system("rm -rf /tmp/eth.temp");
 return -1;
 }
 fgets(cmd,1024,fp);
 fclose(fp);
 system("rm -rf /tmp/eth.temp");
 tt=strstr(cmd,"no");
 if (tt!=NULL) return LINK_DOWN;
 tt=strstr(cmd,"yes");
 if (tt!=NULL) return LINK_UP;
 return -1;
}
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <errno.h>
#include <net/if.h>
 
 
struct ethtool_value {
  __uint32_t  cmd;
  __uint32_t  data;
};
 
 
int main(int , char* [])
{
 struct ethtool_value edata;
 int fd = -1, err = 0;
 struct ifreq ifr;
 
 
  memset(&ifr, 0, sizeof(ifr));
  strcpy(ifr.ifr_name, "eth0");
  fd = socket(AF_INET, SOCK_DGRAM, 0);
  if (fd < 0) {
    perror("Cannot get control socket");
    return 70;
  }
  edata.cmd = 0x0000000a;
  ifr.ifr_data = (caddr_t)&edata;
  err = ioctl(fd, 0x8946, &ifr);
  if (err == 0) {
    fprintf(stdout, "Link detected: %s\n",
      edata.data ? "yes":"no");
  } else if (errno != EOPNOTSUPP) {
    perror("Cannot get link status");
  }
 return 0;
}
#include <net if.h=""> // IFF_RUNNING
 
//如果網(wǎng)卡已臉上網(wǎng)線,返回0,否則返回-1.
int check_nic(char *nic)
{
 struct ifreq ifr;
 int skfd = socket(AF_INET, SOCK_DGRAM, 0);
 
 strcpy(ifr.ifr_name, nic_name);
 if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0)
 {
  return -1;
 }
 if(ifr.ifr_flags & IFF_RUNNING)
  return 0; // 網(wǎng)卡已插上網(wǎng)線
 else return -1;
}
</net>

關(guān)于“怎么用C/C++實現(xiàn)linux下檢測網(wǎng)絡(luò)接口狀態(tài)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI