diff options
| author | Donna Sharp <dksharp5@gmail.com> | 2025-02-24 16:04:56 -0500 | 
|---|---|---|
| committer | Donna Sharp <dksharp5@gmail.com> | 2025-03-01 14:39:07 -0500 | 
| commit | 453154497e0944e8bfbc7cdcc62931bcfa0d8b0c (patch) | |
| tree | b460f3e4b2709e95ec2ba445da4fa6217326eecb /yang | |
| parent | 311bd23ccbf79fa671f1979b26ec8059cbe87e85 (diff) | |
zebra: allow retrieval of ip forwarding state
There was no ability to retrieve the ip-forwarding state
of zebra.  Add this to yang under the state container.
Signed-off-by: Donna Sharp <dksharp5@gmail.com>
Diffstat (limited to 'yang')
| -rw-r--r-- | yang/frr-zebra.yang | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/yang/frr-zebra.yang b/yang/frr-zebra.yang index 5f1b711b97..3e005c2d35 100644 --- a/yang/frr-zebra.yang +++ b/yang/frr-zebra.yang @@ -2968,6 +2968,11 @@ module frr-zebra {        config false;        description          "Operational data."; +      leaf ip-forwarding { +        type boolean; +        description +          "IP forwarding status."; +      }      }      // End of operational / state container    }  | 
