Hi, I extract the tshark packet list fields into a CSV using:
Rather than use Thanks and regards...Paul asked 15 Apr '17, 15:00 PaulOfford |
One Answer:
I'm not aware of a way to do this directly with Wireshark, but you might be able to write a Lua postdissector that utilizes field extractors of both the UDP and TCP source and destination ports and then add a new generic port number field which you can then specify on the Another possible alternative might be to just specify the columns you want, but if you want them comma-separated in order to be able to export them to a CSV file, then that probably won't work for you. Here's what that might look like though:
Run answered 15 Apr '17, 16:45 cmaynard ♦♦ |