Re: [vpp-dev] MPLS: fib table 1 display issue #mpls

2021-12-29 Thread Sastry Sista
On Mon, Dec 13, 2021 at 08:39 AM, Sastry Sista wrote: > > Hi Neale, > I have used only these 2 below and its not crashing but "MPLS DROP DPO". > > > > vppctl ip route add table 2 1.1.1.1/32 via 107.243.21.116 > VirtualFuncEthernet0/9/0.1800 out-labels 18 > > > > vppctl mpls local-label 17

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

2021-12-29 Thread Florin Coras
Hi Jie, Inline. > On Dec 27, 2021, at 7:27 PM, Jie Deng wrote: > > Hi Florin, > > Sorry, I don't describe the CPU model comprehensively. The CPU model I use is > Intel(R) Xeon(R) CPU E5-2670 v3 @ 2.30GHz, There are two such CPUs in my > device, So it's 24 cores. Ah, okay. Nonetheless,

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

2021-12-29 Thread Neale Ranns
Hi David, Here’s some back ground on FIB graph walks: https://s3-docs.fd.io/vpp/21.10/gettingstarted/developers/fib20/graphwalks.html I can’t think of any examples similar to what you are attempting, but you could conceivably achieve it with: 1 – a pub/sub API. Similar to

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

2021-12-29 Thread David Gohberg
Hi Neale, I have a custom plugin in which I want to extract this information and I much prefer this approach. Do you have any references on how to walk the FIB graph or existing features that perform similar tasks? -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group.

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

2021-12-29 Thread Neale Ranns
Hi David, Are you hoping to get these routes from queries via the CLI/API or are you prepared to write a plugin in VPP to extract and publish this information to your control plane via new events? For the former, Stanislav’s advice is your best option. So I would suggest you consider the