Re: [ovs-discuss] Implementing hierarchy in HTB in OpenvSwitch

2013-01-24 Thread Mathumitha S
Hi Ben, Thank you for the answers. > Date: Thu, 24 Jan 2013 08:44:05 -0800 > From: b...@nicira.com > To: cerisierfi...@hotmail.com > CC: discuss@openvswitch.org > Subject: Re: [ovs-discuss] Implementing hierarchy in HTB in OpenvSwitch > > On Thu, Jan 24, 2013 at 02:39:12PM +0530, Ma

Re: [ovs-discuss] VLAN Not Working

2013-01-24 Thread Ben Pfaff
On Thu, Jan 24, 2013 at 07:21:22PM +0100, Julius Bachnick wrote: > I just set up three OVS (s1, s2, s3) with two interfaces (eth1+eth2) each > and set their VLANS during runtime using > > > ovs-vsctl set port tag= for access and > > self.cmd('ovs-vsctl set port trunks= for trunk. > > My Setup

[ovs-discuss] VLAN Not Working

2013-01-24 Thread Julius Bachnick
Hey all, I just set up three OVS (s1, s2, s3) with two interfaces (eth1+eth2) each and set their VLANS during runtime using ovs-vsctl set port tag= for access and self.cmd('ovs-vsctl set port trunks= for trunk. My Setup is as S1 (eth1) (eth1) S2 (eth2) --- (eth1) S3 but when I ping f

Re: [ovs-discuss] [openflow-discuss] source code explanation

2013-01-24 Thread Jesse Gross
The PORTING file has an overview of the source code organization and is probably a good place to start. On Thu, Jan 24, 2013 at 9:26 AM, Naman Muley wrote: > Hi John, > > I have a similar query. But I believe this is a question better suited for > open vswitch discuss mailing list. > I've added t

Re: [ovs-discuss] [openflow-discuss] source code explanation

2013-01-24 Thread Naman Muley
Hi John, I have a similar query. But I believe this is a question better suited for open vswitch discuss mailing list. I've added them. @ovs people: I am also a beginner and wanted to start with smaller bug fixes. any tips to start understanding the code base? On Thu, Jan 24, 2013 at 10:39 AM,

Re: [ovs-discuss] Changing flow table size?

2013-01-24 Thread NGUYEN Xuan Nam
Thank you very much. Nam - Original Message - From: "Amit Tewari" To: "NGUYEN Xuan Nam" , discuss@openvswitch.org Sent: Thursday, January 24, 2013 5:37:55 PM Subject: Re: [ovs-discuss] Changing flow table size? Hi , In 1.4.3 this setting for flow limitation is not supported.

Re: [ovs-discuss] Implementing hierarchy in HTB in OpenvSwitch

2013-01-24 Thread Ben Pfaff
On Thu, Jan 24, 2013 at 02:39:12PM +0530, Mathumitha S wrote: > I am trying to use HTB in OpenvSwitch. Currently, OvS supports only > single-level of hierarchy in HTB. Am I correct? Yes. > But for implementing DiffServ, it would be good if multiple levels of > hierarchy are supported. Hence, I r

Re: [ovs-discuss] Changing flow table size?

2013-01-24 Thread Amit Tewari
Hi , In 1.4.3 this setting for flow limitation is not supported. *Flow_table* has been introduced by which we can limit flow table entries size. you can verify from *man ovs-vswitchd.conf.db* in 1.4.3 to see if this Flow_table exists or not. In *1.7.1 Flow_table * do exists. *Amit Tewari* *Mo

[ovs-discuss] Changing flow table size?

2013-01-24 Thread NGUYEN Xuan Nam
Hello, I am working with OpenFlow and OVSwitch version 1.4.3. I read somewhere said that OVSwitch's flow table supports up to 10^6 flow entries. Is it possible to change this limitations (for example, 1000 flow entries)? If yes, how to do that ? Thanks. Nam __

[ovs-discuss] Implementing hierarchy in HTB in OpenvSwitch

2013-01-24 Thread Mathumitha S
Hi, I am trying to use HTB in OpenvSwitch. Currently, OvS supports only single-level of hierarchy in HTB. Am I correct? But for implementing DiffServ, it would be good if multiple levels of hierarchy are supported. Hence, I read the source code and tried to modify it to suppor