summaryrefslogtreecommitdiffstats
path: root/yang/frr-ripd.yang
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2020-04-08 16:17:24 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2020-04-08 16:18:31 +0200
commitf7688027d8e4809f35d5858856e6f3ae8e129cca (patch)
tree01e8f654f0b25185450f39782b51b8a0f7d27c42 /yang/frr-ripd.yang
parentMerge pull request #6166 from volta-networks/fix_isis_lsp_timers (diff)
downloadfrr-f7688027d8e4809f35d5858856e6f3ae8e129cca.tar.xz
frr-f7688027d8e4809f35d5858856e6f3ae8e129cca.zip
yang: Temp change interface type to string to allow configuration
Temporarily change the interface types in rip and ripng to strings to allow us to work, since the yang uplift to 1.0 is proving difficult. Signed-off-by: Donald Sharp sharpd@cumulusnetworks.com>
Diffstat (limited to 'yang/frr-ripd.yang')
-rw-r--r--yang/frr-ripd.yang6
1 files changed, 3 insertions, 3 deletions
diff --git a/yang/frr-ripd.yang b/yang/frr-ripd.yang
index 7318eb18d..12c72b39b 100644
--- a/yang/frr-ripd.yang
+++ b/yang/frr-ripd.yang
@@ -118,7 +118,7 @@ module frr-ripd {
"Enable RIP on the specified IP network.";
}
leaf-list interface {
- type frr-interface:interface-ref;
+ type string;
description
"Enable RIP on the specified interface.";
}
@@ -179,14 +179,14 @@ module frr-ripd {
}
leaf-list passive-interface {
when "../passive-default = 'false'";
- type frr-interface:interface-ref;
+ type string;
description
"A list of interfaces where the sending of RIP packets
is disabled.";
}
leaf-list non-passive-interface {
when "../passive-default = 'true'";
- type frr-interface:interface-ref;
+ type string;
description
"A list of interfaces where the sending of RIP packets
is enabled.";