diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-04-30 15:22:58 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-04-30 15:22:58 +0200 |
| commit | 8768be17f3c761d564154223482b85444d76e40b (patch) | |
| tree | 9ab9db7284b62f2551dfbcb1e7768790c31c81fd /pimd/pim_rpf.c | |
| parent | c188062b12da0936fc9621f6156537e6be8ded43 (diff) | |
| parent | bc36ccde9951722fb808af51bc12011d96ad0537 (diff) | |
Merge remote-tracking branch 'frr/pull/10706' into pim6-testing
Diffstat (limited to 'pimd/pim_rpf.c')
| -rw-r--r-- | pimd/pim_rpf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pimd/pim_rpf.c b/pimd/pim_rpf.c index 4e812ae3f0..8357536393 100644 --- a/pimd/pim_rpf.c +++ b/pimd/pim_rpf.c @@ -122,6 +122,13 @@ bool pim_nexthop_lookup(struct pim_instance *pim, struct pim_nexthop *nexthop, __func__, ifp->name, first_ifindex, &addr); i++; + } else if (!((struct pim_interface *)ifp->info)->pim_enable) { + if (PIM_DEBUG_ZEBRA) + zlog_debug( + "%s: pim not enabled on input interface %s (ifindex=%d, RPF for source %pPA)", + __func__, ifp->name, first_ifindex, + &addr); + i++; } else if (neighbor_needed && !pim_if_connected_to_source(ifp, addr)) { nbr = pim_neighbor_find(ifp, |
