Re: [vpp-dev] core fump issue whren reload nginx #vpp-dev #vppcom

2022-03-10 Thread Florin Coras
Hi, Hard to say what happens there but it might be that ldp/vls (the shims on top of vcl) do not handle properly whatever nginx does when it tries to reload. In particular, if it involves an exec syscall, we probably lose state and can’t recover. As for the leak, what version of vpp/vcl are

Re: [vpp-dev] VPP interface configured under VRF is recognized as default VRF interface on FRR #vpp-dev

2022-03-10 Thread suresh vuppala
Thanks Matt and Pim. When I added routes in kernal table it started working under vrf Thanks and regards, Suresh V -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#21002): https://lists.fd.io/g/vpp-dev/message/21002 Mute This Topic:

Re: [vpp-dev] VPP interface configured under VRF is recognized as default VRF interface on FRR #vpp-dev

2022-03-10 Thread Matthew Smith via lists.fd.io
Hi Suresh, The linux-cp/linux-nl plugins will not automatically manage assignments of interfaces to a VRF/table, but you can use iproute2 commands to create a VRF and move the tap to it. Using table 1 and host interface lo5007 from your example, these commands would associate that interface with

回复: Re: [vpp-dev] route between two vrfs does not work

2022-03-10 Thread haiyan...@ilinkall.cn
Hi Filip, There comes another issue, traffic from VRF1's other interface could not be out from VRF1 interface with public ip address. how can i make this work ? add my cli command in previous message below Thanks. haiyan...@ilinkall.cn 发件人: 李海艳 发送时间: 2022-03-09 11:03 收件人: Filip Varga -X

Re: [vpp-dev] VPP interface configured under VRF is recognized as default VRF interface on FRR #vpp-dev

2022-03-10 Thread Pim van Pelt
Hoi, Multiple VPP tables (and relatedly in Linux, multiple network namespaces) are not supported in Linux Control Plane plugin. groet, Pim On Thu, Mar 10, 2022 at 3:27 AM suresh vuppala wrote: > HI VPP dev, > > I have a loop configured under a vrf 1 in VPP. I need this interface to > write

[vpp-dev] about in/out arguments in "set interface nat44 .."command

2022-03-10 Thread haiyan...@ilinkall.cn
Dear all if only want traffic from interface A to interface B done with nat44, others will be directly out from interface B, is this possible? I did the following command in vpp, but did not work nat44 forwarding enable nat44 add address set interface nat44 in A out B Thanks