Skip to content

Commit

Permalink
Feat(eos_designs): Add other CCS (Campus) platforms for PoE support (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonxstill authored Dec 21, 2023
1 parent f14bde7 commit 51296e2
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 8 deletions.
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", "720DP", "722XP", "710P"],
"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'
- 720DP
- 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'
- 720DP
- 722XP
- 710P
feature_support:
poe: true
queue_monitor_length_notify: false
reload_delay:
mlag: 300
non_mlag: 330

- platforms:
- 7280R
- 7280R2
Expand Down

0 comments on commit 51296e2

Please sign in to comment.