Skip to content

Commit 5bf3acc

Browse files
authored
[arista7260cx3] include port 18 and 20 as 50G breakout ports (#339)
1 parent 48264f2 commit 5bf3acc

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

ansible/library/minigraph_facts.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -462,11 +462,8 @@ def parse_xml(filename, hostname):
462462
# 100G ports
463463
s100G_ports = [ x for x in range(45, 53) ]
464464

465-
# Unsed ports are not configured:
466-
unused_ports = [18, 20]
467-
468465
# 50G ports
469-
s50g_ports = list(set(all_ports) - set(s100G_ports) - set(unused_ports))
466+
s50g_ports = list(set(all_ports) - set(s100G_ports)
470467

471468
for i in s50g_ports:
472469
port_alias_map["Ethernet%d/1" % i] = "Ethernet%d" % ((i - 1) * 4)

0 commit comments

Comments
 (0)