Re: [ovs-discuss] Is it possible to limit bandwidth for particular OVS port?

2015-03-30 Thread Tim Bagr
Thanks for the reply! Good news for now. I've tried the same config with another (non-egress) port of my OVS switch *br3* and now the queue is actually working. *# ovs-vsctl set port vnet0 qos=@nqos -- --id=@nqos create qos type=linux-htb other-config:max-rate=1000 queues=123=@q1 -- --id=@q1

Re: [ovs-discuss] Is it possible to limit bandwidth for particular OVS port?

2015-03-30 Thread Gurucharan Shetty
On Mon, Mar 30, 2015 at 7:19 PM, Tim Bagr wrote: > Thanks for the reply! > > Good news for now. I've tried the same config with another (non-egress) port > of my OVS switch br3 and now the queue is actually working. I see vnet0 as an egress port in this context. > > > # ovs-vsctl set port vnet0 q

Re: [ovs-discuss] set-controller per table?

2015-03-30 Thread Ashok Chippa
Thanks :) Appreciate it. On Mon, Mar 30, 2015 at 3:14 PM, Ben Pfaff wrote: > On Mon, Mar 30, 2015 at 03:10:05PM -0700, Ashok Chippa wrote: > > Couple of quick ones: 1) Are there names for these extensions and how do > I > > get them? > > NXAST_CONTROLLER. Read ovs-ofctl(8), see lib/ofp-actions.

Re: [ovs-discuss] set-controller per table?

2015-03-30 Thread Ben Pfaff
On Mon, Mar 30, 2015 at 03:10:05PM -0700, Ashok Chippa wrote: > Couple of quick ones: 1) Are there names for these extensions and how do I > get them? NXAST_CONTROLLER. Read ovs-ofctl(8), see lib/ofp-actions.c > 2) Could you tell me the ETA of ovs 2.4 > (with

Re: [ovs-discuss] set-controller per table?

2015-03-30 Thread Ashok Chippa
Hi Ben et al., Thank you for your answer. Couple of quick ones: 1) Are there names for these extensions and how do I get them? 2) Could you tell me the ETA of ovs 2.4 (with conntrack support)? Thanks. On Fri, Mar 27, 2015 at 8:17 AM, Ben Pfaff wrote: > You

Re: [ovs-discuss] Question about Openvswitch

2015-03-30 Thread Justin Pettit
> On Mar 30, 2015, at 12:20 AM, 劉瑋凱 wrote: > > Hi,all > I want to generate a packet and send it out every 1 second. > How can I do it ? It depends on what you're trying to do. If it's baked-in switch functionality, you can find examples in the code of doing similar things (e.g., STP, CFM, BF

Re: [ovs-discuss] Can I add parameters to NetFlow module bypassing the database?

2015-03-30 Thread Ben Pfaff
On Sat, Mar 28, 2015 at 02:06:54PM -0700, Hao Wu wrote: >I add a bloom filter struct into the netflow module, /ofproto/netflow.c. > Now I insert items into the bloom filter through command ovs-vsctl, as the > same way to update the parameters in netflow module, like active_timeout or > targets,

Re: [ovs-discuss] CDP (cisco discovery protocol) packets being dropped by OVS

2015-03-30 Thread Ben Pfaff
On Sun, Mar 29, 2015 at 01:44:58PM +, Field, Brian wrote: > I’ve noticed the CDP frames are being dropped by OVS: > > > # ovs-dpctl dump-flows > > skb_priority(0),in_port(2),eth(src=52:54:00:d7:50:8e,dst=01:00:0c:cc:cc:cc),eth_type(0/0x), > packets:0, bytes:0, used:never, actions:drop >

[ovs-discuss] Question about Openvswitch

2015-03-30 Thread 劉瑋凱
Hi,all I want to generate a packet and send it out every 1 second. How can I do it ? Regards, Liu ___ discuss mailing list discuss@openvswitch.org http://openvswitch.org/mailman/listinfo/discuss

Re: [ovs-discuss] seeking help

2015-03-30 Thread Sanghamitra De
Hi. Thank You for the reply. I went through vswitch.ovsschema. Do i need tp make any change in vswitch.ovsschema? If YES then what change do i need to make? its a lengthy file. Can You kindly let me know the exact changes i need to make? Thank You & Regards Sanghamitra De On Sat, Mar 28, 2015

Re: [ovs-discuss] searching for an advice + how to start OVS.

2015-03-30 Thread Ben Pfaff
I guess that you did not install a startup script. OVS comes with suitable ones for various OSes. On Mon, Mar 30, 2015 at 4:55 AM, Amal KAMMOUN wrote: > Hello! > > > For both I got unrecognized service. > > > > > From: gowrishankar > Sent: Monday, March 30, 2015

Re: [ovs-discuss] Flow-rules execution time

2015-03-30 Thread Amer
Thank you Done. Sent from my iPhone > On Mar 30, 2015, at 6:42 AM, Nicholas Bastin wrote: > >> On Sun, Mar 29, 2015 at 8:26 AM, Amer wrote: >> How to measure the execution time of flow-rules in openvswitch. >> I want to compare between to settings: Openvswitch has 100 flow-rules and >> anothe

[ovs-discuss] How to install OVS!

2015-03-30 Thread Amal KAMMOUN
Hello! I tried to install openvswitch in a virtual machine but I failed! I followed this tutorial https://github.com/openvswitch/ovs/blob/master/INSTALL.md . Everything is fine and I could create a bridge. But when I restart my VM, I try to use the ovs-vsctl command. But I have " data base co

Re: [ovs-discuss] searching for an advice + how to start OVS.

2015-03-30 Thread Amal KAMMOUN
Hello! For both I got unrecognized service. From: gowrishankar Sent: Monday, March 30, 2015 11:37 AM To: Amal KAMMOUN Cc: discuss@openvswitch.org Subject: Re: [ovs-discuss] searching for an advice + how to start OVS. You may try "service openvswitch-switch st

Re: [ovs-discuss] searching for an advice + how to start OVS.

2015-03-30 Thread gowrishankar
You may try "service openvswitch-switch start" and "service openvswitch-controller start" Regards, Gowrishankar On Monday 30 March 2015 03:53 PM, Amal KAMMOUN wrote: Thank you for your response. But when I try " /etc/init.d/ovsdb-server start ", I get "No such file or directory"! ---

Re: [ovs-discuss] searching for an advice + how to start OVS.

2015-03-30 Thread Amal KAMMOUN
Thank you for your response. But when I try " /etc/init.d/ovsdb-server start ", I get "No such file or directory"! From: Ping Chun Huang Sent: Monday, March 30, 2015 10:18 AM To: Amal KAMMOUN Cc: discuss@openvswitch.org Subject: Re: [ovs-discuss] searching for

Re: [ovs-discuss] searching for an advice + how to start OVS.

2015-03-30 Thread Ping Chun Huang
HI, 1. That's fine 2. You forgot to start ovsdb-server, try "/etc/init.d/ovsdb-server start" pichuang, Ping-Chun Huang 黃秉鈞 Wireless Internet Laboratory Computer Center, Department of Computer Science National Chiao Tung University 2015-03-30 17:40 GMT+08:00 Amal KAMMOUN : > Hello! > > > 1-

[ovs-discuss] searching for an advice + how to start OVS.

2015-03-30 Thread Amal KAMMOUN
Hello! 1- I was trying to install openvswitch in a virtual machine (ubuntu 14.04 in virtualbox). (I followed this page: https://github.com/openvswitch/ovs/blob/master/INSTALL.md ). My choice of virtual box and ubuntu 14.04, is it good? 2- When I restart my VM, I try to use the ovs-vsctl co

[ovs-discuss] Restricting not more than x gb file on the network.

2015-03-30 Thread Prashant Singh
Hi I wants to restrict the file size no more x GB is allowed to download from the FTP server. I have a FTP server at 1.1 and wants to restrict the host 1.2 not to download the file size greater than x GB, if file size is greater than that the drop the packet. The switch is at 1.3 and port 1 is con