mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-11 20:48:27 +00:00
bgpd: Resolve ability to add route-map out to peer-group member
Modified the configuration code to properly allow a peer-group member to have a route-map out applied when one does not exist on the peer-group itself. This capability already existed for route-map in. Ticket: CM-10058 Signed-off-by: Don Slice Reviewed-by: Donald Sharp
This commit is contained in:
parent
0f48374b38
commit
2bd5af06b8
@ -6190,7 +6190,9 @@ bgp_config_write_filter (struct vty *vty, struct peer *peer,
|
||||
addr, filter->map[RMAP_IN].name, VTY_NEWLINE);
|
||||
}
|
||||
|
||||
if (filter->map[RMAP_OUT].name && ! gfilter)
|
||||
if (filter->map[RMAP_OUT].name)
|
||||
if (! gfilter || ! gfilter->map[RMAP_OUT].name
|
||||
|| strcmp (filter->map[RMAP_OUT].name, gfilter->map[RMAP_OUT].name) != 0)
|
||||
{
|
||||
afi_header_vty_out (vty, afi, safi, write,
|
||||
" neighbor %s route-map %s out%s",
|
||||
|
Loading…
Reference in New Issue
Block a user