Re: [Ryu-devel] [PATCH] xflow: add netflow packet collector

2013-03-13 Thread OHMURA Kei
2013/3/14 YAMAMOTO Takashi : >> On Wed, Mar 13, 2013 at 02:48:03PM +0900, Kei Ohmura wrote: >>> 2013/3/6 Isaku Yamahata : >>> > On Wed, Mar 06, 2013 at 11:54:00AM +0900, OHMURA Kei wrote: >>> >> This gets a netflow packet and sends it to the other >>> >> applications. Each application can use this

Re: [Ryu-devel] [PATCH] xflow: add netflow packet collector

2013-03-13 Thread YAMAMOTO Takashi
> On Wed, Mar 13, 2013 at 02:48:03PM +0900, Kei Ohmura wrote: >> 2013/3/6 Isaku Yamahata : >> > On Wed, Mar 06, 2013 at 11:54:00AM +0900, OHMURA Kei wrote: >> >> This gets a netflow packet and sends it to the other >> >> applications. Each application can use this to get netflow >> >> messages as a

Re: [Ryu-devel] [RFC PATCH 0/2] support multiple controllers

2013-03-13 Thread FUJITA Tomonori
(2013/03/13 23:57), [email protected] wrote: > Thanks for your reply, I check the spec and now know the > "OFPCR_ROLE_EQUAL" and "Master/Slave" > I think my question is focus on Ryu controller, Our OpenFlow switch is > OF 1.2 compatible...so my questions; > 1. Ryu controller only support Maste

Re: [Ryu-devel] unsupported version 0x1

2013-03-13 Thread FUJITA Tomonori
On Wed, 13 Mar 2013 12:25:06 + Bright Dadson wrote: > I have just started to play with ryu, simulating with mininet. It is using > current develop version of Open vSwitch and hence the result below: > > mininet> dpctl -V > *** s1 >

Re: [Ryu-devel] How to match IPv6 packets through nx_match?

2013-03-13 Thread FUJITA Tomonori
On Wed, 13 Mar 2013 17:02:27 +0800 Can Zhang wrote: > Does this combination(ryu + open vSwitch) support IPv6? Yes. > If so, how can I match an IPv6 packet correctly? Here is an example: = import gevent from ryu.controller import handler from ryu.controller import dpset from ryu.controller im

Re: [Ryu-devel] [RFC PATCH 0/2] support multiple controllers

2013-03-13 Thread billjean
Hi,Thanks for your reply, I check the spec and now know the "OFPCR_ROLE_EQUAL" and "Master/Slave"I think my question is focus on Ryu controller, Our OpenFlow switch is OF 1.2 compatible...so my questions;1. Ryu controller only support Master/Slave model? or ryu controllers can play equal role?2. in

Re: [Ryu-devel] How to match IPv6 packets through nx_match?

2013-03-13 Thread Isaku Yamahata
nx_flow_mod(NxtFlowMod) should be used instead of OF flow mod for nx extension. On Wed, Mar 13, 2013 at 05:02:27PM +0800, Can Zhang wrote: > Hello, > > I would like to match IPv6 packets using nx_match. I test the code below > using open vSwtich 1.9 in mininet. > > --- > rule =

Re: [Ryu-devel] [PATCH] xflow: add netflow packet collector

2013-03-13 Thread Isaku Yamahata
On Wed, Mar 13, 2013 at 02:48:03PM +0900, Kei Ohmura wrote: > 2013/3/6 Isaku Yamahata : > > On Wed, Mar 06, 2013 at 11:54:00AM +0900, OHMURA Kei wrote: > >> This gets a netflow packet and sends it to the other > >> applications. Each application can use this to get netflow > >> messages as an event

Re: [Ryu-devel] [RFC PATCH 0/2] support multiple controllers

2013-03-13 Thread Isaku Yamahata
Are you talking about generic Openflow spec? If so, please see the spec, OF 1.3.1 6.3.4 Multiple Controllers The answer would be, yes, no and, no. I can be wrong because I haven't checked the details of the spec. On Tue, Mar 12, 2013 at 03:23:12AM +, Bill jean wrote: > May I ask two questio

Re: [Ryu-devel] unsupported version 0x1

2013-03-13 Thread Henkel, Michael
Sounds like a mismatch of OF protocol versions. test_icmp.py seems to use 1.1 which is not supported by OVS 1.10.90. It support 1.0, 1.2 and 1.3. Michael From: Bright Dadson [mailto:[email protected]] Sent: Mittwoch, 13. März 2013 13:25 To: [email protected] Subject: [Ryu-deve

[Ryu-devel] unsupported version 0x1

2013-03-13 Thread Bright Dadson
Hi Guys, I have just started to play with ryu, simulating with mininet. It is using current develop version of Open vSwitch and hence the result below: mininet> dpctl -V *** s1 ovs-dpctl (Open vSwitch) 1.10.90 Compiled Mar

[Ryu-devel] Fwd: How to match IPv6 packets through nx_match?

2013-03-13 Thread Can Zhang
Also, I encountered the errors below when I start mininet: - Traceback (most recent call last): File "/Library/Python/2.7/site-packages/ryu-1.7-py2.7.egg/ryu/controller/controller.py", line 97, in deactivate method(self) File "/Library/Python/2.7/site-packages/ryu-1.7-py2.7.egg

[Ryu-devel] How to match IPv6 packets through nx_match?

2013-03-13 Thread Can Zhang
Hello, I would like to match IPv6 packets using nx_match. I test the code below using open vSwtich 1.9 in mininet. --- rule = nx_match.ClsRule() rule.set_dl_type(ether.ETH_TYPE_IPV6) rule.set_ipv6_src(0x123456) ofproto = dp.ofproto