From a626bb2b51719f34c4d74b3a79420213fe03a77d Mon Sep 17 00:00:00 2001 From: demx8as6 Date: Thu, 26 May 2022 14:25:19 +0200 Subject: [PATCH] Correct E2 protocol - Correct E2 configuration for E2 porviders IssueID: OAM269 Change-Id: I55fb67a9394759bd2e4d8e710d538ea17d804241 Signed-off-by: demx8as6 --- .../model/python/tapi_node_o_cu_cp.py | 2 +- .../model/python/tapi_node_o_cu_up.py | 2 +- code/network-topology-instance-generator/model/python/tapi_node_o_du.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/network-topology-instance-generator/model/python/tapi_node_o_cu_cp.py b/code/network-topology-instance-generator/model/python/tapi_node_o_cu_cp.py index 5eff7c9..56925d0 100644 --- a/code/network-topology-instance-generator/model/python/tapi_node_o_cu_cp.py +++ b/code/network-topology-instance-generator/model/python/tapi_node_o_cu_cp.py @@ -33,7 +33,7 @@ class TapiNodeOCuCp(TapiNode): nep_configuration = { "parent": self.identifier(), "nodeEdgePoint": { - "interface": "e2", "cep":[{"protocol": "REST", "role": "provider"}] + "interface": "e2", "cep":[{"protocol": "SCTP", "role": "provider"}] } } self.add(TapiNodeEdgePoint(nep_configuration)) diff --git a/code/network-topology-instance-generator/model/python/tapi_node_o_cu_up.py b/code/network-topology-instance-generator/model/python/tapi_node_o_cu_up.py index 4086fac..b42d494 100644 --- a/code/network-topology-instance-generator/model/python/tapi_node_o_cu_up.py +++ b/code/network-topology-instance-generator/model/python/tapi_node_o_cu_up.py @@ -33,7 +33,7 @@ class TapiNodeOCuUp(TapiNode): nep_configuration = { "parent": self.identifier(), "nodeEdgePoint": { - "interface": "e2", "cep":[{"protocol": "REST", "role": "provider"}] + "interface": "e2", "cep":[{"protocol": "SCTP", "role": "provider"}] } } self.add(TapiNodeEdgePoint(nep_configuration)) diff --git a/code/network-topology-instance-generator/model/python/tapi_node_o_du.py b/code/network-topology-instance-generator/model/python/tapi_node_o_du.py index f544409..db240f7 100644 --- a/code/network-topology-instance-generator/model/python/tapi_node_o_du.py +++ b/code/network-topology-instance-generator/model/python/tapi_node_o_du.py @@ -33,7 +33,7 @@ class TapiNodeODu(TapiNode): nep_configuration = { "parent": self.identifier(), "nodeEdgePoint": { - "interface": "e2", "cep":[{"protocol": "REST", "role": "provider"}] + "interface": "e2", "cep":[{"protocol": "SCTP", "role": "provider"}] } } self.add(TapiNodeEdgePoint(nep_configuration)) -- 2.16.6