Re: [Ryu-devel] How to debug a RYU Application?

2015-09-14 Thread Marco Ferrari
Dear Minoru, thanks. I'll try that today. Ciao, Marco Marco Ferrari Email: ferrari.ma...@gmail.com Website: ferrarimarco.info On Tue, Sep 15, 2015 at 2:54 AM, Minoru TAKAHASHI < takahashi.mino...@gmail.com> wrote: > Hi, > > On 2015年09月14日 23:18, Marco Ferrari wrote: > > Hi everyone, > > I am

[Ryu-devel] [PATCH] ofproto_v1_5: Add OFPBAC_BAD_METER

2015-09-14 Thread Yusuke Iwase
OpenFlow 1.5.1 adds new error OFPBAC_BAD_METER for bad meter in flow-mod (EXT-530). Signed-off-by: IWASE Yusuke --- ryu/ofproto/ofproto_v1_5.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ryu/ofproto/ofproto_v1_5.py b/ryu/ofproto/ofproto_v1_5.py index be5bd14..9e58e79 100644 --- a/ryu/of

Re: [Ryu-devel] How to debug a RYU Application?

2015-09-14 Thread Minoru TAKAHASHI
Hi, On 2015年09月14日 23:18, Marco Ferrari wrote: > Hi everyone, > I am developing a RYU application. > > It's evolving in complexity is the necessity of a debugger is becoming bigger > and bigger. > > Can you please help me in setting up a debugger for a RYU app? > > Currently I am using PyCharm

Re: [Ryu-devel] error with app simple_switch_15.py

2015-09-14 Thread Yusuke Iwase
Hi Iol, I attached a sample code of simple_switch_15.py, but OVS does not fully support OpenFlow1.5, this code does not work enough. Certainly, Ryu can speak OpenFlow 1.5. On the other hand, OVS may be working with the OpenFlow 1.4 or earlier implementation. Thanks, Iwase On 2015年09月15日 03:45,

Re: [Ryu-devel] Usage of NXActionResubmitTable

2015-09-14 Thread Yusuke Iwase
Hi Daniel, On 2015年09月15日 07:12, Daniel Herrmann wrote: > Hey all, > > I am using Ryu with OVS and I want to use the NXActionResubmitTable to > re-submit a packet to table 0. > > As I found no documentation about this specific Action, I used this > example as a starting point: > > https://githu

[Ryu-devel] Usage of NXActionResubmitTable

2015-09-14 Thread Daniel Herrmann
Hey all, I am using Ryu with OVS and I want to use the NXActionResubmitTable to re-submit a packet to table 0. As I found no documentation about this specific Action, I used this example as a starting point: https://github.com/osrg/ryu/blob/master/ryu/app/gre_tunnel.py#L575 My code looks as fol

[Ryu-devel] Support SDN

2015-09-14 Thread Santiago Rivera, Alejandro
Hi Good day It is a pleasure to write you, I am an enthusiastic , curious, restless, and passionate programmer,basically , I have been studying and developing basic examples about RYU , however, I would like to create a mini deployment IOT and SDN simultaneously ,Precisely I wonder

[Ryu-devel] error with app simple_switch_15.py

2015-09-14 Thread iol mancon
Hello. I have created a python file to test with OpenFlow 1.5. My file is like the simple_switch_14.py but I added the v15 parser and I change the version in the app. I create the topology, enable the switch to can support OpenFlow 1.5 and then I open the application simple_switch_15.py. It come

[Ryu-devel] Simple whitelist application

2015-09-14 Thread Andy Echenique
Hello Everyone,I'm fairly new to Ryu and would appreciate any help in getting my program off the ground. I want to have my controller only connect devices from specified MAC addresses. For example: if the dpid is 123456789, I want it to add the flow. Yet if 2 wants to connect, it drops

[Ryu-devel] How to debug a RYU Application?

2015-09-14 Thread Marco Ferrari
Hi everyone, I am developing a RYU application. It's evolving in complexity is the necessity of a debugger is becoming bigger and bigger. Can you please help me in setting up a debugger for a RYU app? Currently I am using PyCharm as IDE. I would like to use the integrated debugger if possible.