Questions tagged [packet-capture]

Packet capture is the act of capturing data packets crossing a computer network. Packet capture can be: Deep packet capture (headers & payload), or partial packet capture (headers only).

Packet capture is the act of capturing data packets crossing a computer network. Deep packet capture (DPC) is the act of capturing, at full network speed, complete network packets (header and payload) crossing a network with a high traffic rate. Once captured and stored, either in short-term memory or long-term storage, software tools can perform Deep packet inspection (DPI) to review network packet data, perform forensics analysis to uncover the root cause of network problems, identify security threats, and ensure data communications and network usage complies with outlined policy. Some DPCs can be coupled with DPI and can as a result manage, inspect, and analyze all network traffic in real-time at wire speeds while keeping a historical archive of all network traffic for further analysis.

Partial packet capture can record headers without recording the total content of datagrams. This can reduce storage requirements, and avoid legal problems, but yet have enough data to reveal the essential information required for problem diagnosis.

Source: Wikipedia.

173 questions
-1
votes
1 answer

Is it Possible to Capture All HTTP Packets to a Target IP on a subnet?

I've been trying to use tcpdump to capture packets to a target IP on my subnet, but am unable to do so successfully. I've tried: tcpdump -i eth0 net network-ip-address/27 -A and tcp port 80 But it only gives me the packets I send from my IP to the…
Hikari
  • 1
  • 1
-1
votes
1 answer

Why is my chunked request removing the trailing CRLF?

I've just spent the past 10 hours trying to figure out why my http request was failing when I did a request.Content.ReadAsMultipartAsync().Result.Contents It kept returning the error: Unexpected end of MIME multipart stream. MIME multipart message…
Scottie
  • 169
  • 1
  • 6
-1
votes
2 answers

block all packets in windows 7 (so nothing appears in wireshark)? Can anything locally installed do it?

is it possible to block all packets in windows 7, so that nothing appears in wireshark? I have tried choosing Block all for incoming. for outgoing, I see it has no block all option, just a block option so it's a whitelist. I tried that and…
barlop
  • 111
  • 1
  • 9
-1
votes
1 answer

Wireshark not displaying GET or POST data

I'm a student and I'm taking my first networking class. I'm working on an assignment designed to get me used to using Wireshark and understanding packet transfers. Part of the assignment is to collect some data about a certain GET request, but my…
user82130
  • 103
  • 1
-1
votes
2 answers

Simple IP load balancer for web service that runs on Windows XP or Windows 7 Professional?

I've a closed code application that needs to connect to a web service that needs to run on XPs or Windows 7 (desktop). The application can only connect to a single IP address. The application is low volume - less than 1000 HTTP GETs a day. The…
-2
votes
2 answers

Why do different packet analyzers sometimes produce different results?

I ran wireshark and windump at the same time. Both packet analyzers use the same winpcap library. However after doing a row by row comparison of the results I noticed both every column between the 2 matches except for the protocol and info columns,…
DAT BOI
  • 1
  • 1
  • 2
-2
votes
1 answer

How many data packets does it take to log in to facebook?

I want to find out how many packets are sent when visiting a site on the web. What's a good program that would help me get this kind of data?
Jacksonkr
  • 465
  • 1
  • 7
  • 16
-5
votes
1 answer

How packet is transmitted over the network?

I am writing discrete event-driven simulator to measure time between sending datasets over network. If multiple processes sends n packets through network they (packets) will go one after one through link or they will simultaneously share network via…
1 2 3
11
12