Python:Scapy:如何读取 IP 标志
我试图弄清楚如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,创建一个设置了 DF(不分段)标志的 IP 数据包:
读取数据包的
flags
:至于标志位,维基百科 简洁地概述了这一点。它是一个三位值,含义如下:
For example, creating an IP packet with the DF (Don't Fragment) flag set:
Reading a packet's
flags
:As for the flag bits, Wikipedia outlines this succinctly. It's a three-bit value with the following meaning: