Hello everybody, I'm using tshark to read a pcap file of Diameter Protocol. Normally, I use "tshark -r", but doing this, it does not decode the AVP value (" val=%s") (function "dissect_diameter_avp" in "packet-diameter.c"). When I use option "-T ek", tshark is able to decode AVP value. But in this way, it prints a lot of information on screen and slow down the performance. Please help me to clarify two problems:
Thank you very very much. asked 20 Sep '17, 03:42 hoangsonk49 edited 20 Sep '17, 03:43 |
One Answer:
I'm not familiar with using
If you want the value of all AVP's, that's a little harder. I suppose you could run through the file multiple times for each AVP? I don't know what you're trying to do, but here's a script that does that, which may or may not help you:
answered 20 Sep ‘17, 15:20 cmaynard ♦♦ |
Thank you, cmaynard. My problem solved. Thanks for your very useful support :)