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
alex037yang
OpenXG-RAN
Commits
6a581d90
Commit
6a581d90
authored
Mar 24, 2019
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add FlexRAN protobuf definition for S1AP
parent
d2b1e6aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
3 deletions
+42
-3
openair2/ENB_APP/MESSAGES/V2/config_common.proto
openair2/ENB_APP/MESSAGES/V2/config_common.proto
+32
-0
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
+9
-3
openair2/ENB_APP/MESSAGES/V2/flexran.proto
openair2/ENB_APP/MESSAGES/V2/flexran.proto
+1
-0
No files found.
openair2/ENB_APP/MESSAGES/V2/config_common.proto
View file @
6a581d90
...
...
@@ -336,3 +336,35 @@ message flex_a5_event {
optional
int64
time_to_trigger
=
4
;
optional
int64
max_report_cells
=
5
;
}
//
// S1AP cell configuration
//
message
flex_gummei
{
optional
flex_plmn
plmn
=
1
;
optional
uint32
mme_group_id
=
2
;
optional
uint32
mme_code
=
3
;
}
message
flex_s1ap_mme
{
optional
string
s1_ip
=
1
;
// S1-MME IP of MME
optional
string
name
=
2
;
// S1-MME name of MME
optional
flex_mme_state
state
=
3
;
// State of the MME
repeated
flex_gummei
served_gummeis
=
4
;
// GUMMEIs served by the MME
repeated
flex_plmn
requested_plmns
=
5
;
// PLMNs communicated to MME
optional
uint32
rel_capacity
=
6
;
// Relative MME capacity, TS23.401
}
message
flex_s1ap_ue
{
optional
string
mme_s1_ip
=
1
;
// IP of MME to which UE is connected
optional
uint32
enb_ue_s1ap_id
=
2
;
// S1AP ID on eNodeB side for UE
optional
uint32
mme_ue_s1ap_id
=
3
;
// S1AP ID on MME side for UE
optional
flex_plmn
selected_plmn
=
4
;
// UE-selected PLMN in RRC Conn Setup Cplt
}
enum
flex_mme_state
{
FLMMES_DISCONNECTED
=
0
;
FLMMES_WAITING
=
1
;
FLMMES_CONNECTED
=
2
;
FLMMES_OVERLOAD
=
3
;
}
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
View file @
6a581d90
...
...
@@ -100,6 +100,7 @@ message flex_ue_config {
optional
uint32
ul_slice_id
=
32
;
// Configuration about RRC measurements
optional
flex_measurement_info
info
=
33
;
optional
uint32
enb_ue_s1ap_id
=
34
;
// S1AP ID on eNodeB side
}
message
flex_lc_ue_config
{
...
...
@@ -107,6 +108,11 @@ message flex_lc_ue_config {
repeated
flex_lc_config
lc_config
=
2
;
// A list of LC configurations for the given UE
}
message
flex_s1ap_config
{
optional
uint32
pending
=
1
;
// number of pending (to be connected) MMEs
optional
uint32
connected
=
2
;
// number of connected MMEs
optional
string
enb_s1_ip
=
3
;
// S1-MME IP of eNodeB
optional
string
enb_name
=
4
;
// S1-MME name of eNodeB
repeated
flex_s1ap_mme
mme
=
5
;
repeated
flex_s1ap_ue
ue
=
6
;
}
openair2/ENB_APP/MESSAGES/V2/flexran.proto
View file @
6a581d90
...
...
@@ -156,6 +156,7 @@ message flex_enb_config_reply {
optional
flex_header
header
=
1
;
repeated
flex_cell_config
cell_config
=
3
;
optional
uint32
device_spec
=
4
;
optional
flex_s1ap_config
s1ap
=
5
;
}
message
flex_ue_config_request
{
...
...
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