Reputation: 3028
How to find UDP packet's round trip time from Wireshark tool??i am getting lot of upd packets at a time.So i want to find for each packet,how long it take to send a resposne.Is any other tool for accomplishing this??
Upvotes: 0
Views: 3493
Reputation: 27571
Wireshark can not help in this, since it only records time it sees UDP packet sent.
Try ping remote_host_IP_addr
- it gives statistics regarding RTT (round trip time)
Upvotes: 1