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 66005
neighbor 10.0.15.4 remote-as 65500
neighbor 10.0.15.4 send-community extended
neighbor 10.0.15.4 maximum-routes 12000 warning-only
!
address-family ipv4
neighbor 10.0.15.0 activate
neighbor 10.0.15.4 activate
!
redistribute connected
redistribute learned
!
end

View File

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

View File

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

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

View File

@@ -219,6 +219,14 @@ router bgp 65500
neighbor 10.0.15.3 remote-as 66005
neighbor 10.0.15.3 send-community extended
neighbor 10.0.15.3 maximum-routes 12000 warning-only
!
address-family ipv4
neighbor 10.0.14.1 activate
neighbor 10.0.14.3 activate
neighbor 10.0.15.1 activate
neighbor 10.0.15.3 activate
neighbor 10.0.200.131 activate
!
redistribute connected
!
end

View File

@@ -219,6 +219,14 @@ router bgp 65500
neighbor 10.0.15.7 remote-as 66005
neighbor 10.0.15.7 send-community extended
neighbor 10.0.15.7 maximum-routes 12000 warning-only
!
address-family ipv4
neighbor 10.0.14.5 activate
neighbor 10.0.14.7 activate
neighbor 10.0.15.5 activate
neighbor 10.0.15.7 activate
neighbor 10.0.200.130 activate
!
redistribute connected
!
end