控制网卡打开和关闭的C代码

  1. #include <features.h>    
  2. #include <sys/types.h>    
  3. #include <sys/socket.h>    
  4. #include <sys/ioctl.h>    
  5. #include <netinet/in.h>    
  6. #include <net/if.h>    
  7. #include <net/if_arp.h>    
  8. #include <stdio.h>    
  9. #include <errno.h>    
  10. #include <fcntl.h>    
  11. #include <ctype.h>    
  12. #include <stdlib.h>    
  13. #include <string.h>    
  14. #include <unistd.h>    
  15. #include <netdb.h>    
  16.   
  17. static int clr_flag(char *ifname, short flag)    
  18. {    
  19.         struct ifreq ifr;    
  20.         int fd,skfd;    
  21.   
  22.         /* Create a channel to the NET kernel. */    
  23.         if ((skfd = socket(AF_INET,SOCK_DGRAM ,0)) < 0) {    
  24.                 perror("socket");    
  25.                 exit(1);    
  26.         }    
  27.   
  28.         fd = skfd;    
  29.   
  30.         strncpy(ifr.ifr_name, ifname, IFNAMSIZ);    
  31.         if (ioctl(fd, SIOCGIFFLAGS, &ifr) < 0) {    
  32.                 fprintf(stderr, "%s: unknown interface: %s\n",     
  33.                                 ifname, strerror(errno));    
  34.                 return -1;    
  35.         }    
  36.         strncpy(ifr.ifr_name, ifname, IFNAMSIZ);    
  37.         if(flag == 1)  
  38.                 ifr.ifr_flags &= ~IFF_UP;  
  39.         else if(flag == 2)  
  40.                 ifr.ifr_flags |= IFF_UP;     
  41.         if (ioctl(fd, SIOCSIFFLAGS, &ifr) < 0) {    
  42.                 perror("SIOCSIFFLAGS");    
  43.                 return -1;    
  44.         }    
  45.         return (0);    
  46. }  
  47.   
  48. int main(int argc,char **argv)  
  49. {  
  50.   
  51.         clr_flag("eth0",1);  
  52.         sleep(4);  
  53.         clr_flag("eth0",2);  
  54.         return 0;  
  55. }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值