mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-12 01:42:55 +00:00
bgpd: Put back original behavior for some show bgp commands
The behavior of some show commands was switched from showing the unicast data to all safi data. This is a change in behavior and needs to be put back for 2.0 Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
fdad6d5661
commit
713de0685f
@ -10272,7 +10272,7 @@ DEFUN (show_ip_bgp_summary,
|
||||
"JavaScript Object Notation\n")
|
||||
{
|
||||
u_char uj = use_json(argc, argv);
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_IP, SAFI_MAX, uj);
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_IP, SAFI_UNICAST, uj);
|
||||
}
|
||||
|
||||
DEFUN (show_ip_bgp_instance_summary,
|
||||
@ -10368,7 +10368,7 @@ DEFUN (show_bgp_summary,
|
||||
"Summary of BGP neighbor status\n"
|
||||
"JavaScript Object Notation\n")
|
||||
{
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_MAX, SAFI_MAX, use_json(argc, argv));
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_MAX, SAFI_UNICAST, use_json(argc, argv));
|
||||
}
|
||||
|
||||
DEFUN (show_bgp_instance_summary,
|
||||
@ -10380,7 +10380,7 @@ DEFUN (show_bgp_instance_summary,
|
||||
"Summary of BGP neighbor status\n"
|
||||
"JavaScript Object Notation\n")
|
||||
{
|
||||
return bgp_show_summary_vty (vty, argv[1], AFI_MAX, SAFI_MAX, use_json(argc, argv));
|
||||
return bgp_show_summary_vty (vty, argv[1], AFI_MAX, SAFI_UNICAST, use_json(argc, argv));
|
||||
}
|
||||
|
||||
DEFUN (show_bgp_instance_all_summary,
|
||||
@ -10406,7 +10406,7 @@ DEFUN (show_bgp_ipv6_summary,
|
||||
"Address family\n"
|
||||
"Summary of BGP neighbor status\n")
|
||||
{
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_IP6, SAFI_MAX, use_json(argc, argv));
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_IP6, SAFI_UNICAST, use_json(argc, argv));
|
||||
}
|
||||
|
||||
DEFUN (show_bgp_instance_ipv6__summary,
|
||||
@ -10463,7 +10463,7 @@ DEFUN (show_ipv6_bgp_summary,
|
||||
"JavaScript Object Notation\n")
|
||||
{
|
||||
u_char uj = use_json(argc, argv);
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_IP6, SAFI_MAX, uj);
|
||||
return bgp_show_summary_vty (vty, NULL, AFI_IP6, SAFI_UNICAST, uj);
|
||||
}
|
||||
|
||||
/* old command */
|
||||
|
Loading…
Reference in New Issue
Block a user