Re: [Ryu-devel] Of-dpa2.0

2016-01-07 Thread FUJITA Tomonori
On Mon, 4 Jan 2016 18:42:35 +0300 Stas Kozlov wrote: > Does any one had an experience with writing a Ryu application to control > odfdpa switch? Broadcom TTP is very tricky and not well documented, in > addition a lot of transitions based on Metadata. > Is Ryu a good option to make a testbed for

Re: [Ryu-devel] [PATCH] avoid oslo.config 3.1.0 and later for python2.6 support

2016-01-07 Thread IWAMOTO Toshihiro
At Tue, 8 Dec 2015 05:57:54 -0800, FUJITA Tomonori wrote: > > oslo.config v3.1.0 dropped python2.6 support: > > https://github.com/openstack/oslo.config/commit/9470f19eacb99425055946bd4a6079b71406ff1b It seems that this commit is causing some issue. https://bugs.launchpad.net/neutron/+bug/1531

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2016-01-07 Thread Yusuke Iwase
Hi, rest_router.py maintains the rules in itself for each siwtch, and returns them through REST API. But if DPSET (unregister) event received, rest_router.py will assume a switch are disconnected from Ryu and will discard the rules for that switch. Because rest_router.py observes DPSET events in

Re: [Ryu-devel] How does Ryu class OFPActionPushMpls communicate with OpenvSwitch flow_push_mpls class function

2016-01-07 Thread Minoru TAKAHASHI
Hi, What does "1(one) parameter" mean? The set value of OFPActionPushMpls? If so, the set value is "ethertype". https://github.com/osrg/ryu/blob/master/ryu/ofproto/ofproto_v1_3_parser.py#L3128 And, the OpenFlow message contains the "ethertype" value. thanks, On 2016年01月07日 20:05, Pynbiang Hadem

Re: [Ryu-devel] Ryu-devel Digest, Vol 50, Issue 9

2016-01-07 Thread Stas Kozlov
Hi David, Thread database polling, once you will get a trigger execute a function. -- Stas > Date: Wed, 6 Jan 2016 03:26:09 -0800 > From: David Gabriel > Subject: [Ryu-devel] periodic interaction with external data base > To: ryu-devel@lists.sourceforge.net > Message-ID: > < camyzk1djk

Re: [Ryu-devel] periodic interaction with external data base

2016-01-07 Thread FUJITA Tomonori
On Wed, 6 Jan 2016 03:26:09 -0800 David Gabriel wrote: > I want to run an application that depends on: > 1- openflow events (like simple switch app you provide in the tutorial) and > also > 2- external events (provided by an external Data Base - DB). > In fact, I have a python scirpt that perioda

Re: [Ryu-devel] periodic interaction with external data base

2016-01-07 Thread David Gabriel
I am trying to modify the app_manager.py file in order to add a new thread using self.threads.append I am wondering if it is right what I am doing or you suggest something else. Please advise. Best regards 2016-01-07 10:33 GMT+01:00 David Gabriel : > I think the suitable way to handle this issue