I'm trying to find and filter out large talkers through the packet decoder that could help in reducing our license usage.
What's the best way to find these large talkers on the decoder?
Thanks.
I'm trying to find and filter out large talkers through the packet decoder that could help in reducing our license usage.
What's the best way to find these large talkers on the decoder?
Thanks.
Jeremy
You could do something like a top 10 source addresses sorted by size
Aggregate by ‘packet size’
Select ip.src
Where ip.sec exists (You could put a network zone label in here too)
Descending order
And choose 10 (or what ever count you want)
Dave