From 9f3503ac117d485d75e604364647d7f59401f24a Mon Sep 17 00:00:00 2001 From: Jan Srnicek Date: Fri, 12 May 2017 13:15:50 +0200 Subject: HC2VPP-144 - Sub-interface span Provides option to define port mirroring from interface to subinterface Change-Id: I8c04e8eb6b980c830e77e1ef2b75ddff3d59364c Signed-off-by: Jan Srnicek Signed-off-by: jsrnicek Signed-off-by: Jan Srnicek --- v3po/api/src/main/yang/subinterface-span.yang | 40 +++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 v3po/api/src/main/yang/subinterface-span.yang (limited to 'v3po/api') diff --git a/v3po/api/src/main/yang/subinterface-span.yang b/v3po/api/src/main/yang/subinterface-span.yang new file mode 100644 index 000000000..74d33f57c --- /dev/null +++ b/v3po/api/src/main/yang/subinterface-span.yang @@ -0,0 +1,40 @@ +module subinterface-span { + yang-version 1; + namespace "urn:opendaylight:params:xml:ns:yang:subinterface-span"; + prefix "subif-span"; + + revision "2017-05-10" { + description + "Initialial revision that adds support for mirroring interfaces on subinterfaces. + Vpp implementation allows/implements only two cases: + - Src: interface |Dst: interface - covered in v3po.yang + - Src: interface |Dst: subinterface - covered by this model"; + } + + import v3po { + prefix "v3po"; + } + + import vpp-vlan { + prefix "vpp-vlan"; + } + + import yang-ext { + prefix "ext"; + } + + augment /if:interfaces/if:interface/vpp-vlan:sub-interfaces/vpp-vlan:sub-interface { + ext:augment-identifier "vpp-subinterface-span-augmentation"; + + container span { + uses v3po:span-attributes; + } + } + + augment /if:interfaces-state/if:interface/vpp-vlan:sub-interfaces/vpp-vlan:sub-interface { + ext:augment-identifier "vpp-subinterface-span-state-augmentation"; + container span-state { + uses v3po:span-attributes; + } + } +} \ No newline at end of file -- cgit 1.2.3-korg