It's dpkt.ethernet.Ethernet(pkt) for an ethernet interface, what is it for the ppp0 interface?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

You're mixing up dpkt, a library for parsing and creating packets, with pypcap, a Python wrapper for libpcap.

To specify an interface to listen on, use pcap.pcap(name='ppp0').

To deserialize PPP packets, use dpkt.ppp.PPP(pkt).

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.