Page MenuHomeVyOS Platform

ospf(v3): removing an interface from the OSPF process does not clear FRR configuration
Closed, ResolvedPublicBUG

Description

To reproduce:

set vrf name red table 2000
set vrf name red protocols ospf interface eth1 area 0
set vrf name red protocols ospf parameters router-id 1.1.1.1
set interfaces ethernet eth1 vrf red
commit

FRR now has an interface config

cpo@LR1.wue3# vtysh -c "show run" no-header | sed -n "/^interface eth1/,/!/p"
interface eth1
 ip ospf area 0
 ip ospf dead-interval 40
exit

Now delete the interface from the OSPF process

delete vrf name red protocols ospf interface
commit

It's still there

cpo@LR1.wue3# vtysh -c "show run" no-header | sed -n "/^interface eth1/,/!/p"
interface eth1
 ip ospf area 0
 ip ospf dead-interval 40
exit
!

Details

Version
1.4-rolling-202308070317
Is it a breaking change?
Perfectly compatible
Issue type
Bug (incorrect behavior)