From 43062d0b338a5aad7e3b158d1c83e0a4472b1420 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 24 Nov 2022 13:04:23 +0000 Subject: T4837: expose "show ip route summary" in the op mode API --- src/op_mode/route.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src') 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], -- cgit v1.2.3