scapy.contrib.igmpv3¶
-
class
scapy.contrib.igmpv3.IGMPv3(*args, **kargs)¶ Bases:
scapy.contrib.igmp.IGMPIGMP Message Class for v3.
This class is derived from class Packet. The fields defined below are a direct interpretation of the v3 Membership Query Message. Fields ‘type’ through ‘qqic’ are directly assignable. For ‘numsrc’, do not assign a value. Instead add to the ‘srcaddrs’ list to auto-set ‘numsrc’. To assign values to ‘srcaddrs’, use the following methods:
c = IGMPv3() c.srcaddrs = ['1.2.3.4', '5.6.7.8'] c.srcaddrs += ['192.168.10.24']
At this point, ‘c.numsrc’ is three (3)
‘chksum’ is automagically calculated before the packet is sent.
‘mrcode’ is also the Advertisement Interval field
-
aliastypes¶
-
classmethod
dispatch_hook(_pkt=None, *args, **kargs)¶
-
encode_maxrespcode()¶ Encode and replace the mrcode value to its IGMPv3 encoded time value if needed, # noqa: E501 as specified in rfc3376#section-4.1.1.
If value < 128, return the value specified. If >= 128, encode as a floating # noqa: E501 point value. Value can be 0 - 31744.
-
fields_desc¶ Display RFC-like schema
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | TYPE | MRCODE | CHKSUM | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Fig. IGMPv3IGMPv3 fields¶ type
17mrcode
20chksum
None
-
igmpv3types= {17: 'Membership Query', 34: 'Version 3 Membership Report', 48: 'Multicast Router Advertisement', 49: 'Multicast Router Solicitation', 50: 'Multicast Router Termination'}¶
-
mysummary()¶ Display a summary of the IGMPv3 object.
-
-
class
scapy.contrib.igmpv3.IGMPv3gr(*args, **kargs)¶ Bases:
scapy.packet.PacketIGMP Group Record for IGMPv3 Membership Report
This class is derived from class Packet and should be added in the records of an instantiation of class IGMPv3mr.
-
aliastypes¶
-
default_payload_class(payload)¶
-
fields_desc¶ Display RFC-like schema
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | RTYPE | AUXDLEN | NUMSRC | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | MADDR | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | SRCADDRS | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Fig. IGMPv3grIGMPv3gr fields¶ rtype
1auxdlen
0numsrc
Nonemaddr
'0.0.0.0'srcaddrs
[]
-
igmpv3grtypes= {1: 'Mode Is Include', 2: 'Mode Is Exclude', 3: 'Change To Include Mode', 4: 'Change To Exclude Mode', 5: 'Allow New Sources', 6: 'Block Old Sources'}¶
-
mysummary()¶ Display a summary of the IGMPv3 group record.
-
-
class
scapy.contrib.igmpv3.IGMPv3mq(*args, **kargs)¶ Bases:
scapy.packet.PacketIGMPv3 Membership Query. Payload of IGMPv3 when type=0x11
-
aliastypes¶
-
fields_desc¶ Display RFC-like schema
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | GADDR | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | RESV |S| QRV | QQIC | NUMSRC | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | SRCADDRS | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Fig. IGMPv3mqIGMPv3mq fields¶ gaddr
'0.0.0.0'resv
BitField(4 bits)0s
BitField(1 bit)0qrv
BitField(3 bits)0qqic
0numsrc
Nonesrcaddrs
[]
-
-
class
scapy.contrib.igmpv3.IGMPv3mr(*args, **kargs)¶ Bases:
scapy.packet.PacketIGMP Membership Report extension for IGMPv3. Payload of IGMPv3 when type=0x22
-
aliastypes¶
-
fields_desc¶ Display RFC-like schema
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | RES2 | NUMGRP | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | RECORDS | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Fig. IGMPv3mrIGMPv3mr fields¶ res2
0numgrp
Nonerecords
[]
-
-
class
scapy.contrib.igmpv3.IGMPv3mra(*args, **kargs)¶ Bases:
scapy.packet.PacketIGMP Multicast Router Advertisement extension for IGMPv3. Payload of IGMPv3 when type=0x30
-
aliastypes¶
-
fields_desc¶ Display RFC-like schema
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | QRYINTVL | ROBUST | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Fig. IGMPv3mraIGMPv3mra fields¶ qryIntvl
0robust
0
-