From f8739e7feb9973550ef2fc69e6768b331e0ef28e Mon Sep 17 00:00:00 2001 From: Billy O'Mahony Date: Tue, 25 Aug 2015 11:35:28 +0100 Subject: Frame Modification: support remaining frame modification types. Only works for P2P. Other deployment scenarios will need to implement the same kind of multi-table flow as P2P to enable frame modification. Signed-off-by: Billy O'Mahony Reviewed-by: Maryam Tahhan Reviewed-by: Martin Klozik Reviewed-by: Radek Zetik Reviewed-by: Dino Madarang Change-Id: I2fa35972b90b165c00f0d0a7515fa275d0f17aa4 --- core/vswitch_controller_p2p.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'core/vswitch_controller_p2p.py') diff --git a/core/vswitch_controller_p2p.py b/core/vswitch_controller_p2p.py index f2ed73dd..a1158d4e 100644 --- a/core/vswitch_controller_p2p.py +++ b/core/vswitch_controller_p2p.py @@ -88,10 +88,6 @@ class VswitchControllerP2P(IVswitchController): # ovs-discuss 2015-06-30. flow = {'table':'3', 'priority':'1', 'actions': ['drop']} self._vswitch.add_flow(BRIDGE_NAME, flow) - - flow = add_ports_to_flow(_FLOW_TEMPLATE, phy2_number, phy1_number) - self._vswitch.add_flow(BRIDGE_NAME, flow) - except: self._vswitch.stop() raise -- cgit 1.2.3-korg