Python:Scapy:如何读取 IP 标志

发布于 2024-10-19 02:00:58 字数 151 浏览 2 评论 0原文

我试图弄清楚如何使用 scapy 库读取 IP 标志(而不是 TCP)。我知道它存储在“flags”中,并且是 FlagsField 类型。根据IP协议规范,有3个标志R、MF和DF。我搜索了又搜索,但找不到任何有关如何读取这些标志的信息。有什么想法吗?

感谢大家的意见。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳钉梦 2024-10-26 02:00:58

例如,创建一个设置了 DF(不分段)标志的 IP 数据包:

>>> packet = IP(flags=2)  # alternatively, IP(flags='DF')
>>> packet
<IP  flags=DF |>

读取数据包的 flags

>>> packet.flags
2

至于标志位,维基百科 简洁地概述了这一点。它是一个三位值,含义如下:

  • 位 0:保留;必须为零。
  • 位 1:不分段 (DF)
  • 位 2:更多分段 (MF)

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

>>> packet = IP(flags=2)  # alternatively, IP(flags='DF')
>>> packet
<IP  flags=DF |>

Reading a packet's flags:

>>> packet.flags
2

As for the flag bits, Wikipedia outlines this succinctly. 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)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文