Re: [Ryu-devel] Duplicating flows

2017-01-17 Thread Yi Tseng
Hi Frits, Just put two output action into single flow for example: *actions = [ parser.OFPActionOutput( port_1 ), * *parser.OFPActionOutput( port_2 ) ]* Yi 2017-01-17 13:37 GMT-08:00 Frits : > Dear Readers, > > I Have the following questions: I’m trying to create (using version 1.3) a > rye

[Ryu-devel] Duplicating flows

2017-01-17 Thread Frits
Dear Readers, I Have the following questions: I’m trying to create (using version 1.3) a rye application that is able to duplicate a flow from src to dst. 1. Is it possible to have multiple actions = [ parser.OFPActionOutput( port_out ) ] actions for one mod = datapath.ofproto_p