[vpp-dev] query on use_pthread in startup.conf

2018-05-17 Thread bindiya Kurle
Hi all, I am tried to use use_pthread in startup.conf.but still it takes Tried following option for creating multiple threads cpu { use-pthreads main-core 1 corelist-workers 2,3 } With this config , code always hit else part of below config , file : src/vlib/threads.c

Re: [EXT] [vpp-dev] Marvell's AI from last call

2018-05-17 Thread Nitin Saxena
Hi Damjan, This request was discussed in FD.io ARM call in order to optimize dpdk-input node for ARM platforms. Macchiatobin is one common platform where almost all ARM stakeholders are working on and profiling data/details can be easily shared among them. Thanks, Nitin On Wednesday 16 May

[vpp-dev] How to create a CSIT topology file?

2018-05-17 Thread 汤超
cd ${CSIT_DIR} export PYTHONPATH=$(pwd) ./resources/tools/topology/update_topology.py -f -v -o topologies/available/vagrant_pci.yaml topologies/available/vagrant.yaml According to this step, I have the following error: (env) root@ubuntu:/csit# ./resources/tools/topology/update_topology.py -f -v -o

[vpp-dev] Highly available VPP

2018-05-17 Thread Glaza
Hi I am using vpp 18.04 with lacp and router plugin and looking for a way to make it highly available. Does anyone now how to achieve this, for example using keepalived+VRRP? Thanks, Tom -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#9315):

[vpp-dev] router plugin improvements

2018-05-17 Thread Glaza
Hi At the beginning I would like to thank for router plugin. Actually my systemd service to start vpp looks like: ExecStart=/usr/bin/vpp -c /etc/vpp/startup.conf ExecStartPost=-/bin/sleep 5 ExecStartPost=-/sbin/ip link set dev vpp0 up ExecStartPost=-/sbin/ip address add 10.0.0.14/30 dev vpp0 Is

Re: [vpp-dev] router plugin improvements

2018-05-17 Thread Wang
Hi Tom, You can enable router-plugin by adding "enable tap-inject" in the startup config file. unix { nodaemon log /var/log/vpp/vpp.log full-coredump cli-listen /run/vpp/cli.sock gid vpp exec /vpp.init } in vpp.init you can write "enable tap-inject" Thanks Chad 2018-05-17 2:11 GMT

Re: [vpp-dev] router_plugin

2018-05-17 Thread Wang
I will take a look at it. Thanks 2018-05-17 0:12 GMT-04:00 Demian Pecile : > Hi Wang trying last version. > I have cannot find -lrtnl error. > > Any idea ? > > its working with last versions ? > > Arch for platform 'vpp' is native > Finding source for router > Makefile fr

Re: [vpp-dev] router_plugin

2018-05-17 Thread Demian Pecile
I was able to solve copying the libs to linux lib folder. But not working fine yet, unable to route traffic (when load tap-inject, traffic stop passing), and now only see cpp0, cpp1, and vpp2 for local0. Deleteing all the folders and compiling again. Thanks Demian > El 17 may. 2018, a las 10:4

Re: [vpp-dev] [csit-dev] How to create a CSIT topology file?

2018-05-17 Thread Vratko Polak -X (vrpolak - PANTHEON TECHNOLOGIES at Cisco)
0. You do not need to be root, so do not be root. 1. Create and activate a virtualenv to avoid polluting your system. 2. cd ${CSIT_DIR} && pip install -r requirements.txt 3. Now python (2.7) specific steps should work. We (CSIT) should probably continue the work [0] in progress. Vratko. [0] http

[vpp-dev] tap-inject - router plugin and vlans

2018-05-17 Thread Demian Pecile
Hi I need to route vlans using the router plugin and tap-inject. somebody know if this is supported ? When I assign ip address in the quagga sample, I can’t see the IP in vpp if I use vlans. And the traffic is not going anywhere. Any idea how to use vlans a

Re: [EXT] [vpp-dev] Marvell's AI from last call

2018-05-17 Thread Damjan Marion
Fine if this is going to stay out of vpp repo, as it is duplicate functionality and also it will make dpdk plugin more messy due to external dependencies on musdk. Will be better to do that work with some NIC which have native DPDK drivers, not wrapper like in musdk case... -- Damjan > On 17

Re: [vpp-dev] NOTIFICATION: FD.io Maintenance

2018-05-17 Thread Vanessa Valderrama
Sonar maintenance will begin in 15 minutes On 05/16/2018 09:12 AM, Vanessa Valderrama wrote: > > Reminder of Sonar maintenance today > > > On 04/26/2018 10:02 AM, Vanessa Valderrama wrote: >> >> *Sonar 2018-05-16 - **2100 UTC to 0100 UTC* >> >> Sonar will be unavailable for approximately 2-3 hour

Re: [vpp-dev] Static ARP Flag Question

2018-05-17 Thread Jon Loeliger
On Tue, May 15, 2018 at 8:53 PM, John Lo (loj) wrote: > Hi Jon, > > > > I am in the process of fixing up something in handling of IP neighbor > pools. I can include fixing the S/D bits of ARP flag in my patch, if you > are not in a hurry to have this fixed. > > > > Regards, > > John > John, He

Re: [vpp-dev] NOTIFICATION: FD.io Maintenance

2018-05-17 Thread Vanessa Valderrama
Thank you to Anton for completing all the AWS moves for FD.io.  The Sonar move is complete. On 05/17/2018 02:44 PM, Vanessa Valderrama wrote: > > Sonar maintenance will begin in 15 minutes > > > On 05/16/2018 09:12 AM, Vanessa Valderrama wrote: >> >> Reminder of Sonar maintenance today >> >> >> O

[vpp-dev] L2fib entry not updating for BVI

2018-05-17 Thread Gudimetla, Leela Sankar
Hi, I have created a loopback interface (with MAC address and instance ) and added it to a bridge as BVI. I see the interface MAC address is getting added to l2fib since it is a BVI. But when I change the interface MAC address (loopback’s), I don’t see the corresponding l2fib entry is not getti

[vpp-dev] How to actively close the client connections in http server? #vnet

2018-05-17 Thread muziding
Hi I want to make the example of http server  actively close the client connection, instead of waiting for the client to close connection, after http server has responded  to the client request. What should I do?

Re: [vpp-dev] How to actively close the client connections in http server? #vnet

2018-05-17 Thread Florin Coras
That http server is just example code that executes the contents of a get request as a cli commands within a spawned vpp process. So, if you want to disconnect _after_ the the reply is sent, call vnet_disconnect_session () at the end of http_cli_process. Florin > On May 17, 2018, at 10:52 PM,