MPLS support + loop_vm_arp test fix
[nfvbench.git] / nfvbench / specs.py
index 75fe703..ec5e24e 100644 (file)
 class Encaps(object):
     VLAN = "VLAN"
     VxLAN = "VxLAN"
+    MPLS = "MPLS"
     NO_ENCAPS = "NONE"
 
     encaps_mapping = {
         'VLAN': VLAN,
         'VXLAN': VxLAN,
+        'MPLS': MPLS,
         'NONE': NO_ENCAPS
     }