[multi-asic] BBR support on internal-peers for multi-asic platfroms. (#6848)

Enable BBR config allowas-in 1 for internal peers

Why I did:
To advertise BBR routes learnt via e-BGP peer in one asic/namespace to another iBGP asic/namespace via Route Reflector.
This commit is contained in:
abdosi 2021-02-25 23:15:02 -08:00 committed by Abhishek Dosi
parent 16e11cf875
commit fbc3386825
5 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,7 @@
!
neighbor {{ neighbor_addr }} next-hop-self force
!
neighbor {{ neighbor_addr }} allowas-in 1
neighbor {{ neighbor_addr }} activate
exit-address-family
!

View File

@ -9,6 +9,7 @@
neighbor 10.10.10.10 route-map FROM_BGP_INTERNAL_PEER_V4 in
neighbor 10.10.10.10 route-reflector-client
neighbor 10.10.10.10 next-hop-self force
neighbor 10.10.10.10 allowas-in 1
neighbor 10.10.10.10 activate
exit-address-family
!

View File

@ -9,6 +9,7 @@
neighbor fc::10 route-map FROM_BGP_INTERNAL_PEER_V6 in
neighbor fc::10 route-reflector-client
neighbor fc::10 next-hop-self force
neighbor fc::10 allowas-in 1
neighbor fc::10 activate
exit-address-family
!

View File

@ -7,6 +7,7 @@
address-family ipv4
neighbor 10.10.10.10 peer-group INTERNAL_PEER_V4
neighbor 10.10.10.10 next-hop-self force
neighbor 10.10.10.10 allowas-in 1
neighbor 10.10.10.10 activate
exit-address-family
!

View File

@ -7,6 +7,7 @@
address-family ipv6
neighbor fc::10 peer-group INTERNAL_PEER_V6
neighbor fc::10 next-hop-self force
neighbor fc::10 allowas-in 1
neighbor fc::10 activate
exit-address-family
!