Hi All, I want to use tshark to display the raw packets. By using the command and options: tshark -x -r file.pcap the tshark displays all the packets. I want to view the packets one by one, but can not find the option to display say the 1st packet. Thanks in advance. /Dan asked 09 Nov '10, 03:05 danyigez |
One Answer:
You can use a display filter to only select a particular frame.number:
If you want to display more than one packet, you can combine it with the -c option:
This would show you 10 packets starting at packet 100. answered 09 Nov '10, 03:11 SYN-bit ♦♦ |