From c17776e9fe5accb285e0ef45b56e9380e94801ff Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 26 Sep 2018 06:51:39 -0700 Subject: IGMP: handle (*,G) report with no source addresses Change-Id: I363370b9d4a27b992bad55c48fc930a2fbea2165 Signed-off-by: Neale Ranns --- test/test_igmp.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test') diff --git a/test/test_igmp.py b/test/test_igmp.py index cfdd1a8aed3..128ac5e8eff 100644 --- a/test/test_igmp.py +++ b/test/test_igmp.py @@ -628,6 +628,22 @@ class TestIgmp(VppTestCase): self.assertFalse(self.vapi.igmp_dump()) self.assertFalse(self.vapi.igmp_dump()) + # + # A (*,G) host report + # + p_j = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) / + IP(src=self.pg0.remote_ip4, dst="224.0.0.22", tos=0xc0, ttl=1, + options=[IPOption(copy_flag=1, optclass="control", + option="router_alert")]) / + IGMPv3(type="Version 3 Membership Report") / + IGMPv3mr(numgrp=1) / + IGMPv3gr(rtype="Allow New Sources", maddr="239.1.1.2")) + + self.send(self.pg0, p_j) + + self.assertTrue(wait_for_igmp_event(self, 1, self.pg0, + "239.1.1.2", "0.0.0.0", 1)) + # # disable router config # -- cgit 1.2.3-korg