Re: [Ryu-devel] Using NXActionMultipath for load balancing

2016-04-07 Thread Jason Kölker
On Thu, Apr 7, 2016 at 2:59 PM, Rimac, Ivica (Nokia - DE) wrote: > Hi Iwase, > > that helped ... I have been able to add the multipath flow to my switch! > > However, I am resubmitting the packet to another table (in my example it is > table_idx=1), into which I need to write the 2nd set of rules

Re: [Ryu-devel] Using NXActionMultipath for load balancing

2016-04-07 Thread Rimac, Ivica (Nokia - DE)
Hi Iwase, that helped ... I have been able to add the multipath flow to my switch! However, I am resubmitting the packet to another table (in my example it is table_idx=1), into which I need to write the 2nd set of rules (each matching a different value in reg0). Now here is where I fail since

Re: [Ryu-devel] How can i get switch's port details like port_no, mac_address etc from ryu.

2016-04-07 Thread Pynbiang Hadem
Thanks Shinpei, will try this. On Thu, Apr 7, 2016 at 12:47 PM, Shinpei Muraoka wrote: > Hi, > > > I need to get port details (e.g port_no, mac_address etc) of all ports > > of a switch from ryu application. How can i get these details. > > Pls help. > > > If you want get port details by REST AP

Re: [Ryu-devel] How can i get switch's port details like port_no, mac_address etc from ryu.

2016-04-07 Thread Shinpei Muraoka
Hi, > I need to get port details (e.g port_no, mac_address etc) of all ports > of a switch from ryu application. How can i get these details. > Pls help. If you want get port details by REST API, please you use Get ports description of ryu.app.ofctl_rest. http://ryu.readthedocs.org/en/lates

Re: [Ryu-devel] Using NXActionMultipath for load balancing

2016-04-07 Thread Iwase Yusuke
Hi, On 2016年04月07日 00:06, Rimac, Ivica (Nokia - DE) wrote: > Hi, > > I have implemented and configured a load balancer on an OVS levering the > nicira multipath extension and using the ovs-ofctl tool. Moving from local > ovs controls to a RYU app leaves me wondering about some details. Following