Commit 6111300d authored by Joanne Hugé's avatar Joanne Hugé Committed by Joanne Hugé

ors-amarisoft: add multicast and broadcast in core network

parent a82ec31b
......@@ -108,7 +108,7 @@ md5sum = c5f581ba01654b2aec46000abf8d0e35
[ue_db.jinja2.cfg]
filename = config/ue_db.jinja2.cfg
md5sum = 3b901e8733e6afff8940c6c318da4493
md5sum = 116843e5d84316ff3821c5fd577ed0be
[enb.jinja2.cfg]
filename = config/enb.jinja2.cfg
......
......@@ -14,11 +14,19 @@ ue_db: [
K: "{{ s.get('k', '') }}",
impu: "{{ s.get('impu', '') }}",
impi: "{{ s.get('impi', '') }}",
{%- if "ip" in s %}
{%- if "ip" in s or slapparameter_dict.get('enable_multicast', False) %}
pdn_list:[{
access_point_name: "internet",
default: true,
{%- if "ip" in s %}
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 %}
}
......
......@@ -45,6 +45,18 @@
"description": "Set to true to use IPv4 for AMF / MME addresses",
"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": {
"default": false,
"title": "Fixed IP for the UE",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment