I am using tshark to see some packets, but when I user the -T fields -e xxxx, I don't see a number instead of the actual meaning, is there an option I should put to be albe to see the field name and not the number For example I am looking at SGs failure, instead of seeing sgsap.msg_type as "SGsAP-PAGING-REJECT", I see sgsap.msg_type "2", If I use tshark -r file.pcap, I am going to see the output as I see it in wireshark with the names asked 14 Apr '15, 12:29 alfromero |
One Answer:
tshark -T fields -e xxx prints the raw values and there is no way to get the "text representation" of those values without a code change. So, what you can do it to run the following command and then parse the output with a script:
Sample Output:
As an alternative, you can also run this command to get more structured output
Regards answered 15 Apr '15, 02:32 Kurt Knochner ♦ |