dpkt ipv6扩展头

2024-10-04 11:32:53 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试使用dpkt从pcap包中获取ipv6扩展头并将其打印出来。但由于某种原因,它没有起作用。我试过很多不同的方法。下面是导致问题的代码部分。有人知道怎么解决这个问题吗? p、 缺乏关于ipv6的dpkt示例代码

    # For each packet in the pcap process the contents
    for ts, buf in pcap:

        # Unpack the Ethernet frame (mac src/dst, ethertype)
        eth = dpkt.ethernet.Ethernet(buf)

        # Make sure the Ethernet frame contains an IP packet
        # EtherType (IP, ARP, PPPoE, IP6... see http://en.wikipedia.org/wiki/EtherType)
        if eth.type != dpkt.ethernet.ETH_TYPE_IP6:
            print 'Non IP Packet type not supported %s\n' % eth.data.__class__.__name__
            continue

        # Now unpack the data within the Ethernet frame (the IP packet) 
        # Pulling out src, dst, length, fragment info, TTL, and Protocol
    ipv6 = eth.data
    fh = dpkt.ip.IP_PROTO_FRAGMENT
    ic = dpkt.ip.IP_PROTO_ICMP6
    icmpv6 = ipv6.data


    # get src and dst ip address    
    src_ip = socket.inet_ntop(AF_INET6, ipv6.src)
    dst_ip = socket.inet_ntop(AF_INET6, ipv6.dst)


        # Analyzing pcap file offline
        #if packet.haslayer(IPv6) and pkt[IPv6].nh == 44 and dpkt.ip6.IP6FragmentHeader.nxt==60 and dpkt.ip6.IP6HopOptsHeader.nxt == 58:
    if ipv6.v == 6 and ipv6.nxt==44:

        print ipv6.IP6FragmentHeader.nxt

更新:当我使用IPDPKT.IP6FragmentHeader我收到此错误

AttributeError: 'str' object has no attribute 'IP6FragmentHeader'

我想从这个包中得到碎片头,它是ICMPv6 wireshark packet


Tags: andtheipsrcdatapacketpcapdst