我正在尝试一个简单的代码,只是发送一个ARP数据包:
from scapy.all import *
p = ARP()
send(p)
我收到此错误:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
send(p)
File "C:\Python26\scapy\sendrecv.py", line 251, in send
__gen_send(conf.L3socket(*args, **kargs), x, inter=inter, loop=loop,
count=count,verbose=verbose, realtime=realtime)
File "C:\Python26\scapy\sendrecv.py", line 234, in __gen_send
s.send(p)
File "C:\Python26\scapy\arch\pcapdnet.py", line 237, in send
ifs = dnet.eth(iff)
File "dnet.pyx", line 112, in dnet.eth.__init__
OSError: No error
我的操作系统是Windows 8 64位。我试过win7 64bit并遇到了同样的问题。我尝试在win7 32bit中运行正常。
我无法理解为什么......请帮助..
答案 0 :(得分:0)
我想你必须通知接口ID,如下所示:
sendp(netpacket, iface='eth1')
我遇到了和你一样的麻烦,就像我说的那样,得到了它!