Re: [Ryu-devel] How to set up a test environment for the compliance test with a real switch?

2014-04-16 Thread arne_goetje
Dear Yamamoto san, I got it fixed, thanks. The issue was that the VM Host software treated the network interface as bridge mode, whereas I need to use Passthrough mode. Best Regards! Arne Goetje (???) Accton FAE Team From: [email protected] (YAMAMOTO Takashi) To: arne_goe...@accton

Re: [Ryu-devel] [PATCH 1/3] sw test tool: Fix to compare OFPMatch ignoring masks that are all one bits

2014-04-16 Thread arne_goetje
Dear Fujita san and Ito san, Thanks for the fix, however, it doesn't catch the VLAN mask yet, which is 0x1FFF, so the 06_VLAN_VID and 07_VLAN_PCP tests (both match and action) still fail. Another issue is the METADATA MASK... some switch hardware only supports a partial mask, e.g. the BRCM Ap

Re: [Ryu-devel] [PATCH 1/3] bgp: add stuff for integration with bgp speaker

2014-04-16 Thread FUJITA Tomonori
On Wed, 16 Apr 2014 03:30:33 + ISHIDA Wataru wrote: > > Signed-off-by: ISHIDA Wataru > --- > ryu/lib/packet/bgp.py | 726 > + > 1 file changed, 675 insertions(+), 51 deletions(-) Applied all, thanks! --

[Ryu-devel] multiple barrier messages disconnect OVS

2014-04-16 Thread Alex Nelson
I am running an experiment where I push multiple rules in a row, separated by barrier messages in Ryu. I have noticed that when I use multiple barrier messages requested over a small amount of time, OVS gets disconnected from the controller. I can see that because the datapath array (keeps tra

[Ryu-devel] Problem while running stack.sh

2014-04-16 Thread Takfarinas Saber
Hi everybody, I'm trying to use Ryu. I followed the tutoriel in https://github.com/osrg/ryu/wiki/RYU-OpenStack-Grizzly-environment-VM-image-file-HOWTOand everything worked find until the step of running the shell ./stack.sh. It returns this error: Waiting for Quantum to start... + timeout 60 sh -c

Re: [Ryu-devel] Regarding the modification of header in controller messages.

2014-04-16 Thread YAMAMOTO Takashi
> hi guys, > actions=[] > actions.append( OFPActionSetField(eth_dst="00:00:00:00:00:05")) > actions.append(OFPActionSetField(ip_dst="10.0.0.2")) this api is for OF1.2 and later. > actions.append(datapath.ofproto_parser.OFPActionOutput(out_port)) > > hub: uncaught exception: Traceback (mo

Re: [Ryu-devel] Regarding the modification of header in controller messages.

2014-04-16 Thread FUJITA Tomonori
On Tue, 15 Apr 2014 15:06:20 +0530 Sarath Allaka wrote: > actions=[] > actions.append( OFPActionSetField(eth_dst="00:00:00:00:00:05")) > actions.append(OFPActionSetField(ip_dst="10.0.0.2")) > actions.append(datapath.ofproto_parser.OFPActionOutput(out_port)) Can you send the full code? -

Re: [Ryu-devel] [PATCH] Rename to CONTRIBUTING.rst

2014-04-16 Thread FUJITA Tomonori
On Tue, 15 Apr 2014 23:54:47 +0900 (JST) FUJITA Tomonori wrote: > This makes the GitHub interface aware of the contribution guidelines, > so it will be displayed to contributors when they submit issues or > pull requests. > > Signed-off-by: FUJITA Tomonori Applied. ---