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

How to check RLC-LTE -Logger output in wireshark

0

Hi all,

Thank you for your valuable support.

I want to run the rlc_lte_logger.c which is available in RLC-LTE Wireshark link.Whether I have to run from source code directory or somewhere in wireshark installed directory.How to check the RLC-LTE PDU FRAMES output in wireshark window.what are the settings I have to make in wireshark.Please explain me in detail.

Thanks and regards, Sathish.

asked 28 Mar '15, 23:50

Sathish%20kannan's gravatar image

Sathish kannan
6778
accept rate: 0%


One Answer:

1

In Wireshark, you must ensure that the following options are checked:

  • Edit -> Preferences -> Protocols -> UDP -> Try heuristic sub-dissectors first
  • Edit -> Preferences -> Protocols -> RLC-LTE -> Try heuristic LTE-RLC over UDP framing

answered 29 Mar '15, 01:52

Pascal%20Quantin's gravatar image

Pascal Quantin
5.5k1060
accept rate: 30%

Hi Pascal,

Thank you for your reply.

I want to know in which directory in the wireshark I can run that sample rlc-lte logger program which is available in RLC-LTE wiki.

Thanks, Sathish

(29 Mar '15, 10:14) Sathish kannan

The sample program is completely independent of Wireshark. It opens a UDP socket towards the IP address and port given as argument, and sends 3 hardcoded PDUs. It can be run from whatever place you want.

(29 Mar '15, 11:21) Pascal Quantin

Hi Pascal,

Thank you for your reply.

I want to know how to check 3 hardcoded RLC-LTE PDUs in wireshark. whether it shows like UDP PROTOCOL or RLC-LTE PROTOCOL.

Thanks, Sathish

(29 Mar '15, 23:28) Sathish kannan

You need to capture on the interface corresponding to the address you give as parameter to the rlc_lte_logger program (that you compiled yourself- see the source code for details) and configure Wireshark per my first answer. If everything is configured properly, it will appear as RLC-LTE.

To compile the program, by default it expects to be in a folder next to wireshark source code:

include "../wireshark/epan/dissectors/packet-rlc-lte.h"

You can modify this line according to your needs.

(30 Mar '15, 04:32) Pascal Quantin