在python中使用dpkt时出错

时间:2014-01-30 12:59:09

标签: python pcap

我正在编写一些代码来解析python中的pcap文件,如下所示:

#!/usr/bin/env python
import socket
import dpkt
import sys
import pcap
pcapReader = dpkt.pcap.Reader(file("clients.pcap", "rb"))
for ts, data in pcapReader:
    ether = dpkt.ethernet.Ethernet(data)
    if ether.type != dpkt.ethernet.ETH_TYPE_IP: raise
    ip = ether.data
    src = socket.inet_ntoa(ip.src)
    dst = socket.inet_ntoa(ip.dst)
    print "%s -> %s" % (src, dst)

编译时,我收到以下错误消息::

Traceback (most recent call last):
  File "test.py", line 3, in <module>
    import dpkt
ImportError: No module named dpkt

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

在Ubuntu上,只需输入:

sudo apt-get install python-dpkt