summaryrefslogtreecommitdiffstats
path: root/pimd/pim_memory.c
diff options
context:
space:
mode:
authoranuradhak <anuradhak@cumulusnetworks.com>2017-03-17 19:51:13 +0100
committeranuradhak <anuradhak@cumulusnetworks.com>2017-03-23 17:47:53 +0100
commit15a5dafe44ea3f64351858496c042e4037c3e750 (patch)
treed3e605d7ecdc570dc6279dfcbbb14a6e04dcd77f /pimd/pim_memory.c
parentMerge pull request #290 from bingen/fix_unused_func (diff)
downloadfrr-15a5dafe44ea3f64351858496c042e4037c3e750.tar.xz
frr-15a5dafe44ea3f64351858496c042e4037c3e750.zip
pimd: Allow SSM groups to co-exist with ASM groups.
SSM groups (232/8 or user configured SSM range) can exist in the same multicast network as ASM groups. For such groups all RPT related state machine operations have to be skipped as defined by section 4.8 of RFC4601 - 1. Source registration is skipped for SSM groups. For SSM groups mroute is setup on the FHR when a new multicast flow is rxed; however source registration (i.e. pimreg join) is skipped. This will let the ASIC black hole the traffic till a valid OIL is added to the mroute. 2. (*,G) IGMP registrations are ignored for SSM groups. Sample output: ============= fhr# sh ip pim group-type SSM group range : 232.0.0.0/8 fhr# sh ip pim group-type 232.1.1.1 Group type: SSM fhr# sh ip pim group-type 239.1.1.1 Group type: ASM fhr# Sample config: ============= fhr(config)# ip pim ssm prefix-list ssm-ranges fhr(config)# Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com> Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com> Ticket: CM-15344 Testing Done: 1. SSM/ASM source-registration/igmp-joins. 2. On the fly multicast group type changes. 3. pim-smoke.
Diffstat (limited to 'pimd/pim_memory.c')
-rw-r--r--pimd/pim_memory.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_memory.c b/pimd/pim_memory.c
index f46cf193b..2acca6f49 100644
--- a/pimd/pim_memory.c
+++ b/pimd/pim_memory.c
@@ -51,3 +51,4 @@ DEFINE_MTYPE(PIMD, PIM_JP_AGG_GROUP, "PIM JP AGG Group")
DEFINE_MTYPE(PIMD, PIM_JP_AGG_SOURCE, "PIM JP AGG Source")
DEFINE_MTYPE(PIMD, PIM_PIM_INSTANCE, "PIM global state")
DEFINE_MTYPE(PIMD, PIM_NEXTHOP_CACHE, "PIM nexthop cache state")
+DEFINE_MTYPE(PIMD, PIM_SSM_INFO, "PIM SSM configuration")