[vpp-dev] VPP started via External APK

2021-12-09 Thread Akash S R
Hi All, I am calling main of vpp using my c code APK. But when I enter vppctl and try show commands, either it is empty like below : DBGvpp# show int DBGvpp# show int Or it is saying as below if interactive is set in startup.conf and without nodaemon : DBGvpp# show int vlib_cli_output:116:

Re: [vpp-dev] nginx crash issue with vpp hoststack #vpp-hoststack #vppcom

2021-12-09 Thread mercury noah
Hi Florin, Thank you so much for helping us to have a better understanding of the issue. Thanks, Mercury -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20615): https://lists.fd.io/g/vpp-dev/message/20615 Mute This Topic:

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

2021-12-09 Thread Sastry Sista
Hi Neale, So, you suggest bind over other way. Then,  I need to do following for bind of a prefix? 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 eos via ip4-lookup-in-table 2 vppctl mpls local-label 17

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

2021-12-09 Thread Neale Ranns
From: vpp-dev@lists.fd.io on behalf of Sastry Sista via lists.fd.io Date: Thursday, 9 December 2021 at 02:17 To: vpp-dev@lists.fd.io Subject: Re: [vpp-dev] MPLS: fib table 1 display issue #mpls Hi Neale, Thank you for detailed explanation. Its working fine by providing

Re: [vpp-dev] nginx crash issue with vpp hoststack #vpp-hoststack #vppcom

2021-12-09 Thread Florin Coras
Hi Mercury, That is indeed the reason. Bitmaps as opposed to vectors/pools rely on inline functions so if they grow the api consumer needs to update its pointer to the new underlying data structure. As for how to debug these, unfortunately I don’t have a good recipe. In this particular

Re: [vpp-dev] Question on api-trace

2021-12-09 Thread Dave Barach
See https://lists.fd.io/g/vpp-dev/message/20578 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20611): https://lists.fd.io/g/vpp-dev/message/20611 Mute This Topic: https://lists.fd.io/mt/87611500/21656 Group Owner: vpp-dev+ow...@lists.fd.io

Re: [vpp-dev] Question on api-trace

2021-12-09 Thread Dave Barach
See https://lists.fd.io/g/vpp-dev/message/20578?p=%2C%2C%2C20%2C0%2C0%2C0%3A%3Arecentpostdate%2Fsticky%2C%2Capi+trace%2C20%2C2%2C0%2C87467150 From: vpp-dev@lists.fd.io On Behalf Of Akash S R Sent: Thursday, December 9, 2021 8:26 AM To: vpp-dev ; Dave Barach ; Ole Troan Subject: [vpp-dev]

Re: [vpp-dev] Question on api-trace

2021-12-09 Thread Dave Barach
See https://lists.fd.io/g/vpp-dev/message/20578 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20609): https://lists.fd.io/g/vpp-dev/message/20609 Mute This Topic: https://lists.fd.io/mt/87611500/21656 Group Owner: vpp-dev+ow...@lists.fd.io

Re: [vpp-dev] Ping reply packets reaching vnet interface with correct vlan tags are not seen in VPP for VLAN interface.

2021-12-09 Thread Chinmaya Aggarwal
Hi, We found another similar kind of an issue https://lists.fd.io/g/vpp-dev/topic/74220020#16397 But there is no resolution for it as of now. Thanks and Regards, Chinmaya Agarwal. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20608):

[vpp-dev] Question on api-trace

2021-12-09 Thread Akash S R
Hello, I have a query on api-trace. How to add trace to an api before configuring via vppctl, lets say for eg. I am creating a gtpu tunnel via vppctl, How to see the complete API Trace, once the command is entered. Is there any support on VPP for the same, If so please help on How to do that.

[vpp-dev] About encap-vrf-id in GTPU

2021-12-09 Thread Akash S R
Hello, Just a quick question on encap-vrf-id parameter during gtpu tunnel add. Why is this parameter included and what is the use of this ? /Akash -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20606): https://lists.fd.io/g/vpp-dev/message/20606

Re: [vpp-dev] nginx crash issue with vpp hoststack #vpp-hoststack #vppcom

2021-12-09 Thread mercury noah
Hi Florin, We tried the patch and it works for us as the jira ticket metioned, thanks a lot, Sorry for replying so late, cuz I spent some time to find the reason(clib_bitmap_set().clib_bitmap_vec_validate()), It would be more helpful if you would like to share some ideas about how to find it