Re: [Ryu-devel] [PATCH] Be able to parse classes that start with "NX"

2015-05-18 Thread FUJITA Tomonori
On Fri, 15 May 2015 10:52:49 +0900 IWAMOTO Toshihiro wrote: > Signed-off-by: IWAMOTO Toshihiro > --- > ryu/ofproto/ofproto_parser.py |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ryu/ofproto/ofproto_parser.py b/ryu/ofproto/ofproto_parser.py > index 86b8439..8a1ceb

Re: [Ryu-devel] [PATCH 00/11] misc fixes and test additions

2015-05-18 Thread FUJITA Tomonori
On Fri, 15 May 2015 11:03:30 +0900 YAMAMOTO Takashi wrote: > This set is intended to be applied after IWAMOTO's "NX" prefix fix. > > YAMAMOTO Takashi (11): > test_lib: Remove a questional exception re-raising > Adapt to namespace-less oslo > NXActionRegMove: Add type annotation for stringi

[Ryu-devel] OFAgent with OF-Config

2015-05-18 Thread Raman Budny
Hi all. I am working on modification of OFAgent to manage logical switch with OF-Config protocol: https://github.com/budnyjj/ofagent/tree/tunnel_based The purpose of this modification is to manage virtual switch in standart and switch-realization-independent way. Modified OFAgent together with p

[Ryu-devel] Output to several ports

2015-05-18 Thread RĂ¼diger Birkner
Hi all, I am trying to install a flow rule that outputs a packet to several ports. I tried solving it by just adding several OFPActionOutput to the list of actions: for port in participant["ports"]: out_port = port["ID"] actions.append(parser.OFPActionOutput(out_port)) ... inst = [parser.