Currently I am prepping the configurations as follows. So on each switch I am configuring EBGP to the 3rd party and IBGP internally. All static routes in the VRF will be redistributed into BGP. I am running BFD for fast failover. This is all under the VRF 3PARTY. DC1 to have the higher route preference for all the learned routes so that path to the 3rd Party is always primary and DC2 is secondary with a lower preference for the routes.
Does the config below look correct?
**DC1 ebgp config
bgp 65000
ipv4-family vpn-instance VRF-3PARTY
undo synchronisation
router-id 10.10.0.3
peer 10.20.0.50 as-number 65010
peer 10.20.0.50 ebgp-max-hop 3
peer 10.20.0.50 connect-interface loopback 1
peer 10.20.0.50 enable
peer 10.20.0.50 bfd enable
default local-preference 150
import-route direct
import-route connected
**DC1 ibgp config
peer 10.10.0.4 as-number 65000
peer 10.10.0.4 ebgp-max-hop 3
peer 10.10.0.4 connect-interface loopback 1
peer 10.10.0.4 enable
peer 10.10.0.4 bfd enable
**DC2 ebgp config
bgp 65000
ipv4-family vpn-instance VRF-3PARTY
undo synchronisation
router-id 10.10.0.4
peer 10.20.0.53 as-number 65010
peer 10.20.0.53 ebgp-max-hop 3
peer 10.20.0.53 connect-interface loopback 1
peer 10.20.0.53 enable
peer 10.20.0.53 bfd enable
import-route direct
import-route connected
**DC2 ibgp config
peer 10.10.0.3 as-number 65000
peer 10.10.0.3 ebgp-max-hop 3
peer 10.10.0.3 connect-interface loopback 1
peer 10.10.0.3 enable
peer 10.10.0.3 bfd enable