X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_igmp.py;h=22b6d2f02e3a4a7a824959b686a1205bd59224d2;hb=c667ffd4af4bb0a0576ceefcc29e3bb086a823c2;hp=e741e6b146fb334ef18b3d1eb40a42fc911ba41e;hpb=09fdf9d074430032c27aba9e12e52440c7de2006;p=vpp.git diff --git a/test/test_igmp.py b/test/test_igmp.py index e741e6b146f..22b6d2f02e3 100644 --- a/test/test_igmp.py +++ b/test/test_igmp.py @@ -51,7 +51,11 @@ class TestIgmp(VppTestCase): # hos sends join IGMP 'join' p_join = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) / - IP(src=self.pg0.remote_ip4, dst='224.0.0.22', tos=0xc0) / + IP(src=self.pg0.remote_ip4, dst='224.0.0.22', + tos=0xc0, ttl=1, + options=IPOption(copy_flag=1, optclass=0, + option="router_alert", + length=2, value=0)) / IGMPv3() / IGMPv3mr(numgrp=1) / IGMPv3gr(rtype=3, maddr="224.1.1.1", srcaddrs=["10.1.1.1"]))