Re: [ovs-discuss] failed to put[create][modify]

2014-06-24 Thread Federico Iezzi
Hi Joe, I can reproduce this problem with the kernel module upstream versione 3.13.1[0-1] and with the version build from the branch 2.1 (using kernel 3.11) and 2.2 (using kernel 3.13). Right now I have the kernel 3.13 with the openvswitch module from the upstream kernel. Thanks a lot! Regards

Re: [ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Vasiliy Tolstov
2014-06-24 19:23 GMT+04:00 Lori Jakab : > Others who know better can correct me, but I think there is more work > involved than that. For now, the data structures and code supporting > tunnels is IPv4 specific, and you would need to change more than one file, > and not just the datapath (user spac

Re: [ovs-discuss] failed to put[create][modify]

2014-06-24 Thread Federico Iezzi
Hi Jesse, Unfortunately I don’t have any other logs into dmesg, kern.log and syslog. The problem is that I have a big amount of packet loss and retransmission for 25% of time. So the OVS Rule for 75% time works. It seems like a overflow kind but I’m not capable of debugging C++ code anymore. Th

Re: [ovs-discuss] failed to put[create][modify]

2014-06-24 Thread Federico Iezzi
Hi Jesse, Unfortunately I don’t have any other logs into dmesg, kern.log and syslog. The problem is that I have a big amount of packet loss and retransmission for 25% of time. So the OVS Rule for 75% time works. It seems like a overflow kind but I’m not capable of debugging C++ code anymore. Tha

Re: [ovs-discuss] failed to put[create][modify]

2014-06-24 Thread Jesse Gross
On Fri, Jun 20, 2014 at 8:01 AM, Federico Iezzi wrote: > Hi Guys, > > I’m in trouble with our staging OpenStack env based on IceHouse Neutron > and Havana Nova. > We are using Ubuntu 12.04.4 with Kernel 3.13 mirror release 11. > > With the latests OVS versione (2.1.2, 2.1.3, 2.2.0 and 2.3 DEV

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

2014-06-24 Thread Andrew Mann
I'm still learning OVS, but I'll take a stab: 1) Before the ping starts, an ARP request will be sent which will be broadcast. It won't match the destination MAC because the purpose of the ARP is to find out what the MAC is. Normally the VLAN would take care of broadcasting the packet out to all h

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

2014-06-24 Thread Ben Pfaff
On Tue, Jun 24, 2014 at 10:08:28AM -0700, shruti rao wrote: > mininet> sh ovs-ofctl dump-flows s1 > NXST_FLOW reply (xid=0x4): > cookie=0x0, duration=160.318s, table=0, n_packets=0, n_bytes=0, > idle_age=160, actions=NORMAL > mininet> sh ovs-ofctl dump-flows s2 > NXST_FLOW reply (xid=0x4): > cook

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

2014-06-24 Thread shruti rao
Hi, I am new to Open vSwitch and am trying to create a VLAN with two switches (s1, s2) having 2 hosts (s1 having red1 and blue1 and s2 having red2 and blue2) each and no controller. My configuration is as mentioned below: mininet> net s1 lo: s1-eth1:red1-eth0 s1-eth2:blue1-eth0 s1-eth3:s2-eth1 s

Re: [ovs-discuss] why does dpctl show different port numbers to ofctl show

2014-06-24 Thread Ben Pfaff
Dpctl and everything it shows is an implementation detail. Use OpenFlow port numbers in OpenFlow. On Jun 24, 2014 9:23 AM, "Tahhan, Maryam" wrote: > Ok, I'm still a little confused, which would you use when adding a flow > with ofctl, the port numbers from ofctl or from dpctl, I'm assuming ofctl

Re: [ovs-discuss] why does dpctl show different port numbers to ofctl show

2014-06-24 Thread Tahhan, Maryam
Ok, I'm still a little confused, which would you use when adding a flow with ofctl, the port numbers from ofctl or from dpctl, I'm assuming ofctl -Original Message- From: Ben Pfaff [mailto:b...@nicira.com] Sent: Tuesday, June 24, 2014 5:07 PM To: Tahhan, Maryam Cc: discuss@openvswitch.or

Re: [ovs-discuss] why does dpctl show different port numbers to ofctl show

2014-06-24 Thread Ben Pfaff
On Tue, Jun 24, 2014 at 04:01:02PM +, Tahhan, Maryam wrote: > I'm just wondering why does ovs-dpctl show different port numbers to > what is returned from ovs-ofctl show? There's no reasonable way to have them be the same, since a single kernel datapath implements multiple OpenFlow switches. _

[ovs-discuss] why does dpctl show different port numbers to ofctl show

2014-06-24 Thread Tahhan, Maryam
Hi I'm just wondering why does ovs-dpctl show different port numbers to what is returned from ovs-ofctl show? [root@silpixa00378251 test_vanilla_ovs]# ovs-dpctl show system@ovs-system: lookups: hit:182194988 missed:36415 lost:181 flows: 0 masks: hit:247644295 total:0 hit/p

Re: [ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Lori Jakab
On 6/24/14, 3:15 PM, Vasiliy Tolstov wrote: 2014-06-24 14:45 GMT+04:00 Lori Jakab : No, and I haven't seen any patches proposed to implement that on the developer mailing list either. Very bad =(. As i understand to get tunnels working in ipv6 (vxlan) i need to patch vport-vxlan.c ? kernel dat

Re: [ovs-discuss] next release.

2014-06-24 Thread Eugene Istomin
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-powered solutions. Can you share some roadmap? This helps us to keep step

Re: [ovs-discuss] FW: Vlan tag is not working in openvswitch

2014-06-24 Thread Andrew Mann
I'm not familiar with mn, but when you tag a port in OpenVswitch as an access port, it tells openvswitch that packets should _not_ be tagged on that interface. Instead, traffic is untagged, but presumed to belong to vlan 20 by the switch. So in that setup, only traffic on eth2 would be tagged. I

Re: [ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Vasiliy Tolstov
2014-06-24 14:45 GMT+04:00 Lori Jakab : > No, and I haven't seen any patches proposed to implement that on the > developer mailing list either. Very bad =(. As i understand to get tunnels working in ipv6 (vxlan) i need to patch vport-vxlan.c ? kernel data path (i'm use 3.12) not needs to be patch

Re: [ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Lori Jakab
On 6/24/14, 1:43 PM, Vasiliy Tolstov wrote: 2014-06-24 14:42 GMT+04:00 Lori Jakab : No, only IPv4 addrress literals are accepted. If i need ipv6 based tunnel? Does openvswitch supports ipv6 based tunnels? No, and I haven't seen any patches proposed to implement that on the developer mailin

Re: [ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Vasiliy Tolstov
2014-06-24 14:42 GMT+04:00 Lori Jakab : > No, only IPv4 addrress literals are accepted. If i need ipv6 based tunnel? Does openvswitch supports ipv6 based tunnels? -- Vasiliy Tolstov, e-mail: v.tols...@selfip.ru jabber: v...@selfip.ru ___ discuss maili

Re: [ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Lori Jakab
On 6/24/14, 12:39 PM, Vasiliy Tolstov wrote: Does it possible to create tunnel (gre, vxlan) providing hostname in remote_ip and openvswitch resolve ip for this hostname? No, only IPv4 addrress literals are accepted. -Lori ___ discuss mailing list dis

[ovs-discuss] create vxlan tunnel with remote_ip entered as hostname

2014-06-24 Thread Vasiliy Tolstov
Does it possible to create tunnel (gre, vxlan) providing hostname in remote_ip and openvswitch resolve ip for this hostname? -- Vasiliy Tolstov, e-mail: v.tols...@selfip.ru jabber: v...@selfip.ru ___ discuss mailing list discuss@openvswitch.org http://o

[ovs-discuss] FW: Vlan tag is not working in openvswitch

2014-06-24 Thread Anurudh Tiwari
Hi all, I am trying to implement vlan in mininet open vSwitch. I did the following .. Open vSwitch version : 1.9 Kernel version : 3.8.0-19-generic 1. Create a topology using sudo mn command as, mininet@mininet-vm:~$ sudo mn --topo=linear,2 *** Creating network *** Adding cont

[ovs-discuss] next release.

2014-06-24 Thread Vasiliy Tolstov
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? -- Vasiliy Tolstov, e-mail: v.tols...@selfip.ru jabber: v...@selfip.ru ___ discuss mailing list