Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
8d91e3de
Commit
8d91e3de
authored
Jan 15, 2024
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
38f41981
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
115 additions
and
213 deletions
+115
-213
software/ors-amarisoft/XXX-instance-gnb-input-schema.json
software/ors-amarisoft/XXX-instance-gnb-input-schema.json
+0
-61
software/ors-amarisoft/config/enb.jinja2.cfg
software/ors-amarisoft/config/enb.jinja2.cfg
+21
-74
software/ors-amarisoft/config/out/enb.cfg
software/ors-amarisoft/config/out/enb.cfg
+13
-11
software/ors-amarisoft/instance-enb-input-schema.json
software/ors-amarisoft/instance-enb-input-schema.json
+65
-9
software/ors-amarisoft/instance-ors-enb-input-schema.json
software/ors-amarisoft/instance-ors-enb-input-schema.json
+5
-1
software/ors-amarisoft/instance-ors-enb.jinja2.cfg
software/ors-amarisoft/instance-ors-enb.jinja2.cfg
+3
-0
software/ors-amarisoft/instance-ors-gnb-input-schema.json
software/ors-amarisoft/instance-ors-gnb-input-schema.json
+5
-56
software/ors-amarisoft/slapos-render-config.py
software/ors-amarisoft/slapos-render-config.py
+3
-1
No files found.
software/ors-amarisoft/XXX-instance-gnb-input-schema.json
View file @
8d91e3de
...
...
@@ -3,67 +3,6 @@
"$schema"
:
"http://json-schema.org/draft-04/schema"
,
"title"
:
"Input Parameters"
,
"properties"
:
{
"plmn_list"
:
{
"title"
:
"PLMN list"
,
"description"
:
"List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)"
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"plmn"
:
{
"default"
:
"00101"
,
"title"
:
"Public Land Mobile Network"
,
"description"
:
"Public Land Mobile Network"
,
"type"
:
"string"
},
"tac"
:
{
"default"
:
100
,
"title"
:
"Tracking Area Code"
,
"description"
:
"Integer (range 0 to 16777215)"
,
"type"
:
"number"
},
"ranac"
:
{
"title"
:
"Optional integer (range 0 to 255)"
,
"description"
:
"RAN Area Code"
,
"type"
:
"number"
},
"reserved"
:
{
"default"
:
false
,
"title"
:
"Reserved"
,
"description"
:
"True if the cell is reserved for operator use."
,
"type"
:
"boolean"
}
},
"type"
:
"object"
}
},
"type"
:
"object"
,
"default"
:
{}
},
"nssai"
:
{
"title"
:
"AMF slices configuration"
,
"description"
:
"AMF slices configuration."
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"sst"
:
{
"default"
:
1
,
"title"
:
"Slice Service Type"
,
"description"
:
"Integer (range 1 to 255)."
,
"type"
:
"number"
},
"sd"
:
{
"default"
:
"0x000032"
,
"title"
:
"Slice Differentiator"
,
"description"
:
"Optional integer (range 0 to 0xFFFFFE)"
,
"type"
:
"string"
}
},
"type"
:
"object"
}
},
"type"
:
"object"
,
"default"
:
{}
},
"nr_handover_a3_offset"
:
{
"title"
:
"A3 offset for NR handover"
,
"description"
:
"RSRP gain offset between gNBs which will trigger handover"
,
...
...
software/ors-amarisoft/config/enb.jinja2.cfg
View file @
8d91e3de
...
...
@@ -319,21 +319,13 @@
cell_default: {
plmn_list: [
{%- if slapparameter_dict.get('plmn_list', '') %}
{%- for i, k in enumerate(slapparameter_dict['plmn_list']) %}
{%- if i == 0 -%}
{%- for _, plmn in slapparameter_dict.plmn_list |dictsort %}
{
{%- else -%}
, {
{%- endif %}
plmn: "{{ slapparameter_dict['plmn_list'][k]['plmn'] }}",
reserved: {{ str(slapparameter_dict['plmn_list'][k].get('reserved', false)).lower() }},
attach_without_pdn: {{ str(slapparameter_dict['plmn_list'][k].get('attach_without_pdn', false)).lower() }},
}
{%- endfor -%}
{% else %}
"00101",
{% endif %}
plmn: "{{ plmn.plmn }}",
reserved: {{ plmn.get('reserved', false) |tojson }},
attach_without_pdn: {{ plmn.get('attach_without_pdn', false) |tojson }},
},
{%- endfor %}
],
cyclic_prefix: "normal",
...
...
@@ -715,68 +707,23 @@
ssb_period: 20,
plmn_list: [
{%- if slapparameter_dict.get('plmn_list', '') %}
{%- for i, k in enumerate(slapparameter_dict['plmn_list']) %}
{%- if i == 0 -%}
{%- for _, plmn in slapparameter_dict.plmn_list_5g |dictsort %}
{
{%- else -%}
, {
{%- endif %}
plmn: "{{ slapparameter_dict['plmn_list'][k]['plmn'] }}",
tac: {{ slapparameter_dict['plmn_list'][k].get('tac', 100) }},
{%- if slapparameter_dict['plmn_list'][k].get('ranac', '') %}
ranac: {{ slapparameter_dict['plmn_list'][k]['ranac'] }},
{%- endif %}
reserved: {{ str(slapparameter_dict['plmn_list'][k].get('reserved', false)).lower() }},
nssai: [
{%- if slapparameter_dict.get('nssai', '') %}
{%- for j, k in enumerate(slapparameter_dict['nssai']) %}
{%- if j == 0 %}
{
{%- else -%}
, {
{%- endif %}
sst: {{ slapparameter_dict['nssai'][k]['sst'] }},
{%- if slapparameter_dict['nssai'][k].get('sd', '') %}
sd: {{ slapparameter_dict['nssai'][k]['sd'] }},
{%- endif %}
}
{%- endfor -%}
{% else %}
{
sst: 1,
},
{% endif %}
],
}
{%- endfor -%}
{% else %}
{
plmn: "00101",
tac: 100,
reserved: false,
nssai: [
{%- if slapparameter_dict.get('nssai', '') %}
{%- for j, k in enumerate(slapparameter_dict['nssai']) %}
{%- if j == 0 %}
{
{%- else -%}
, {
{%- endif %}
sst: {{ slapparameter_dict['nssai'][k]['sst'] }},
{%- if slapparameter_dict['nssai'][k].get('sd', '') %}
sd: {{ slapparameter_dict['nssai'][k]['sd'] }},
{%- endif %}
}
{%- endfor -%}
{% else %}
{
sst: 1,
},
{% endif %}
],
plmn: "{{ plmn.plmn }}",
tac: {{ plmn.tac }},
reserved: {{ plmn.get('reserved', false) |tojson }},
nssai: [
{
{%- for _, nssai in slapparameter_dict.get('nssai', {1: {'sst': 1}}) |dictsort %}
sst: {{ nssai.sst }},
{%- if nssai.get('sd') %}
sd: {{ nssai.sd }},
{%- endif %}
},
{%- endfor %}
],
},
{%- end
if
%}
{%- end
for
%}
],
si_window_length: 40,
...
...
software/ors-amarisoft/config/out/enb.cfg
View file @
8d91e3de
...
...
@@ -155,8 +155,11 @@
cell_default: {
plmn_list: [
"00101",
{
plmn: "31415",
reserved: false,
attach_without_pdn: false,
},
],
cyclic_prefix: "normal",
...
...
@@ -454,15 +457,14 @@
plmn_list: [
{
plmn: "00101",
tac: 100,
reserved: false,
nssai: [
{
sst: 1,
},
],
plmn: "51413",
tac: 123,
reserved: false,
nssai: [
{
sst: 1,
},
],
},
],
...
...
software/ors-amarisoft/instance-enb-input-schema.json
View file @
8d91e3de
...
...
@@ -32,6 +32,35 @@
"type"
:
"object"
,
"default"
:
{}
},
"plmn_list"
:
{
"title"
:
"PLMN list (4G)"
,
"description"
:
"List of PLMNs broadcasted by the eNodeB, at most 6"
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"plmn"
:
{
"title"
:
"Public Land Mobile Network"
,
"description"
:
"Public Land Mobile Network"
,
"type"
:
"string"
},
"attach_without_pdn"
:
{
"default"
:
false
,
"title"
:
"Attach Without PDN"
,
"description"
:
"Optional boolean. Indicates if PLMN supports attach without PDN connectivity."
,
"type"
:
"boolean"
},
"reserved"
:
{
"default"
:
false
,
"title"
:
"Reserved"
,
"description"
:
"True if the cell is reserved for operator use."
,
"type"
:
"boolean"
}
},
"type"
:
"object"
}
},
"type"
:
"object"
},
"gnb_id"
:
{
"title"
:
"gNB ID"
,
"description"
:
"gNB ID. (must set if there are NR cells)"
,
...
...
@@ -61,23 +90,26 @@
"type"
:
"object"
,
"default"
:
{}
},
"plmn_list"
:
{
"title"
:
"PLMN list"
,
"description"
:
"List of PLMNs broadcasted by the
eNodeB, at most 6 (default: 00101)
"
,
"plmn_list
_5g
"
:
{
"title"
:
"PLMN list
(5G)
"
,
"description"
:
"List of PLMNs broadcasted by the
gNodeB, at most 12
"
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"plmn"
:
{
"default"
:
"00101"
,
"title"
:
"Public Land Mobile Network"
,
"description"
:
"Public Land Mobile Network"
,
"type"
:
"string"
},
"attach_without_pdn"
:
{
"default"
:
false
,
"title"
:
"Attach Without PDN"
,
"description"
:
"Optional boolean. Indicates if PLMN supports attach without PDN connectivity."
,
"type"
:
"boolean"
"tac"
:
{
"title"
:
"Tracking Area Code"
,
"description"
:
"Integer (range 0 to 16777215)"
,
"type"
:
"number"
},
"ranac"
:
{
"title"
:
"Optional integer (range 0 to 255)"
,
"description"
:
"RAN Area Code"
,
"type"
:
"number"
},
"reserved"
:
{
"default"
:
false
,
...
...
@@ -89,6 +121,30 @@
"type"
:
"object"
}
},
"type"
:
"object"
},
"nssai"
:
{
"title"
:
"AMF slices configuration"
,
"description"
:
"AMF slices configuration."
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"sst"
:
{
"default"
:
1
,
"title"
:
"Slice Service Type"
,
"description"
:
"Integer (range 1 to 255)."
,
"type"
:
"number"
},
"sd"
:
{
"default"
:
"0x000032"
,
"title"
:
"Slice Differentiator"
,
"description"
:
"Optional integer (range 0 to 0xFFFFFE)"
,
"type"
:
"string"
}
},
"type"
:
"object"
}
},
"type"
:
"object"
,
"default"
:
{}
},
...
...
software/ors-amarisoft/instance-ors-enb-input-schema.json
View file @
8d91e3de
...
...
@@ -77,7 +77,11 @@
"$ref"
:
"instance-enb-input-schema.json#/properties/mme_list"
},
"plmn_list"
:
{
"$ref"
:
"instance-enb-input-schema.json#/properties/plmn_list"
"$ref"
:
"instance-enb-input-schema.json#/properties/plmn_list"
,
"description"
:
"List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)"
,
"default"
:
{
"1"
:
{
"plmn"
:
"00101"
}
}
},
"lte_handover_a3_offset"
:
{
"title"
:
"A3 offset for LTE handover"
,
...
...
software/ors-amarisoft/instance-ors-enb.jinja2.cfg
View file @
8d91e3de
...
...
@@ -18,6 +18,7 @@
"root_sequence_index": 204,
"enb_id": "0x1A2D0",
"gtp_addr": "127.0.1.1",
"plmn_list": {"1": {"plmn": "00101"}},
"lte_handover_a3_offset": 6,
"lte_handover_a3_time_to_trigger": 480,
"ncell_list": {},
...
...
@@ -36,6 +37,7 @@
"cell_id": "0x01",
"gnb_id": "0x12345",
"gnb_id_bits": 28,
"plmn_list": {"1": {"plmn": "00101", "tac": 100}},
"nr_handover_a3_offset": 6,
"nr_handover_time_to_trigger": 100,
"ncell_list": {},
...
...
@@ -43,6 +45,7 @@
"inactivity_timer": 10000,
"disable_sdr": false
} %}
# XXX plmn_list -> plmn_list_5g + .tac=100
{%- set ors_defaults = {'enb': ors_enb_defaults, 'gnb': ors_gnb_defaults} [enb_mode] %}
{%- for k,v in ors_defaults|dictsort %}
...
...
software/ors-amarisoft/instance-ors-gnb-input-schema.json
View file @
8d91e3de
...
...
@@ -54,65 +54,14 @@
"$ref"
:
"instance-enb-input-schema.json#/properties/amf_list"
},
"plmn_list"
:
{
"
title"
:
"PLMN list
"
,
"
$ref"
:
"instance-enb-input-schema.json#/properties/plmn_list_5g
"
,
"description"
:
"List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)"
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"plmn"
:
{
"default"
:
"00101"
,
"title"
:
"Public Land Mobile Network"
,
"description"
:
"Public Land Mobile Network"
,
"type"
:
"string"
},
"tac"
:
{
"default"
:
100
,
"title"
:
"Tracking Area Code"
,
"description"
:
"Integer (range 0 to 16777215)"
,
"type"
:
"number"
},
"ranac"
:
{
"title"
:
"Optional integer (range 0 to 255)"
,
"description"
:
"RAN Area Code"
,
"type"
:
"number"
},
"reserved"
:
{
"default"
:
false
,
"title"
:
"Reserved"
,
"description"
:
"True if the cell is reserved for operator use."
,
"type"
:
"boolean"
}
},
"type"
:
"object"
}
},
"type"
:
"object"
,
"default"
:
{}
"default"
:
{
"1"
:
{
"plmn"
:
"00101"
,
"tac"
:
100
}
}
},
"nssai"
:
{
"title"
:
"AMF slices configuration"
,
"description"
:
"AMF slices configuration."
,
"patternProperties"
:
{
".*"
:
{
"properties"
:
{
"sst"
:
{
"default"
:
1
,
"title"
:
"Slice Service Type"
,
"description"
:
"Integer (range 1 to 255)."
,
"type"
:
"number"
},
"sd"
:
{
"default"
:
"0x000032"
,
"title"
:
"Slice Differentiator"
,
"description"
:
"Optional integer (range 0 to 0xFFFFFE)"
,
"type"
:
"string"
}
},
"type"
:
"object"
}
},
"type"
:
"object"
,
"default"
:
{}
"$ref"
:
"instance-enb-input-schema.json#/properties/nssai"
},
"nr_handover_a3_offset"
:
{
"title"
:
"A3 offset for NR handover"
,
...
...
software/ors-amarisoft/slapos-render-config.py
View file @
8d91e3de
...
...
@@ -426,7 +426,9 @@ def do_enb():
},
"slapparameter_dict": {
"enb_id": "0x10012",
"gnb_id": "0x54321"
"gnb_id": "0x54321",
"plmn_list": {"1": {"plmn": "31415"}},
"plmn_list_5g": {"1": {"plmn": "51413", "tac": 123}}
}
}"""
%
locals
()
...
...
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