How can I keep the RRC connection active while switching off the UE and then switch it back on to establish another RRC connections? #965
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How can I keep the RRC connection active while switching off the UE and then switch it back on to establish multiple RRC connections?
I want to perform the following sequence:
* Keep the RRC connection established between the UE and eNB active, even while the UE is switched off.
* Once the UE is switched back on, I want to establish another RRC connections between the UE and eNB.
However, I have encountered an issue where after switching the UE off and then on again, the existing RRC connection is terminated and a new RRC connection is established each time. Below is the code snippet I’m using to simulate the switching off and on of the UE:
Each time the ue.switch_off() is called, followed by ue.switch_on(), the existing RRC connection gets terminated, and a new RRC connection is created. I would like to maintain the original RRC connection during this process.
Beta Was this translation helpful? Give feedback.
All reactions