diff --git a/ansible/module_utils/port_utils.py b/ansible/module_utils/port_utils.py index 6218ce8fa8a..89672ec190d 100644 --- a/ansible/module_utils/port_utils.py +++ b/ansible/module_utils/port_utils.py @@ -221,6 +221,9 @@ def get_port_alias_to_name_map(hwsku, asic_id=None): port_alias_to_name_map["twentyfiveGigE0/%d" % i] = "Ethernet%d" % i for i in range(49,57): port_alias_to_name_map["hundredGigE0/%d" % (i-48)] = "Ethernet%d" % i + elif hwsku == "RA-B6910-64C": + for i in range(1,65): + port_alias_to_name_map["hundredGigE%d" % i] = "Ethernet%d" % i else: for i in range(0, 128, 4): port_alias_to_name_map["Ethernet%d" % i] = "Ethernet%d" % i