[Ryu-devel] multiple controllers and multiple_controllers_zk.py

2013-12-09 Thread Raven Black
hi all, when i was going through the posts, I found this post relevant to multiple_controllers_zk.py http://sourceforge.net/mailarchive/forum.php?thread_name=20120725100353.GG24229%40valinux.co.jp&forum_name=ryu-devel according to the post, multiple_controllers_zk.py can be found inside ryu/app b

[Ryu-devel] [PATCH] stplib: support OF 1.2/1.3

2013-12-09 Thread watanabe.fumitaka
ryu/lib/stplib.py : Support OpenFlow 1.2/1.3 ryu/app/simple_switch_stp.py : Correspondence to parameter change of stplib.EventPortStateChange Signed-off-by: WATANABE Fumitaka --- ryu/app/simple_switch_stp.py | 10 +-- ryu/lib/stplib.py| 173 --

[email protected]

2013-12-09 Thread Yoshihiro Kaneko
Hi, 2013/12/9 金 黎娜 : > Hi guys, > > Can anyone tell me what's the relationship between Ryu and Openstack Nova? Do > i have to install a Openswitch??? Help me!!!Thanks! Ryu can cooperate with OpenStack Networking (aka Neutron). Ryu works as OpenFlow controller for Open vSwitch which Neutron u

Re: [Ryu-devel] How to setup Ryu with OpenStack step by step

2013-12-09 Thread Yoshihiro Kaneko
Hi, 2013/12/7 Dongliang Yu : > Thanks for reply. > > I followed this page: > https://github.com/osrg/ryu/wiki/configuration_openstack_havana_with_ryu > > I dont understand what package should be installed on which node, as I have > Controller, Networking and Compute node in my OpenStack deployment

[email protected]

2013-12-09 Thread 金 黎娜
Hi guys, Can anyone tell me what's the relationship between Ryu and Openstack Nova? Do i have to install a Openswitch??? Help me!!!Thanks! Thanks, Lina -- Sponsored by Intel(R) XDK Develop, test and display web and

[Ryu-devel] [PATCH 2/8] a simple of-config client command

2013-12-09 Thread YAMAMOTO Takashi
the placement (ryu/tests/bin) was suggested by FUJITA Tomonori. Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/of_config_cli.py| 162 ryu/tests/bin/of-config-cli | 20 ++ 2 files changed, 182 insertions(+) create mode 100755 ryu/cmd/of_config_c

[Ryu-devel] [PATCH 1/8] requires lxml

2013-12-09 Thread YAMAMOTO Takashi
will be used for OF-Config stuff. Signed-off-by: YAMAMOTO Takashi --- setup.cfg | 2 +- tools/pip-requires | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 262dee2..6e6527f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,7 +34,7 @@ source-di

[Ryu-devel] [PATCH 3/8] of-config-cli: add a command to show server capabilities

2013-12-09 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/of_config_cli.py | 13 + 1 file changed, 13 insertions(+) diff --git a/ryu/cmd/of_config_cli.py b/ryu/cmd/of_config_cli.py index 7033ae2..7a11882 100755 --- a/ryu/cmd/of_config_cli.py +++ b/ryu/cmd/of_config_cli.py @@ -101,6 +101,16 @@ clas

[Ryu-devel] [PATCH 4/8] add some convenient OF-Config classes

2013-12-09 Thread YAMAMOTO Takashi
some python classes for a set of OF-Config 1.1.1 types. the goal is to allow programmers use OF-Config without direct XML manipulations. Signed-off-by: YAMAMOTO Takashi --- ryu/lib/of_config/classes.py | 209 +++ 1 file changed, 209 insertions(+) create

[Ryu-devel] [PATCH 5/8] of_config.classes: add a convenient class for netconf

2013-12-09 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/lib/of_config/classes.py | 10 ++ 1 file changed, 10 insertions(+) diff --git a/ryu/lib/of_config/classes.py b/ryu/lib/of_config/classes.py index dfa0619..233ab67 100644 --- a/ryu/lib/of_config/classes.py +++ b/ryu/lib/of_config/classes.py @@ -207,

[Ryu-devel] [PATCH 6/8] of_config_cli: add some commands to manipulate port configurations

2013-12-09 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/of_config_cli.py | 102 ++- 1 file changed, 101 insertions(+), 1 deletion(-) diff --git a/ryu/cmd/of_config_cli.py b/ryu/cmd/of_config_cli.py index 7a11882..6ee0312 100755 --- a/ryu/cmd/of_config_cli.py +++ b

[Ryu-devel] [PATCH 8/8] of_config_cli: add some queue related commands

2013-12-09 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/cmd/of_config_cli.py | 93 1 file changed, 93 insertions(+) diff --git a/ryu/cmd/of_config_cli.py b/ryu/cmd/of_config_cli.py index 6ee0312..0ea494d 100755 --- a/ryu/cmd/of_config_cli.py +++ b/ryu/cmd/of_conf

[Ryu-devel] [PATCH 7/8] of_config.classes: add some queue related classes

2013-12-09 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/lib/of_config/classes.py | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/ryu/lib/of_config/classes.py b/ryu/lib/of_config/classes.py index 233ab67..3a9962a 100644 --- a/ryu/lib/of_config/classes.py +++ b/ryu/lib/of_co

[Ryu-devel] [PATCH 0/8] convenient of-config classes

2013-12-09 Thread YAMAMOTO Takashi
changes from the previous: - move of-config-cli to ryu/tests/bin - handle more stuffs, namely queue properties YAMAMOTO Takashi (8): requires lxml a simple of-config client command of-config-cli: add a command to show server capabilities add some convenient OF-Config classes of_c