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

How does wireshark dissect a PDCP-LTE header?

0

How does wireshark dissect a PDCP-LTE header? I mean what should be the initial bytes in a raw packet data for it be identified as a PDCP-LTE packet by wireshark

asked 07 Sep '11, 04:16

Chaitanya%20Pratapa's gravatar image

Chaitanya Pr...
1111
accept rate: 0%

Is this helpful? http://wiki.wireshark.org/PDCP-LTE

(07 Sep '11, 10:09) Anders ♦

PDCP is not a protocol that can just be passed to the dissector, you need to give it some context (see struct pdcp_lte_info in packet-pdcp-lte.h - there is a link on the wiki page).

The available options are: - use a log file format that has this information and can be read (currently only IxCatapult .out files) - log from your PDCP application code by sending UDP frames whose headers contain the info (again see wiki page) and capture those frames in Wireshark - configure RLC to call it. Until a couple of days ago, it would only call the PDCP dissector for complete SDUs, but now basic re-assembly is supported).

(07 Sep '11, 10:34) MartinM