SDN BGP Controller - How to tune BFD parameters?

EduFrazao

New Member
Aug 1, 2024
3
0
1
Hi. I need to tune some parameters of BFD session with my eBGP Peers, but I can't find such option on the GUI.
I've tried to write it on the overrides template, but it was ignored. Only overrides on the router bgp session was applied.

My override file:

Code:
#/etc/frr/frr.conf.local
bfd
 peer 10.1.32.4
  detect-multiplier 4
  receive-interval 100
  transmit-interval 100
 !
 peer 10.1.34.4
  detect-multiplier 4
  receive-interval 100
  transmit-interval 100
 !
exit
!
router bgp 42004001
 no neighbor VTEP bfd
 address-family ipv4 unicast
  neighbor BGP allowas-in 1
 exit-address-family
 !
 address-family l2vpn evpn
  neighbor VTEP allowas-in 1
 exit-address-family
!

I'm doing something wrong?
Thanks
 
Sadly this is currently not possible because we only merge "sections" that we also create. So bfd sections won't be added -- we're working on this.