This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

How to dissect user data from rtps2 protocol?

0

I am using OpenSplice DDS and wants to retrieve user data from wireshark. Can you please let me know how to retrieve the same?

asked 11 Feb '14, 20:28

Usha's gravatar image

Usha
1111
accept rate: 0%


One Answer:

0

You can use tshark

tshark -nr input.pcap -Y "rtps" -T fields -e frame.number -e rtps.param.userData

See the Real-Time Publish-Subscribe Wire Protocol display filter reference for more fields.

You can also add that field (rtps.param.userData) as a new column in Wireshark

http://www.lovemytool.com/blog/2009/10/chris_greer_10.html

Regards
Kurt

answered 12 Feb '14, 02:04

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%