Tagged Questions

3
votes
3answers
776 views

libpcap setfilter() function and packet loss

this is my first question here @stackoverflow. I'm writing a monitoring tool for some VoIP production servers, particularly a sniff tool that allows to capture all traffic (VoIP calls) that match a ...
2
votes
3answers
2k views

Can libpcap reassemble TCP segments

I need to sniff TCP traffic into my application. Can libpcap reassemble TCP segments or I have to do it manually? The home page says "Full documentation is provided with the source packages in man ...
1
vote
1answer
101 views

How to capture traffic from multiple interfaces using pcap

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 ...
1
vote
2answers
264 views

pcap datalink LINUX_SLL

I'm trying to write a simple packet sniffer using libpcap. The first thing i'm trying to do when i capture a packet is to recognise the datalink protocol used and find the size of the header for that ...
1
vote
2answers
147 views

libpcap inter-arrival times and scheduler

I am doing research about network traffic characterization. While processing collected data (captured by tcpdump and saved to a database), I stumbled over the weird phenomenon with packet (or flow) ...
1
vote
2answers
397 views

linux editor similar to notepad++ for packet captures

I am looking for a very specific functionality which Notepad++ has in a linux text editor: So you have a spiffy packet from tcpdump. Notepad++ allows you to easily strip away the left hex via ...
0
votes
1answer
29 views

libpcap - capture packets from all interfaces

I need to capture packets from all network interfaces on Linux machine. In order to do it I'm planning to use pcap_open_live() API and pass "any" as a device argument. I have different types of ...
0
votes
1answer
51 views

TCP messages getting coalesced

I have a Java application that is writing to the network. It is writing messages in the region of 764b, +/- 5b. A pcap shows that the stream is getting IP fragmented and we can't explain this. Linux ...
0
votes
0answers
117 views

Converting a PCAP trace to NetFlow format

I would like to convert some PCAP traces to Netflow format for further analysis with netflow tools. Is there any way to do that? Specifically, I want to use "flow-export" tool in order to extract ...
0
votes
2answers
558 views

su -c gives “[1] Segmentation fault ” in Android (Linux)

I am facing this strange problem in my android , When I try to run a executable by using : su -c "/path/to/executable" I get this error: [1] Segmentation fault /path/to/executable however, ...
0
votes
1answer
69 views

Tool to discard packet payload?

I'm trying to anonymize packets from a pcap file that I have. I need to discard all the packets payloads/content (leaving only header information) and was wondering if there would be a tool that I ...
0
votes
1answer
276 views

listening using Pcap with timeout

I want to write a small application using Libpcap in C on Linux. Currently, it starts to sniff and wait for the packets. But that's not what I need actually. I want it to wait for N seconds and then ...
0
votes
2answers
236 views

how to determinate destination MAC address

My application is running on CentOS 5.5 I need to send raw packets using libpcap API: pcap_inject() or pcap_sendpacket() To the specific IP address How can I determinate MAC address belongs to a ...
0
votes
1answer
691 views

Linking with new version of libpcap library

I would like to install and use latest version (1.1.1) of the libpcap on CentOS 5.5 machine. I configured, compiled and installed new libpcap library by: [dima@localhost libpcap-1.1.1]$ ./configure ...