Average network traffic of specific port

asked 2020-03-14 19:07:46 +0000

Hello all, I am trying to find the average Mbit/s of traffic going to a specific udp port for the duration while traffic is going to another specific udp port. Could anyone help me? I know the summary tab will give me the average but its just about getting the filter correct I guess, thanks!

edit retag flag offensive close merge delete

Comments

Hello, thanks but that's not what I mean. Maybe I should be more clear. I'm trying to find the average Mbit/s for the traffic stream going into udp port 9. So the filter is udp.dstport == 9. But that just gets the average for all udp packets destined for port 9 for the duration of the capture. What I'm looking to find is the average Mbit/s for the traffic stream going to udp port 9 but only for the duration where there's also traffic going to udp port 7522. (This is to show the reduced data rate when there's other packets sent at the same time). I use (udp.dstport == 9) && (udp.dstport == 7522) but obviously that returns information for both which is not what I want since it's just udp port 9 but with the mentioned constraints. Sorry if this is confusing!

Eamon123 gravatar imageEamon123 ( 2020-03-14 20:00:44 +0000 )edit

I think you want an I/O graph. Can you post an anonymous trace? Easier to show you.

Bob Jones gravatar imageBob Jones ( 2020-03-14 21:03:51 +0000 )edit

Hi Bob the files quite large and my internet connection is very poor so I can't I'm afraid sorry. How would I go about doing it in an I/O graph could you tell me? One other way I was considering doing it was by finding out at what line the first and last packet were sent to udp port 7522 and then including this in my filter. So (udp.dst.port == 9) && (frame.number >= <7522firstLine#>) && (frame.number <= <7522lastLine#>) and then viewing the results in Statistics Summary. But I would of thought there was a more straightforward way to achieve the outcome than how I have described. Thanks!

Eamon123 gravatar imageEamon123 ( 2020-03-14 21:24:09 +0000 )edit

You can specify a range for the frame number:

(udp.dst.port == 9) && frame.number in {10..20}


Have you looked at the Statistics->Conversations: UDP tab?
If you can identify the conversations there is a column for Bits/s.

Chuckc gravatar imageChuckc ( 2020-03-14 21:28:01 +0000 )edit