Skip to content

Commit

Permalink
bgpd: fix display of local label in show bgp
Browse files Browse the repository at this point in the history
Fix the display of the local label in show bgp.

> r1# show bgp ipv4 labeled-unicast 172.16.2.2/32
> BGP routing table entry for 172.16.2.2/32, version 2
> Local label: 16 <---- MISSING
> Paths: (1 available, best #1, table default, vrf (null))
>   Advertised to non peer-group peers:
>  192.168.1.2
>  65501
>    192.168.1.2 from 192.168.1.2 (172.16.2.2)
>      Origin IGP, metric 0, valid, external, best (First path received)
>      Remote label: 3
>      Last update: Fri Oct 25 17:55:45 2024

Fixes: 67f67ba ("bgpd: Drop label_ntop/label_pton functions")
Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
(cherry picked from commit e7b3276)
  • Loading branch information
louis-6wind authored and mergify[bot] committed Oct 28, 2024
1 parent 72e3068 commit e4f158f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -11941,7 +11941,7 @@ void route_vty_out_detail_header(struct vty *vty, struct bgp *bgp,

mpls_lse_decode(dest->local_label, &label, &ttl, &exp, &bos);

has_valid_label = bgp_is_valid_label(&label);
has_valid_label = bgp_is_valid_label(&dest->local_label);

if (safi == SAFI_EVPN) {
if (!json) {
Expand Down

0 comments on commit e4f158f

Please sign in to comment.