diff options
author | Anuradha Karuppiah <anuradhak@cumulusnetworks.com> | 2019-03-26 21:26:33 +0100 |
---|---|---|
committer | Anuradha Karuppiah <anuradhak@cumulusnetworks.com> | 2019-04-20 17:33:20 +0200 |
commit | 833b8a504adf4412d2e0113bc78c4a2e1933f4c4 (patch) | |
tree | 530007d61a63796639aefb8c4bc5a918e6f29816 /lib/vxlan.h | |
parent | bgpd: maintain flood mcast group per-l2-vni (diff) | |
download | frr-833b8a504adf4412d2e0113bc78c4a2e1933f4c4.tar.xz frr-833b8a504adf4412d2e0113bc78c4a2e1933f4c4.zip |
bgpd: suppress IMET route generation if flood mode is PIM-SM
IMET route is optional if the flood mode is PIM-SM and serves
no functional purpose. So this change limits type-3 route generation
to flood-mode=head-end-replication.
Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Diffstat (limited to 'lib/vxlan.h')
-rw-r--r-- | lib/vxlan.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vxlan.h b/lib/vxlan.h index 2a8077f8c..69d393959 100644 --- a/lib/vxlan.h +++ b/lib/vxlan.h @@ -38,6 +38,7 @@ typedef uint32_t vni_t; enum vxlan_flood_control { VXLAN_FLOOD_HEAD_END_REPL = 0, VXLAN_FLOOD_DISABLED, + VXLAN_FLOOD_PIM_SM, }; #ifdef __cplusplus |