Re: [Ryu-devel] Problem raise while installing Ryu openflow controller in lemaker lubuntu on Banana pi

2015-08-20 Thread Usman Farooq
Thanks Sir, Can i use this image(Ryu's docker image) on Ubuntu 14.04 LTS and Lemaker Lubuntu 14.04 (On banana Pi) as well. Regards, M. Usman Farooq On Tue, Aug 18, 2015 at 11:37 AM, Usman Farooq wrote: > Thanks Sir, > Can i use this image on Ubuntu 14.04 LTS a

Re: [Ryu-devel] [PATCH] python3: Fix relative imports

2015-08-20 Thread FUJITA Tomonori
On Fri, 21 Aug 2015 10:35:42 +0900 IWAMOTO Toshihiro wrote: > Signed-off-by: IWAMOTO Toshihiro > --- > ryu/app/ofctl/api.py | 2 +- > ryu/app/ofctl/service.py | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) Applied, thanks.

Re: [Ryu-devel] [PATCH] Added support to indicate the next hop IP address for the BGP module

2015-08-20 Thread ISHIDA Wataru
Hi I’ve modified the patch based on the origin patch to care the regular eBGP behaviour. Could you check it? > On Aug 15, 2015, at 8:22 AM, Toshiki Tsuboi wrote: > > This issue looks complicated to me. > I guess this patch for “BGP Next Hop Unchanged” works properly. > > eBGP

[Ryu-devel] [PATCH] bgp: Added support to indicate the next hop IP address for the BGP module

2015-08-20 Thread ISHIDA Wataru
If the path has a next hop value set, it should be used in the BGP Update message first. This changes to logic to use the check for the next hop in the order prefix/path->peer config->speaker config. This will allow for sending the nexthop as part of the add_prefix message and allow for overiding

[Ryu-devel] [PATCH] python3: Fix relative imports

2015-08-20 Thread IWAMOTO Toshihiro
Signed-off-by: IWAMOTO Toshihiro --- ryu/app/ofctl/api.py | 2 +- ryu/app/ofctl/service.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ryu/app/ofctl/api.py b/ryu/app/ofctl/api.py index d648524..466b331 100644 --- a/ryu/app/ofctl/api.py +++ b/ryu/app/ofctl/api.py @

Re: [Ryu-devel] [PATCH] doc: Include snort_integrate page into toctree

2015-08-20 Thread FUJITA Tomonori
On Thu, 20 Aug 2015 16:16:30 +0900 Yusuke Iwase wrote: > Currently, snort_integrate page is not included into toctree, > and it is difficult for user to find this page. > This patch adds snort_integrate page into toctree, > and removes warnings when building this page. > > Signed-off-by: IWASE Y

Re: [Ryu-devel] [PATCH] Add missing comment to rest_topology

2015-08-20 Thread FUJITA Tomonori
On Thu, 20 Aug 2015 21:45:34 +0800 Yi Tseng wrote: > From 8da606c64e28f9d4117cb343d2833ba24cbd25bb Mon Sep 17 00:00:00 2001 > From: Takeshi > Date: Thu, 20 Aug 2015 21:22:21 +0800 > Subject: [PATCH] Add missing comment to rest_topology > > Signed-off-by: Takeshi > --- > ryu/app/rest_topology.

Re: [Ryu-devel] [PATCH] Add EventHostAdd handler for web socket application

2015-08-20 Thread FUJITA Tomonori
On Thu, 20 Aug 2015 21:45:33 +0800 Yi Tseng wrote: > From 9ecd449f8a80bb73aadf770005b113b7e715a272 Mon Sep 17 00:00:00 2001 > From: Takeshi > Date: Thu, 20 Aug 2015 21:37:20 +0800 > Subject: [PATCH] Add EventHostAdd handler for web socket application > > Signed-off-by: Takeshi > --- > ryu/app

[Ryu-devel] [PATCH] Add EventHostAdd handler for web socket application

2015-08-20 Thread Yi Tseng
ryu/app/ws_topology.py | 5 + 1 file changed, 5 insertions(+) -- Yi Tseng (a.k.a Takeshi) Taiwan National Chiao Tung University Department of Computer Science W2CNLab http://blog.takeshi.tw From 9ecd449f8a80bb73aadf770005b113b7e715a272 Mon Sep 17 00:00:00 2001 From: Takeshi Date: Thu, 20 Au

[Ryu-devel] [PATCH] Add missing comment to rest_topology

2015-08-20 Thread Yi Tseng
ryu/app/rest_topology.py | 6 ++ 1 file changed, 6 insertions(+) -- Yi Tseng (a.k.a Takeshi) Taiwan National Chiao Tung University Department of Computer Science W2CNLab http://blog.takeshi.tw From 8da606c64e28f9d4117cb343d2833ba24cbd25bb Mon Sep 17 00:00:00 2001 From: Takeshi Date: Thu, 20

Re: [Ryu-devel] [PATCH 0/8] Related to 'B.18.12' and 'B.18.14' in OpenFlow 1.5

2015-08-20 Thread FUJITA Tomonori
On Wed, 19 Aug 2015 10:19:20 +0900 Yusuke Iwase wrote: > These patches are related to the updates about 'B.18.12 Controller > connection status'(EXT-454)(EXT-275) and 'B.18.14 Enable setting all > pipeline fields in packet-out' (EXT-427) in OpenFlow 1.5. > > If these patches will be merged, Ryu

Re: [Ryu-devel] [PATCH 1/2] Add EventHostAdd event.

2015-08-20 Thread FUJITA Tomonori
On Tue, 18 Aug 2015 17:04:08 +0800 Yi Tseng wrote: > From f5ec915cf6c7aa3174875647b87e5e5de069fecf Mon Sep 17 00:00:00 2001 > From: Takeshi > Date: Tue, 18 Aug 2015 16:54:48 +0800 > Subject: [PATCH 1/2] Add EventHostAdd event. > > This event is generated when a new host is added to a switch. >

Re: [Ryu-devel] [PATCH 0/4] Improve nx_match.ClsRule Usablity

2015-08-20 Thread FUJITA Tomonori
On Wed, 12 Aug 2015 00:00:27 + Jason Kölker wrote: > A few fixes I ran across while troubleshooting a controller. > > ryu/ofproto/nx_match.py | 32 +--- >1 file changed, 25 insertions(+), 7 deletions(-) Applied, thanks! Sorry about the delay. ---

[Ryu-devel] [PATCH] Add dynamic application loader for ryu

2015-08-20 Thread Yi Tseng
Original repo: https://github.com/TakeshiTseng/ryu-dynamic-loader We developed a ryu application as a plugin and use this plugin to control ryu application manager(AppManager). This plugin allow users to install/uninstall ryu application dynamically without restart ryu-manager. To use this plugi

[Ryu-devel] [PATCH] doc: Include snort_integrate page into toctree

2015-08-20 Thread Yusuke Iwase
Currently, snort_integrate page is not included into toctree, and it is difficult for user to find this page. This patch adds snort_integrate page into toctree, and removes warnings when building this page. Signed-off-by: IWASE Yusuke --- doc/source/index.rst | 1 + doc/source/snort_i