summaryrefslogtreecommitdiffstats
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
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>
-rw-r--r--yang/frr-ripd.yang6
-rw-r--r--yang/frr-ripngd.yang2
2 files changed, 4 insertions, 4 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.";
diff --git a/yang/frr-ripngd.yang b/yang/frr-ripngd.yang
index 732f32ea5..c58962f5c 100644
--- a/yang/frr-ripngd.yang
+++ b/yang/frr-ripngd.yang
@@ -76,7 +76,7 @@ module frr-ripngd {
"Enable RIPng on the specified IPv6 network.";
}
leaf-list interface {
- type frr-interface:interface-ref;
+ type string;
description
"Enable RIPng on the specified interface.";
}