mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 05:27:47 +00:00
bgpd: Print IPv6 extended community for show bgp attribute-info
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
This commit is contained in:
parent
c4986af74e
commit
540f81c346
@ -915,12 +915,13 @@ static void attr_show_all_iterator(struct hash_bucket *bucket, struct vty *vty)
|
|||||||
"\n",
|
"\n",
|
||||||
attr->flag, attr->distance, attr->med, attr->local_pref,
|
attr->flag, attr->distance, attr->med, attr->local_pref,
|
||||||
attr->origin, attr->weight, attr->label, sid, attr->aigp_metric);
|
attr->origin, attr->weight, attr->label, sid, attr->aigp_metric);
|
||||||
vty_out(vty,
|
vty_out(vty, "\taspath: %s Community: %s Large Community: %s\n",
|
||||||
"\taspath: %s Community: %s Extended Community: %s Large Community: %s\n",
|
|
||||||
aspath_print(attr->aspath),
|
aspath_print(attr->aspath),
|
||||||
community_str(attr->community, false, false),
|
community_str(attr->community, false, false),
|
||||||
ecommunity_str(attr->ecommunity),
|
|
||||||
lcommunity_str(attr->lcommunity, false, false));
|
lcommunity_str(attr->lcommunity, false, false));
|
||||||
|
vty_out(vty, "\tExtended Community: %s Extended IPv6 Community: %s\n",
|
||||||
|
ecommunity_str(attr->ecommunity),
|
||||||
|
ecommunity_str(attr->ipv6_ecommunity));
|
||||||
}
|
}
|
||||||
|
|
||||||
void attr_show_all(struct vty *vty)
|
void attr_show_all(struct vty *vty)
|
||||||
|
Loading…
Reference in New Issue
Block a user