Re: [Ryu-devel] Multiple tables

2015-01-13 Thread Flavio Castro
I've also had a similar problem trying to simulate vlans on the flow table. I wasn't able to solve it at the time. One idea that was given to me was to use groups. I don't really understand them so I'm just repeating the idea. Why do you want to send only a few packets to the controller, if it is f

[Ryu-devel] Multiple tables

2015-01-13 Thread Henrique Santos Fernandes
Hello to all, I am tryng to make a pkt go to two or more outputs ports but i have not find an way yet. My goal is this: When i packet arrives it go to table miss. (already working) But i don't want it to go to controller yet. I want to just sedn to controller a few pkts. ( I did by add a meter

Re: [Ryu-devel] Push tables to the switchs using curl

2015-01-13 Thread Clément Rault
Hi, Now that I solved my other problems I'm trying to try some things using group tables. But the weird thing is that it doesn't seem to work. I tried what you wrote in the previous email: mininet@mininet-vm:~$ curl -X POST -d '{ > "dpid": 1, > "type": "FF", > "group_id": 1, > "

Re: [Ryu-devel] Experimenter Match Field in Flow Mod..

2015-01-13 Thread Henrique Santos Fernandes
Nitish, i was trying to do something like i guess. But i am trying to edit the swith handler, as i want the table miss to be with the meter! Following you question: First you need to reate the meter: For my it i slike this: rate=25 burst_size=0 bands=[] bands.

Re: [Ryu-devel] (no subject)

2015-01-13 Thread FUJITA Tomonori
On Mon, 12 Jan 2015 21:53:19 + Alan Quillin wrote: > Attached are 2 patches for ryu. > > 1. 0001-of_v1_0:-Added-supportfortheNXM_NX_TUN_IPV4_{SRC&DST}[_W]fields > This add support for the NXM_NX_TUN_IPV4_DST and NXM_NX_TUN_IPV4_SRC headers > available in the nicira extension for OF v1.0 des

[Ryu-devel] Experimenter Match Field in Flow Mod..

2015-01-13 Thread nitish nagesh
Hi All, I am trying to write a RYU script to send an experimenter Match field in the Flow Mod message. I was referring to "simple_switch_13.py" and trying to figure out how i can change the add_flow function so that the "match" would contain the experimenter Match field as well. Was not able t

Re: [Ryu-devel] Specify mask in Ryu

2015-01-13 Thread FUJITA Tomonori
On Sun, 11 Jan 2015 15:41:40 -0700 Sandesh Shrestha wrote: > I want to specify mask to source ip or source mac address in packets so > that the packets can go to certain output port based on the mask value. > In the instance of OFPMatch class there is a field called wildcards. Do we > need to use

Re: [Ryu-devel] [PATCH] ofctl_v1_0/2/3: Fix unsuitable log level

2015-01-13 Thread FUJITA Tomonori
On Thu, 08 Jan 2015 13:45:31 +0900 Minoru TAKAHASHI wrote: > Signed-off-by: Minoru TAKAHASHI > --- > ryu/lib/ofctl_v1_0.py | 4 ++-- > ryu/lib/ofctl_v1_2.py | 6 +++--- > ryu/lib/ofctl_v1_3.py | 10 +- > 3 files changed, 10 insertions(+), 10 deletions(-) Applied, thanks. ---

[Ryu-devel] Experimenter Match Field in Flow Mod..

2015-01-13 Thread nitish nagesh
Hi All, I am trying to write a RYU script to send an experimenter Match field in the Flow Mod message. I was referring to "simple_switch_13.py" and trying to figure out how i can change the add_flow function so that the "match" would contain the experimenter Match field as well. Was not able t