Do not tag outputs with VLANs for SFC 37/7237/1
authorschillinge <ablu@mail.uni-paderborn.de>
Wed, 20 Feb 2019 09:08:47 +0000 (10:08 +0100)
committerschillinge <ablu@mail.uni-paderborn.de>
Wed, 20 Feb 2019 09:11:45 +0000 (10:11 +0100)
this otherwise leads to packets being wrapped within 802.1Q packets,
which do not get popped before forwarding to a service. Thus, services
do not respond to ARP, PING and alike.

Change-Id: I7f29b5094f9bd33661e8f2862c8656c0f9a08a6b
Signed-off-by: schillinge <ablu@mail.uni-paderborn.de>
src/emuvim/api/openstack/resources/port_chain.py

index 64e6177..1f2a367 100644 (file)
@@ -97,7 +97,7 @@ class PortChain(object):
                 server_egress.name, server_ingress.name,
                 egress_port.intf_name, ingress_port.intf_name,
                 cmd="add-flow", cookie=self.cookie, priority=10, bidirectional=False,
-                monitor=False
+                monitor=False, skip_vlan_tag=True
             )
 
     def uninstall(self, compute):