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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
zzha zzha
OpenXG-RAN
Commits
dc2865f3
Commit
dc2865f3
authored
May 13, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added logs and updated eNB conf file for EPC if necessary
parent
bfa5d486
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
ci-scripts/conf_files/rcc.band7.tm1.nfapi.conf
ci-scripts/conf_files/rcc.band7.tm1.nfapi.conf
+4
-4
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+2
-0
openair3/GTPV1-U/gtpv1u_eNB.c
openair3/GTPV1-U/gtpv1u_eNB.c
+2
-1
No files found.
ci-scripts/conf_files/rcc.band7.tm1.nfapi.conf
View file @
dc2865f3
...
@@ -191,10 +191,10 @@ eNBs =
...
@@ -191,10 +191,10 @@ eNBs =
NETWORK_INTERFACES
:
NETWORK_INTERFACES
:
{
{
ENB_INTERFACE_NAME_FOR_S1_MME
=
"
lo
"
;
ENB_INTERFACE_NAME_FOR_S1_MME
=
"
ctrl0
"
;
ENB_IPV4_ADDRESS_FOR_S1_MME
=
"1
27.0.0.1
"
;
ENB_IPV4_ADDRESS_FOR_S1_MME
=
"1
92.168.61.3
"
;
ENB_INTERFACE_NAME_FOR_S1U
=
"
lo
"
;
ENB_INTERFACE_NAME_FOR_S1U
=
"
ctrl0
"
;
ENB_IPV4_ADDRESS_FOR_S1U
=
"1
27.0.0.1
"
;
ENB_IPV4_ADDRESS_FOR_S1U
=
"1
92.168.61.5
"
;
ENB_PORT_FOR_S1U
=
2152
;
# Spec 2152
ENB_PORT_FOR_S1U
=
2152
;
# Spec 2152
ENB_IPV4_ADDRESS_FOR_X2C
=
"127.0.0.1"
;
ENB_IPV4_ADDRESS_FOR_X2C
=
"127.0.0.1"
;
ENB_PORT_FOR_X2C
=
36422
;
# Spec 36422
ENB_PORT_FOR_X2C
=
36422
;
# Spec 36422
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
dc2865f3
...
@@ -9027,6 +9027,7 @@ void rrc_eNB_process_ENDC_x2_setup_request(int mod_id, x2ap_ENDC_setup_req_t *m)
...
@@ -9027,6 +9027,7 @@ void rrc_eNB_process_ENDC_x2_setup_request(int mod_id, x2ap_ENDC_setup_req_t *m)
}
}
void
rrc_eNB_process_AdditionResponseInformation
(
const
module_id_t
enb_mod_idP
,
x2ap_ENDC_sgnb_addition_req_ACK_t
*
m
)
{
void
rrc_eNB_process_AdditionResponseInformation
(
const
module_id_t
enb_mod_idP
,
x2ap_ENDC_sgnb_addition_req_ACK_t
*
m
)
{
LOG_I
(
RRC
,
"Melissa we got here %s():%d
\n
"
,
__FUNCTION__
,
__LINE__
);
NR_CG_Config_t
*
CG_Config
=
NULL
;
NR_CG_Config_t
*
CG_Config
=
NULL
;
{
{
int
i
;
int
i
;
...
@@ -9472,6 +9473,7 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
...
@@ -9472,6 +9473,7 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
break
;
break
;
case
X2AP_ENDC_SGNB_ADDITION_REQ_ACK
:
{
case
X2AP_ENDC_SGNB_ADDITION_REQ_ACK
:
{
LOG_I
(
RRC
,
"Melissa Elkadi we got here %s():%d
\n
"
,
__FUNCTION__
,
__LINE__
);
rrc_eNB_process_AdditionResponseInformation
(
ENB_INSTANCE_TO_MODULE_ID
(
instance
),
&
X2AP_ENDC_SGNB_ADDITION_REQ_ACK
(
msg_p
));
rrc_eNB_process_AdditionResponseInformation
(
ENB_INSTANCE_TO_MODULE_ID
(
instance
),
&
X2AP_ENDC_SGNB_ADDITION_REQ_ACK
(
msg_p
));
break
;
break
;
}
}
...
...
openair3/GTPV1-U/gtpv1u_eNB.c
View file @
dc2865f3
...
@@ -911,7 +911,8 @@ gtpv1u_create_s1u_tunnel(
...
@@ -911,7 +911,8 @@ gtpv1u_create_s1u_tunnel(
do
{
do
{
s1u_teid
=
gtpv1u_new_teid
();
s1u_teid
=
gtpv1u_new_teid
();
LOG_D
(
GTPU
,
"gtpv1u_create_s1u_tunnel() 0x%x %u(dec)
\n
"
,
s1u_teid
,
s1u_teid
);
LOG_I
(
GTPU
,
"gtpv1u_data_g %p
\n
"
,
RC
.
gtpv1u_data_g
);
LOG_I
(
GTPU
,
"gtpv1u_create_s1u_tunnel() 0x%x %u(dec)
\n
"
,
s1u_teid
,
s1u_teid
);
stack_req
.
apiInfo
.
createTunnelEndPointInfo
.
teid
=
s1u_teid
;
stack_req
.
apiInfo
.
createTunnelEndPointInfo
.
teid
=
s1u_teid
;
stack_req
.
apiInfo
.
createTunnelEndPointInfo
.
hUlpSession
=
0
;
stack_req
.
apiInfo
.
createTunnelEndPointInfo
.
hUlpSession
=
0
;
stack_req
.
apiInfo
.
createTunnelEndPointInfo
.
hStackSession
=
0
;
stack_req
.
apiInfo
.
createTunnelEndPointInfo
.
hStackSession
=
0
;
...
...
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