[Ryu-devel] [PATCH] of: Fix name of class member variables

2014-09-23 Thread Yusuke Iwase
Fix name of class member variables in OFPMeterFeaturesStats to reflect OpenFlow Specification version 1.3 and 1.4. Signed-off-by: IWASE Yusuke --- ryu/ofproto/ofproto_v1_3_parser.py | 6 +++--- ryu/ofproto/ofproto_v1_4_parser.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff

Re: [Ryu-devel] Malformed Packet: MPLS

2014-09-23 Thread YAMAMOTO Takashi
> Dear Ryu Experts, > > I'm trying to inject an "echo" mpls packet using ryu, so I created an MPLS > packet using this code : > > f = EchoRyu() > f.timestamp = int(time.time()*1000 - start_time) > eth_MPLS = ether.ETH_TYPE_MPLS > parser = datapath.ofproto_parser >

Re: [Ryu-devel] Malformed Packet: MPLS

2014-09-23 Thread Simon Horman
On Tue, Sep 23, 2014 at 10:02:10AM +0100, Mounir Azizi wrote: > Dear Ryu Experts, > > I'm trying to inject an "echo" mpls packet using ryu, so I created an MPLS > packet using this code : > > f = EchoRyu() > f.timestamp = int(time.time()*1000 - start_time) > eth_MPLS = eth

[Ryu-devel] Incorrect link on ryu resources page

2014-09-23 Thread Bryan
Greetings, I was on the Ryu resources page (http://osrg.github.io/ryu/resources.html) and I noticed the link to the English edition of the Ryu SDN Framework pdf points to the Japanese edition instead. I just wanted to bring that to your attention. Thanks, Bryan --- This email is free from vir

[Ryu-devel] [PATCH] gui_topology: fix to work using WebSocket

2014-09-23 Thread Yoshiharu Yamashita
Hello All. I midified ryu.topology.js to dinamicaly add or remove switch using WebSocket on Ryu Topology Viewer. Sorry, I had sent a pull request but it was closed. Signed-off-by: Yoshiharu Yamashita --- ryu/app/gui_topology/html/ryu.topology.js | 61 +++-

[Ryu-devel] Routing in Fat Tree Network

2014-09-23 Thread Chandra Satriana
Hi, Can you tell me if there's an existing multipath routing module in Ryu for a Fat Tree Network, to utilize all the available routes instead of using STP ? Also, is it possible to know the location of the hosts, without firstly sending ARP requests? such as by taking it from the topology infor

[Ryu-devel] Malformed Packet: MPLS

2014-09-23 Thread Mounir Azizi
Dear Ryu Experts, I'm trying to inject an "echo" mpls packet using ryu, so I created an MPLS packet using this code : f = EchoRyu() f.timestamp = int(time.time()*1000 - start_time) eth_MPLS = ether.ETH_TYPE_MPLS parser = datapath.ofproto_parser ofproto = da