[ovs-discuss] ovsdbserver stops automatically

2014-06-25 Thread Asadullah Hussain
Hello, I am running openvswitch 2.0 on RHEL server machine but I am facing a problem with ovsdb-server process. It works fine but it automatically shuts down after some idle time e.g., if server is idle for one night. Is this normal behaviour for the ovsdb-server process? or is there a way to debu

Re: [ovs-discuss] OVS executing set_field only if push_vlan is set ahead of it

2014-06-25 Thread Anurudh Tiwari
Hi, Yow write like this Actions=strip_vlan,output:3 -Original Message- From: discuss [mailto:discuss-boun...@openvswitch.org] On Behalf Of Ben Pfaff Sent: Thursday, June 26, 2014 12:56 AM To: Patil, Vishal Cc: discuss@openvswitch.org Subject: Re: [ovs-discuss] OVS executing set_field o

Re: [ovs-discuss] OpenFlow lab set-up problem on commodity PCs

2014-06-25 Thread Hunt Xu
On Tue, Jun 24, 2014 at 7:43 AM, quamar niyaz wrote: > I am attaching my topology diagram for reference. > Assuming you have already brought up eth1 on respective machine, can you try with tcpdump to see whether there is any packet going through eth1 while sending packets from VM1? Since your po

Re: [ovs-discuss] setting up VLAN using openvswitch on mininet

2014-06-25 Thread Flavio Leitner
On Thu, Jun 19, 2014 at 11:13:53PM -0700, Lavanya M.K wrote: > Thank you for the help. > > I tried using h1.setIP( '10.0.0.1/29' ), but i am getting syntax error : > Syntax error near unexpected token '10.0.0.1/29' ' > I am not able to fix the connectivity issue. Sorry, it should have been (intf,

Re: [ovs-discuss] next release.

2014-06-25 Thread Andrey Korolyov
On Thu, Jun 26, 2014 at 1:54 AM, Justin Pettit wrote: > - Continuing improvements for the DPDK port. Is there any interest around to revive netmap port too? We can take this but it looks redundant if DPDK will get mature enough in next few months.

Re: [ovs-discuss] next release.

2014-06-25 Thread Justin Pettit
On Tue, Jun 24, 2014 at 7:15 AM, Eugene Istomin wrote: > Guys, > > > > you committed some great changes like Geneve and DPDK support: > "dpif-netdev: batch packet processing" and "dpif-netdev: Upcall: Remove an > extra memcpy of packet data" is really great things to speed up SDN/NFV > OVS-power

Re: [ovs-discuss] Flow Rules for VLAN in Open vSwitch

2014-06-25 Thread Andrew Mann
If you want inter-vlan communications, it would be more generic to define a patch-port between the two vlans modifying the vlan on the way through: what you have at the start is: vlan:100 vlan:100 | red1 | -->

Re: [ovs-discuss] next release.

2014-06-25 Thread Justin Pettit
On Tue, Jun 24, 2014 at 1:10 AM, Vasiliy Tolstov wrote: > Hello. As i see many commits goes to master after last 2.x release. > When the new release date? Or some roadmap items needs to be completed > for next release? > We don't have a particular release date set. It's currently going through

Re: [ovs-discuss] Problem initiating TLS 1.2 hello from OVS client to NOX controller

2014-06-25 Thread Singhal, Abhinav
Hi Ben, Thanks for the prompt response. I downloaded the latest snapshot of the source today (210ba96.tar.gz) and built it. When this new OVS initiates a SSL connection to the controller, it still uses TLS 1.0 to send the hello. Can you please verify that the fix in place is working correctly?

Re: [ovs-discuss] Flow Rules for VLAN in Open vSwitch

2014-06-25 Thread shruti rao
Hi Andrew and Ben, Thanks for your responses. Following your suggestions, I modified the flow rules. mininet> sh ovs-ofctl dump-flows s1 NXST_FLOW reply (xid=0x4): cookie=0x0, duration=1456.805s, table=0, n_packets=0, n_bytes=0, idle_age=1456, icmp,dl_src=00:00:00:00:00:03,dl_dst=00:00:00:00:0

Re: [ovs-discuss] Polling OpenvSwitch

2014-06-25 Thread Ben Pfaff
You could tell whether it was just a delay by polling again a few seconds after the transfer is complete. On Wed, Jun 25, 2014 at 05:02:20PM -0300, Pedro Henrique wrote: > Yes, they pass through the same switches. This is a sample of a polling and > as you can see the traffic is different from eac

Re: [ovs-discuss] Polling OpenvSwitch

2014-06-25 Thread Pedro Henrique
Yes, they pass through the same switches. This is a sample of a polling and as you can see the traffic is different from each other. The switch S1 should have the amount of traffic passed through it equal or bigger than S2, S3 , S4 or S5, since it is the first switch. Maybe the problem is due to th

Re: [ovs-discuss] OVS executing set_field only if push_vlan is set ahead of it

2014-06-25 Thread Ben Pfaff
You did not specify an action set. Use "write_actions(...)" to specify an action set. Please read ovs-ofctl(8) for more information. On Wed, Jun 25, 2014 at 07:48:29PM +, Patil, Vishal wrote: > Reading Section 5.10 (Action Set) of the OpenFlow 1.3 spec, it seems that > pop vlan > Action shou

Re: [ovs-discuss] Tag a packet

2014-06-25 Thread Andrey Korolyov
On 06/25/2014 08:26 PM, Jason Thorpe wrote: > Hi > > is there a way to tag a packet in OVS? (I don't mean VLANs). by a tag, it > could be a boolean value or something that can help separate two packets > coming from the same src and dst with same MAC. > Ye

Re: [ovs-discuss] OVS executing set_field only if push_vlan is set ahead of it

2014-06-25 Thread Ben Pfaff
On Wed, Jun 25, 2014 at 06:55:52PM +, Patil, Vishal wrote: > BTW I see similar issue with > > actions=output:3,strip_vlan > > > With actions specified in this order, the packet is directly sent to port 3 > Without the vlan being stripped. Not a bug. Open vSwitch is executing the actions in

Re: [ovs-discuss] OVS executing set_field only if push_vlan is set ahead of it

2014-06-25 Thread Ben Pfaff
On Wed, Jun 25, 2014 at 03:56:15PM +, Patil, Vishal wrote: > I have the following flow set on my OVS > > in_port=2,dl_src=fa:16:3e:00:05:90 > actions=set_field:102->vlan_vid,push_vlan:0x8100,goto_table:10 > > The problem is this flow does not set the vlan id on the packets as > expected. Howe

[ovs-discuss] OVS executing set_field only if push_vlan is set ahead of it

2014-06-25 Thread Patil, Vishal
I have the following flow set on my OVS in_port=2,dl_src=fa:16:3e:00:05:90 actions=set_field:102->vlan_vid,push_vlan:0x8100,goto_table:10 The problem is this flow does not set the vlan id on the packets as expected. However if I modify the Flow such that the ³push_vlan² is set before ³Set_field²,

[ovs-discuss] Tag a packet

2014-06-25 Thread Jason Thorpe
Hi is there a way to tag a packet in OVS? (I don't mean VLANs). by a tag, it could be a boolean value or something that can help separate two packets coming from the same src and dst with same MAC. ___ discuss ma

Re: [ovs-discuss] Polling OpenvSwitch

2014-06-25 Thread Ben Pfaff
On Wed, Jun 25, 2014 at 01:12:33PM -0300, Pedro Henrique wrote: > I'm using an openflow controller to poll the ovs each second, from this I'm > getting the flows passing through the switch ans other relevant information. > > I made a topology similiar to this. > > Host1 --- OVS1 OVS2 OV

[ovs-discuss] Polling OpenvSwitch

2014-06-25 Thread Pedro Henrique
Hi guys. I'm using an openflow controller to poll the ovs each second, from this I'm getting the flows passing through the switch ans other relevant information. I made a topology similiar to this. Host1 --- OVS1 OVS2 OVS3 OVS4 --- OVS5 --- Host2 I'm generating traffic from Host1

[ovs-discuss] Reg: How to send the Pkt-In traffic streams from the openvswitch

2014-06-25 Thread Subash Gandhi
Hi, I would like to send the Pkt-In traffic(OF1.3 & OF1.0) streams from the openvswitch to remote sdn controller. Please let me know how to configure those streams & send from the openvswitch bridge port (br100 eth2) * Here is my configuration: * / root@admin-desktop:~# ovs-vsctl show 8