Commit fd0283ea authored by Joanne Hugé's avatar Joanne Hugé

WIP

parent 9e61cb98
...@@ -20,7 +20,7 @@ md5sum = 06331958afaaeb200e4d7f48b417cde8 ...@@ -20,7 +20,7 @@ md5sum = 06331958afaaeb200e4d7f48b417cde8
[template-lte-enb-epc] [template-lte-enb-epc]
_update_hash_filename_ = instance-enb-epc.jinja2.cfg _update_hash_filename_ = instance-enb-epc.jinja2.cfg
md5sum = 946c70155a691e508e934a7ef2e442ba md5sum = 5ba9b5f8fac7463d2cbe2e2b67c63359
[template-lte-enb] [template-lte-enb]
_update_hash_filename_ = instance-enb.jinja2.cfg _update_hash_filename_ = instance-enb.jinja2.cfg
...@@ -28,11 +28,11 @@ md5sum = 2b0ba32fb176fead6fb32779fa4d88be ...@@ -28,11 +28,11 @@ md5sum = 2b0ba32fb176fead6fb32779fa4d88be
[template-lte-gnb-epc] [template-lte-gnb-epc]
_update_hash_filename_ = instance-gnb-epc.jinja2.cfg _update_hash_filename_ = instance-gnb-epc.jinja2.cfg
md5sum = 4a258326fe571790e07a0e903d94fde0 md5sum = e4e567cecc2bf1532a1bd837f33f26a3
[template-lte-epc] [template-lte-epc]
_update_hash_filename_ = instance-epc.jinja2.cfg _update_hash_filename_ = instance-epc.jinja2.cfg
md5sum = f98ee57d1c470330af9bb9018919cc63 md5sum = 991939b91a282f7004920e215495761c
[template-lte-gnb] [template-lte-gnb]
_update_hash_filename_ = instance-gnb.jinja2.cfg _update_hash_filename_ = instance-gnb.jinja2.cfg
...@@ -40,7 +40,7 @@ md5sum = 7d25976008c3aa588527db2b461ad72c ...@@ -40,7 +40,7 @@ md5sum = 7d25976008c3aa588527db2b461ad72c
[template-lte-mme] [template-lte-mme]
_update_hash_filename_ = instance-mme.jinja2.cfg _update_hash_filename_ = instance-mme.jinja2.cfg
md5sum = e95761b8670ec8b90694e119a818e684 md5sum = 6b2d5427d8cdea6ac49a305b41bf71c7
[ue_db.jinja2.cfg] [ue_db.jinja2.cfg]
filename = config/ue_db.jinja2.cfg filename = config/ue_db.jinja2.cfg
...@@ -64,7 +64,7 @@ md5sum = 1ba2e065bdf14a6411e95e80db17dcfd ...@@ -64,7 +64,7 @@ md5sum = 1ba2e065bdf14a6411e95e80db17dcfd
[mme.jinja2.cfg] [mme.jinja2.cfg]
filename = config/mme.jinja2.cfg filename = config/mme.jinja2.cfg
md5sum = fc073eb6450da95955009a127a333396 md5sum = 0785e90408ed058613f3597a91ec8f78
[ims.jinja2.cfg] [ims.jinja2.cfg]
filename = config/ims.jinja2.cfg filename = config/ims.jinja2.cfg
......
...@@ -47,15 +47,15 @@ ...@@ -47,15 +47,15 @@
pdn_list: [ pdn_list: [
{ {
pdn_type: "ipv4", pdn_type: "ipv4",
tun_ifname: "{{ slap_configuration['tun-name'] }}", tun_ifname: "{{ slap_configuration.get('tun-name', '') }}",
access_point_name: ["default", "internet", "ims", "sos"], access_point_name: ["default", "internet", "ims", "sos"],
first_ip_addr: "{{ netaddr.IPAddress(netaddr.IPNetwork(slap_configuration['tun-ipv4-network']).first) + 2 }}", first_ip_addr: "{{ netaddr.IPAddress(netaddr.IPNetwork(slap_configuration.get('tun-ipv4-network', '')).first) + 2 }}",
last_ip_addr: "{{ netaddr.IPAddress(netaddr.IPNetwork(slap_configuration['tun-ipv4-network']).last) - 1 }}", last_ip_addr: "{{ netaddr.IPAddress(netaddr.IPNetwork(slap_configuration.get('tun-ipv4-network', '')).last) - 1 }}",
ip_addr_shift: 2, ip_addr_shift: 2,
dns_addr: "8.8.8.8", dns_addr: "8.8.8.8",
// TODO: enable this instead of Google's DNS above // TODO: enable this instead of Google's DNS above
// dns_addr: "{{ slap_configuration['tun-ipv4-addr'] }}", // dns_addr: "{{ slap_configuration.get('tun-ipv4-addr', '') }}",
p_cscf_addr: ["{{ slap_configuration['tun-ipv4-addr'] }}"], p_cscf_addr: ["{{ slap_configuration.get('tun-ipv4-addr', '') }}"],
erabs: [ erabs: [
{ {
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -66,25 +66,25 @@ ...@@ -66,25 +66,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -95,4 +95,4 @@ ...@@ -95,4 +95,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -54,25 +54,25 @@ ...@@ -54,25 +54,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -83,4 +83,4 @@ ...@@ -83,4 +83,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -66,25 +66,25 @@ ...@@ -66,25 +66,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -95,4 +95,4 @@ ...@@ -95,4 +95,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -54,25 +54,25 @@ ...@@ -54,25 +54,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -83,4 +83,4 @@ ...@@ -83,4 +83,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -66,25 +66,25 @@ ...@@ -66,25 +66,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -95,4 +95,4 @@ ...@@ -95,4 +95,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -54,25 +54,25 @@ ...@@ -54,25 +54,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -83,4 +83,4 @@ ...@@ -83,4 +83,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -66,25 +66,25 @@ ...@@ -66,25 +66,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -95,4 +95,4 @@ ...@@ -95,4 +95,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
"mme_list": { "mme_list": {
"title": "MME list", "title": "MME list",
"description": "Optionnal. List of MME to which the gNodeB is connected", "description": "Optionnal. List of MME to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"mme_addr": { "mme_addr": {
...@@ -54,25 +54,25 @@ ...@@ -54,25 +54,25 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)", "description": "List of PLMNs broadcasted by the eNodeB, at most 6 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"attach_without_pdn": { "attach_without_pdn": {
"default": false, "default": false,
"title": "Attach Without PDN", "title": "Attach Without PDN",
"description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.", "description": "Optional boolean. Indicates if PLMN supports attach without PDN connectivity.",
"type": "boolean" "type": "boolean"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -83,4 +83,4 @@ ...@@ -83,4 +83,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -78,30 +78,30 @@ ...@@ -78,30 +78,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -137,4 +137,4 @@ ...@@ -137,4 +137,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"amf_list": { "amf_list": {
"title": "AMF list", "title": "AMF list",
"description": "Optionnal. List of AMF to which the gNodeB is connected", "description": "Optionnal. List of AMF to which the gNodeB is connected",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"amf_addr": { "amf_addr": {
...@@ -66,30 +66,30 @@ ...@@ -66,30 +66,30 @@
"plmn_list": { "plmn_list": {
"title": "PLMN list", "title": "PLMN list",
"description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)", "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"plmn": { "plmn": {
"default": "00101", "default": "00101",
"title": "Public Land Mobile Network", "title": "Public Land Mobile Network",
"description": "Public Land Mobile Network", "description": "Public Land Mobile Network",
"type": "string" "type": "string"
}, },
"tac": { "tac": {
"default": 100, "default": 100,
"title": "Tracking Area Code", "title": "Tracking Area Code",
"description": "Integer (range 0 to 16777215)", "description": "Integer (range 0 to 16777215)",
"type": "number" "type": "number"
}, },
"ranac": { "ranac": {
"title": "Optional integer (range 0 to 255)", "title": "Optional integer (range 0 to 255)",
"description": "RAN Area Code", "description": "RAN Area Code",
"type": "number" "type": "number"
}, },
"reserved": { "reserved": {
"default": false, "default": false,
"title": "Reserved", "title": "Reserved",
"description": "True if the cell is reserved for operator use.", "description": "True if the cell is reserved for operator use.",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
"nssai": { "nssai": {
"title": "AMF slices configuration", "title": "AMF slices configuration",
"description": "AMF slices configuration.", "description": "AMF slices configuration.",
"patternProperties": { "patternProperties": {
".*": { ".*": {
"properties": { "properties": {
"sst": { "sst": {
...@@ -125,4 +125,4 @@ ...@@ -125,4 +125,4 @@
"default": {} "default": {}
} }
} }
} }
\ No newline at end of file
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