Skip to content

Commit

Permalink
adding docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vibhu-gslab committed Sep 20, 2024
1 parent f8086b9 commit 127da22
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ansible_collections/arista/avd/docs/porting-guides/4.x.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,24 @@ l3leaf:
inband_mgmt_description: L2LEAF_INBAND_MGMT
```

### Prevent redistributing the MLAG peer link subnets into BGP for all VRFs by default

In AVD 4.0.0, the default value of `redistribute_mlag_ibgp_peering_vrfs` was `true`.
In AVD 5.0.0, the default value of `redistribute_mlag_ibgp_peering_vrfs` is changed to `false`

To retain the previous behaviour, set the value to `true`:

```diff
tenant_a:
- name: Tenant_A
+ redistribute_mlag_ibgp_peering_vrfs: true
<...>
vrfs:
- name: Tenant_A_OP
+ redistribute_mlag_ibgp_peering_vrfs: true
<...>
```

## Changes to role `arista.avd.eos_cli_config_gen`

### Non port-channel related config is no longer ignored on port-channel member ethernet_interfaces
Expand Down
6 changes: 6 additions & 0 deletions ansible_collections/arista/avd/docs/release-notes/5.x.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ With AVD version 5.0.0 the valid values for `wan_mode` key are now `legacy-autov

See the [porting guide](../porting-guides/5.x.x.md#wan-mode-autovpn-renamed-wan-mode-legacy-vpn) for details.

### Prevent redistributing the MLAG peer link subnets into BGP for all VRFs by default

Starting AVD 5.0.0, default value of `redistribute_mlag_ibgp_peering_vrfs` changed to `false`.

See the [porting guide](../porting-guides/5.x.x.md#prevent-redistributing-the-mlag-peer-link-subnets-into-bgp-for-all-vrfs-by-default)

### Other breaking or behavioral changes

Breaking changes may require modifications to the inventory or playbook. See the [Porting guide for AVD 5.x.x](../porting-guides/5.x.x.md)
Expand Down

0 comments on commit 127da22

Please sign in to comment.