Hi, I'm using VPP as data plane with router plugin installed and FRR as control plane. I set a new static ip route and check that it is inserted in both linux kernel and vpp (sh ip fib) but then I delete this route by FRR and check that this route is deleted from kernel and FRR but it is still in VPP.
======================================== to add it: FRR: >> ip route 1.2.3.4/32 4.4.4.4 label 70 VPP: >> show ip fib (it shows the new route) then to delete it: FRR: >> no ip route 1.2.3.4/32 4.4.4.4 label 70 VPP: >> show ip fib (the added route is still there!!!) ======================================== Questions: Q1) Is it a bug?? if not, why is n't it deleted?? Q2) it seems that router plugin does not support mpls, because label 70 is not shown in IP fib. is it so? Thanks