Skip to content

Commit

Permalink
[multi-asic] BBR support on internal-peers for multi-asic platfroms. (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
abdosi committed Mar 2, 2021
1 parent 16e11cf commit fbc3386
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
!
neighbor {{ neighbor_addr }} next-hop-self force
!
neighbor {{ neighbor_addr }} allowas-in 1
neighbor {{ neighbor_addr }} activate
exit-address-family
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
!
Expand Down

0 comments on commit fbc3386

Please sign in to comment.