Re: [Ryu-devel] [PATCH v2] bgp: add bgpspaker module for non Ryu application usage

2014-06-12 Thread FUJITA Tomonori
On Fri, 13 Jun 2014 02:07:22 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: >> Fixed bugs, add VPN support, etc. There is still logs of things to >> improve, however, I think that it's ready for merging. >> >> = >>>From e70cd82b84ec837e78dc3982fd8012b872e3eda4 Mon Sep 17 00:00:00 20

Re: [Ryu-devel] [PATCH v2] bgp: add bgpspaker module for non Ryu application usage

2014-06-12 Thread YAMAMOTO Takashi
> Fixed bugs, add VPN support, etc. There is still logs of things to > improve, however, I think that it's ready for merging. > > = >>From e70cd82b84ec837e78dc3982fd8012b872e3eda4 Mon Sep 17 00:00:00 2001 > From: FUJITA Tomonori > Date: Fri, 13 Jun 2014 01:31:54 +0900 > Subject: [PATCH] bgp: add

[Ryu-devel] [PATCH v2] bgp: add bgpspaker module for non Ryu application usage

2014-06-12 Thread FUJITA Tomonori
Fixed bugs, add VPN support, etc. There is still logs of things to improve, however, I think that it's ready for merging. = >From e70cd82b84ec837e78dc3982fd8012b872e3eda4 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Fri, 13 Jun 2014 01:31:54 +0900 Subject: [PATCH] bgp: add bgpspaker modul

Re: [Ryu-devel] help with ryu config

2014-06-12 Thread Yoshihiro Kaneko
2014-06-12 19:50 GMT+09:00 Yoshihiro Kaneko : > 2014-06-12 17:47 GMT+09:00 马超 : >> the ryu-agent in compute seems can connect to neutron after recent reboot, >> and the info in ryu-agent.log has changed. but instance still cannot got >> ip. > > Possible causes are: > - dhcp-agent is not working

Re: [Ryu-devel] help with ryu config

2014-06-12 Thread Yoshihiro Kaneko
2014-06-12 17:47 GMT+09:00 马超 : > the ryu-agent in compute seems can connect to neutron after recent reboot, > and the info in ryu-agent.log has changed. but instance still cannot got > ip. Possible causes are: - dhcp-agent is not working normally Please check dhcp-agent.log. - tunnel port is

[Ryu-devel] [PATCH 0/5] Simplify ofa_neutron_agent

2014-06-12 Thread YAMAMOTO Takashi
This set simplifies ofa_neutron_agent module as a preparation to move it into neutron repo. YAMAMOTO Takashi (5): ofa_neutron_agent: Simplify AppManager: Add a convenient method to run apps ofa_neutron_agent: Use AppManager.run_apps ofa_neutron_agent: Remove unused logger instance ofa_ne

[Ryu-devel] [PATCH 5/5] ofa_neutron_agent: Change the copyright notice

2014-06-12 Thread YAMAMOTO Takashi
As a preparation to move this module to neutron repo, change the copyright notice to the style commonly found there. Also, add myself as co-author. Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/ofa_neutron_agent.py | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) d

[Ryu-devel] [PATCH 2/5] AppManager: Add a convenient method to run apps

2014-06-12 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/base/app_manager.py | 20 1 file changed, 20 insertions(+) diff --git a/ryu/base/app_manager.py b/ryu/base/app_manager.py index c649fbe..20d6c64 100644 --- a/ryu/base/app_manager.py +++ b/ryu/base/app_manager.py @@ -30,6 +30,7 @@ impor

[Ryu-devel] [PATCH 3/5] ofa_neutron_agent: Use AppManager.run_apps

2014-06-12 Thread YAMAMOTO Takashi
No functional changes are intended. Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/ofa_neutron_agent.py | 14 +- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/ryu/cmd/ofa_neutron_agent.py b/ryu/cmd/ofa_neutron_agent.py index a194f0b..5a12f3a 100755 --- a/ryu/cmd/ofa_neut

[Ryu-devel] [PATCH 1/5] ofa_neutron_agent: Simplify

2014-06-12 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/ofa_neutron_agent.py | 52 1 file changed, 9 insertions(+), 43 deletions(-) diff --git a/ryu/cmd/ofa_neutron_agent.py b/ryu/cmd/ofa_neutron_agent.py index b7dab9e..a194f0b 100755 --- a/ryu/cmd/ofa_neutron_ag

[Ryu-devel] [PATCH 4/5] ofa_neutron_agent: Remove unused logger instance

2014-06-12 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/ofa_neutron_agent.py | 4 1 file changed, 4 deletions(-) diff --git a/ryu/cmd/ofa_neutron_agent.py b/ryu/cmd/ofa_neutron_agent.py index 5a12f3a..f127a52 100755 --- a/ryu/cmd/ofa_neutron_agent.py +++ b/ryu/cmd/ofa_neutron_agent.py @@ -23,14 +23,10

Re: [Ryu-devel] [PATCH] app_manager: Let client app to use require_app() directly

2014-06-12 Thread YAMADA Hideki
(2014/06/11 16:56), YAMADA Hideki wrote: > (2014/06/11 16:32), FUJITA Tomonori wrote: >> On Thu, 5 Jun 2014 19:08:48 +0900 >> YAMADA Hideki wrote: >> >>> >>> Signed-off-by: YAMADA Hideki >>> --- >>>ryu/base/app_manager.py | 14 +++--- >>>1 file changed, 7 insertions(+), 7 deleti