sham
sham

Reputation: 31

View protocol messages of pcap file in linux command line

I am trying to view diameter messages captured in pcap file using tcpdump -r . But I am not able to see the diameter message. Is there any other command to view the diameter messages in a pcap file in linux command line.

Thanks in advance.

Upvotes: 3

Views: 2108

Answers (1)

user16139739
user16139739

Reputation: 1155

As Steffen Ullrich says, use tshark - tshark -r {capture file} for one-line summaries (same as the packet list in Wireshark), or tshark -V -r {capture file} for detailed information (same as the packet details in Wireshark).

Upvotes: 3

Related Questions