Fix VRF gold BGP IPv4 activation on cores and border leafs

With 'no bgp default ipv4-unicast' set at the router level, VRF gold
eBGP/iBGP neighbors were establishing but not exchanging any IPv4
prefixes, breaking inter-fabric transit between DC and Campus. Add an
explicit 'address-family ipv4' block with 'neighbor X activate' under
'vrf gold' on both cores and all four border leafs.

Also drop 'redistribute learned' from the border leaf VRF gold stanza:
it is not a valid command in that context and was silently stripped by
EOS.
This commit is contained in:
2026-04-23 10:26:41 +00:00
parent f7c44bc0fd
commit cb74dd118f
6 changed files with 36 additions and 4 deletions

View File

@@ -228,7 +228,11 @@ router bgp 65005
neighbor 10.0.14.6 remote-as 65500
neighbor 10.0.14.6 send-community extended
neighbor 10.0.14.6 maximum-routes 12000 warning-only
!
address-family ipv4
neighbor 10.0.14.2 activate
neighbor 10.0.14.6 activate
!
redistribute connected
redistribute learned
!
end