Re: [Ryu-devel] [PATCH 0/9] doc: Improvements for library_packet_ref

2017-04-26 Thread Iwase Yusuke
Hi Fujita-San, On 2017年04月26日 22:03, FUJITA Tomonori wrote: > On Fri, 7 Apr 2017 15:19:12 +0900 > IWASE Yusuke wrote: > >> To keep readablity if include all class into library reference, this >> patch separates library_packet_ref.rst into each protocol. >> Also the following patches include th

Re: [Ryu-devel] RYU INQUIRIES

2017-04-26 Thread Fujimoto Satoshi
Hi, Fahmy 1) What other apps should I initialize with my ryu-manager (other than ryu.app.otctl_rest) so that the controller deals with ARP requests in the beginning for example without installing any actual flow forwarding rules (i.e. h1 cannot ping h4 until I add in all dedicated switche

Re: [Ryu-devel] [PATCH 0/3] Add ovs-ofctl style action string parser

2017-04-26 Thread IWAMOTO Toshihiro
At Wed, 26 Apr 2017 21:56:33 +0900 (JST), FUJITA Tomonori wrote: > > On Wed, 26 Apr 2017 15:58:43 +0900 > IWAMOTO Toshihiro wrote: > > > This set of patches allow users to use ovs-ofctl style action > > strings to build OFPInstructionActions, which may help transition > > from ovs-ofctl. Support

[Ryu-devel] AWS and other Cloud users contact info

2017-04-26 Thread andrea . saunders
Hello there, Might want to know whether you are keen on obtaining AWS and other cloud Leads for your Marketing Efforts. We provide data across the globe - North America, EMEA, Asia Pacific and LATAM. We provide all type of job titles: C-Level, VP-Level, directors, Managers and IT decision maker

[Ryu-devel] Broadcast entry inside switches

2017-04-26 Thread Soliman Awad Alshra´a Abdullah TU Ilmenau
Hi everyone, I need to insert an entry inside switches tables to do broadcast under a certain condition, and let switches to drop packets, in case it receives a packet previously. could you tell me what is the suitable instructions to do it ? Thanks in advanced ---

Re: [Ryu-devel] [PATCH 0/9] doc: Improvements for library_packet_ref

2017-04-26 Thread FUJITA Tomonori
On Fri, 7 Apr 2017 15:19:12 +0900 IWASE Yusuke wrote: > To keep readablity if include all class into library reference, this > patch separates library_packet_ref.rst into each protocol. > Also the following patches include the update of the description of > packet library classes. > > IWASE Yus

Re: [Ryu-devel] [PATCH 0/3] Add ovs-ofctl style action string parser

2017-04-26 Thread FUJITA Tomonori
On Wed, 26 Apr 2017 15:58:43 +0900 IWAMOTO Toshihiro wrote: > This set of patches allow users to use ovs-ofctl style action > strings to build OFPInstructionActions, which may help transition > from ovs-ofctl. Support is currently very limited and many from_string() > method should be added for t

Re: [Ryu-devel] RYU INQUIRIES - arp responder

2017-04-26 Thread Raymond Burkholder
From: Fahmy Sherif Alaa Salaheldin [mailto:sherif.fa...@epfl.ch] Sent: Wednesday, April 26, 2017 06:59 To: ryu-devel@lists.sourceforge.net Subject: Re: [Ryu-devel] RYU INQUIRIES Sorry to bother you again! But I would basically like to only add forwarding rules for flows as you saw in my previo

Re: [Ryu-devel] RYU INQUIRIES

2017-04-26 Thread Fahmy Sherif Alaa Salaheldin
Sorry to bother you again! But I would basically like to only add forwarding rules for flows as you saw in my previous mail. But when I am testing it out now ping get stuck at ARP requests. 1) What other apps should I initialize with my ryu-manager (other than ryu.app.otctl_rest) so that the

Re: [Ryu-devel] RYU INQUIRIES

2017-04-26 Thread Fahmy Sherif Alaa Salaheldin
?Thank you very much Fujimoto! It worked perfectly I am trying to find out why pings on mininet are not working but Thanks again!! Best, Sherif De : Fujimoto Satoshi Envoyé : mercredi 26 avril 2017 03:27 À : Fahmy Sherif Alaa Salaheldin; ryu-devel@lists.source

[Ryu-devel] [PATCH 2/3] ofproto: Add ovs-ofctl style action string parser

2017-04-26 Thread IWAMOTO Toshihiro
This commit adds a new method called ofp_instruction_from_str, which takes an ovs-ofctl style action string and returns a list of OFPInstructionActions. Currently only a few action strings are understood. Signed-off-by: IWAMOTO Toshihiro --- ryu/exception.py | 4 ++ ryu/ofpro

[Ryu-devel] [PATCH 1/3] nicira_ext: Define some CT constants

2017-04-26 Thread IWAMOTO Toshihiro
Signed-off-by: IWAMOTO Toshihiro --- ryu/ofproto/nicira_ext.py | 5 + 1 file changed, 5 insertions(+) diff --git a/ryu/ofproto/nicira_ext.py b/ryu/ofproto/nicira_ext.py index 411ed48..416c625 100644 --- a/ryu/ofproto/nicira_ext.py +++ b/ryu/ofproto/nicira_ext.py @@ -269,6 +269,11 @@ NX_LEARN

[Ryu-devel] [PATCH 3/3] ofproto: Add some tests for ofp_instruction_from_str

2017-04-26 Thread IWAMOTO Toshihiro
Signed-off-by: IWAMOTO Toshihiro --- ryu/tests/unit/ofproto/test_ofctl_string.py | 134 1 file changed, 134 insertions(+) create mode 100644 ryu/tests/unit/ofproto/test_ofctl_string.py diff --git a/ryu/tests/unit/ofproto/test_ofctl_string.py b/ryu/tests/unit/ofprot

[Ryu-devel] [PATCH 0/3] Add ovs-ofctl style action string parser

2017-04-26 Thread IWAMOTO Toshihiro
This set of patches allow users to use ovs-ofctl style action strings to build OFPInstructionActions, which may help transition from ovs-ofctl. Support is currently very limited and many from_string() method should be added for this to be useful. IWAMOTO Toshihiro (3): nicira_ext: Define some CT