Skip to content

Commit

Permalink
Updating porting guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivani-gslab committed Oct 1, 2024
1 parent 7b354f4 commit 69d83df
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ansible_collections/arista/avd/docs/porting-guides/5.x.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,24 @@ To retain the old configuration with no TCAM profile the default platform settin
+ non_mlag: 1020
```

### Default value for OSPF area has been set to `0.0.0.0`

With AVD version 5.0.0, the default value for OSPF area has been set to "0.0.0.0" to align with how EOS interprets the value "0".

```diff
ethernet_interfaces:
- name: Ethernet3.10
peer_type: l3_interface
ip_address: 10.0.1.1/29
shutdown: false
description: C1_L3_SERVICE
encapsulation_dot1q:
vlan: 10
vrf: C1_VRF1
- ospf_area: '0'
+ ospf_area: 0.0.0.0
```

### Structured Configuration merged from SVI profiles is now deep merged instead of replaced

When merging `structured_config` from SVI profiles and parent profiles, AVD versions below 5.0.0 replaced the entire `structured_config` object with the most specific definition of `structured_config`.
Expand Down
4 changes: 4 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 @@ -160,6 +160,10 @@ Starting AVD 5.0.0, the default MTU for Dps1, WAN HA and WAN p2p uplink interfac

See the [porting guide](../porting-guides/5.x.x.md#default-mtu-value-changed-from-9214-to-9194-for-dps1-wan-ha-and-wan-p2p-uplink-interfaces) for details.

#### Default value for OSPF area has been set to "0.0.0.0"

See the [porting guide](../porting-guides/5.x.x.md#default-value-for-ospf-area-has-been-set-to-0000) for details.

#### Only render IGMP snooping querier version and address when enabled

Starting from AVD 5.0.0, the `ip igmp snooping vlan` command for version and address is rendered only when the IGMP snooping querier is enabled.
Expand Down

0 comments on commit 69d83df

Please sign in to comment.