Re: [Ryu-devel] OF1.5 Meter action support

2017-06-15 Thread Fujimoto Satoshi
Hi, Ali Yes, Ryu supports meter actions! In OF 1.5, OFPInstructionMeter is moved to OFPActionMeter, so the following code should be work in your app: bands = [parser.OFPMeterBandDrop(type_=ofproto.OFPMBT_DROP, len_=0, rate=100, burst_size=10)] req = parser.OFPMeterMod(datapath=d

[Ryu-devel] OF1.5 Meter action support

2017-06-15 Thread Ali Volkan Atli
Hello all I'm trying to implement Openflow 1.5 Meter action (instead of instruction) on Open vSwitch (OvS), now it seems working by using ovs-ofctl, and I'm tring to test with ryu controller. Does ryu support meter actions (not instruction)? If it does how I can convert the below code from OF1