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
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