[ovs-discuss] OFPMP_FLOW_STATS not supported?

2019-11-14 Thread Martin Frlin
I am sending flow stats message to the switch but I get error in response. Am I doing something wrong or are flow stats really unsupported? 1. EventOFPErrorMsg received. 2. version=0x6, msg_type=0x1, msg_len=0x4c, xid=0xee7e7eca 3. `-- msg_type: OFPT_ERROR(1) 4.

Re: [ovs-discuss] OVS-bridges Troubleshooting

2019-11-14 Thread Flavio Leitner
On Thu, 14 Nov 2019 14:38:03 +0200 aeris wrote: > about flows - maybe this output would be better - > >  br-int(ovs-bridge3) >  cookie=0x9f5f4658300163fb, duration=255211.898s, table=71, > n_packets=221, n_bytes=9282, >

Re: [ovs-discuss] problem with multiple pop_mpls

2019-11-14 Thread Adel Belkhiri
Hello again, Thanks Ahmed and Tonghao for your replies. Tonghao : IP packets are encapsulated By the MPLS protocol. After popping the inner mpls header we will find the IP header. That's why i used pop_mpls:0x800 to change the type of the ethernet frame. Ahmed : Yes. I'm working with the

Re: [ovs-discuss] ovs-vswitchd.service crashes

2019-11-14 Thread Koukal Petr
I'll add information. With hw-offload disabled, creating new instances is no problem. ovs-vsctl set Open_vSwitch. other-config: hw-offload = false We have installed kernel linux-image-generic-hwe-18.04-edge 4.18.0.16.65 Thank you for your help. Petr On 11/12/19 12:49 PM, Koukal Petr wrote:

Re: [ovs-discuss] ovs-vswitchd.service crashes

2019-11-14 Thread Koukal Petr
I'll add information. With hw-offload disabled, creating new instances is no problem. ovs-vsctl set Open_vSwitch. other-config: hw-offload = false We have installed kernel linux-image-generic-hwe-18.04-edge 4.18.0.16.65 Thank you for your help. Petr On 11/12/19 12:49 PM, Koukal Petr wrote:

Re: [ovs-discuss] OVS-bridges Troubleshooting

2019-11-14 Thread aeris
about flows - maybe this output would be better -  br-int(ovs-bridge3)  cookie=0x9f5f4658300163fb, duration=255211.898s, table=71, n_packets=221, n_bytes=9282, priority=95,arp,reg5=0x46,in_port="tapafe5cc97-46",dl_src=b2:ac:73:a2:4e:20,arp_spa=*.*.*.16 actions=resubmit(,94)  

Re: [ovs-discuss] problem with multiple pop_mpls

2019-11-14 Thread Ahmed Medhat
Hi Adel, I expect you are using the kernel datapath type which has basic support to mpls. You can use the userspace datapath typeif you need multiple mpls pushing/popping. ovs-vsctl add-br br0 -- set bridge datapath_type=netdev Best regards, Ahmed On Wed, Nov 13, 2019 at 6:46 PM Adel Belkhiri