Skip to content

Commit

Permalink
Merge pull request #18250 from FRRouting/mergify/bp/stable/10.1/pr-18216
Browse files Browse the repository at this point in the history
pimd: Fix PIM VRF support (send register/register stop in VRF) (backport #18216)
  • Loading branch information
donaldsharp authored Feb 25, 2025
2 parents c3e264e + e933d37 commit d7106ad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pimd/pim_instance.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,9 @@ static int pim_vrf_enable(struct vrf *vrf)

zlog_debug("%s: for %s %u", __func__, vrf->name, vrf->vrf_id);

if (vrf_bind(vrf->vrf_id, pim->reg_sock, NULL) < 0)
zlog_warn("Failed to bind register socket to VRF %s", vrf->name);

pim_mroute_socket_enable(pim);

FOR_ALL_INTERFACES (vrf, ifp) {
Expand Down

0 comments on commit d7106ad

Please sign in to comment.