summaryrefslogtreecommitdiffstats
path: root/routing/routing-api/src/main/yang/vpp-routing@2017-09-17.yang
diff options
context:
space:
mode:
Diffstat (limited to 'routing/routing-api/src/main/yang/vpp-routing@2017-09-17.yang')
-rw-r--r--routing/routing-api/src/main/yang/vpp-routing@2017-09-17.yang64
1 files changed, 64 insertions, 0 deletions
diff --git a/routing/routing-api/src/main/yang/vpp-routing@2017-09-17.yang b/routing/routing-api/src/main/yang/vpp-routing@2017-09-17.yang
new file mode 100644
index 000000000..c5594ff32
--- /dev/null
+++ b/routing/routing-api/src/main/yang/vpp-routing@2017-09-17.yang
@@ -0,0 +1,64 @@
+module vpp-routing{
+
+ namespace "urn:ietf:params:xml:ns:yang:vpp-routing";
+ prefix "vpp-routing";
+ description "General extensions for routes to be able to use VPP route defining apis";
+
+ revision 2017-09-17 {
+ description "Support for table lookup option moved to separate model.";
+ }
+
+ revision 2016-12-14 {
+ description "Initial revision.";
+ }
+
+ import yang-ext {
+ prefix "ext";
+ }
+
+ import vpp-classifier {
+ prefix "classifier";
+ }
+
+ import hc2vpp-ietf-routing {
+ prefix "ietf-r";
+ }
+
+ typedef vni-reference{
+ type uint32;
+ description "Vrf index reference";
+ }
+
+ grouping vpp-route-attributes {
+ leaf classify-table{
+ // classify_table_index + is_classify flag
+ type classifier:classify-table-ref;
+ description "Optional reference to classify table";
+ }
+ }
+
+ grouping vpp-routing-protocol-attributes{
+ //vrf_id
+ leaf primary-vrf{
+ type vni-reference;
+ mandatory true;
+ description "Main vrf associated to route";
+ }
+ }
+
+ augment /ietf-r:routing/ietf-r:routing-instance/ietf-r:routing-protocols/ietf-r:routing-protocol{
+ ext:augment-identifier "routing-protocol-vpp-attr";
+ container vpp-protocol-attributes {
+ presence "Config attributes";
+ uses vpp-routing-protocol-attributes;
+ }
+ }
+
+ augment /ietf-r:routing-state/ietf-r:routing-instance/ietf-r:routing-protocols/ietf-r:routing-protocol{
+ ext:augment-identifier "routing-protocol-state-vpp-attr";
+ container vpp-protocol-state-attributes {
+ presence "Operational attributes";
+ uses vpp-routing-protocol-attributes;
+ }
+ }
+} \ No newline at end of file