mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-02 18:52:04 +00:00
zebra: Fix 'show ip route babel'...
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
293067f086
commit
241a2f5603
@ -1410,6 +1410,8 @@ DEFUN (show_ip_route,
|
||||
{
|
||||
if (argv_find (argv, argc, "kernel", &idx))
|
||||
type = proto_redistnum (AFI_IP, argv[idx]->text);
|
||||
else if (argv_find (argv, argc, "babel", &idx))
|
||||
type = proto_redistnum (AFI_IP, argv[idx]->text);
|
||||
else if (argv_find (argv, argc, "connected", &idx))
|
||||
type = proto_redistnum (AFI_IP, argv[idx]->text);
|
||||
else if (argv_find (argv, argc, "static", &idx))
|
||||
@ -2605,6 +2607,8 @@ DEFUN (show_ipv6_route,
|
||||
{
|
||||
if (argv_find (argv, argc, "kernel", &idx))
|
||||
type = proto_redistnum (AFI_IP6, argv[idx]->text);
|
||||
else if (argv_find (argv, argc, "babel", &idx))
|
||||
type = proto_redistnum (AFI_IP6, argv[idx]->text);
|
||||
else if (argv_find (argv, argc, "connected", &idx))
|
||||
type = proto_redistnum (AFI_IP6, argv[idx]->text);
|
||||
else if (argv_find (argv, argc, "static", &idx))
|
||||
|
Loading…
Reference in New Issue
Block a user