I need to create a display filter that does the following: For each source IP address, list all destination IP addresses, but only list unique protocols for each destination IP address. In other words, I want to see only one row of data for each unique: ip.src = X, ip.dst = Y, protocol = Z I'd like to create this filter such that it covers all source IPs, so I don't have to create a separate filter for each source IP address. I need to do the above for many PCAP files in "batch" mode. If this cannot be done in the Wireshark GUI, then I would like a command-line (tshark) solution. asked 21 Aug '14, 13:03 moving2 edited 21 Aug '14, 13:08 |
One Answer:
I think you'll have to use
Note: If you want protocol numbers instead of protocol names, substitute answered 25 Aug '14, 12:47 cmaynard ♦♦ |