Skip to content

Commit

Permalink
Updating documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laxmikant Chintakindi authored and Laxmikant Chintakindi committed May 27, 2024
1 parent 79d6511 commit 5eb9908
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ ASN Notation: asplain
| update wait-install |
| no bgp default ipv4-unicast |
| no bgp default ipv4-unicast transport ipv6 |
| no bgp redistribute-internal |
| distance bgp 20 200 200 |
| maximum-paths 32 ecmp 32 |
| bgp route-reflector preserve-attributes always |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ ASN Notation: asplain
| maximum-paths 2 ecmp 2 |
| bgp default ipv4-unicast |
| bgp default ipv4-unicast transport ipv6 |
| no bgp redistribute-internal |

#### Router BGP Peer Groups

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ ASN Notation: asplain
| graceful-restart restart-time 300 |
| graceful-restart |
| maximum-paths 2 ecmp 2 |
| no bgp redistribute-internal |

#### Router BGP Peer Groups

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ ASN Notation: {{ router_bgp.as_notation | arista.avd.default('asplain') }}
{% elif router_bgp.bgp.default.ipv4_unicast_transport_ipv6 is arista.avd.defined(false) %}
| no bgp default ipv4-unicast transport ipv6 |
{% endif %}
{% if router_bgp.bgp.redistribute_internal is arista.avd.defined(false) %}
| no bgp redistribute-internal |
{% endif %}
{% if router_bgp.distance.external_routes is arista.avd.defined %}
{% set distance_cli = "distance bgp " ~ router_bgp.distance.external_routes %}
{% if router_bgp.distance.internal_routes is arista.avd.defined and router_bgp.distance.local_routes is arista.avd.defined %}
Expand Down

0 comments on commit 5eb9908

Please sign in to comment.