I am trying to figure out how to read IP flags (not TCP) using scapy library. I know it is stored in "flags" and it is FlagsField type. According to IP protocol specification there are 3 flags R, MF, and DF. I've search, and searched and could not find any info on how to read these flags. Any ideas?

Thank you all for your input.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

For example, creating an IP packet with the DF (Don't Fragment) flag set:

>>> packet = IP(flags=2)
>>> packet
<IP  flags=DF |>

Reading a packet's flags:

>>> packet.flags
2

As for the flag bits, Wikipedia outlines this succintly. It's a three-bit value with the following meaning:

  • bit 0: Reserved; must be zero.
  • bit 1: Don't Fragment (DF)
  • bit 2: More Fragments (MF)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.