On Tue, 8 Sep 2015 09:26:03 +0000 (UTC) Davide Sanvito <[email protected]> wrote:
> I need to to install a flow entry with a Nicira experimenter action > NXActionRegLoad in a Open vSwitch (OpenFlow 1.3). > I was wondering why NXActionRegLoad can be found in ofproto_v1_0_parser.py > but has been removed in ofproto_v1_3_parser.py even if OVS with OF1.3 > supports it (I am able to install such an action through ovs-ofctl utility) > and NXAST_REG_LOAD is reported in nicira_ext.py. At OF1.0 era, we implemented NX with OF1.0. However, NX can work with any OF protocol versions. Currently, separated files implement NX stuff like: https://github.com/osrg/ryu/blob/master/ryu/ofproto/nx_actions.py The following commit could show how to add a new NX action: commit 50769ac83724ff4ed2952c8d70c4f7fa44792589 Author: IWAMOTO Toshihiro <[email protected]> Date: Fri May 29 12:16:01 2015 +0900 Implement NXActionConjunction and conj_id match for OF1.3 and OF1.5 Signed-off-by: IWAMOTO Toshihiro <[email protected]> Signed-off-by: FUJITA Tomonori <[email protected]> ------------------------------------------------------------------------------ Monitor Your Dynamic Infrastructure at Any Scale With Datadog! Get real-time metrics from all of your servers, apps and tools in one place. SourceForge users - Click here to start your Free Trial of Datadog now! http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140 _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
