diff options
| author | Russ White <russ@riw.us> | 2020-06-11 06:15:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-11 06:15:31 -0400 |
| commit | 14dee36af1f01e6b94e61e0c6a33c61902374cb1 (patch) | |
| tree | 2d9dfb9e70e7041e77b747e81101fd55e3fdd33b /pimd/pim_zebra.c | |
| parent | 6a935ad753afbe4442398897f322ac58e0f2c1c8 (diff) | |
| parent | ac6ebcb0dbb6a07f29a63c7e5941050b6d95d933 (diff) | |
Merge pull request #6509 from donaldsharp/mlag_missed_upstream
pimd: Allow mlag to create ifchannel
Diffstat (limited to 'pimd/pim_zebra.c')
| -rw-r--r-- | pimd/pim_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_zebra.c b/pimd/pim_zebra.c index 8355c2099d..d089dfda51 100644 --- a/pimd/pim_zebra.c +++ b/pimd/pim_zebra.c @@ -728,7 +728,7 @@ void igmp_source_forward_start(struct pim_instance *pim, } } - if (PIM_I_am_DR(pim_oif)) { + if (PIM_I_am_DR(pim_oif) || PIM_I_am_DualActive(pim_oif)) { result = pim_channel_add_oif(source->source_channel_oil, group->group_igmp_sock->interface, PIM_OIF_FLAG_PROTO_IGMP, __func__); |
