linux 设置 网卡混杂模式
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C/C++版 有一篇 思一克 写的文章.能解答你的问题.你去找找吧.