Re: [Ryu-devel] Ryu equivelant to ovs-ofctl command

2015-09-10 Thread Minoru TAKAHASHI
Hi, On 2015年09月11日 04:00, Wayne Marsh wrote: > Hello all, > > I'm having difficulty finding docs on a Ryu equivelant to the following > ovs-ofctl command: > > ovs-ofctl -O OpenFlow13 dump-flows NFE cookie=0x8/-1 > > The reason I'm looking for a Ryu controller equivalent is the remote nature >

[Ryu-devel] [PATCH] Uncap pbr version

2015-09-10 Thread IWAMOTO Toshihiro
This reverts commit 9414322f307fe607f7fefb8611871bbf810b5ee4, as the workaround for readthedocs seems to be no longer necessary. Signed-off-by: IWAMOTO Toshihiro --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4fc4d45..cf2a404 100644 ---

[Ryu-devel] [PATCH] doc/app/ofctl_rest: Add command examples for WRITE/CLEAR_ACTIONS

2015-09-10 Thread Minoru TAKAHASHI
Signed-off-by: Minoru TAKAHASHI --- doc/source/app/ofctl_rest.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst index 6e90e61..93aa118 100644 --- a/doc/source/app/ofctl_rest.rst +++ b/doc/source/app/ofctl_rest.rst @@ -1794,6 +1

Re: [Ryu-devel] Question about pipeline

2015-09-10 Thread Yusuke Iwase
Hi Marco, On 2015年09月11日 08:21, Rojas, Marco Ney wrote: > Hi, I’m Marco and nice to meet you > > > > I’ve been using Ryu SDN framework to program an app that will be connected to > an OpenFlow switch (using OpenFlow version 1.3). But, I got some question > that I need to answer to go on, an

[Ryu-devel] Question about pipeline

2015-09-10 Thread Rojas, Marco Ney
Hi, I'm Marco and nice to meet you I've been using Ryu SDN framework to program an app that will be connected to an OpenFlow switch (using OpenFlow version 1.3). But, I got some question that I need to answer to go on, and I was hoping that you could help me. After see all the examples incorpo

[Ryu-devel] Ryu equivelant to ovs-ofctl command

2015-09-10 Thread Wayne Marsh
Hello all, I'm having difficulty finding docs on a Ryu equivelant to the following ovs-ofctl command: ovs-ofctl -O OpenFlow13 dump-flows NFE cookie=0x8/-1 The reason I'm looking for a Ryu controller equivalent is the remote nature of the system the command needs to be executed from. What I'm tr

Re: [Ryu-devel] Delete Flows for Cookie

2015-09-10 Thread Wayne Marsh
Thank you. I have found my solution: curl -d '{"dpid":1, "cookie":8, "cookie_mask":0x, "match":{} }' http://localhost:8080/stats/flowentry/delete works It filters the rules to delete using: flow_mod.cookie BITWISE_AND flow_mod.cookie_mask == flow_entry.cookie BITWISE_AND flow_mod.

Re: [Ryu-devel] NXActionRegLoad Ryu support with OpenFlow 1.3

2015-09-10 Thread Davide Sanvito
OK, thank you! Davide Il Giovedì 10 Settembre 2015 6:04, FUJITA Tomonori ha scritto: On Tue, 8 Sep 2015 09:26:03 + (UTC) Davide Sanvito wrote: > I need to to install a flow entry with a Nicira experimenter action  > NXActionRegLoad in a Open vSwitch (OpenFlow 1.3). > I was won