top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

what is difference in the content of message UE sending rrcconnection reqst and reestablishment rqst?

+3 votes
360 views

RRC Connection Request and RRC connection Restablishment Request how these two are varied in terms of content it carries

posted Aug 1, 2016 by Suchakravarthi Sripathi

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote
 
Best answer

First of all both the messages have different purpose even both of them are transmitted over common channel (CCCH).
RRC Connection Request message is sent by UE to eNodeB when it was not having connection with the eNodeB for example: UE attaching to the network or for mobile originating and terminating calls.
RRC Connection Request contains the initial UE identity which can be 5 bytes long S-TMSI or random generated number. Along with initial UE identity, UE sends rrc establishment cause to eNodeB to inform the eNodeB that what causing the UE to make RRC connection.

After establishment of RRC connection between UE and eNodeB, if RRC connection brokes (due to radio link failure, rrc reconfiguration failure or handover failure) between UE and eNodeB then UE initiates RRC Connection Re-establishment Request message to eNodeB considering a valid UE context will be at eNodeB. That's why UE send ReestabUE-Identity (C-RNTI, physical cell identity and short MAC-I) along with cause value. By using re-establishUE identity, eNodeB fetch the UE context also check for the authenticity of UE based on the received short-MACI. If eNodeB has context then it will proceed with rest of signalling else it will respond UE with the rrc connection re-establishment reject message.

Now, you can easily make out why both the messages carry different set of information.

answer Aug 1, 2016 by Vimal Kumar Mishra
Hi vimal, thanks for your explanation. As RRCconnectionRequest and RRCConnectionReestablishment request both can consider as Msg3 ( different scenarios and purpose) but how eNodeB identifies it as RRCconnectionRequest or RRCConnectionReestablishment request?
UE RRC builds RRC connection request message and sends within the UL-CCCH message. Definition of UL-CCCH is as following:
UL-CCCH-Message ::= SEQUENCE {
    message                    UL-CCCH-MessageType
}

UL-CCCH-MessageType ::= CHOICE {
    c1                        CHOICE {
        rrcConnectionReestablishmentRequest        RRCConnectionReestablishmentRequest,
        rrcConnectionRequest                    RRCConnectionRequest
    },
    messageClassExtension    SEQUENCE {}
}

Based on the choice value, RRC layer at the eNodeB come to know whether it is re-establishment or rrc request. Re-establishment corresponds to value "0" and RRC connection request corresponds to value "1" in UL-CCCH message.
Thanks alot for your help...
0 votes

Hi sripathi,

Msg3 is common name at ENB side,But ENB RRC can differentiate by disecting msg3. It can differentiate whether msg3 is rrcconnectionrequest or rrcconnectionreestablishment by checking msg type in msg3.

answer Aug 1, 2016 by Jaganathan
Thanks alot for your help...
Similar Questions
0 votes

What is size and content of RACH first message (Random Access Preamble transmission) by UE to eNodeB.
Also if someone can explain the fields and sizes?

+3 votes

Need clarity on following items:
1. What is the use of "UE selected plmn" information for an eNodeB ?
2. Is the ECGI/TAI constructed based on the primary plmn (PLMN broadcasted in 0th index in SIB1 ) or based on the UE selected PLMN ?

+4 votes

There are couple of procedures are defined which consist of NAS as well as RRC signalling messages exchange.
Some of the NAS message sends to an UE through RRC Connection Reconfiguration message as piggybacked and some as DL Info transfer.

I want to know, Is there any procedure exists in lte when an UE receives RRC Connection Reconfiguration along with NAS message and responds back to network with NAS message first and then Reconfiguration Complete to eNodeB.

Usually, I saw UE sends RRC Connection Reconfiguration Complete message first then NAS response message.

...