Retrying RACH for Multiple RRC Connections #1433
Kong-TaeHyeon
started this conversation in
General
Replies: 1 comment 1 reply
-
Is a 'Connection Setup Complete' message being sent from the UE? It's my understanding that this needs to occur before the eNB (HSS) sends an 'Authentication Request'. |
Beta Was this translation helpful? Give feedback.
1 reply
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
-
Goal
I want to establish multiple RRC connections with the same eNB.
I have set up the USRP B210 as the eNB and the USRP B205 mini as the UE.
I have modified the handle_con_setup function (src/stack/rrc/rrc.cc) and the parse_authentication_response function (src/stack/upper/nas.cc).
My Intention
After the UE successfully establishes an RRC connection with the eNB, handle_con_setup is invoked, but the NAS authentication response is not sent, causing the eNB to wait. The UE then calls leave_connection(). After this, the UE retries the RACH and RRC procedures. This process repeats.
Problem (I Guess. . .)
However, when the UE retries RACH, it seems to perform a cell search again, which causes a delay of about 20 seconds before the connection is re-established. How can I retry RACH without performing the cell search?
![image](https://private-user-images.githubusercontent.com/155454364/393114719-6622c57b-4cf7-4172-a60f-4e2d99c6c9b9.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NjIzMDEsIm5iZiI6MTczOTY2MjAwMSwicGF0aCI6Ii8xNTU0NTQzNjQvMzkzMTE0NzE5LTY2MjJjNTdiLTRjZjctNDE3Mi1hNjBmLTRlMmQ5OWM2YzliOS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxNVQyMzI2NDFaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1jZTE3OWI4M2ViMjAwYzIzMzNhYzk3YjYwOTc3MTY0MzI0YjhjMDU1MDQ1YzJkZTcwNDFhZDBkMmU3MGNhZDZiJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.qE43pZOa3XIJRhm39uJy18Pv5q_FDpvf3GAaCVjQkpw)
![image](https://private-user-images.githubusercontent.com/155454364/393121344-b920df13-8731-4744-a5e8-000b6d71ab24.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NjIzMDEsIm5iZiI6MTczOTY2MjAwMSwicGF0aCI6Ii8xNTU0NTQzNjQvMzkzMTIxMzQ0LWI5MjBkZjEzLTg3MzEtNDc0NC1hNWU4LTAwMGI2ZDcxYWIyNC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxNVQyMzI2NDFaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0zYzQ5M2E1ZDk3MDUxNTA4Y2EzOWNjNzZkYmNiMTFiZjdhYzE4NzJhNDA1OTYyMDNkMDQ4NjY0NTZkNTc5MTg1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.BvEtfwNgBluCqA1kbujxFskS5zvXPfs1yv0xA9i6mOY)
Beta Was this translation helpful? Give feedback.
All reactions