[Ryu-devel] [PATCH 2/2] ofctl_v1_0: Add remaining actions

2014-11-06 Thread Yusuke Iwase
Signed-off-by: IWASE Yusuke --- doc/source/app/ofctl_rest.rst | 6 + ryu/lib/ofctl_v1_0.py | 55 +++ 2 files changed, 57 insertions(+), 4 deletions(-) diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst index b46ab6b..df

[Ryu-devel] [PATCH 1/2] doc: Add tables about match and actions structures

2014-11-06 Thread Yusuke Iwase
Signed-off-by: IWASE Yusuke --- doc/source/app/ofctl_rest.rst | 191 ++ 1 file changed, 191 insertions(+) diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst index dc18f40..b46ab6b 100644 --- a/doc/source/app/ofctl_rest.rst +++ b/doc

[Ryu-devel] Ryu-Multicast

2014-11-06 Thread Helber Wagner
Dear all, Does anyone have a simple example on sending multicast traffic using Mininet + Ryu Controller? Bests, -- ___ Helber Wagner da Silva, Prof. MSc. Federal Institute of Rio Grande do Norte (IFRN), Brazil PhD Student in Computer Science (DIMAp/UF

Re: [Ryu-devel] About ryu rest_qos

2014-11-06 Thread Yusuke Iwase
Hi, On 2014年11月06日 17:10, Yafeng Zhou wrote: > Hi, > > Thank you for you reply, that just a mistake when I send this mail. Actually > I wrote > > > root@ryu-vm:~# curl -X POST -d '{"match": {"nw_dst": "10.0.0.1", "nw_proto": > "UDP", "tp_dst": "5002"}, "actions":{"queue": "1"}}' > http://lo

[Ryu-devel] Questions on Neutron-Ryu Integration

2014-11-06 Thread Tuan-Anh Bui
Hello, I’m studying the OpenStack Neutron and Ryu SDN Controller to prepare for my further work of developing an integration for Neutron and other SDN controller. I have several questions related to the integration of Neutron and Ryu: 1) To enable Neutron to use Ryu as backend service, there ar

Re: [Ryu-devel] Regarding meter config in Ryu

2014-11-06 Thread Henrique Santos Fernandes
Hello, I had to use https://github.com/CPqD/ofsoftswitch13/ to be able to set the meters. I am just starting to work with meters and openflow in general. I was able to get, mininet/ofsoftswitch13/ryu working Its pretty simple if you using mininet lastes version, it has a script to install it al

[Ryu-devel] About the ovsdb_addr

2014-11-06 Thread Yafeng Zhou
Hello, I am learning the SDN, and I use RYU as controller.I do demos as the ryu book: http://osrg.github.io/ryu-book/en/html/rest_qos.html But my environment is different from the Ryu-book, as my Ryu controller is on my host not VM, and mininet connect the controller by : ovs-vsctl set-contrlle

[Ryu-devel] [PATCH] bgp: remove uncommon open msg check

2014-11-06 Thread FUJITA Tomonori
Signed-off-by: FUJITA Tomonori --- ryu/services/protocols/bgp/speaker.py | 14 -- 1 file changed, 14 deletions(-) diff --git a/ryu/services/protocols/bgp/speaker.py b/ryu/services/protocols/bgp/speaker.py index c206e42..257efab 100644 --- a/ryu/services/protocols/bgp/speaker.py +++

Re: [Ryu-devel] RYU older version with just OF1.3 capable

2014-11-06 Thread FUJITA Tomonori
On Wed, 05 Nov 2014 09:06:07 +0100 Pablo Pousada Rial wrote: > Hello Ashok > > If I am right, you just need to specify it with "OFP_VERSIONS = > [ofproto_v1_3.OFP_VERSION]" and use the protocol and parser from v1_3. Yes, the following example might help: https://github.com/osrg/ryu/blob/master

Re: [Ryu-devel] About ryu rest_qos

2014-11-06 Thread Yafeng Zhou
Hi, Thank you for you reply, that just a mistake when I send this mail. Actually I wrote root@ryu-vm:~# curl -X POST -d '{"match": {"nw_dst": "10.0.0.1", "nw_proto": "UDP", "tp_dst": "5002"}, "actions":{"queue": "1"}}' http://localhost:8080/qos/rules/0001 when I use RYU controller