[ovs-discuss] I can't find a way to install OVS on Android.

2018-04-16 Thread 박준혁
I can't install OVS on Android My phone uses ARM64. The kernel is a 3.10.73-gad82c6620de I using this configure options. but this has error. ./configure \ -with-linux=/home/ppp/msm \ KARCH=arm64 \ --prefix=/home/ppp/crs_out/out \ --host=aarch64-linux-android \

Re: [ovs-discuss] OVS sends ARP request to the controller also broadcasts ARP request

2018-04-16 Thread Sh j
The problem is that OVS first forwards ARP request(packet_in) to the controller and all packet_in messages include (ARP). it seems that node is waiting for the ARP reply and then it will send ICMP to the controller. But I think in the mentioned topology, the first packet_in must include ICMP and

Re: [ovs-discuss] OVN vm on vlan network using geneve tunnel for external traffic

2018-04-16 Thread Ben Pfaff
On Fri, Apr 13, 2018 at 09:22:44PM -0400, Russell Bryant wrote: > On Fri, Apr 13, 2018 at 9:01 PM, Russell Bryant wrote: > > On Fri, Apr 13, 2018 at 5:27 PM, Ben Pfaff wrote: > >> On Wed, Apr 11, 2018 at 07:44:25PM +0530, Anil Venkata wrote: > >>> vm created on a

[ovs-discuss] NSH related questions

2018-04-16 Thread Ashish Varma
Hi Jan / Yi Yang, We, at VMware, are working on integrating partner services on NSX using NSH support on OVS. It would be very helpful to understand the current NSH/SFC adaptation trend and deployment scenarios happening in the industry. Regarding this, we have few questions and it would be

Re: [ovs-discuss] Questions about creating new controller request and switching reply

2018-04-16 Thread Ben Pfaff
Please don't drop the mailing list. OVS is multithreaded. It does handle multiple requests at a time. On Tue, Apr 17, 2018 at 02:45:43AM +0800, 林志仁 wrote: > Thanks for your feedback. Yes, i want to create flow entry statistics > triggers. > > In "ofproto.c", " ofproto set threads()" means

Re: [ovs-discuss] OVS sends ARP request to the controller also broadcasts ARP request

2018-04-16 Thread Ben Pfaff
The way you describe the problem confuses me. As I read your description, when OVS processes an ICMP packet, it forwards an ARP packet to the controller. OVS processes one packet at a time in an almost-stateless way, so this is not really possible: as OVS processing an ICMP packet, it only

Re: [ovs-discuss] There's no available (non-isolated) pmd thread on numa node 0, Expect reduced performance.

2018-04-16 Thread Alan Kayahan
Hi Ian, >How are you starting the VM? QEMU or Libvirt? It is a docker container. I pass the following EAL parameters to the app that is running within echo $EAL_PARAMS -l 1 --master-lcore 1 -n 1 -m 1024 --file-prefix=nf1 --no-pci

Re: [ovs-discuss] Questions about creating new controller request and switching reply

2018-04-16 Thread Ben Pfaff
On Tue, Apr 17, 2018 at 01:53:15AM +0800, 林志仁 wrote: > I want to create a request. When the switch receives this request, it will > continuously monitor the flow table until the flow table has an exception. > For example, one flow has a large number of packets count in few seconds, > then switch

Re: [ovs-discuss] Questions about creating new controller request and switching reply

2018-04-16 Thread 林志仁
I want to create a request. When the switch receives this request, it will continuously monitor the flow table until the flow table has an exception. For example, one flow has a large number of packets count in few seconds, then switch will send reply to controller. In the monitoring time, switch

Re: [ovs-discuss] There's no available (non-isolated) pmd thread on numa node 0, Expect reduced performance.

2018-04-16 Thread Stokes, Ian
Hi Alan, How are you starting the VM? QEMU or Libvirt? The dpdk vhost ports are associated with the numa node the virtqueue memory has been allocated on initially. So if running the VM you may want to use taskset –c with QEMU to allocate cores associated with numa node 1 to run the VM. If

Re: [ovs-discuss] Questions about creating new controller request and switching reply

2018-04-16 Thread Ben Pfaff
On Sun, Apr 15, 2018 at 08:35:23PM +0800, 林志仁 wrote: > I want to create a request. When the switch receives this request, it will > continuously monitor the flow table until it has the behavior I set, What kind of behavior do you mean? > and it will send a reply to the controller. > > Would

[ovs-discuss] Questions about creating new controller request and switching reply

2018-04-16 Thread 林志仁
I want to create a request. When the switch receives this request, it will continuously monitor the flow table until it has the behavior I set, and it will send a reply to the controller. Would like to ask this monitoring time, switch can also accept other controller request?