Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(eos_designs): Add other CCS (Campus) platforms for PoE support #3374

Merged
merged 6 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
if TYPE_CHECKING:
from .shared_utils import SharedUtils

# Campus platforms are separated out by their ability to support "trident_forwarding_table_partition".
# This is required for EVPN multicast, currently only supported on all 720XP platforms.
# This command is not supported on 710P or 722XP platforms. 720D range has some devices that support this
# and others that don't, but I've grouped them all together as none of them support EVPN multicast.
DEFAULT_PLATFORM_SETTINGS = [
{
"platforms": ["default"],
Expand All @@ -32,7 +36,7 @@
},
},
{
"platforms": ["720XP", "722XP"],
"platforms": ["720XP"],
"trident_forwarding_table_partition": "flexible exact-match 16384 l2-shared 98304 l3-shared 131072",
"reload_delay": {
"mlag": 300,
Expand All @@ -41,7 +45,7 @@
"feature_support": {"queue_monitor_length_notify": False, "poe": True},
},
{
"platforms": ["750", "755", "758"],
"platforms": ["750", "755", "758", "720D", "722XP", "710P"],
carlbuchmann marked this conversation as resolved.
Show resolved Hide resolved
jonxstill marked this conversation as resolved.
Show resolved Hide resolved
"reload_delay": {
"mlag": 300,
"non_mlag": 330,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,34 @@
queue_monitor_length_notify: false
platforms:
- 7050X3
reload_delay:
mlag: 300
non_mlag: 330
trident_forwarding_table_partition: flexible exact-match 16384 l2-shared 98304 l3-shared
131072
- feature_support:
poe: true
queue_monitor_length_notify: false
platforms:
- 720XP
- 722XP
reload_delay:
mlag: 300
non_mlag: 330
trident_forwarding_table_partition: flexible exact-match 16384 l2-shared 98304 l3-shared
131072
- feature_support:
poe: true
queue_monitor_length_notify: false
platforms:
- '750'
- '755'
- '758'
- 720D
- 722XP
- 710P
reload_delay:
mlag: 300
non_mlag: 330
- lag_hardware_only: true
platforms:
- 7280R
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,35 @@ keys:
non_mlag: 330
- platforms:
- 7050X3
feature_support:
queue_monitor_length_notify: false
reload_delay:
mlag: 300
non_mlag: 330
trident_forwarding_table_partition: flexible exact-match 16384 l2-shared 98304 l3-shared 131072
- platforms:
- 720XP
- 722XP
feature_support:
poe: true
queue_monitor_length_notify: false
reload_delay:
mlag: 300
non_mlag: 330
trident_forwarding_table_partition: flexible exact-match 16384 l2-shared 98304 l3-shared 131072
- platforms:
- '750'
- '755'
- '758'
- 720D
carlbuchmann marked this conversation as resolved.
Show resolved Hide resolved
jonxstill marked this conversation as resolved.
Show resolved Hide resolved
- 722XP
- 710P
feature_support:
poe: true
queue_monitor_length_notify: false
reload_delay:
mlag: 300
non_mlag: 330

- platforms:
- 7280R
- 7280R2
Expand Down
Loading