Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
10da6aa4
Commit
10da6aa4
authored
Mar 17, 2025
by
francescomani
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/add-ci-test-msg3-c-rnti-ra' into integration_2025_w11
parents
dcf7e4dd
7ba0613a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
1 deletion
+30
-1
ci-scripts/xml_files/container_5g_rfsim_24prb.xml
ci-scripts/xml_files/container_5g_rfsim_24prb.xml
+17
-0
ci-scripts/yaml_files/5g_rfsimulator_24prb/docker-compose.yaml
...ripts/yaml_files/5g_rfsimulator_24prb/docker-compose.yaml
+4
-1
common/utils/telnetsrv/telnetsrv_ciUE.c
common/utils/telnetsrv/telnetsrv_ciUE.c
+9
-0
No files found.
ci-scripts/xml_files/container_5g_rfsim_24prb.xml
View file @
10da6aa4
...
...
@@ -34,6 +34,9 @@
020002
030001
030002
040001
000004
020002
100001
222222
</TestCaseRequestedList>
...
...
@@ -76,6 +79,12 @@
<nodes>
cacofonix
</nodes>
</testCase>
<testCase
id=
"000004"
>
<class>
IdleSleep
</class>
<desc>
Sleep
</desc>
<idle_sleep_time_in_sec>
5
</idle_sleep_time_in_sec>
</testCase>
<testCase
id=
"020001"
>
<class>
Ping
</class>
<desc>
Ping ext-dn from NR-UE
</desc>
...
...
@@ -118,6 +127,14 @@
<iperf_bitrate_threshold>
90
</iperf_bitrate_threshold>
</testCase>
<testCase
id=
"040001"
>
<class>
Custom_Command
</class>
<desc>
Force Msg3 C-RNTI RA
</desc>
<node>
cacofonix
</node>
<command>
echo ciUE force_crnti_ra | nc 192.168.71.150 8091
</command>
<command_fail>
yes
</command_fail>
</testCase>
<testCase
id=
"100001"
>
<class>
Undeploy_Object
</class>
<always_exec>
true
</always_exec>
...
...
ci-scripts/yaml_files/5g_rfsimulator_24prb/docker-compose.yaml
View file @
10da6aa4
...
...
@@ -109,7 +109,10 @@ services:
-
NET_ADMIN
# for interface bringup
-
NET_RAW
# for ping
environment
:
USE_ADDITIONAL_OPTIONS
:
--rfsim -r 24 --ssb 24 --numerology 1 -C 3604800000 --uicc0.imsi 208990100001100 --rfsimulator.serveraddr 192.168.71.140 --log_config.global_log_options level,nocolor,time
USE_ADDITIONAL_OPTIONS
:
--rfsim -r 24 --ssb 24 --numerology 1 -C 3604800000 --uicc0.imsi
208990100001100
--rfsimulator.serveraddr 192.168.71.140 --log_config.global_log_options level,nocolor,time
--telnetsrv --telnetsrv.shrmod ciUE --telnetsrv.listenaddr 192.168.71.150 --telnetsrv.listenport
8091
ASAN_OPTIONS
:
detect_leaks=0:detect_odr_violation=0
depends_on
:
-
oai-gnb
networks
:
...
...
common/utils/telnetsrv/telnetsrv_ciUE.c
View file @
10da6aa4
...
...
@@ -94,11 +94,20 @@ int force_RRC_IDLE(char *buf, int debug, telnet_printfunc_t prnt)
return
0
;
}
/** @brief Trigger RA with Msg3 C-RNTI */
int
force_crnti_ra
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
0
);
trigger_MAC_UE_RA
(
mac
,
NULL
);
return
0
;
}
/* Telnet shell command definitions */
static
telnetshell_cmddef_t
cicmds
[]
=
{
{
"sync_state"
,
"[UE_ID(int,opt)]"
,
get_sync_state
},
{
"force_rlf"
,
""
,
force_rlf
},
{
"force_RRC_IDLE"
,
""
,
force_RRC_IDLE
},
{
"force_crnti_ra"
,
""
,
force_crnti_ra
},
{
""
,
""
,
NULL
},
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment