[Ryu-devel] [PATCH] Show warning when Datapath#ports is read

2015-04-05 Thread Satoshi Kobayashi
Datapath#ports is kept for compatibility with the previous openflow versions (< 1.3). Datapath#ports is not updated when received EventOFPPortStatus. This behavior may confuse users. Wherefore, showing warning message when the user accesses to Datapath#ports with the currently openflow versions

Re: [Ryu-devel] QoS Testng Problem

2015-04-05 Thread YAMAMOTO Takashi
hi, ryu just talks with OVS. OVS implements the functionality using the kernel stuff. but ryu doesn't have direct knowledges about such implementation details. the URL you mentioned seems discussing about VM -> switch traffic shaping. the rest_qos is meant about queue rates, which is about the

Re: [Ryu-devel] The question

2015-04-05 Thread Yusuke Iwase
Hi, On 2015年04月05日 03:08, Николай Жупиков wrote: > Hello! Please tell me how to extract the value of the field tcp_flags > (openflow 1.5) using ryu. > If possible, write example code. Your question is how to extract the tcp_flags from packets (e.g. from packet-in data), right? If so, you can do

Re: [Ryu-devel] IP destination match gives keyError:'unknown match field dl_dst'

2015-04-05 Thread FUJITA Tomonori
On Fri, 3 Apr 2015 13:48:37 + (UTC) "MD.Badruzzaman Shakib" wrote: > In my application I want to match destination address while adding flows. I > am using OFP1.3. The main problem is when I match the destination ip I used > > match = datapath.ofproto_parser.OFPMatch( >     dl_dst=

Re: [Ryu-devel] IP destination match gives keyError:'unknown match field dl_dst'

2015-04-05 Thread MD.Badruzzaman Shakib
Hi again, I have made following modification in 'match' field of my add_flow function -         match = datapath.ofproto_parser.OFPMatch(                                               ipv4_dst=ipv4_to_bin(dst))         But now when I send dst = 11.0.1.1 to the add_flow