How can I eliminate duplicate source addresses so that I only see how many computers are communicating on a certain port? The display is filtered to only show port 137 and the addresses are sorted, but there are hundreds of packets for each source address because the capture ran for quite a while. I want to eliminate the duplicates to only show which computers are using 137. asked 13 Jan '11, 14:22 JTC |
2 Answers:
Would something like the following work?
answered 13 Jan '11, 15:07 Gerald Combs ♦♦ |
Or you can use tshark :-)
This will give you a list of all IP addresses that have sent packets to udp port 137 or ...
...will give you a top 10 of all IP addresses that have sent packets to udp port 137. (If you are on Windows, you can make this work by installing cygwin) answered 16 Jan '11, 00:52 SYN-bit ♦♦ |
(yes, I had students in my class actually starting to count lines by hand once) :-)