Hi David, > Is it possible to do it this way or there is other solution ? > > actions = [parser.OFPActionOutput(out_port1), > parser.OFPActionOutput(out_port2), > parser.OFPActionOutput(out_port3)]
I think the above code will works well. It didn't work well in your environment? > there is other solution ? The "Group" abstraction enables OpenFlow to represent a set of ports as a single entity for forwarding packets. And, Group type of "all" is used for multicast and flooding. OpenFlow Spec 1.3.5 says: --- • Required: all: Execute all buckets in the group. This group is used for multicast or broadcast forwarding. The packet is effectively cloned for each bucket; one packet is processed for each bucket of the group. If a bucket directs a packet explicitly out the ingress port, this packet clone is dropped. If the controller writer wants to forward out the ingress port, the group must include an extra bucket which includes an output action to the OFPP_IN_PORT reserved port. --- More detail is described in chapter5.6 of OpenFlowSpec1.3.5. Thanks, On 2016年02月06日 01:54, David Gabriel wrote: > Dears > > I want to add an entry that allows the forwording to multiple ports. > Please note that I do not want to use the multicast OFPP_FLOOD. > Is it possible to do it this way or there is other solution ? > > actions = [parser.OFPActionOutput(out_port1), > parser.OFPActionOutput(out_port2), > parser.OFPActionOutput(out_port3)] > > Thanks in advance > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 > > > > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel > ------------------------------------------------------------------------------ Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor end-to-end web transactions and take corrective actions now Troubleshoot faster and improve end-user experience. Signup Now! http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
