In order to sniff from multiple interfaces using pcap, I would do the following (in pseudocode):

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

Is this enough or are there some particular caveats to take into account ?

link|improve this question

feedback

1 Answer

I ran into some issues trying to capture from particular interfaces with pcap and asked about it here. It seemed few were familiar with pcap. My issues, and an answer I finally got pointing out very helpful details, can be found here in the below link which you might find useful:

Confused by libcap (pcap) and wireless

link|improve this answer
This doesn't address sniffing simultaneously from a certain set of interfaces, but select() (as you mention) should handle that as usual. – gnometorule Oct 27 '11 at 14:55
Thanks for pointing out these additional info. – ziu Oct 27 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.