Hi all,

I am trying to install a flow rule that outputs a packet to several ports.
I tried solving it by just adding several OFPActionOutput to the list of
actions:

for port in participant["ports"]:
    out_port = port["ID"]
    actions.append(parser.OFPActionOutput(out_port))
...
inst = [parser.OFPInstructionActions(ofproto.OFPIT_APPLY_ACTIONS,
                                             actions)]
...
mod = parser.OFPFlowMod(datapath=datapath, cookie=cookie,
cookie_mask=cookie_mask, table_id=table, priority=priority,
                                    match=match, instructions=inst)

The rules that only have one out_port are installed correctly, the ones
with several out_ports are not installed. What am I doing wrong?

Thanks
Rudy
------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to