Re: [ovs-discuss] failed to put[create][modify] (Eugene Istomin)

2014-06-26 Thread Yinpeijun
>After implementing log parsing on some servers we discover the same issue (mac >are masked): > ><28>Jun 26 20:57:08 ovs-vswitchd: >ovs|207944|dpif(handler_1)|WARN|system@ovs-system: failed to >put[create][modify] (Invalid argument) >skb_priority(0),in_port(2),skb_mark(0/0),eth(src=XX,dst=ff:f

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

2014-06-26 Thread Lori Jakab
On 6/26/14, 6:36 PM, Vasiliy Tolstov wrote: 2014-06-26 17:27 GMT+04:00 Lori Jakab : Older versions of ovs-vsctl may not report the error, but you will see it on the ovs-vswitchd log file. Implementing IPv6 support for tunnels is not trivial. You need to add support in both user space and kerne

Re: [ovs-discuss] geneve

2014-06-26 Thread Jesse Gross
On Thu, Jun 26, 2014 at 1:13 PM, Vasiliy Tolstov wrote: > 2014-06-26 19:26 GMT+04:00 Jesse Gross : >> Yes, you should currently be able to do everything that VXLAN can do >> with Geneve. Just replace "vxlan" with "geneve" as the tunnel type and >> all other configuration is the same. > > Why in ge

Re: [ovs-discuss] geneve

2014-06-26 Thread Vasiliy Tolstov
2014-06-26 19:26 GMT+04:00 Jesse Gross : > Yes, you should currently be able to do everything that VXLAN can do > with Geneve. Just replace "vxlan" with "geneve" as the tunnel type and > all other configuration is the same. Why in geneve_socket_init created ipv4 socket? If i have pure ipv6 network

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

2014-06-26 Thread Federico Iezzi
Eugene, The only way that I found is roll-back to a Kernel version < 3.12. Today I did many tests with vanilla Kernel 3.11.10 and Canonical 3.11.0-24 I haven't anymore problem using datapath from OVS source. I’m using VXLAN so I can’t test OVS with kernel module because only from kernel 3.12 the

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

2014-06-26 Thread Eugene Istomin
Jesse, our syslog rules covers all possible syslog-like logs (including kernel), i don't find any related messages (dmesg are clean too). /---/ */Best regards,/* /Eugene Istomin/ /EDS Systems/ /e.isto...@edss.ee/ /Work: +372-6409-600/ > On Thu, Jun 26, 2014 at 11:33 AM, Eugene Istomin wrote:

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

2014-06-26 Thread Jesse Gross
On Thu, Jun 26, 2014 at 11:33 AM, Eugene Istomin wrote: > After implementing log parsing on some servers we discover the same issue > (mac are masked): > > > > <28>Jun 26 20:57:08 ovs-vswitchd: > ovs|207944|dpif(handler_1)|WARN|system@ovs-system: failed to > put[create][modify] (Invalid argument)

Re: [ovs-discuss] ovsdbserver stops automatically

2014-06-26 Thread Ben Pfaff
On Thu, Jun 26, 2014 at 10:03:37AM +0500, Asadullah Hussain wrote: > 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

Re: [ovs-discuss] Having problems installing OVS in Fedora 15

2014-06-26 Thread Ben Pfaff
On Thu, Jun 26, 2014 at 09:07:52PM +0530, Sanghamitra De wrote: > please help. I'm in Fedora 15 and as per INSTALL.Fedora, I have moved the As the file says, we tested the instructions with Fedora 16 and 17. If they do not work with Fedora 15, then you will have to figure out what needs to change

[ovs-discuss] unable to match VLAN ID with userspace datapath

2014-06-26 Thread Bob Cyphers
I'm attempting to test OVS as a gateway between VLAN and MPLS networks, starting with forwarding frames from one physical port to another. What I have observed is that I can't make a rule that matches on VLAN ID (or dl_type=0x8100) when running userspace datapath. Is this the expected behavior wi

[ovs-discuss] Having problems installing OVS in Fedora 15

2014-06-26 Thread Sanghamitra De
Hi, please help. I'm in Fedora 15 and as per INSTALL.Fedora, I have moved the tarball Openvswitch-1.9.3.tar.gz into the RPM source directory of my version of Fedora which happens to be: /usr/src/ I have also moved Openvswitch-1.9.3 folder which i had earlier obtained after unpacking into the src

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

2014-06-26 Thread Patil, Vishal
Sorry I missed that. Many thanks for clarifying. On 6/25/14, 3:50 PM, "Ben Pfaff" wrote: >specify DISCLAIMER: This e-mail and any attachments to it may contain confidential and proprietary material and is solely for the use of the intended recipient. Any revi

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

2014-06-26 Thread Patil, Vishal
Reading Section 5.10 (Action Set) of the OpenFlow 1.3 spec, it seems that pop vlan Action should have been executed before output. On 6/25/14, 3:26 PM, "Ben Pfaff" wrote: >On Wed, Jun 25, 2014 at 06:55:52PM +, Patil, Vishal wrote: >> BTW I see similar issue with >> >> actions=output:3,strip_

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

2014-06-26 Thread Patil, Vishal
Ben 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. - Vishal On 6/25/14, 2:38 PM, "Ben Pfaff" wrote: >On Wed, Jun 25, 2014 at 03:56:15PM +, Patil, Vishal wrote: >> I hav

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

2014-06-26 Thread Vasiliy Tolstov
2014-06-26 17:27 GMT+04:00 Lori Jakab : > Older versions of ovs-vsctl may not report the error, but you will see it on > the ovs-vswitchd log file. > > Implementing IPv6 support for tunnels is not trivial. You need to add > support in both user space and kernel datapath, and the netlink protocol >

Re: [ovs-discuss] geneve

2014-06-26 Thread Vasiliy Tolstov
2014-06-26 19:26 GMT+04:00 Jesse Gross : > Yes, you should currently be able to do everything that VXLAN can do > with Geneve. Just replace "vxlan" with "geneve" as the tunnel type and > all other configuration is the same. Thanks! -- Vasiliy Tolstov, e-mail: v.tols...@selfip.ru jabber: v...@se

Re: [ovs-discuss] geneve

2014-06-26 Thread Jesse Gross
On Thu, Jun 26, 2014 at 5:25 AM, Vasiliy Tolstov wrote: > Thank you for geneve support. > Does current state of geneve in ovs master sutable to replace vxlan? > I simply need tunnel between some openvswitch servers to connect vm on > this servers. Yes, you should currently be able to do everythin

Re: [ovs-discuss] Group table for broadcasting a packet

2014-06-26 Thread Gurucharan Shetty
On Thu, Jun 26, 2014 at 4:31 AM, Liran Schour wrote: > Hi, > > I want to broadcast a packet to a group of ports. I thought using group > table for that. > Does anyone has a simple example for doing that? I would suggest looking at tests/*.at files for examples. > > Thanks, > - Liran >

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

2014-06-26 Thread Lori Jakab
On 6/25/14, 6:16 AM, Vasiliy Tolstov wrote: 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 fil

[ovs-discuss] Configuring HFSC on OVS

2014-06-26 Thread Slavica Tomovic
Hi to all, I am using OVS in my OpenFlow testbed and want to use some additional hfsc configuration options on the queues. I have read FAQs and there is suggested to use tc command for such purpose. However I am not sure how to use this queues later with the controller. Can I still use OF enqueue

[ovs-discuss] geneve

2014-06-26 Thread Vasiliy Tolstov
Thank you for geneve support. Does current state of geneve in ovs master sutable to replace vxlan? I simply need tunnel between some openvswitch servers to connect vm on this servers. -- Vasiliy Tolstov, e-mail: v.tols...@selfip.ru jabber: v...@selfip.ru __

[ovs-discuss] Group table for broadcasting a packet

2014-06-26 Thread Liran Schour
Hi, I want to broadcast a packet to a group of ports. I thought using group table for that. Does anyone has a simple example for doing that? Thanks, - Liran___ discuss mailing list discuss@openvswitch.org http://openvswitch.org/mailman/listinfo/discus