Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-20 Thread Yusuke Iwase
Hi, jsonrpc module provides some APIs for such. net_ctrl is implemented by using this module. 2019年6月20日(木) 23:15 Pynbiang Hadem : > Thanks Iwase, > > What about the jsonrpc module? > ryu /ryu > /services >

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-20 Thread Pynbiang Hadem
Thanks Iwase, What about the jsonrpc module? ryu /ryu /services /protocols /bgp

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-20 Thread Yusuke Iwase
Hi, Ryo BGPSpeaker implements some RPC server features, but I think it is complex as sample codes. https://github.com/osrg/ryu/blob/master/ryu/services/protocols/bgp/net_ctrl.py As knet solutions answered, it can be more suitable way to use the message queue like pyzmq. https://pyzmq.readthedocs.

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-20 Thread Pynbiang Hadem
Hi Iwase, Can you point me to some RPC sample source codes in Ryu?. I still can't find any documentation on RPC in ryu. Thanks Hadem On Wed, Jun 19, 2019 at 5:28 PM Yusuke Iwase wrote: > Hi, > > AFAIK, Ryu does not define or implement the standard way for such. > In other words, you can implem

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-19 Thread knet solutions
Use message queue pub/sub that's better fit On Wed, 19 Jun 2019 18:23 Pynbiang Hadem, wrote: > Thanks for your valuable input Iwase. > > Regards > Hadem > > On Wed, Jun 19, 2019 at 5:28 PM Yusuke Iwase > wrote: > >> Hi, >> >> AFAIK, Ryu does not define or implement the standard way for such. >>

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-19 Thread Pynbiang Hadem
Thanks for your valuable input Iwase. Regards Hadem On Wed, Jun 19, 2019 at 5:28 PM Yusuke Iwase wrote: > Hi, > > AFAIK, Ryu does not define or implement the standard way for such. > In other words, you can implement your own way for your requirements. For > example, REST, RPC, BGP and so on. >

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-19 Thread Alon Dotan
what you mean in "inter controller"? there is rest application From: Pynbiang Hadem Sent: Wednesday, June 19, 2019 2:38 PM To: Ryu-devel Subject: [Ryu-devel] Ryu REST API-based inter-controller communication Hi, Is there an implementation of a REST API-based inte

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-19 Thread Yusuke Iwase
Hi, AFAIK, Ryu does not define or implement the standard way for such. In other words, you can implement your own way for your requirements. For example, REST, RPC, BGP and so on. Thanks, Iwase 2019年6月19日(水) 20:46 Pynbiang Hadem : > Hi, > > What i meant is that: A controller requesting some inf

Re: [Ryu-devel] Ryu REST API-based inter-controller communication

2019-06-19 Thread Pynbiang Hadem
Hi, What i meant is that: A controller requesting some information from another controller through REST API. Thanks Hadem On Wed, Jun 19, 2019 at 5:12 PM Alon Dotan wrote: > what you mean in "inter controller"? > there is rest application > -- > *From:* Pynbiang Had