Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos
Commits
252f5a51
Commit
252f5a51
authored
Jun 06, 2024
by
Joanne Hugé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ors-amarisoft: add multicast and broadcast in core network
parent
8d2f0397
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
2 deletions
+22
-2
software/ors-amarisoft/buildout.hash.cfg
software/ors-amarisoft/buildout.hash.cfg
+1
-1
software/ors-amarisoft/config/ue_db.jinja2.cfg
software/ors-amarisoft/config/ue_db.jinja2.cfg
+9
-1
software/ors-amarisoft/instance-core-network-input-schema.json
...are/ors-amarisoft/instance-core-network-input-schema.json
+12
-0
No files found.
software/ors-amarisoft/buildout.hash.cfg
View file @
252f5a51
...
@@ -80,7 +80,7 @@ md5sum = c5f581ba01654b2aec46000abf8d0e35
...
@@ -80,7 +80,7 @@ md5sum = c5f581ba01654b2aec46000abf8d0e35
[ue_db.jinja2.cfg]
[ue_db.jinja2.cfg]
filename = config/ue_db.jinja2.cfg
filename = config/ue_db.jinja2.cfg
md5sum =
3b901e8733e6afff8940c6c318da4493
md5sum =
116843e5d84316ff3821c5fd577ed0be
[enb.jinja2.cfg]
[enb.jinja2.cfg]
filename = config/enb.jinja2.cfg
filename = config/enb.jinja2.cfg
...
...
software/ors-amarisoft/config/ue_db.jinja2.cfg
View file @
252f5a51
...
@@ -14,11 +14,19 @@ ue_db: [
...
@@ -14,11 +14,19 @@ ue_db: [
K: "{{ s.get('k', '') }}",
K: "{{ s.get('k', '') }}",
impu: "{{ s.get('impu', '') }}",
impu: "{{ s.get('impu', '') }}",
impi: "{{ s.get('impi', '') }}",
impi: "{{ s.get('impi', '') }}",
{%- if "ip" in s %}
{%- if "ip" in s
or slapparameter_dict.get('enable_multicast', False)
%}
pdn_list:[{
pdn_list:[{
access_point_name: "internet",
access_point_name: "internet",
default: true,
default: true,
{%- if "ip" in s %}
ipv4_addr: "{{ s['ip'] }}"
ipv4_addr: "{{ s['ip'] }}"
{%- endif %}
{%- if slapparameter_dict.get('enable_multicast', False) %}
multicast: True,
{%- endif %}
{%- if slapparameter_dict.get('enable_broadcast', False) %}
broadcast: True,
{%- endif %}
}]
}]
{%- endif %}
{%- endif %}
}
}
...
...
software/ors-amarisoft/instance-core-network-input-schema.json
View file @
252f5a51
...
@@ -45,6 +45,18 @@
...
@@ -45,6 +45,18 @@
"description"
:
"Set to true to use IPv4 for AMF / MME addresses"
,
"description"
:
"Set to true to use IPv4 for AMF / MME addresses"
,
"type"
:
"boolean"
"type"
:
"boolean"
},
},
"enable_multicast"
:
{
"default"
:
false
,
"title"
:
"Enable IPv4 multicast"
,
"description"
:
"Set to true to enable IPv4 multicast"
,
"type"
:
"boolean"
},
"enable_broadcast"
:
{
"default"
:
false
,
"title"
:
"Enable IPv4 broadcast"
,
"description"
:
"Set to true to enable IPv4 broadcast"
,
"type"
:
"boolean"
},
"fixed_ips"
:
{
"fixed_ips"
:
{
"default"
:
false
,
"default"
:
false
,
"title"
:
"Fixed IP for the UE"
,
"title"
:
"Fixed IP for the UE"
,
...
...
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