DEV Community

Cover image for Capture Network Packet
CJ
CJ

Posted on • Originally published at chuanjin.me

Capture Network Packet

Tcpdump is a very useful tool to capture network packets.
e.g. to capture TCP packet from interface lo0 via port 9999

sudo tcpdump -i lo0 port 9999 -XX -v

Here demostrate sending some UDP packets, using tcpdump to capture them and using Tcpreplay to playback.

  1. Send some UDP packets via port 9999
  2. Listen UDP packets from port 9999
  3. Capture UDP packet using Tcpdump, save captured packets into a file
  4. Playback captured packets
  5. Listen UDP packets to verify

Let's have more fun! Assuming we have captured some UDP packets using the command below:

sudo tcpdump -i en0 udp port 3333 -XX -v -w li.pcap

Then we use tcprewrite command to reverse the source and destination.

And if we double check the modified .pcap file, it shows as we want.

I also wrote a shell script to rewrite the network package automatically.

References:

Top comments (0)