X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=code%2Fnetwork-topology-instance-generator%2Fmodel%2Fpython%2Ftapi_node_user_equipment.py;h=823d67f667b5b41f889f415599891d725ee09407;hb=c08a14e0dd8124997d6896c276be52b8111a69d9;hp=48543bdeea323d03b25bcdea026ed7c3ea71cd31;hpb=f3f40e953c390c98090d27f9a45c570dc6dcfcdd;p=oam.git diff --git a/code/network-topology-instance-generator/model/python/tapi_node_user_equipment.py b/code/network-topology-instance-generator/model/python/tapi_node_user_equipment.py index 48543bd..823d67f 100644 --- a/code/network-topology-instance-generator/model/python/tapi_node_user_equipment.py +++ b/code/network-topology-instance-generator/model/python/tapi_node_user_equipment.py @@ -29,14 +29,21 @@ class TapiNodeUserEquipment(TapiNode): def __init__(self, parent, config): super().__init__(parent, config) - super().width( (1 + 1) * (2*self.FONTSIZE) ) # 1x nep + super().width( (2 + 1) * (2*self.FONTSIZE) ) # 2x nep # add air consumer interface nep_configuration = { "parent": self.identifier(), "nodeEdgePoint": { - "interface": "uu", "cep":[{"protocol": "unknown", "role": "consumer"}] + "interface": "uu", "cep":[{"protocol": "radio", "role": "consumer"}] } } self.add(TapiNodeEdgePoint(nep_configuration)) + nep_configuration = { + "parent": self.identifier(), + "nodeEdgePoint": { + "interface": "n1", "cep":[{"protocol": "NAS", "role": "consumer"}] + } + } + self.add(TapiNodeEdgePoint(nep_configuration))