[Ryu-devel] 4.20 released

2017-12-01 Thread FUJITA Tomonori
Hi, Here's a new release. = Charlie Lewis (1): doc: fix typo FUJITA Tomonori (1): Ryu 4.20 IWAMOTO Toshihiro (1): of14: Implement OFPBundleCtrlMsg parser IWASE Yusuke (8): lib/ovs/vsctl: Function for validate OVSDB address rest_qos: Avoid None when deleting OVSDB

[Ryu-devel] SET CONTROLLER IP - GET CONNECTED SWITCHES

2017-12-01 Thread Alessandro Gaballo
Hi, I have 2 questions: - how do I set the IP address of the controller? - how do I get the list of the connected switches? Is there a simple api or do I need to explicitly save the various datapath? Also how do I map a datapath to the switch name?

[Ryu-devel] Flow removed handler fails , Cannot parse header in OF version 1.5

2017-12-01 Thread rahul b
Hi i am using, (Open vSwitch) 2.7.4 DB Schema 7.14.0 Openflow version 1.5 On deleting a flow i am encountering this error, this is a message sent in response to the flow rule being removed. However the flow deletion is going successfully, but Ryu is not able to parse this message i believe.

Re: [Ryu-devel] RYU EVPN ping failing.

2017-12-01 Thread Varun Amrutiya
Hi Iwase, The lines highlighted by you are correct. I also enabled ipv6 by changing the sysctl and the grub file the same way. https://github.com/mininet/mininet/blob/f65e1ab9361632f8ba83b296e27f1fecc257d4f9/util/install.sh#L615-L639 Regards, Varun. On Fri, Dec 1, 2017 at 5:36 AM, Iwase

[Ryu-devel] [PATCH] ovsdb: Fix small bug

2017-12-01 Thread Felician Nemeth
Signed-off-by: Felicián Németh --- ryu/services/protocols/ovsdb/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/services/protocols/ovsdb/api.py b/ryu/services/protocols/ovsdb/api.py index 21ef5b0..163658c 100644 ---

[Ryu-devel] Best Ballet Costume for Winter Performances!

2017-12-01 Thread Benefis Company
[1] Winter Special Price! [2] This gorgeous Professional Stage Costume is just what you need for any show, audition, or performance. It is a perfect choice for the most renown ballets, such as Nutcracker, Sleeping Beauty and many more. Model: F 0001 Brand: Benefis Santa Claus [facebook] [3]

[Ryu-devel] [PATCH 1/4] ofproto: Correct OFPBundle{Ctrl, Add}Msg docstrings

2017-12-01 Thread IWAMOTO Toshihiro
Signed-off-by: IWAMOTO Toshihiro --- ryu/ofproto/ofproto_v1_4_parser.py | 8 ryu/ofproto/ofproto_v1_5_parser.py | 8 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_4_parser.py b/ryu/ofproto/ofproto_v1_4_parser.py

[Ryu-devel] [PATCH 0/4] Add OF1.3 bundle extension

2017-12-01 Thread IWAMOTO Toshihiro
This set of patches add OF1.3 bundle extension, which will be used by OpenStack in near future (I hope). I had to change OFPExperimenter.parser to be able to return ONFBundleCtrlMsg. Some may find the code being ugly. I'll add actual tests later. IWAMOTO Toshihiro (4): ofproto: Correct

[Ryu-devel] [PATCH 2/4] ofproto_v1_3: Add bundle extension

2017-12-01 Thread IWAMOTO Toshihiro
Signed-off-by: IWAMOTO Toshihiro --- ryu/ofproto/ofproto_v1_3.py| 33 ryu/ofproto/ofproto_v1_3_parser.py | 168 - 2 files changed, 200 insertions(+), 1 deletion(-) diff --git a/ryu/ofproto/ofproto_v1_3.py

[Ryu-devel] [PATCH 3/4] packet_data_generator3: Support ovs-2.8

2017-12-01 Thread IWAMOTO Toshihiro
>From ovs 2.8, ovs-ofctl tries to collect port descriptions, which isn't handled by the fake server in gen.py. Pass the --no-names option to work around this. Signed-off-by: IWAMOTO Toshihiro --- ryu/tests/packet_data_generator3/gen.py | 15 +++ 1 file