为了使用pcap从多个接口嗅探,我会做以下(伪代码):
foreach interface:
open a file descriptor using pcap_open_live()
set the file descriptor to non-blocking
while true:
check for a ready file descriptor using select() or an equivalent I/O multiplexer
read data from every ready file descriptor using pcap_dispatch()
handle EndOfStream or Errors and break out of loop if needed
这是否足够或是否有一些特别需要注意的事项?
答案 0 :(得分:3)
多个界面嗅探的警告和方法已得到很好的解释here
答案 1 :(得分:3)
#include <stdio.h>
#include <stdlib.h>
#include <pcap.h> /* GIMME a libpcap plz! */
#include <errno.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
void callback(u_char *useless,const struct pcap_pkthdr* pkthdr,const u_char* packet)
{
static int count = 1;
printf("\nPacket number [%d], length of this packet is: %d\n", count++, pkthdr->len);
}
void pktinit(char *dev) /*function: for individual interface packet capturing*/
{
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t* descr;
struct bpf_program fp; /* to hold compiled program */
bpf_u_int32 pMask; /* subnet mask */
bpf_u_int32 pNet; /* ip address*/
pcap_if_t *alldevs, *d;
char dev_buff[64] = {0};
int i =0;
pcap_lookupnet(dev, &pNet, &pMask, errbuf);
descr = pcap_open_live(dev, BUFSIZ, 0,-1, errbuf);
if(descr == NULL)
{
printf("pcap_open_live() failed due to [%s]\n", errbuf);
return -1;
}
return 0;
}
int main(int argc, char **argv)
{
int pid,i;
if(argc < 2) /*command <eth0> [eth1]...*/
{
fprintf(strerr,"command needs ethernet name")
return 0;
}
for(i = 1; i < argc; i++)
{
if((pid=fork()) != -1)
{
pktinit(argv[i])
}
else
{
fprintf(stderr,"pacp failed for: %s\n", argv[i]);
}
}
return 0;
}
答案 2 :(得分:1)
我遇到了一些问题,试图从pcap捕获特定接口并在此处询问。似乎很少有人熟悉pcap。我的问题和答案我终于指出了非常有用的细节,可以在下面的链接中找到,你可能会发现它很有用:
答案 3 :(得分:0)
pcap_open_live(3)的手册页上说:
pcap_open_live()用于获取要查看的数据包捕获句柄 网络上的数据包。设备是指定网络的字符串 打开设备在具有2.2或更高版本内核的Linux系统上, 参数“ any”或NULL可用于捕获所有数据包 接口。
答案在最后一行。
因此,请在"any"
调用的NULL
参数中使用device
或pcap_open_live()
从所有接口捕获。
答案 4 :(得分:-1)
要从多个网络接口捕获数据包,您需要调用fork()
个新子进程,然后执行pcap_lookupnet()
然后pcap_open_live()
。
注意:您不能为每个网络接口使用线程而不是create child进程。