From: garciaale Date: Thu, 4 Feb 2021 21:19:52 +0000 (-0300) Subject: Fixes bug 1424 by adding ip-address on virtual-network-interface-requirement X-Git-Tag: v9.1.0^2~1 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=commitdiff_plain;h=d0a5fdc097197943c0446451c3b4c4fa190bdf45;hp=ffa9992171a12534cc69fb6102421a4869172169 Fixes bug 1424 by adding ip-address on virtual-network-interface-requirement Change-Id: I65a25e58619c98523dfc09b5fe2c4af2f05596e4 Signed-off-by: garciaale --- diff --git a/models/augments/interface.yang b/models/augments/interface.yang index a33eed1..ea04892 100644 --- a/models/augments/interface.yang +++ b/models/augments/interface.yang @@ -24,6 +24,10 @@ module interface { prefix vnfd; } + import ietf-inet-types { + prefix inet; + } + import common-augments { prefix common; } @@ -38,6 +42,12 @@ module interface { type uint32; } + leaf ip-address { + description + "IP address of the internal connection point"; + type inet:ip-address; + } + leaf mac-address { description "MAC address of the interface. @@ -55,4 +65,4 @@ module interface { augment "/vnfd:vnfd/vnfd:vdu/vnfd:int-cpd/vnfd:virtual-network-interface-requirement" { uses extended-interface; } -} \ No newline at end of file +}