Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

time difference between two packets in wireshark

I want to calculate the time difference between the time from sending the packet, to getting its ACK back. I do not see any timestamp related information in the packet, could anyone give me any pointers as to how I can compute the difference.

like image 908
Ashrip Avatar asked Feb 25 '15 17:02

Ashrip


2 Answers

In Wireshark Preferences / Appearance / Columns you can add a new column of type Delta time. With this new column and wise capture filtering you should be able to do what you want.

like image 151
Pedro Ferreira Avatar answered Dec 24 '22 13:12

Pedro Ferreira


  1. Apply a filter, so that you only see the frames you are interested in
  2. Right click on column title bar and choose "Column Preferences..."
  3. Click on "Add" (give the column a reasonable name)
  4. Change field type to "Custom"
  5. Type "frame.time_delta_displayed" in "Field name" without "
like image 42
Frode Akselsen Avatar answered Dec 24 '22 13:12

Frode Akselsen