diff options
author | Chirag Shah <chirag@cumulusnetworks.com> | 2020-04-29 01:01:19 +0200 |
---|---|---|
committer | Chirag Shah <chirag@cumulusnetworks.com> | 2020-05-12 23:52:08 +0200 |
commit | 748a972c03d74bd17adfc1aef983fe906fb5c574 (patch) | |
tree | 1411641f4fbbefe7162edae504a3abbe83674a3b /yang | |
parent | zebra: rib northbound callback implementation (diff) | |
download | frr-748a972c03d74bd17adfc1aef983fe906fb5c574.tar.xz frr-748a972c03d74bd17adfc1aef983fe906fb5c574.zip |
yang: add unified protocol types in rib model
Add v4/v6 unified protocol list to rib operational
model.
Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'yang')
-rw-r--r-- | yang/frr-zebra.yang | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/yang/frr-zebra.yang b/yang/frr-zebra.yang index 22fb391e5..cc83f1e0c 100644 --- a/yang/frr-zebra.yang +++ b/yang/frr-zebra.yang @@ -658,9 +658,7 @@ module frr-zebra { list route-entry { key "protocol"; leaf protocol { - type frr-route-types:frr-route-types-v4; - //TODO: Use unified route types done in PR 5183 when it is merged. - //type frr-route-types:frr-route-types; + type frr-route-types:frr-route-types; description "The protocol owning the route."; } |