[vpp-dev] VPP host stack proxy #hoststack #vpp-hoststack

2021-12-23 Thread Jie Deng
Hi Florin, Thanks for your timely reply. > > I’m doing testing with things like envoy and at 200 CPS cli is not > affected. Can be an issue related to configuration or maybe hardware. This is really caused by my environment. I did this test on the local virtual machine. When I test with a rea

[vpp-dev] Use of /etc/sysctl.d/80-vpp.conf

2021-12-23 Thread Akash S R
Hello Mates, May I know what is the use of /etc/sysctl.d/80-vpp.conf ? How to use it or is that not necessary? /Akash -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20665): https://lists.fd.io/g/vpp-dev/message/20665 Mute This Topic: https://lists

[vpp-dev] How did use JAVA API for VPP version 2106

2021-12-23 Thread Guangming
Hi, ALL I need a Java APIs for VPP to configure the interface an route. My Vpp version is 2106 I found the JVPP was not update since three years ago. I think JVPP not support the new VPP version Does anyone know the right method. Thanks Guangming -=-=-=-=-=-=-=-=-=-=-=- Links: You receiv

[vpp-dev] vlib_frame_t aux data

2021-12-23 Thread Damjan Marion via lists.fd.io
I just submitted patch which cleans vlib_frame_t allocation code and adds support for aux data. https://gerrit.fd.io/r/c/vpp/+/34798 Example use case is when node passes array of sw_if_index to next node, so next node doesn’t need to do expensive parsing of buffer metadata. It is as simple as

Re: [vpp-dev] searching for all routes that point to an attached next-hop neighbor #routing

2021-12-23 Thread David Gohberg
posting again because not sure message went through: Thanks for the quick reply Stanislav, I'm inserting hooks into the VPP control plane in order to offload certain information to an external hardware dataplane. In the case of route resolutions, I want to be able to say : "Ok, I got the arp re

Re: [vpp-dev] searching for all routes that point to an attached next-hop neighbor #routing

2021-12-23 Thread Stanislav Zaikin
Hi David, I'll answer from my perspective (maybe not 100% correct). Both your commands will create 2 paths with attached nexthop. It will source the fib path for 10.0.0.2/32 based on the "connected" path for 10.0.0.0/24 (which is a glean path on the interface GigabitEthernet2/0/1). You'd see it a

[vpp-dev] searching for all routes that point to an attached next-hop neighbor #routing

2021-12-23 Thread David Gohberg
Hello, >From reading the routing data model: https://fdio-vpp.readthedocs.io/en/latest/gettingstarted/developers/fib20/routes.html#id2 I understand that when I add a static route (using the "ip route add" command) to an attached next hop, VPP will resolve that route, which is triggered (in my cas