Skip to content

Commit

Permalink
Merge branch 'devel' into doc/custom-structured-config
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuloc authored Oct 23, 2024
2 parents 63300b0 + 3810d84 commit 23d4395
Show file tree
Hide file tree
Showing 14 changed files with 4,278 additions and 4,161 deletions.
38 changes: 38 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 @@ -401,6 +401,44 @@ It is possible to forcefully add or remove BGP configuration per VRF by setting:
enabled: <bool> # <-- New optional setting to either always or never configure BGP for the VRF
```

### Connected endpoints and network ports now renders PoE and 802.1x configuration for port-channel members and ignores PoE and 802.1x from LACP fallback individual profile

With AVD version 5.0.0, port-channel members generated from connected endpoints or `network_ports` will now include 802.1x (`dot1x`) and PoE (`poe`) configuration.
Previously, the member interface configuration only included `dot1x` or `poe` if it was defined under the port profile set in `lacp_fallback.individual.profile`.
The LACP fallback individual profiles now ignores any `dot1x` or `poe` settings.

It may be required to move the `dot1x` and `poe` settings from the fallback profile to the adapter profile:

```diff
port_profiles:
- name: MY_LACP_INDIVIDUAL_FALLBACK_PROFILE
<...>
- poe:
- <...>
- dot1x:
- <...>
- name: MY_SERVER_PROFILE
<...>
+ poe:
+ <...>
+ dot1x:
+ <...>
servers:
- name: MYSERVER1
adapters:
- <...>
profile: MY_SERVER_PROFILE
port_channel:
<...>
lacp_fallback:
mode: individual
individual:
profile: MY_LACP_INDIVIDUAL_FALLBACK_PROFILE
```

No changes are needed if the LACP fallback individual profile is the same as the adapter profile.

### Default interface descriptions are changed for more consistency

With AVD version 5.0.0, the default interface descriptions have been changed to improve consistency. The detailed changes are described in the subsections below.
Expand Down
Loading

0 comments on commit 23d4395

Please sign in to comment.