From b663b44d862d366c722466ecfb7db1231ff01ccd Mon Sep 17 00:00:00 2001 From: Jan Srnicek Date: Wed, 10 May 2017 09:55:07 +0200 Subject: HC2VPP-114 - Ipv4/6 routing support for sub interfaces Provides option to set ipv4/6 vrf id for sub interface same way as for interface Change-Id: I3e14620d61e364e6741a1f1642570dd9ee317255 Signed-off-by: Jan Srnicek --- v3po/api/src/main/yang/vpp-vlan.yang | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'v3po/api') diff --git a/v3po/api/src/main/yang/vpp-vlan.yang b/v3po/api/src/main/yang/vpp-vlan.yang index 52effc670..7f8139c4a 100644 --- a/v3po/api/src/main/yang/vpp-vlan.yang +++ b/v3po/api/src/main/yang/vpp-vlan.yang @@ -3,6 +3,11 @@ module vpp-vlan { namespace "urn:opendaylight:params:xml:ns:yang:vpp:vlan"; prefix "vpp-vlan"; + revision "2017-05-09" { + description "Revision changes: + - add support for ipv4/6 vrf id for sub interfaces"; + } + revision "2017-03-15" { description "Revision changes: @@ -384,6 +389,13 @@ module vpp-vlan { } } + grouping sub-interface-routing-attributes { + description "Provides basic attributes for ipv4/6 vrf configuration"; + container routing { + uses v3po:routing-base-attributes; + } + } + augment /if:interfaces/if:interface { ext:augment-identifier "subinterface-augmentation"; @@ -401,6 +413,7 @@ module vpp-vlan { uses sub-interface-config-attributes; uses sub-interface-ip4-attributes; uses sub-interface-ip6-attributes; + uses sub-interface-routing-attributes; } } } @@ -421,6 +434,7 @@ module vpp-vlan { uses sub-interface-operational-attributes; uses sub-interface-ip4-attributes; uses sub-interface-ip6-attributes; + uses sub-interface-routing-attributes; } } } -- cgit 1.2.3-korg