linux 设置 网卡混杂模式

发布于 2022-09-30 06:58:29 字数 1280 浏览 12 评论 0

linux 设置 网卡混杂模式

sock=socket(PF_PACKET,SOCK_RAW,htons(ETH_P_ALL));
while(1)
{
   n=recvfrom(sock,buffer,2048,0,NULL,NULL);
   .......
  }
在linux 下 用C语言 实现了 截获 与本机通信的 IP包

请问 大家 如何 在linux 下 用C语言 设置 网卡 为混杂 模式,谢谢,请详细点

我在网上找了一些

45.int Set_Promisc(char *interface, int sock ) {
46. struct ifreq ifr;
47. strncpy(ifr.ifr_name, interface,strnlen(interface)+1);
48. if((ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)) {
/*Could not retrieve flags for the interface*/
49. perror("Could not retrive flags for the interface");
50. exit(0);
51. }
52. printf("The interface is ::: %s\n", interface);
53. perror("Retrieved flags from interface successfully");
54. ifr.ifr_flags |= IFF_PROMISC;
55. if (ioctl (sock, SIOCSIFFLAGS, &ifr) == -1 ) {
/*Could not set the flags on the interface */
56. perror("Could not set the PROMISC flag:");
57. exit(0);
58. }
59. printf("Setting interface ::: %s ::: to promisc", interface);
60. return(0);
61. }

编译的时候 提示 SIOCGIFFLAGS ifreq 没有定义,请问需要包含 哪些 .h 文件?谢谢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流星番茄 2022-10-07 06:58:29

C/C++版 有一篇 思一克 写的文章.能解答你的问题.你去找找吧.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文