[ovs-discuss] Issue in enqueue action on LOCAL port

2013-05-17 Thread akash sharma
Hi, I have created two queues on bridge br0 port br0 and eth2. Then I added an IP flow entry with action to forward the matching packets to queue 0 on port eth2. Using a packet generator, I sent 10 matching packets to the switch. The packet count got updated in both dump-flows and queue stats.

Re: [ovs-discuss] addition of a port in ovs switch which is not physically present

2013-05-16 Thread akash sharma
interface could not be created due to an error. (The Open vSwitch >log should indicate the reason.) ofport value [] (the empty set) >means that the interface hasn't been created yet. The latter is >normally an intermittent condition (unless ovs-vswitchd is not >running).

[ovs-discuss] addition of a port in ovs switch which is not physically present

2013-05-16 Thread akash sharma
Hi, I want to verify that all the ports which are added to the ovs switch are present in the ovs list/show commands as well as the feature reply message from switch to the controller. I am adding a port to the bridge which does not exist physically. After the addition of port, the added port is p

[ovs-discuss] addition of flows more than the maximum value in flow table

2013-05-15 Thread akash sharma
Hi, I am trying to test the default maximum value of flow_limit in a flow_table. To achieve this, I executed the following commands: [root@user]# ovs-ofctl dump-tables br0 | less OFPST_TABLE reply (xid=0x1): 255 tables 0: classifier: wild=0x3f, max=100, active=9 looku

Re: [ovs-discuss] Issue in using Unix controller

2013-05-15 Thread akash sharma
11:30 PM, "akash sharma" > wrote: > >> I want to check that inactivity probe message is not sent by the switch >> to the controller after the unix socket is disconnected. >> >> On Thu, May 16, 2013 at 11:47 AM, Ben Pfaff wrote: >> >>> OK.

Re: [ovs-discuss] Issue in using Unix controller

2013-05-15 Thread akash sharma
ow you plan to react to it. > On May 15, 2013 11:07 PM, "akash sharma" > wrote: > >> Thanks for the response. >> It resolves my two queries. >> Regarding query#2, I need to capture the "inactivity-probe" message sent >> by the switch to the contr

Re: [ovs-discuss] Issue in using Unix controller

2013-05-15 Thread akash sharma
. Regards, Akash On Thu, May 16, 2013 at 11:26 AM, Ben Pfaff wrote: > On Thu, May 16, 2013 at 11:23:23AM +0530, akash sharma wrote: > > 1. I need to disconnect the unix socket. > > > > I deleted the link created above using the following command: > > > > [root@user

[ovs-discuss] Issue in using Unix controller

2013-05-15 Thread akash sharma
Hi, I have created a bridge br0. then I created a unix domain socket on bridge br0 using the following command: [root@user]# ln -s /usr/local/var/run/openvswitch/br0.mgmt /usr/local/var/run/openvswitch/br0.controller [root@user]# ovs-vsctl set-controller br0 unix:/usr/local/var/run/openvswit