Dear Ryu developer support team,

Is it possible to send a packet to the switch from a Ryu app without having
any kind of PacketIn events? I want to initiate a packet-send from a Ryu
app so that the trigger of the event is the Ryu app itself not something
external.

I've tried to do (in `def start`):

datapath.send_packet_out(in_port=ofp.OFPP_LOCAL,
                         actions=[],
                         data=pkt.data)


But when I print `ovs-ofctl dump-flows gtp_br0` all the tables show
n_packets=0 (they aren't 0 if I initiate traffic not from a Ryu app).

Is there something I might be missing?

Thanks.
Best,
Martin
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to