On Sat, 21 Sep 2013 09:49:11 +0800 <[email protected]> wrote: > Hi, all, > > > > I am trying to insert flow entries into the openvswitch table 1. And this is > how I do it: > > > > mod = datapath.ofproto_parser.OFPFlowMod( > datapath=datapath, cookie=0, cookie_mask=0, table_id=1, > command=ofproto.OFPFC_ADD, idle_timeout=1, hard_timeout=0, > priority=65535, buffer_id=ofproto.OFP_NO_BUFFER, > out_port=ofproto.OFPP_ANY, > out_group=ofproto.OFPG_ANY, > flags=0, match=match, instructions=inst) > > datapath.send_msg(mod) > > > I specify the table_id as 1, but it doesn't work. When I check the > openvswitch, the flow still get inserted into table 1. I am using the ofproto > parser v1.2. Does anyone know how I should make this work?
What you try to solve? You specify the table_id as 1 and the flow is installed into table 1. That's a perfect expected behavior. ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
