diff options
author | Daniil Baturin <daniil@baturin.org> | 2022-11-24 13:04:23 +0000 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2022-11-24 13:04:23 +0000 |
commit | 43062d0b338a5aad7e3b158d1c83e0a4472b1420 (patch) | |
tree | ccafce021bbb8dde6c62203e4991c74f405a4b19 /src | |
parent | 39394976aeb64bbe1d1e8fe3047af7a28f3f1dda (diff) | |
download | vyos-1x-43062d0b338a5aad7e3b158d1c83e0a4472b1420.tar.gz vyos-1x-43062d0b338a5aad7e3b158d1c83e0a4472b1420.zip |
T4837: expose "show ip route summary" in the op mode API
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/route.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/op_mode/route.py b/src/op_mode/route.py index d11b00ba0..d07a34180 100755 --- a/src/op_mode/route.py +++ b/src/op_mode/route.py @@ -54,6 +54,18 @@ frr_command_template = Template(""" {% endif %} """) +def show_summary(raw: bool): + from vyos.util import cmd + + if raw: + from json import loads + + output = cmd(f"vtysh -c 'show ip route summary json'") + return loads(output) + else: + output = cmd(f"vtysh -c 'show ip route summary'") + return output + def show(raw: bool, family: str, net: typing.Optional[str], |