mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 09:00:55 +00:00
bgpd: encode properly vpnv6 nexthop
This change updates the nexthop attribute length
accordingly to the safi used. Actually, with the
previous commit, the length calculated was not
aligned with the real nexthop length. Such packet
received by remote peer was malformed, and this
was resulting in breaking vpnv6 peering.
Fix this by updating appropriately the real
nexthop length.
Fixes: 35ac9b53f2
("bgpd: fix vpnv6 nexthop encoding")
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
This commit is contained in:
parent
de2e2d5ef0
commit
f7a0eb6a17
@ -2273,8 +2273,12 @@ bool subgroup_announce_check(struct bgp_dest *dest, struct bgp_path_info *pi,
|
||||
&& peer->shared_network
|
||||
&& (from == bgp->peer_self
|
||||
|| peer->sort == BGP_PEER_EBGP))) {
|
||||
attr->mp_nexthop_len =
|
||||
BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL;
|
||||
if (safi == SAFI_MPLS_VPN)
|
||||
attr->mp_nexthop_len =
|
||||
BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL;
|
||||
else
|
||||
attr->mp_nexthop_len =
|
||||
BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL;
|
||||
}
|
||||
|
||||
/* Clear off link-local nexthop in source, whenever it is not
|
||||
|
Loading…
Reference in New Issue
Block a user