-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat(eos_designs): add support for 7300X3 in default platforms (#1863)
- Loading branch information
Showing
7 changed files
with
74 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
ansible_collections/arista/avd/roles/eos_designs/defaults/main/default-platform-settings.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Set platform specific settings, TCAM profile and reload delay. | ||
# The reload delay values should be reviewed and tuned to the specific environment. | ||
# Recommended default values for Jericho based platform, VEOS and all other platforms default tag. | ||
default_platform_settings: | ||
- platforms: ['default'] | ||
reload_delay: | ||
mlag: 300 | ||
non_mlag: 330 | ||
feature_support: | ||
# "queue-monitor length notify" is only valid for R-Series so should be disabled on default platform. | ||
queue_monitor_length_notify: false | ||
- platforms: ['7280R', '7280R2'] | ||
tcam_profile: vxlan-routing | ||
lag_hardware_only: true | ||
reload_delay: | ||
mlag: 900 | ||
non_mlag: 1020 | ||
- platforms: ['7280R3'] | ||
reload_delay: | ||
mlag: 900 | ||
non_mlag: 1020 | ||
- platforms: ['7500R', '7500R2'] | ||
tcam_profile: vxlan-routing | ||
lag_hardware_only: true | ||
management_interface: Management0 | ||
reload_delay: | ||
mlag: 900 | ||
non_mlag: 1020 | ||
- platforms: ['7500R3', '7800R3'] | ||
management_interface: Management0 | ||
reload_delay: | ||
mlag: 900 | ||
non_mlag: 1020 | ||
- platforms: ['7368X4'] | ||
management_interface: Management0 | ||
reload_delay: | ||
mlag: 300 | ||
non_mlag: 330 | ||
- platforms: ['7300X3'] | ||
management_interface: Management0 | ||
reload_delay: | ||
mlag: 1200 | ||
non_mlag: 1320 | ||
- platforms: ['VEOS', 'VEOS-LAB', 'vEOS', 'vEOS-lab'] | ||
reload_delay: | ||
mlag: 300 | ||
non_mlag: 330 | ||
feature_support: | ||
queue_monitor_length_notify: false | ||
interface_storm_control: false | ||
- platforms: ['CEOS', 'cEOS', 'ceos', 'cEOSLab'] | ||
management_interface: Management0 | ||
reload_delay: | ||
mlag: 300 | ||
non_mlag: 330 | ||
feature_support: | ||
queue_monitor_length_notify: false | ||
interface_storm_control: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters