Re: [Ryu-devel] help--rest_vtep

2017-04-10 Thread Iwase Yusuke
Hi, What did rest_vtep.py response for "1. Creates a new BGPSpeaker instance on each host."? Did you get the message as expected? http://ryu.readthedocs.io/en/latest/app/rest_vtep.html#ryu.app.rest_vtep.RestVtepController.add_speaker Thanks, Iwase On 2017年04月11日 14:31, Tessy Thomas wrote: >

Re: [Ryu-devel] help--rest_vtep

2017-04-10 Thread Tessy Thomas
hi .thankyou for the replyi run both controller in same machine(in 2 terminal) will do it in 2 vm thankyou On Tue, Apr 11, 2017 at 5:42 AM, Iwase Yusuke wrote: > Hi, > > First, please let me make your question clear. > Are you trying to start ryu1 and ryu2 on the same host(or the same VM)? >

Re: [Ryu-devel] ryu-manager can't load app from file which has same name as installed module

2017-04-10 Thread Brad Cowie
Hi Iwase, Looks good to me! No further feedback. Thanks again for your help with this. Brad On 11 April 2017 at 13:00, Iwase Yusuke wrote: > Hi Brad, > > Thank you for updating your patch! > > How about using "finally statement" to restore sys.path as the attach > patch? > This change enables

Re: [Ryu-devel] ryu-manager can't load app from file which has same name as installed module

2017-04-10 Thread Iwase Yusuke
Hi Brad, Thank you for updating your patch! How about using "finally statement" to restore sys.path as the attach patch? This change enables to raise original exception and to remove the duplicated codes. Thanks, Iwase On 2017年04月10日 14:31, Brad Cowie wrote: > Hi Iwase, > > You are quite rig

Re: [Ryu-devel] adding flows in parallel

2017-04-10 Thread Yi Tseng
Hi, As I know, it is hard to improve performance by using multi-thread way because there is a GIL problem in python. Moreover, it might be slower if you try to using multi-thread to do simple tasks. -Yi 2017-04-10 9:34 GMT-07:00 Yiwen Shen : > Hi, > > I was wondering if there is any differenc

Re: [Ryu-devel] ImportError: cannot import name poll

2017-04-10 Thread Iwase Yusuke
Hi, On 2017年04月10日 21:02, Soliman Awad Alshra´a Abdullah TU Ilmenau wrote: > Dear Iwase, > > First of all, I would like to thank you for your consideration. > It might bothers you, but let me explain the environment that I use then what > I guess it is my problem. > > I use windows 10 + virtu

Re: [Ryu-devel] help--rest_vtep

2017-04-10 Thread Iwase Yusuke
Hi, First, please let me make your question clear. Are you trying to start ryu1 and ryu2 on the same host(or the same VM)? rest_vtep.py suppose to be executed on the different host for each other. http://ryu.readthedocs.io/en/latest/app/rest_vtep.html#environment e.g.) On Host A, Ryu1 and s1(

Re: [Ryu-devel] Decoding explicitly RYU messages

2017-04-10 Thread Jibran Ahmed
Thanks Fujimoto for the info! Best, Jibran Ahmed NUID: 001250589 > On Apr 9, 2017, at 8:26 PM, Fujimoto Satoshi > wrote: > > Hi, Jibran > Sorry for cutting in. > > FYI, in RYU, you can decode your OpenFlow message like this: > > @set_ev_cls(ofp_event.EventOFPPacketIn, MAIN_DISPATCHER) > def

[Ryu-devel] adding flows in parallel

2017-04-10 Thread Yiwen Shen
Hi, I was wondering if there is any difference in the speed in which I push flows onto a switch serially or if I use multithreading in my app to push flows. Would it still end up being serial at the end or would multithreading reduce the latency? Thanks, Yiwen Shen ---

Re: [Ryu-devel] ImportError: cannot import name poll

2017-04-10 Thread Soliman Awad Alshra´a Abdullah TU Ilmenau
Dear Iwase, First of all, I would like to thank you for your consideration. It might bothers you, but let me explain the environment that I use then what I guess it is my problem. I use windows 10 + virtualbox. >>> I configure virtual box as follow: I select Linux type, version Ubuntu 64 then I

[Ryu-devel] Multiple Ryu controllers controlling a single switch

2017-04-10 Thread Tanvir.Ulhuque
Hi I am working on a scenario in which multiple RYU controllers will send control messages to a single switch. I am a beginner of this multiple controllers scenario. I want to get (1) links regarding multiple ryu controller application scenarios. (2) sample controller codes of this scenario