summaryrefslogtreecommitdiffstats
path: root/v3po/api
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2016-06-27 15:23:28 +0200
committerMarek Gradzki <mgradzki@cisco.com>2016-07-01 13:21:14 +0200
commitafab782c07481c8a618ccb4baa72b8a4d293a428 (patch)
tree232f151a02c732077d8eba4b772bd7a8f43b345b /v3po/api
parentfe7e4c45bdf74e91482964070205329d5009002d (diff)
HONEYCOMB-104: add Ipv4 support to sub-interfaces
* updates vpp-vlan.yang with Ipv4 and Ipv6 support based on ietf-ip rev. 2014-06-16 * adds Ipv4 support for sub-interfaces Ipv6 support for interfaces and sub-interfaces will be addded in the future (HONEYCOMB-102) Change-Id: I0bf10fe3ff1c543685f651d8b6fb06bbeee3db92 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po/api')
-rw-r--r--v3po/api/src/main/yang/vpp-vlan.yang134
1 files changed, 134 insertions, 0 deletions
diff --git a/v3po/api/src/main/yang/vpp-vlan.yang b/v3po/api/src/main/yang/vpp-vlan.yang
index fdf878b75..fef8e72d8 100644
--- a/v3po/api/src/main/yang/vpp-vlan.yang
+++ b/v3po/api/src/main/yang/vpp-vlan.yang
@@ -12,6 +12,9 @@ module vpp-vlan {
import ietf-interfaces {
prefix "if";
}
+ import ietf-inet-types {
+ prefix inet;
+ }
import ietf-yang-types {
prefix "yang";
}
@@ -242,6 +245,133 @@ module vpp-vlan {
}
}
+ grouping sub-interface-ip4-attributes {
+ container ipv4 {
+ // TODO: add currently unsupported:
+ // enabled, forwarding, mtu, address/origin(config false), neighbor/origin(config false)
+
+ // TODO: reuse groupings once ietf-ip provides them
+
+ description
+ "Parameters for the IPv4 address family (based on ietf-ip rev. 2014-06-16)";
+
+ list address {
+ key "ip";
+ description
+ "The list of configured IPv4 addresses on the interface.";
+ leaf ip {
+ type inet:ipv4-address-no-zone;
+ description
+ "The IPv4 address on the interface.";
+ }
+
+ choice subnet {
+ mandatory true;
+ description
+ "The subnet can be specified as a prefix-length, or,
+ if the server supports non-contiguous netmasks, as
+ a netmask.";
+ leaf prefix-length {
+ type uint8 {
+ range "0..32";
+ }
+ description
+ "The length of the subnet prefix.";
+ }
+ leaf netmask {
+ type yang:dotted-quad;
+ description
+ "The subnet specified as a netmask (contiguous)";
+ }
+ } // choice subnet
+ } // list address
+
+ list neighbor {
+ key "ip";
+ description
+ "A list of mappings from IPv4 addresses to
+ link-layer addresses.
+
+ Entries in this list are used as static entries in the
+ ARP Cache.";
+ reference
+ "RFC 826: An Ethernet Address Resolution Protocol";
+
+ leaf ip {
+ type inet:ipv4-address-no-zone;
+ description
+ "The IPv4 address of the neighbor node.";
+ }
+
+ leaf link-layer-address {
+ type yang:phys-address;
+ mandatory true;
+ description
+ "The link-layer address of the neighbor node.";
+ }
+ } // list neighbor
+ }
+ }
+
+ grouping sub-interface-ip6-attributes {
+ container ipv6 {
+ // TODO: add currently unsupported:
+ // enabled, forwarding, mtu, neighbor, dup-addr-detect-transmits, autoconf,
+ // address(config false): origin, status
+ // neighbor(config false): origin, is-router, state
+
+ // TODO: reuse groupings once ietf-ip provides them
+
+ description
+ "Parameters for the IPv6 address family (based on ietf-ip rev. 2014-06-16)";
+
+ list address {
+ key "ip";
+ description
+ "The list of configured IPv6 addresses on the interface.";
+ leaf ip {
+ type inet:ipv6-address-no-zone;
+ description
+ "The IPv6 address on the interface.";
+ }
+
+ leaf prefix-length {
+ type uint8 {
+ range "0..128";
+ }
+ mandatory true;
+ description
+ "The length of the subnet prefix.";
+ }
+ } // list address
+
+ list neighbor {
+ key "ip";
+ description
+ "A list of mappings from IPv6 addresses to
+ link-layer addresses.
+
+ Entries in this list are used as static entries in the
+ Neighbor Cache.";
+ reference
+ "RFC 4861: Neighbor Discovery for IP version 6 (IPv6)";
+
+ leaf ip {
+ type inet:ipv6-address-no-zone;
+ description
+ "The IPv6 address of the neighbor node.";
+ }
+
+ leaf link-layer-address {
+ type yang:phys-address;
+ mandatory true;
+ description
+ "The link-layer address of the neighbor node.";
+ }
+ } // list neighbor
+ }
+ }
+
augment /if:interfaces/if:interface {
ext:augment-identifier "subinterface-augmentation";
@@ -257,6 +387,8 @@ module vpp-vlan {
uses sub-interface-base-attributes;
uses sub-interface-config-attributes;
+ uses sub-interface-ip4-attributes;
+ uses sub-interface-ip6-attributes;
}
}
}
@@ -275,6 +407,8 @@ module vpp-vlan {
uses sub-interface-base-attributes;
uses sub-interface-operational-attributes;
+ uses sub-interface-ip4-attributes;
+ uses sub-interface-ip6-attributes;
}
}
}