First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

UMTS_RRC_MEasurement Report

  • retag add tags

Hi All, I have the below RRC_MEASUREMENT_REPORT Trace sent by UE to RNC.=> this is one packet only . how can I read the values of the three Scrambling codes, and the three RSCPs... using tshark

RRC-MSG
|           |   msg
|           |     struUL-DCCH-Message
|           |       struUL-DCCH-Message
|           |         integrityCheckInfo
|           |           messageAuthenticationCode:'00100100001110011111010011001001'B
|           |           rrc-MessageSequenceNumber:0x2
|           |         message
|           |           measurementReport
|           |             measurementIdentity:0x1
|           |             measuredResults
|           |               intraFreqMeasuredResultsList
|           |                 CellMeasuredResults
|           |                   cellSynchronisationInfo
|           |                     modeSpecificInfo
|           |                       fdd
|           |                         countC-SFN-Frame-difference
|           |                           countC-SFN-High:0x0
|           |                           off:0x5
|           |                         tm:0xe00
|           |                   modeSpecificInfo
|           |                     fdd
|           |                       primaryCPICH-Info
|           |                         primaryScramblingCode:0x4d
|           |                       cpich-Ec-N0:0x14
|           |                       cpich-RSCP:0x12
|           |                 CellMeasuredResults
|           |                   cellSynchronisationInfo
|           |                     modeSpecificInfo
|           |                       fdd
|           |                         countC-SFN-Frame-difference
|           |                           countC-SFN-High:0x0
|           |                           off:0xaf
|           |                         tm:0x4509
|           |                   modeSpecificInfo
|           |                     fdd
|           |                       primaryCPICH-Info
|           |                         primaryScramblingCode:0x19
|           |                       cpich-Ec-N0:0xc
|           |                       cpich-RSCP:0xf
|           |                 CellMeasuredResults
|           |                   cellSynchronisationInfo
|           |                     modeSpecificInfo
|           |                       fdd
|           |                         countC-SFN-Frame-difference
|           |                           countC-SFN-High:0x0
|           |                           off:0xef
|           |                         tm:0x5e7f
|           |                   modeSpecificInfo
|           |                     fdd
|           |                       primaryCPICH-Info
|           |                         primaryScramblingCode:0x80
|           |                       cpich-Ec-N0:0x7
|           |                       cpich-RSCP:0xc
|           |             eventResults
|           |               intraFreqEventResults
|           |                 eventID:e1a
|           |                 cellMeasurementEventResults
|           |                   fdd-CellMeasRslt
|           |                     PrimaryCPICH-Info
|           |                       primaryScramblingCode:0x19
etarira's avatar
1
etarira
asked 2020-04-10 06:49:21 +0000
grahamb's avatar
23.8k
grahamb
updated 2020-04-10 07:24:34 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

0

Hi all I found the solution to this : it will be in the below format : 1,1,1,1,1,1 is the values of the sub items in the same message

tshark -r export_ETHERNET.pcap -T fields -e ip.src -e ip.dst -e ranap.ProtocolIE_Field_element 10.231.35.67 10.235.214.29 1,1,1,1,1,1 10.235.214.29 10.231.35.111

etarira's avatar
1
etarira
answered 2020-04-18 18:35:47 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

Hi,

tshark cannot read this proprietary log format, so you are out of luck.

Best regards, Pascal.

Pascal Quantin's avatar
5.8k
Pascal Quantin
answered 2020-04-10 13:46:15 +0000
edit flag offensive 0 remove flag delete link

Comments

You didn't read my question well ! tshark does read pcap files, and not this log above. My question is : how can tshark read the pcap trace file and extract the measuredResults fields .

etarira's avatar etarira (2020-04-10 14:14:31 +0000) edit

Well, nowhere in your question it was clear that you had a pcap that would match this proprietary log. If you expect to get some help, it would be a good idea to share the pcap rather than this non Wirehark based decoding. Help us help you.

Pascal Quantin's avatar Pascal Quantin (2020-04-10 19:14:58 +0000) edit

Fine. That is the problem : I was trying to convert this text trace to pcap trace using text2pcap but it is not giving me any output .

To be more precise , my goal is to read these parameters from measurement report : - OFF - tm - Scrambling code for every neighboring cell. In this case, the returned result should be an array or a list instead of a single value !! This is the trick ! How can i do that.

etarira's avatar etarira (2020-04-11 01:50:47 +0000) edit
add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer