Reputation: 11
I captured packet using tcpdump -i {interface } -w file.pcap command and I want to read the packet in a human-readable language. how to do it? How to read .pcap file just using shell script. Or suggest any alternative for it(without using any software)
Upvotes: 1
Views: 9692
Reputation: 1692
With tcpdump you can create a file with -w
.
But tcpdump can read this file with -r
with many other display feature .
You can use tcpflow
/ tshark
( text tools ) to read the dump made by tcpdump
.
Upvotes: 1