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
0
votes
1 answer

syn flood attack -- packet hits on shared ip

How can I dump the TCP packets to get a better idea to know which website is being attacked? Here is what I have in my logs: May 4 23:10:26 host kernel: [2130002.635000] Firewall: *SYNFLOOD Blocked* IN=eth0 OUT=…
0
votes
1 answer

Possible causes of high download activity on network

We had an issue where we noticed approximately 170GB of data downloaded as http traffic over a one week period on our network. After locking down many services and running a hub as an in between capture point with a tracing package we noticed that…
dasko
  • 1,244
  • 1
  • 22
  • 30
0
votes
1 answer

Filter ip traffic based on certain packet bits

I want to capture ip traffic at a linux machine based on the following bpf filter: ether[45]=0x11 and ether[68]=0x34 Incoming traffic is around 20Gbps and the filter discards 95% of the traffic. As my linux machine gets overloaded, I want to put a…
nkout
  • 101
0
votes
1 answer

Filtering inbound traffic without knowing the destination subnet

I have a linux machine configured as a router with two interfaces facing LAN A and LAN B. I want to filter traffic passing from LAN A to LAN B (inbound traffic) using tcpdump, but I don't have the subnet information of the LANs (not this: dst net…
Yasser
  • 101
  • 1
0
votes
1 answer

Log http data in unique files using tcpick

I'm trying to use tcpick to log http data in unique files (client and server mixed together). This is one of the examples from tcpick's man page: $ tcpick -i eth0 "port 80" -wRub I expected this to write the tcp stream to a file named…
otto.poellath
  • 545
  • 1
  • 5
  • 9
0
votes
1 answer

Capturing network traffic (rtmp) between VMs or using loopback in the same VM using wireshark

I need to to capture RTMP traffic between two virtual machines (server and client) or atleast have the server and client on the same machine and capture the traffic. I am able to capture the traffic if I run wireshark on the host rather than on the…
ssn
  • 111
  • 5
0
votes
1 answer

obtaining nimbuzz server certificate for nmdecrypt expert in NetMon

I'm using Network Monitor 3.4 with the nmdecrypt expert. I'm opening a nimbuzz conversation node in the conversation window and i click Expert-> nmDecrpt -> run Expert that shows up a window where i have to add the server certificate. I am not sure…
lurscher
  • 172
  • 1
  • 3
  • 17
0
votes
2 answers

capture nimbuzz traffic

I need to capture all the traffic, specially during login, between nimbuzz pc client and nimbuzz server. The reason is that i need to debug outgoing packets at login that mark the user visibility status in order to reproduce them in a in-house XMPP…
lurscher
  • 172
  • 1
  • 3
  • 17
0
votes
3 answers

How do I trace from my client PC what databases it connects to

I wonder if there is some way to trace what servers my program using OLEDB tries to connect to. Problem: I have a program displaying some reports made in Crystal Reports. The loading of some reports are really slow when. My guess is that they have…
mortb
  • 103
  • 5
0
votes
2 answers

How can I see http/https URL's in Microsoft Network Monitor 3.x capture files?

I've used Microsoft Network Monitor 3.x before for various reasons but realized today I don't know how to tell the URL inside a conversation. I've got it set for "Windows" Parser Profile and I see a list of TCP and TLS packets, but was hoping there…
Bret Fisher
  • 3,973
  • 2
  • 21
  • 25
0
votes
1 answer

How can I read a packet capture file from a Cisco RV 120W?

What program should I use? (the file is generated on RV 120W under Diagnostics section)
700 Software
  • 2,233
  • 10
  • 49
  • 77
0
votes
3 answers

How to see an application network protocol communication in real time

I would like to see the protocol used by client-server application in real-time. I'm not interested in any statistics. All I want to see is the message sent by server and the client. This is FreeBSD specific if that helps.After some googling I found…
Srikanth
  • 101
  • 2
0
votes
2 answers

Packet Sniffing through proxy PC via router

i have a linksys wireless N router. I want to setup a proxy on my Windows 7 PC along with a packet sniffer, and setup my devices to use the proxy on the Windows 7 PC. So far, I've tried Squid, but it's too cumbersome and the command line is not…
Daddy
  • 237
  • 1
  • 4
  • 10
0
votes
1 answer

Linux TCP stack and network cards performance: packets per minute before drop?

how much TCP packets should come at 100/1000mbit network card (not an embedded Realtek's home solution) before the Linux kernel will become unable to process the NIC's buffer resulting in packet drop? Hardware: let's say about dual-core Xeon +…
kagali-san
  • 1,991
  • 5
  • 17
  • 20
0
votes
2 answers

How Packets are absorbed in a ring connection?

In a bus topology you have a terminator which absorbs unused packet(noise).What happens in the case of a ring topology?
user51911