mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 11:18:52 +00:00
[bgpd] Add Clrng description to bgp summary state.
2006-02-21 Paul Jakma <paul.jakma@sun.com> * bgp_vty.c: (bgp_show_summary) Add a 'Clrng' sub-description to state of peer while it's suppressed due to clearing.
This commit is contained in:
parent
64e580a72d
commit
6a419733c5
@ -31,6 +31,8 @@
|
|||||||
than plugging process queue, and lock peer while queue
|
than plugging process queue, and lock peer while queue
|
||||||
active.
|
active.
|
||||||
Update to pass only bgp_node as per-queue-item specific data.
|
Update to pass only bgp_node as per-queue-item specific data.
|
||||||
|
* bgp_vty.c: (bgp_show_summary) Add a 'Clrng' sub-description
|
||||||
|
to state of peer while it's suppressed due to clearing.
|
||||||
|
|
||||||
2006-02-18 Paul Jakma <paul.jakma@sun.com>
|
2006-02-18 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
|
@ -6532,6 +6532,8 @@ bgp_show_summary (struct vty *vty, struct bgp *bgp, int afi, int safi)
|
|||||||
vty_out (vty, " Idle (Admin)");
|
vty_out (vty, " Idle (Admin)");
|
||||||
else if (CHECK_FLAG (peer->sflags, PEER_STATUS_PREFIX_OVERFLOW))
|
else if (CHECK_FLAG (peer->sflags, PEER_STATUS_PREFIX_OVERFLOW))
|
||||||
vty_out (vty, " Idle (PfxCt)");
|
vty_out (vty, " Idle (PfxCt)");
|
||||||
|
else if (CHECK_FLAG (peer->sflags, PEER_STATUS_CLEARING))
|
||||||
|
vty_out (vty, " Idle (Clrng)");
|
||||||
else
|
else
|
||||||
vty_out (vty, " %-11s", LOOKUP(bgp_status_msg, peer->status));
|
vty_out (vty, " %-11s", LOOKUP(bgp_status_msg, peer->status));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user