Re: [Ryu-devel] Possible bug in match.append_fields for mac addresses?

2015-08-15 Thread Gandhimathi Velusamy
Hi Iwase, Thank you for the clarification. Is there any latest documentation to refer? Thanks Gandhimathi On 15 August 2015 at 08:39, Iwase Yusuke wrote: > Hi, > > append_field() method is one of the "old" API for OFPMatch. > With old API, you need to convert IP/MAC address (string type)into

[Ryu-devel] QoS in torrent traffic

2015-08-15 Thread Marcos Bontempo
Hello, Does anybody know how can I apply a QoS rule in a torrent traffic? I want to reduce its rate. Any tip will be very helpful,Thanks. --

Re: [Ryu-devel] REST linkage with simple switch and simple switch 13 (mac filtering)

2015-08-15 Thread Iwase Yusuke
Hi, On 2015年08月12日 07:01, Kelvin Yau wrote: > > Hi, > > i'm currently looking ryu through examples from the SimpleSwitch13.py & > SimpleSwitchRest13.py. I've gone through the code and understand what is it > trying to achieve. > > My question is how would i filter certain mac address to updat

Re: [Ryu-devel] Possible bug in match.append_fields for mac addresses?

2015-08-15 Thread Iwase Yusuke
Hi, append_field() method is one of the "old" API for OFPMatch. With old API, you need to convert IP/MAC address (string type)into binary type. e.g.) >>> from ryu.lib import addrconv >>> from ryu.ofproto import ofproto_v1_3 as ofproto >>> from ryu.ofproto import ofproto_v1_3_parser as parser >>>