Commit 13c1d703 authored by Lu Xu's avatar Lu Xu 👀

software/ors-amarisoft: adapt enb.cfg ongoing

parent 73c3184a
...@@ -161,6 +161,12 @@ ...@@ -161,6 +161,12 @@
{%- for _, mme in slapparameter_dict.mme_list |dictsort %} {%- for _, mme in slapparameter_dict.mme_list |dictsort %}
{ {
mme_addr: "{{ mme['mme_addr'] }}", mme_addr: "{{ mme['mme_addr'] }}",
{%- for _, mme in slapparameter_dict.qci_dscp_mapping |dictsort %}
qci_dscp_mapping: {
qci: {{ slapparameter_dict.qci }} XXXX
dscp: {{ slapparameter_dict.dscp }}
}
{%- endfor %}
}, },
{%- endfor %} {%- endfor %}
], ],
......
...@@ -30,7 +30,29 @@ ...@@ -30,7 +30,29 @@
"title": "MME Address", "title": "MME Address",
"description": "IP address (and optional port) of S1AP SCTP connection to the MME. The default port is 36412.", "description": "IP address (and optional port) of S1AP SCTP connection to the MME. The default port is 36412.",
"type": "string" "type": "string"
} },
"qci_dscp_mapping": {
"title": "QCI DSCP Mapping",
"description": "Optional array of objects. Allows to define a specific IP differentiated services code point for a given QCI. QCI not explicitly configured use the default DSCP value 0.",
"patternProperties": {
".*": {
"properties": {
"qci": {
"title": "QCI",
"description": "Integer (range 1 to 254). QCI value.",
"type": "number"
},
"dscp": {
"title": "DSCP",
"description": "Integer (range 0 to 63). DSCP value.",
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
},
}, },
"type": "object" "type": "object"
} }
......
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