混杂模式的linux下通过C设置混杂模式(以eth0举例)

2025-04-04 05:34:28
推荐回答(1个)
回答1:

char *eth_name = eth0; //对网卡eth0进行混杂设置
struct ifreq ethreq; //网络接口结构
strncpy(ethreq.ifr_name, eth_name, IFNAMSIZ); //指定网卡名称  if(-1 == ioctl(sock_raw_fd, SIOCGIFFLAGS, ðreq)) //获取网络接口  {  perror(ioctl);  close(sock_raw_fd);  exit(-1);  }
/*此处用 | 是因为必须在保留原来设置的情况下,在标志位中加入“混杂”方式*/   ethreq.ifr_flags |= IFF_PROMISC;  if(-1 == ioctl(sock_raw_fd, SIOCSIFFLAGS, ðreq)) //将标志位设置写入  {  perror(ioctl);  close(sock_raw_fd);  exit(-1);  }