Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
17447e49
Commit
17447e49
authored
Mar 17, 2021
by
David Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding x2c setting with epc
parent
14b5963f
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
344 additions
and
77 deletions
+344
-77
ci-scripts/conf_files/rcc.band7.tm1.nfapi.conf
ci-scripts/conf_files/rcc.band7.tm1.nfapi.conf
+9
-10
ci-scripts/conf_files/ue.nfapi.conf
ci-scripts/conf_files/ue.nfapi.conf
+3
-3
openair3/NAS/TOOLS/display.c
openair3/NAS/TOOLS/display.c
+2
-4
openair3/S1AP/s1ap_eNB_handlers.c
openair3/S1AP/s1ap_eNB_handlers.c
+310
-54
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf
...CTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf
+20
-6
No files found.
ci-scripts/conf_files/rcc.band7.tm1.nfapi.conf
View file @
17447e49
...
@@ -13,9 +13,9 @@ eNBs =
...
@@ -13,9 +13,9 @@ eNBs =
eNB_name
=
"eNB-Eurecom-LTEBox"
;
eNB_name
=
"eNB-Eurecom-LTEBox"
;
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
1
;
tracking_area_code
=
5
;
plmn_list
= ( {
mcc
=
208
;
mnc
=
93
;
mnc_length
=
2
; } );
plmn_list
= ( {
mcc
=
320
;
mnc
=
230
;
mnc_length
=
3
; } );
tr_s_preference
=
"local_mac"
tr_s_preference
=
"local_mac"
...
@@ -172,7 +172,7 @@ eNBs =
...
@@ -172,7 +172,7 @@ eNBs =
//////////
MME
parameters
:
//////////
MME
parameters
:
mme_ip_address
= ( {
ipv4
=
"
CI_MME_IP_ADDR
"
;
mme_ip_address
= ( {
ipv4
=
"
192.168.61.3
"
;
ipv6
=
"192:168:30::17"
;
ipv6
=
"192:168:30::17"
;
port
=
36412
;
port
=
36412
;
active
=
"yes"
;
active
=
"yes"
;
...
@@ -183,7 +183,7 @@ eNBs =
...
@@ -183,7 +183,7 @@ eNBs =
enable_measurement_reports
=
"no"
;
enable_measurement_reports
=
"no"
;
///
X2
///
X2
enable_x2
=
"
no
"
;
enable_x2
=
"
yes
"
;
t_reloc_prep
=
1000
; /*
unit
:
millisecond
*/
t_reloc_prep
=
1000
; /*
unit
:
millisecond
*/
tx2_reloc_overall
=
2000
; /*
unit
:
millisecond
*/
tx2_reloc_overall
=
2000
; /*
unit
:
millisecond
*/
t_dc_prep
=
1000
; /*
unit
:
millisecond
*/
t_dc_prep
=
1000
; /*
unit
:
millisecond
*/
...
@@ -191,12 +191,12 @@ eNBs =
...
@@ -191,12 +191,12 @@ eNBs =
NETWORK_INTERFACES
:
NETWORK_INTERFACES
:
{
{
ENB_INTERFACE_NAME_FOR_S1_MME
=
"en
s3
"
;
ENB_INTERFACE_NAME_FOR_S1_MME
=
"en
p68s0
"
;
ENB_IPV4_ADDRESS_FOR_S1_MME
=
"
CI_ENB_IP_ADDR
"
;
ENB_IPV4_ADDRESS_FOR_S1_MME
=
"
10.1.1.68
"
;
ENB_INTERFACE_NAME_FOR_S1U
=
"en
s3
"
;
ENB_INTERFACE_NAME_FOR_S1U
=
"en
p68s0
"
;
ENB_IPV4_ADDRESS_FOR_S1U
=
"
CI_ENB_IP_ADDR
"
;
ENB_IPV4_ADDRESS_FOR_S1U
=
"
10.1.1.68
"
;
ENB_PORT_FOR_S1U
=
2152
;
# Spec 2152
ENB_PORT_FOR_S1U
=
2152
;
# Spec 2152
ENB_IPV4_ADDRESS_FOR_X2C
=
"
CI_ENB_IP_ADDR
"
;
ENB_IPV4_ADDRESS_FOR_X2C
=
"
127.0.0.1
"
;
ENB_PORT_FOR_X2C
=
36422
;
# Spec 36422
ENB_PORT_FOR_X2C
=
36422
;
# Spec 36422
};
};
...
@@ -215,7 +215,6 @@ MACRLCs = (
...
@@ -215,7 +215,6 @@ MACRLCs = (
remote_s_portd
=
50010
;
remote_s_portd
=
50010
;
tr_s_preference
=
"nfapi"
;
tr_s_preference
=
"nfapi"
;
tr_n_preference
=
"local_RRC"
;
tr_n_preference
=
"local_RRC"
;
scheduler_mode
=
"fairRR"
;
}
}
);
);
...
...
ci-scripts/conf_files/ue.nfapi.conf
View file @
17447e49
...
@@ -20,9 +20,9 @@ L1s = (
...
@@ -20,9 +20,9 @@ L1s = (
{
{
num_cc
=
1
;
num_cc
=
1
;
tr_n_preference
=
"nfapi"
;
tr_n_preference
=
"nfapi"
;
local_n_if_name
=
"
ens3
"
;
local_n_if_name
=
"
lo
"
;
remote_n_address
=
"
CI_ENB_IP_ADDR
"
;
remote_n_address
=
"
127.0.0.1
"
;
local_n_address
=
"
CI_UE_IP_ADDR
"
;
local_n_address
=
"
127.0.0.1
"
;
local_n_portc
=
50000
;
local_n_portc
=
50000
;
remote_n_portc
=
50001
;
remote_n_portc
=
50001
;
local_n_portd
=
50010
;
local_n_portd
=
50010
;
...
...
openair3/NAS/TOOLS/display.c
View file @
17447e49
...
@@ -262,12 +262,10 @@ void display_usim_data(const char *filename) {
...
@@ -262,12 +262,10 @@ void display_usim_data(const char *filename) {
kasme
[
USIM_K_ASME_SIZE
]
=
'\0'
;
kasme
[
USIM_K_ASME_SIZE
]
=
'\0'
;
memcpy
(
kasme
,
data
.
securityctx
.
Kasme
.
value
,
USIM_K_ASME_SIZE
);
memcpy
(
kasme
,
data
.
securityctx
.
Kasme
.
value
,
USIM_K_ASME_SIZE
);
printf
(
"
\t
Kasme
\t
:
\"
%s
\"\n
"
,
kasme
);
printf
(
"
\t
Kasme
\t
:
\"
%s
\"\n
"
,
kasme
);
#if 0 //This doesn't compile anymore due to compiler warnings about pointers
/*printf("\tulNAScount\t: 0x%.8x\n",
printf("\tulNAScount\t: 0x%.8x\n",
*(uint32_t*) data.securityctx.ulNAScount.value);
*(uint32_t*) data.securityctx.ulNAScount.value);
printf("\tdlNAScount\t: 0x%.8x\n",
printf("\tdlNAScount\t: 0x%.8x\n",
*(uint32_t*) data.securityctx.dlNAScount.value);
*(uint32_t*) data.securityctx.dlNAScount.value);*/
#endif
printf
(
"
\t
algorithmID
\t
: 0x%.2x
\n\n
"
,
printf
(
"
\t
algorithmID
\t
: 0x%.2x
\n\n
"
,
data
.
securityctx
.
algorithmID
.
value
[
0
]);
data
.
securityctx
.
algorithmID
.
value
[
0
]);
...
...
openair3/S1AP/s1ap_eNB_handlers.c
View file @
17447e49
This diff is collapsed.
Click to expand it.
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf
View file @
17447e49
...
@@ -225,21 +225,35 @@ gNBs =
...
@@ -225,21 +225,35 @@ gNBs =
//////////
MME
parameters
:
//////////
MME
parameters
:
mme_ip_address
= ( {
ipv4
=
"192.168.
12.26
"
;
mme_ip_address
= ( {
ipv4
=
"192.168.
61.3
"
;
ipv6
=
"192:168:30::17"
;
ipv6
=
"192:168:30::17"
;
active
=
"yes"
;
active
=
"yes"
;
preference
=
"ipv4"
;
preference
=
"ipv4"
;
}
}
);
);
///
X2
enable_x2
=
"yes"
;
t_reloc_prep
=
1000
; /*
unit
:
millisecond
*/
tx2_reloc_overall
=
2000
; /*
unit
:
millisecond
*/
t_dc_prep
=
1000
; /*
unit
:
millisecond
*/
t_dc_overall
=
2000
; /*
unit
:
millisecond
*/
target_enb_x2_ip_address
= (
{
ipv4
=
"127.0.0.1"
; /*
"CI_FR1_CTL_ENB_IP_ADDR"
; */
ipv6
=
"192:168:30::17"
;
preference
=
"ipv4"
;
}
);
NETWORK_INTERFACES
:
NETWORK_INTERFACES
:
{
{
GNB_INTERFACE_NAME_FOR_S1_MME
=
"
eth0
"
;
GNB_INTERFACE_NAME_FOR_S1_MME
=
"
lo
"
;
GNB_IPV4_ADDRESS_FOR_S1_MME
=
"1
92.168.12.111/24
"
;
GNB_IPV4_ADDRESS_FOR_S1_MME
=
"1
27.0.0.2
"
;
GNB_INTERFACE_NAME_FOR_S1U
=
"
eth0
"
;
GNB_INTERFACE_NAME_FOR_S1U
=
"
lo
"
;
GNB_IPV4_ADDRESS_FOR_S1U
=
"1
92.168.12.111/24
"
;
GNB_IPV4_ADDRESS_FOR_S1U
=
"1
27.0.0.2
"
;
GNB_PORT_FOR_S1U
=
2152
;
# Spec 2152
GNB_PORT_FOR_S1U
=
2152
;
# Spec 2152
GNB_IPV4_ADDRESS_FOR_X2C
=
"127.0.0.2"
;
GNB_PORT_FOR_X2C
=
36422
;
# Spec 36422
};
};
}
}
);
);
...
@@ -249,7 +263,7 @@ MACRLCs = (
...
@@ -249,7 +263,7 @@ MACRLCs = (
{
{
num_cc
=
1
;
num_cc
=
1
;
local_s_if_name
=
"lo:"
;
local_s_if_name
=
"lo:"
;
remote_s_address
=
"127.0.0.
1
"
; //
pnf
addr
[!]
remote_s_address
=
"127.0.0.
2
"
; //
pnf
addr
[!]
local_s_address
=
"127.0.0.2"
; //
vnf
addr
local_s_address
=
"127.0.0.2"
; //
vnf
addr
local_s_portc
=
50001
; //
vnf
p5
port
local_s_portc
=
50001
; //
vnf
p5
port
remote_s_portc
=
50000
; //
pnf
p5
port
[!]
remote_s_portc
=
50000
; //
pnf
p5
port
[!]
...
...
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