I have some pcap files, previously I used tshark combined python to extract source IP address, timestamp, ect.

However, now I open these pcap files in Wireshark. It also contains the VLAN info, VID is the thing I want to extract right now.

I use tshark -r xx.pcap in the terminal, it can only show the tcp level info, I can not get this VLAN ID. Does anyone one know how to do it in Python? use some library or tool?

link|improve this question

tshark -V dumps the whole packet, or is there more to this question? – Mike Pennington Dec 13 '11 at 15:16
feedback

2 Answers

the perfect solution is Scapy

In this example i create a packet with vlan and then print the vlan ID

from scapy.all import *
pkt=Ether()/Dot1Q(vlan=0x32)/IP(dst="192.168.1.66")/ICMP()
print pkt[Dot1Q].vlan

and this example shows how to read a pcap file and print the VLAN ID

from scapy.all import *
from scapy.utils import *
pkts=rdpcap("filename.pcap")
for pkt in pkts:
    if pkt.haslayer(Dot1Q):
        print pkt[Dot1Q].vlan 

tested and works perfect.

link|improve this answer
feedback

You could use Scapy for that:

from scapy.all import *

recs = rdpcap("yourpcap.pcap")

# extract vlan id from first record
for rec in recs:
    dot1q = rec.get_layer(Dot1Q)
    if dot1q is None:
        # not vlan here, skip.
        continue
    print 'Vlanid found:', dot1q.vlan, 'on packet', rec

Not tested, but could work. To learn scappy, best is to launch it, and play with auto completion, and read tutorials :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.