Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想控制数据包生成的速度,因为 Scapy 默认使用“发送”发送数据包太慢。一些建议说“sendpfast”可以指定 PPS,但是,它在我的脚本中不起作用,“sendp”也不起作用。将“send”替换为“sendp”/“sendpfast”后,我注意到 Wireshark 上没有任何内容,数据包没有发送。我错过了什么?
使用sendpfast()第二层并将其添加到您的数据包中。这意味着只需添加
sendpfast()
Ether()/...
在每个数据包之前。