为什么它给我这个错误?
Why it is giving me this error ?
您做错了封装。基本上,您将以太网框架放入ARP数据包中,这没有任何意义。因此,MAC目标地址SCAPY试图到达ARP包中的某个地方。
尝试替换:
packet = request / boardcast
(
packet = boardcast / request
typo:boardcast - > 广播)
boardcast
广播
Your are doing the wrong encapsulation. Basically you are putting an Ethernet frame inside an ARP packet which does not make any sense. Hence the MAC destination address scapy is trying to reach is encoded somewhere in the ARP packet.
Try replacing:
by:
(typo: boardcast -> broadcast)
broadcast
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
您做错了封装。基本上,您将以太网框架放入ARP数据包中,这没有任何意义。因此,MAC目标地址SCAPY试图到达ARP包中的某个地方。
尝试替换:
(
typo:
boardcast
- >广播
)Your are doing the wrong encapsulation. Basically you are putting an Ethernet frame inside an ARP packet which does not make any sense. Hence the MAC destination address scapy is trying to reach is encoded somewhere in the ARP packet.
Try replacing:
by:
(typo:
boardcast
->broadcast
)