X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=nfvbench%2Fspecs.py;h=ec5e24e8a0379954256ce4fcfdf4d43e4012f1b5;hb=713ee57033bde0ca01fa34c78add5a709c2cdd54;hp=75fe703ff95b63c62ea7b2dbc4c50736845c18f6;hpb=ae838f98fa020d0ad0aa37ab58e02456889c3375;p=nfvbench.git diff --git a/nfvbench/specs.py b/nfvbench/specs.py index 75fe703..ec5e24e 100644 --- a/nfvbench/specs.py +++ b/nfvbench/specs.py @@ -17,11 +17,13 @@ class Encaps(object): VLAN = "VLAN" VxLAN = "VxLAN" + MPLS = "MPLS" NO_ENCAPS = "NONE" encaps_mapping = { 'VLAN': VLAN, 'VXLAN': VxLAN, + 'MPLS': MPLS, 'NONE': NO_ENCAPS }