Hi everybody: I would want to know how to see data about old packets(For example:Select a packet of 6 days ago).Is it possible? Thanks in advance. Francisco. asked 04 Apr '15, 14:22 3J Kernel |
2 Answers:
I believe, you are asking how to view data in Wireshark that has been sent over the network a couple of days ago. If so, that's not possible if you started Wireshark only today. Please see my answer to a similar question:
If I misinterpreted your question, the answer of @mrEEde is the right answer. Regards answered 06 Apr '15, 04:02 Kurt Knochner ♦ |
If I understand your question correctly you are looking for display filter. The time display format can be changed to seconds since epoch. If your current epoch time is frame.time_epoch == 1427705316.066260000 and you want to see packets 6 days ago you need to substract 3600x24x6 518400 seconds and you get the epoch time from 6 days earlier and construct a display filter using
- It's probably easier to use the editcap -A -B options and specify the desired timeframe
Regards Matthias answered 04 Apr '15, 23:51 mrEEde edited 04 Apr '15, 23:57 |
Yes, I mean that question.Thanks for the answer(and thank you to @mrEEde for his answer too)