Re: [vpp-dev] Support for VPP compilation in offline mode

2023-01-04 Thread jiangwenwu2014
Hi, You can "make install-dep" and "make install-ext-deps" downloads can save to local, At 2023-01-04 03:43:53, "Chinmaya Aggarwal" wrote: Hi, Currently as part of VPP compilation, there are commands such as "make install-dep" and "make install-ext-deps" which downloads

[vpp-dev] srv6 control plane

2023-01-04 Thread Christopher Adigun
Hi, Please I will like to know if anyone has a way implementing srv6 control plane just like the way Linux Control plane plugin works. An example will be syncing srv6 entries that are advertised via BGP (FRR,gobgp,exabgp etc) to the vpp dataplane. Thanks -=-=-=-=-=-=-=-=-=-=-=- Links: You

Re: [vpp-dev] veth alternative in VPP

2023-01-04 Thread Neale Ranns
I’d suggest a pipe, each end can be in a different VRF. See src/scripts/vnet/ipsec for a config example. /neale From: vpp-dev@lists.fd.io on behalf of Benoit Ganne (bganne) via lists.fd.io Date: Thursday, 5 January 2023 at 00:18 To: vpp-dev@lists.fd.io Subject: Re: [vpp-dev] veth

Re: [vpp-dev] Slow VPP performance vs. DPDK l2fwd / l3wfd

2023-01-04 Thread Matthew Smith via lists.fd.io
Did you see my other suggestion about increasing buffers-per-numa? Your NICs were missing some RX's because no buffers were available. Setting the main heap page size to use either 2M or 1G hugepages instead of using default 4k pages will probably help too. -Matt On Tue, Jan 3, 2023 at 1:37 PM

Re: [vpp-dev] veth alternative in VPP

2023-01-04 Thread Benoit Ganne (bganne) via lists.fd.io
> Hi, I am looking for veth pair alternative in VPP. I want to pass traffics > between two VRFs and I want them to be processed as input packets to an > interface( to use NAT or other ip features), so route leakage is not gonna > help. Also, since I'm using one instance of VPP with multiple VRFs,

[vpp-dev] veth alternative in VPP

2023-01-04 Thread Mahdi Varasteh
Hi, I am looking for veth pair alternative in VPP. I want to pass traffics between two VRFs and I want them to be processed as input packets to an interface( to use NAT or other ip features), so route leakage is not gonna help. Also, since I'm using one instance of VPP with multiple VRFs, using

Re: [vpp-dev] Support for VPP compilation in offline mode

2023-01-04 Thread Zhang, Fan
Hi Chinmaya, In VPP's Makefile (vpp/Makefile at master · FDio/vpp · GitHub ) line 65 to 182 contains the necessary packages to be installed for compiling vpp (depends on your OS). You may  install these packages on your host manually before