I am using scapy
as packet decoder tool.
By default it doesn't load certain layers, so I have to specify explicitly in the code:
load_contrib("mpls")
load_contrib("lldp")
load_contrib("ldp")
load_contrib("ospf")
load_contrib("bgp")
load_contrib("igmp")
Is there a way to load all known layers/types?
I tried following but it doesn't work:
#from scapy.layers.l2 import *
from scapy.layers import *
from scapy.contrib import *