diff --git a/src/sonic-config-engine/minigraph.py b/src/sonic-config-engine/minigraph.py index dab011bc5d77..faa1e4acddc2 100644 --- a/src/sonic-config-engine/minigraph.py +++ b/src/sonic-config-engine/minigraph.py @@ -9,6 +9,7 @@ import subprocess from collections import defaultdict + from lxml import etree as ET from lxml.etree import QName @@ -16,7 +17,7 @@ from portconfig import get_port_config, get_fabric_port_config, get_fabric_monitor_config from sonic_py_common.interface import backplane_prefix -from sonic_py_common.multi_asic import is_multi_asic +from sonic_py_common.multi_asic import is_multi_asic, get_asic_id_from_name # TODO: Remove this once we no longer support Python 2 if sys.version_info.major == 3: @@ -24,6 +25,14 @@ else: UNICODE_TYPE = unicode +try: + if os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] == "multi_asic": + import mock + is_multi_asic = mock.MagicMock(return_value=True) +except KeyError: + pass + + """minigraph.py version_added: "1.9" author: Guohan Lu (gulv@microsoft.com) @@ -53,7 +62,7 @@ FRONTEND_ASIC_SUB_ROLE = 'FrontEnd' BACKEND_ASIC_SUB_ROLE = 'BackEnd' - +FABRIC_ASIC_SUB_ROLE = 'Fabric' dualtor_cable_types = ["active-active", "active-standby"] # Default Virtual Network Index (VNI) @@ -72,6 +81,102 @@ "MATCHES": ["SRC_IPV6", "DST_IPV6", "ETHER_TYPE", "IP_TYPE", "IP_PROTOCOL", "IN_PORTS", "L4_SRC_PORT", "L4_DST_PORT", "L4_SRC_PORT_RANGE", "L4_DST_PORT_RANGE", "ICMPV6_TYPE", "ICMPV6_CODE", "TCP_FLAGS"] } } +# Chassis card type +CHASSIS_CARD_VOQ = 'VoQ' +CHASSIS_CARD_PACKET = 'chassis-packet' +CHASSIS_CARD_FABRIC = 'Fabric' +voq_internal_intfs = ['cpu', 'recirc', 'inband'] + +def get_asic_switch_id(slot_index, asic_name): + asic_id = 0 + if slot_index is None: + return None + if asic_name is not None: + asic_id = int(asic_name[len('ASIC'):]) + switch_id = 2*(2*(int(slot_index)-1) + asic_id) + return switch_id + +def get_asic_hostname_from_asic_name(chassis_type, asic_name, hostname): + if is_multi_asic() == True and asic_name is None: + return asic_name + + if is_minigraph_for_chassis(chassis_type): + # for chassis in the minigraph the asic hostname is - + if is_multi_asic(): + asic_id = get_asic_id_from_name(asic_name) + else: + asic_id = '0' + asic_hostname = "{}-ASIC{:02d}".format(hostname, int(asic_id )) + else: + # for multi_asic pizza boxes the asic_hostname is same as asic_name + asic_hostname = asic_name + + return asic_hostname + +def get_linecard_slot_index(hostname, chassis_linecard_info): + for lc_slot, lc_name in chassis_linecard_info.items(): + if hostname.lower() == lc_name['hostname'].lower(): + return lc_slot + return None + +def get_voq_intf_attributes(ports): + voq_intf_attributes = {} + for port in ports: + role = ports.get(port, {}).get('role', None) + if role.lower() == 'inb' or role.lower() == 'rec': + core_id = None + core_port_index = None + speed = None + for k,v in ports.get(port, {}).items(): + if k.lower() == 'coreid': + core_id = v + if k.lower() == 'coreportid': + core_port_index = v + if k.lower() == 'speed': + speed = v + voq_intf_attributes.setdefault(role.lower(), {}).update({'core_id': core_id, 'core_port_index': core_port_index, 'speed' : speed}) + + return voq_intf_attributes + +def get_chassis_type_and_hostname(root, hname): + chassis_type = None + chassis_hostname = None + for child in root: + if child.tag == str(QName(ns, "MetadataDeclaration")): + devices = child.find(str(QName(ns, "Devices"))) + for device_meta in devices.findall(str(QName(ns1, "DeviceMetadata"))): + device_name = device_meta.find(str(QName(ns1, "Name"))).text + if device_name != hname: + continue + properties = device_meta.find(str(QName(ns1, "Properties"))) + for device_property in properties.findall(str(QName(ns1, "DeviceProperty"))): + name = device_property.find(str(QName(ns1, "Name"))).text + value = device_property.find(str(QName(ns1, "Value"))).text + if name == "ForwardingMethod": + chassis_type = value + if name == "ParentRouter": + chassis_hostname = value + return chassis_type, chassis_hostname + +def is_minigraph_for_chassis(chassis_type): + if chassis_type in [CHASSIS_CARD_VOQ, CHASSIS_CARD_PACKET]: + return True + return False + + +def normailize_port_map_for_chassis(asic_name, port_map): + if asic_name is None: + return port_map + + new_port_map = {} + for k,v in port_map.items(): + if asic_name.lower() in v.lower(): + v = v.split('-')[0] + if asic_name.lower() in k.lower(): + k = k.split('-')[0] + new_port_map.update({k:v}) + + return new_port_map ############################################################################### # @@ -79,6 +184,249 @@ # ############################################################################### +def parse_chassis_metadata(root,hname, lcname): + """ + Parses the chassis metadata from the XML root. + + This function iterates over the XML root to find the metadata declaration. It then extracts the device metadata, + specifically the name, properties, and slot index. If the device name matches the provided hostname or linecard name, + it extracts the total count of VoQ and the max count of cores. The function also updates a dictionary with slot indices + and corresponding hostnames. + + Args: + root: The root of the minigraph.xml. + hname (str): chassis hostname. + lcname (str): The linecard name or supervisor hostname. + + Returns: + max_num_core (int): The maximum number of cores, only appliable for voq chassis + num_voq (int): The total count of VoQ per port, only appliable for voq chassis + chassis_linecards (dict): A dictionary of slot indices and corresponding LC hostnames. + """ + chassis_linecards = {} + max_num_core = None + num_voq = None + for child in root: + if child.tag == str(QName(ns, "MetadataDeclaration")): + devices = child.find(str(QName(ns, "Devices"))) + for device_meta in devices.findall(str(QName(ns1, "DeviceMetadata"))): + slot_index = None + device_name = device_meta.find(str(QName(ns1, "Name"))).text + + properties = device_meta.find(str(QName(ns1, "Properties"))) + for device_property in properties.findall(str(QName(ns1, "DeviceProperty"))): + name = device_property.find(str(QName(ns1, "Name"))).text + value = device_property.find(str(QName(ns1, "Value"))).text + if device_name == hname or device_name == lcname: + if name == "TotalCountOfVoQ": + num_voq = value + if name == "MaxCountOfCores": + max_num_core = 64 + if name == "SlotIndex": + slot_index = value + if slot_index is not None: + chassis_linecards.update({slot_index:{'hostname':device_name}}) + + return max_num_core, num_voq, chassis_linecards + + +def parse_chassis_deviceinfo_intf_metadata(device_info, chassis_linecards_info, chassis_hwsku, num_voq, chassis_type, chassis_intf_map, voq_intf_attributes): + """ + This function iterates InterfaceMetadata for every port in the chassis and genetate the configuration for + systemport, chassis port alias and port default speeds.d. + + Args: + device_info: The XML element containing device info. + chassis_linecards_info (dict): A dictionary mapping slot indices to hostnames. + chassis_hwsku (str): The hardware SKU of the chassis. + num_voq (str): The number of VoQ. + chassis_type (str): The type of the chassis. + chassis_intf_map (dict): A dictionary mapping interface names to their properties. + voq_intf_attributes (dict): A dictionary mapping VoQ interface names to their properties. + + Returns: + system_ports (dict): A dictionary of system ports, only for voq chassis + chassis_port_alias (dict): A dictionary of chassis port aliases. + port_default_speed (dict): A dictionary of port default speeds. + """ + system_ports = {} + chassis_port_alias = {} + port_default_speed = {} + system_port_id = 1 + + interface_metadata = device_info.find(str(QName(ns, "InterfaceMetadata"))) + for interface in interface_metadata.findall(str(QName(ns1, "DeviceInterfaceMetadata"))): + linecard_name = None + asic_name = None + core_port_id = None + core_id = None + switch_id = None + slot_index = None + intf_name = interface.find(str(QName(ns1, "InterfaceName"))).text + # ignore the managment interfaces + if any(mgmt_intf in intf_name for mgmt_intf in ['Management', 'console']) == True: + continue + + if intf_name not in chassis_intf_map: + print('Warning cannot find metadata for interface {}'.format( + intf_name), file=sys.stderr) + continue + + intf_sonic_name = chassis_intf_map[intf_name].get('sonic_name', None) + if intf_sonic_name is None: + print('Warning cannot find sonic name for interface {}'.format( + intf_name), file=sys.stderr) + continue + + intf_speed = chassis_intf_map[intf_name].get('speed', None) + if intf_speed is None: + print('Warning cannot find speed for interface' % + (intf_name), file=sys.stderr) + continue + + intf_properties = interface.find(str(QName(ns1, "Properties"))) + if intf_properties is None: + print('Warning cannot find interface porperties for interface' % + (intf_name), file=sys.stderr) + continue + + for intf_property in intf_properties.findall(str(QName(ns1, "InterfaceProperty"))): + + name = intf_property.find(str(QName(ns1, "Name"))).text + value = intf_property.find(str(QName(ns1, "Value"))).text + if name == "CoreId": + core_id = value + if name == "SlotIndex": + slot_index = value + if name == "ProviderChipName": + asic_name = value + if name == "LineCardSku": + lc_sku = value + if name == "AsicInterfaceIndex": + core_port_id = value + if name == "AsicSwitchId": + switch_id = value + + if intf_sonic_name.startswith('cpu'): + core_id = 0 + core_port_id = 0 + speed = 10000 + asic_id = intf_name.split('/')[1] + asic_name = 'ASIC{}'.format(asic_id) + if intf_sonic_name.startswith('Ethernet-IB'): + core_id = voq_intf_attributes.get('inb', {}).get('core_id', None) + core_port_id = voq_intf_attributes.get( + 'inb', {}).get('core_port_index', None) + intf_speed = voq_intf_attributes.get('inb', {}).get('speed', None) + asic_id = intf_name.split('/')[1] + asic_name = 'ASIC{}'.format(asic_id) + if intf_sonic_name.startswith('Ethernet-Rec'): + # continue + core_id = voq_intf_attributes.get('rec', {}).get('core_id', None) + core_port_id = voq_intf_attributes.get( + 'rec', {}).get('core_port_index', None) + intf_speed = voq_intf_attributes.get('rec', {}).get('speed', None) + asic_id = intf_name.split('/')[1] + asic_name = 'ASIC{}'.format(asic_id) + + switch_id = get_asic_switch_id(slot_index, asic_name) + linecard_name = chassis_linecards_info.get( + slot_index, {}).get('hostname', None) + if linecard_name is None: + continue + + if chassis_type == CHASSIS_CARD_VOQ: + key = intf_sonic_name + if asic_name is not None: + key = "%s|%s" % (asic_name, key) + if linecard_name is not None: + key = "%s|%s" % (linecard_name, key) + system_ports[key] = { + "system_port_id": system_port_id, + "switch_id": switch_id, + "core_index": core_id, + "core_port_index": core_port_id, + "speed": intf_speed, + "num_voq": num_voq + } + system_port_id += 1 + + chassis_port_alias.setdefault(slot_index, {}).update( + {(intf_sonic_name, intf_speed): intf_name}) + # For Some Vendor we can have multiple speed define for same port with different alias. + # Example Port serving 400G alias will be FoutHundredGig0/0/0/0 and same port as 100G will be HundredGig0/0/0/0 + # So to get port default speed get the max speed possible. + try: + if int(intf_speed) > int(port_default_speed[slot_index][intf_sonic_name]): + port_default_speed[slot_index][intf_sonic_name] = intf_speed + except: + port_default_speed.setdefault(slot_index, {}).update( + {intf_sonic_name: intf_speed}) + + return system_ports, chassis_port_alias, port_default_speed + + + +def parse_chassis_deviceinfo_voq_int_intfs(device_info): + backend_intf_map = {} + backend_interfaces = device_info.find(str(QName(ns, "BackendFabricInterfaces"))).findall( + str(QName(ns1, "BackendFabricInterface"))) + voq_internal_intf_attr = {} + for backend_interface in backend_interfaces: + intf_name = backend_interface.find(str(QName(ns, "InterfaceName"))).text + if any(voq_intf in intf_name.lower() for voq_intf in voq_internal_intfs) == True: + sonic_name = backend_interface.find(str(QName(ns, "SonicName"))).text + speed = backend_interface.find(str(QName(ns, "Speed"))).text + backend_intf_map[intf_name] = {'sonic_name': sonic_name, 'speed': speed} + return backend_intf_map + + +def parse_chassis_deviceinfo_intfs(device_info): + interface_map = {} + + interfaces = device_info.find(str(QName(ns, "EthernetInterfaces"))).findall( + str(QName(ns1, "EthernetInterface"))) + + for interface in interfaces: + # the interface name is at the chassis level, so the interface name will have + # the slot information. It will be of format + # Ethernet/port + intf_name = interface.find(str(QName(ns, "InterfaceName"))).text + sonic_name = interface.find(str(QName(ns, "SonicName"))).text + speed = interface.find(str(QName(ns, "Speed"))).text + interface_map[intf_name] = {'sonic_name': sonic_name, 'speed': speed} + return interface_map + + +def parse_chassis_deviceinfo(deviceinfos, chassis_linecards_info, chassis_hwsku, num_voq, chassis_type, voq_intf_attributes): + system_ports = {} + chassis_port_alias = {} + chassis_name = None + port_default_speed = {} + + for device_info in deviceinfos.findall(str(QName(ns, "DeviceInfo"))): + dev_sku = device_info.find(str(QName(ns, "HwSku"))).text + if dev_sku == chassis_hwsku: + # The chassis device_info for sonic chassiss will 3 sections + # level information + # 1. EthernetInterfaces, which contains all the front panel ports present in the chassis + # 2. BackendFabricInterfaces, which contains all the internal/fabric ports present in the chassis + # this includes, cpu, Inband and recirc ports for all linecards + # 3. InterfaceMetadata which contains Metadata for the ports. + # In case of Voq chassis, the system port properties are presnent in this section + + chassis_intf_map = parse_chassis_deviceinfo_intfs(device_info) + + if chassis_type == CHASSIS_CARD_VOQ: + chassis_internal_intf_map = parse_chassis_deviceinfo_voq_int_intfs( + device_info) + chassis_intf_map.update(chassis_internal_intf_map) + + system_ports, chassis_port_alias, port_default_speed = parse_chassis_deviceinfo_intf_metadata( + device_info, chassis_linecards_info, chassis_hwsku, num_voq, chassis_type, chassis_intf_map, voq_intf_attributes) + return system_ports, chassis_port_alias, port_default_speed + + class minigraph_encoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, ( @@ -513,9 +861,26 @@ def parse_dpg(dpg, hname): intfs = {} ip_intfs_map = {} for ipintf in ipintfs.findall(str(QName(ns, "IPInterface"))): + ipprefix = ipintf.find(str(QName(ns, "Prefix"))).text + ipintf_name = ipintf.find(str(QName(ns, "Name"))).text intfalias = ipintf.find(str(QName(ns, "AttachTo"))).text + """ + VoqInband interfaces are special ip interfaces needed on inter linecard + control plane communications on Voq Chassis + """ + if ipintf_name in ["v6VoqInband", "VoqInband"]: + if intfalias.startswith("Ethernet"): + voq_intf_type = "Port" + # Vlan interface is not used, adding to be future proof + elif intfalias.startswith("Vlan"): + voq_intf_type = "Vlan" + if intfalias not in voq_inband_intfs: + voq_inband_intfs[intfalias] = {'inband_type': voq_intf_type} + + voq_inband_intfs["%s|%s" % (intfalias, ipprefix)] = {} + + continue intfname = port_alias_map.get(intfalias, intfalias) - ipprefix = ipintf.find(str(QName(ns, "Prefix"))).text intfs[(intfname, ipprefix)] = {} ip_intfs_map[ipprefix] = intfalias lo_intfs = parse_loopback_intf(child) @@ -547,7 +912,6 @@ def parse_dpg(dpg, hname): mgmt_intf[(intfname, ipprefix)] = {'gwaddr': gwaddr} voqinbandintfs = child.find(str(QName(ns, "VoqInbandInterfaces"))) - voq_inband_intfs = {} if voqinbandintfs: for voqintf in voqinbandintfs.findall(str(QName(ns1, "VoqInbandInterface"))): intfname = voqintf.find(str(QName(ns, "Name"))).text @@ -927,11 +1291,31 @@ def parse_cpg(cpg, hname, local_devices=[]): nhopself = 1 if session.find(str(QName(ns, "NextHopSelf"))) is not None else 0 # choose the right table and admin_status for the peer - chassis_internal_ibgp = session.find(str(QName(ns, "ChassisInternal"))) - if chassis_internal_ibgp is not None and chassis_internal_ibgp.text == "voq": + chassis_internal_ibgp = None + if session.find(str(QName(ns, "ChassisInternal")))is not None: + + chassis_internal_ibgp = session.find(str(QName(ns, "ChassisInternal"))).text + else: + if session.find(str(QName(ns, "BgpGroup"))) is not None: + chassis_internal_ibgp_group = session.find(str(QName(ns, "BgpGroup"))) + start_group_peer = None + end_group_peer = None + + if chassis_internal_ibgp_group.find(str(QName(ns, "Start"))) is not None: + start_group_peer = chassis_internal_ibgp_group.find(str(QName(ns, "Start"))).text + if chassis_internal_ibgp_group.find(str(QName(ns, "End"))) is not None: + end_group_peer = chassis_internal_ibgp_group.find(str(QName(ns, "End"))).text + + if start_group_peer == CHASSIS_CARD_VOQ and end_group_peer == CHASSIS_CARD_VOQ: + chassis_internal_ibgp = "voq" + elif start_group_peer == CHASSIS_CARD_PACKET and end_group_peer == CHASSIS_CARD_PACKET: + chassis_internal_ibgp = "chassis-packet" + + + if chassis_internal_ibgp == "voq": table = bgp_voq_chassis_sessions admin_status = 'up' - elif chassis_internal_ibgp is not None and chassis_internal_ibgp.text == "chassis-packet": + elif chassis_internal_ibgp == "chassis-packet": table = bgp_internal_sessions admin_status = 'up' elif end_router.lower() in local_devices and start_router.lower() in local_devices: @@ -1015,6 +1399,46 @@ def filter_bad_asn(table): return bgp_sessions, bgp_internal_sessions, bgp_voq_chassis_sessions, myasn, bgp_peers_with_range, bgp_monitors, bgp_sentinel_sessions +def parse_chassis_meta(meta, hname): + syslog_servers = [] + ntp_servers = [] + tacacs_servers = [] + mgmt_routes = [] + erspan_dst = [] + deployment_id = None + region = None + macsec_profile = {} + qos_profile = None + + device_metas = meta.find(str(QName(ns, "Devices"))) + for device in device_metas.findall(str(QName(ns1, "DeviceMetadata"))): + if device.find(str(QName(ns1, "Name"))).text.lower() == hname.lower(): + properties = device.find(str(QName(ns1, "Properties"))) + for device_property in properties.findall(str(QName(ns1, "DeviceProperty"))): + name = device_property.find(str(QName(ns1, "Name"))).text + value = device_property.find(str(QName(ns1, "Value"))).text + value_group = value.strip().split(';') if value and value != "" else [] + if name == "NtpResources": + ntp_servers = value_group + elif name == "SyslogResources": + syslog_servers = value_group + elif name == "TacacsServer": + tacacs_servers = value_group + mgmt_routes.extend(value_group) + elif name == "ForcedMgmtRoutes": + mgmt_routes.extend(value_group) + elif name == "ErspanDestinationIpv4": + erspan_dst = value_group + elif name == "DeploymentId": + deployment_id = value + elif name == "Region": + region = value + elif name == 'MacSecProfile': + macsec_profile = parse_macsec_profile(value) + elif name == "SonicQosProfile": + qos_profile = value + + return syslog_servers, ntp_servers, tacacs_servers, mgmt_routes, erspan_dst, deployment_id, region, macsec_profile def parse_meta(meta, hname): syslog_servers = [] @@ -1170,6 +1594,25 @@ def parse_macsec_profile(val_string): return macsec_profile +def parse_global_info(root): + + hwsku = hostname = None + docker_routing_config_mode = "separated" + + hwsku_qn = QName(ns, "HwSku") + hostname_qn = QName(ns, "Hostname") + docker_routing_config_mode_qn = QName(ns, "DockerRoutingConfigMode") + for child in root: + if child.tag == str(hwsku_qn): + hwsku = child.text + if child.tag == str(hostname_qn): + hostname = child.text + if child.tag == str(docker_routing_config_mode_qn): + docker_routing_config_mode = child.text + + chassis_type, chassis_hostname = get_chassis_type_and_hostname(root, hostname) + return hwsku, hostname, docker_routing_config_mode, chassis_type, chassis_hostname + def parse_asic_meta(meta, hname): sub_role = None switch_id = None @@ -1186,7 +1629,7 @@ def parse_asic_meta(meta, hname): value = device_property.find(str(QName(ns1, "Value"))).text if name == "SubRole": sub_role = value - elif name == "SwitchId": + elif name == "SwitchId" or name == "AsicSwitchId": switch_id = value elif name == "SwitchType": switch_type = value @@ -1566,6 +2009,12 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw redundancy_type = None qos_profile = None rack_mgmt_map = None + chassis_linecards_info = {} + chassis_hwsku = None + chassis_port_alias = {} + slot_index = None + max_num_cores = None + card_type = None hwsku_qn = QName(ns, "HwSku") hostname_qn = QName(ns, "Hostname") @@ -1578,17 +2027,29 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw if child.tag == str(docker_routing_config_mode_qn): docker_routing_config_mode = child.text + hwsku, hostname, docker_routing_config_mode, chassis_type, chassis_hostname = parse_global_info(root) + (ports, alias_map, alias_asic_map) = get_port_config(hwsku=hwsku, platform=platform, port_config_file=port_config_file, asic_name=asic_name, hwsku_config_file=hwsku_config_file) + asic_hostname = get_asic_hostname_from_asic_name(chassis_type, asic_name, hostname) + + if is_minigraph_for_chassis(chassis_type): + alias_map = normailize_port_map_for_chassis(asic_name, alias_map) + alias_asic_map = normailize_port_map_for_chassis(asic_name, alias_asic_map) + (max_num_cores, num_voq, chassis_linecards_info) = parse_chassis_metadata(root, chassis_hostname, hostname) + chassis_hwsku = parse_chassis_hwsku(root, chassis_hostname) + voq_intf_attributes = get_voq_intf_attributes(ports) + port_names_map.update(ports) port_alias_map.update(alias_map) port_alias_asic_map.update(alias_asic_map) + slot_index = get_linecard_slot_index(hostname, chassis_linecards_info) # Get the local device node from DeviceMetadata local_devices = parse_asic_meta_get_devices(root) for child in root: - if asic_name is None: + if asic_hostname is None: if child.tag == str(QName(ns, "DpgDec")): (intfs, lo_intfs, mvrf, mgmt_intf, voq_inband_intfs, vlans, vlan_members, dhcp_relay_table, pcs, pc_members, acls, acl_table_types, vni, tunnel_intfs, dpg_ecmp_content, static_routes, tunnel_intfs_qos_remap_config) = parse_dpg(child, hostname) elif child.tag == str(QName(ns, "CpgDec")): @@ -1605,31 +2066,50 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw (port_speeds_default, port_descriptions, sys_ports) = parse_deviceinfo(child, hwsku) else: if child.tag == str(QName(ns, "DpgDec")): - (intfs, lo_intfs, mvrf, mgmt_intf, voq_inband_intfs, vlans, vlan_members, dhcp_relay_table, pcs, pc_members, acls, acl_table_types, vni, tunnel_intfs, dpg_ecmp_content, static_routes, tunnel_intfs_qos_remap_config) = parse_dpg(child, asic_name) + (intfs, lo_intfs, mvrf, mgmt_intf, voq_inband_intfs, vlans, vlan_members, dhcp_relay_table, pcs, pc_members, acls, acl_table_types, vni, tunnel_intfs, dpg_ecmp_content, static_routes, tunnel_intfs_qos_remap_config) = parse_dpg(child, asic_hostname) host_lo_intfs = parse_host_loopback(child, hostname) elif child.tag == str(QName(ns, "CpgDec")): - (bgp_sessions, bgp_internal_sessions, bgp_voq_chassis_sessions, bgp_asn, bgp_peers_with_range, bgp_monitors, bgp_sentinel_sessions) = parse_cpg(child, asic_name, local_devices) + (bgp_sessions, bgp_internal_sessions, bgp_voq_chassis_sessions, bgp_asn, bgp_peers_with_range, bgp_monitors, bgp_sentinel_sessions) = parse_cpg(child, asic_hostname, local_devices) elif child.tag == str(QName(ns, "PngDec")): - (neighbors, devices, port_speed_png) = parse_asic_png(child, asic_name, hostname) + (neighbors, devices, port_speed_png) = parse_asic_png(child, asic_hostname, hostname) elif child.tag == str(QName(ns, "MetadataDeclaration")): - (sub_role, switch_id, switch_type, max_cores, deployment_id, macsec_profile) = parse_asic_meta(child, asic_name) + (sub_role, switch_id, switch_type, max_cores, deployment_id, macsec_profile) = parse_asic_meta(child, asic_hostname) elif child.tag == str(QName(ns, "LinkMetadataDeclaration")): linkmetas = parse_linkmeta(child, hostname) elif child.tag == str(QName(ns, "DeviceInfos")): (port_speeds_default, port_descriptions, sys_ports) = parse_deviceinfo(child, hwsku) + if chassis_hostname: + if child.tag == str(QName(ns, "DeviceInfos")): + if asic_hostname is not None: + (sys_ports, chassis_port_alias, port_speeds_default) = parse_chassis_deviceinfo(child, chassis_linecards_info, chassis_hwsku, num_voq, chassis_type, voq_intf_attributes) + elif child.tag == str(QName(ns, "MetadataDeclaration")): + (syslog_servers, ntp_servers, tacacs_servers, mgmt_routes, erspan_dst, deployment_id, region, macsec_profile) = parse_chassis_meta(child, chassis_hostname) + elif child.tag == str(QName(ns, "LinkMetadataDeclaration")): + linkmetas = parse_linkmeta(child, chassis_hostname) + select_mmu_profiles(qos_profile, platform, hwsku) - # set the host device type in asic metadata also - device_type = [devices[key]['type'] for key in devices if key.lower() == hostname.lower()][0] - if asic_name is None: + + # for chassis get the device type from chassis metadata not the asic or linecard type + if chassis_hostname: + device_type = devices.get(chassis_hostname, {}).get('type', None) + card_type = [devices[key]['type'] for key in devices if key.lower() == hostname.lower()][0] + else: + device_type = [devices[key]['type'] for key in devices if key.lower() == hostname.lower()][0] + + if asic_hostname is None: current_device = [devices[key] for key in devices if key.lower() == hostname.lower()][0] else: try: current_device = [devices[key] for key in devices if key.lower() == asic_name.lower()][0] except: - print("Warning: no asic configuration found for {} in minigraph".format(asic_name), file=sys.stderr) current_device = {} + # on single asic linecards, parse_dpg() will not get the mmanagement interface information + # check here and get the linecard managment interface information + if chassis_hostname and not mgmt_intf: + mgmt_intf = parse_linecard_mgmt_ip(root, hostname) + results = {} results['DEVICE_METADATA'] = {'localhost': { 'bgp_asn': bgp_asn, @@ -1644,6 +2124,9 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw } } + if chassis_hostname: + results['DEVICE_METADATA']['localhost']['chassis_hostname'] = chassis_hostname + if deployment_id is not None: results['DEVICE_METADATA']['localhost']['deployment_id'] = deployment_id @@ -1685,27 +2168,49 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw if len(system_defaults) > 0: results['SYSTEM_DEFAULTS'] = system_defaults + + if asic_name is not None: + results['DEVICE_METADATA']['localhost']['asic_name'] = asic_name + + # for single asic Voq Linecards the asic_name needs to populated to "Asic0" + if switch_type == "voq" or chassis_type in [CHASSIS_CARD_VOQ]: + if not is_multi_asic(): + results['DEVICE_METADATA']['localhost']['asic_name'] = "Asic0" - # for this hostname, if sub_role is defined, add sub_role in - # device_metadata if sub_role is not None: - current_device['sub_role'] = sub_role results['DEVICE_METADATA']['localhost']['sub_role'] = sub_role - results['DEVICE_METADATA']['localhost']['asic_name'] = asic_name - elif switch_type == "voq": - # On Voq switches asic_name is mandatory even on single-asic devices - results['DEVICE_METADATA']['localhost']['asic_name'] = 'Asic0' + elif switch_type == "voq" or chassis_type in [CHASSIS_CARD_VOQ] and card_type == "Supervisor": + results['DEVICE_METADATA']['localhost']['sub_role'] = 'fabric' + elif chassis_type == "chassis-packet": + results['DEVICE_METADATA']['localhost']['sub_role'] = BACKEND_ASIC_SUB_ROLE + + if chassis_type == CHASSIS_CARD_VOQ and 'sub_role' in results['DEVICE_METADATA']['localhost'] and FABRIC_ASIC_SUB_ROLE.lower() == results['DEVICE_METADATA']['localhost']['sub_role'].lower(): + results['DEVICE_METADATA']['localhost']['switch_type'] = 'fabric' + else: + # on Voq system each asic has a switch_type + if chassis_type is not None: + results['DEVICE_METADATA']['localhost']['switch_type'] = chassis_type.lower() - # on Voq system each asic has a switch_id - if switch_id is not None: - results['DEVICE_METADATA']['localhost']['switch_id'] = switch_id # on Voq system each asic has a switch_type if switch_type is not None: results['DEVICE_METADATA']['localhost']['switch_type'] = switch_type + # #voq switch_id for asic + # switch_id = chassis_metadata.get(asic_hostname, {}).get('asic_switch_id', None) + # on Voq system each asic has a switch_id + if switch_id is not None: + if sub_role is not None and FRONTEND_ASIC_SUB_ROLE == sub_role: + if slot_index is not None: + switch_id = get_asic_switch_id(slot_index, asic_name) + + results['DEVICE_METADATA']['localhost']['switch_id'] = switch_id # on Voq system each asic has a max_cores if max_cores is not None: results['DEVICE_METADATA']['localhost']['max_cores'] = max_cores + # on Voq system each asic has a max_cores + if max_num_cores is not None: + results['DEVICE_METADATA']['localhost']['max_cores'] = max_num_cores + # Voq systems have an inband interface if voq_inband_intfs is not None: results['VOQ_INBAND_INTERFACE'] = {} @@ -1821,6 +2326,15 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw if sys_ports: results['SYSTEM_PORT'] = sys_ports + if chassis_port_alias: + slot_index = get_linecard_slot_index(hostname, chassis_linecards_info) + for port in ports.keys(): + # Try first to get Chassis port alias based on port bandwidth/configured speed and if exception use port default speed. + try: + ports[port]['alias'] = chassis_port_alias.get(slot_index, {})[(port, port_speed_png[port])] + except KeyError: + ports[port]['alias'] = chassis_port_alias.get(slot_index, {}).get((port, ports[port]['speed']), ports[port]['alias']) + for port_name in port_speeds_default: # ignore port not in port_config.ini if port_name not in ports: @@ -1840,7 +2354,12 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw if port_name in mgmt_alias_reverse_mapping.keys(): continue - port_default_speed = port_speeds_default.get(port_name, None) + # Get the port_default_speed based on chassis_type/switch_type is non None + if chassis_type: + slot_index = get_linecard_slot_index(hostname, chassis_linecards_info) + port_default_speed = port_speeds_default.get(slot_index, {}).get(port_name, None) + else: + port_default_speed = port_speeds_default.get(port_name, None) port_png_speed = port_speed_png[port_name] # set Port Speed before lane update @@ -2070,36 +2589,37 @@ def parse_xml(filename, platform=None, port_config_file=None, asic_name=None, hw print("Warning: ignore interface '%s' in DEVICE_NEIGHBOR as it is not in the port_config.ini" % nghbr, file=sys.stderr) del neighbors[nghbr] results['DEVICE_NEIGHBOR'] = neighbors - if asic_name is None: + if is_multi_asic() == False or asic_name is None: results['DEVICE_NEIGHBOR_METADATA'] = { key:devices[key] for key in devices if key.lower() != hostname.lower() } else: results['DEVICE_NEIGHBOR_METADATA'] = { key:devices[key] for key in devices if key in {device['name'] for device in neighbors.values()} } - results['SYSLOG_SERVER'] = dict((item, {}) for item in syslog_servers) - results['DHCP_SERVER'] = dict((item, {}) for item in dhcp_servers) - results['DHCP_RELAY'] = dhcp_relay_table - results['NTP_SERVER'] = dict((item, {}) for item in ntp_servers) - # Set default DNS nameserver from dns.j2 - results['DNS_NAMESERVER'] = {} - if os.environ.get("CFGGEN_UNIT_TESTING", "0") == "2": - dns_conf = os.path.join(os.path.dirname(__file__), "tests/", "dns.j2") - else: - dns_conf = "/usr/share/sonic/templates/dns.j2" - if os.path.isfile(dns_conf): - text = "" - with open(dns_conf) as template_file: - # Semgrep does not allow to use jinja2 directly, but we do need jinja2 for SONiC - environment = jinja2.Environment(trim_blocks=True) # nosemgrep - dns_template = environment.from_string(template_file.read()) - text = dns_template.render(results) - try: - dns_res = json.loads(text) - except ValueError as e: - sys.exit("Error: fail to load dns configuration, %s" % str(e)) + if is_multi_asic() == False or asic_name is None: + results['SYSLOG_SERVER'] = dict((item, {}) for item in syslog_servers) + results['DHCP_SERVER'] = dict((item, {}) for item in dhcp_servers) + results['DHCP_RELAY'] = dhcp_relay_table + results['NTP_SERVER'] = dict((item, {}) for item in ntp_servers) + # Set default DNS nameserver from dns.j2 + results['DNS_NAMESERVER'] = {} + if os.environ.get("CFGGEN_UNIT_TESTING", "0") == "2": + dns_conf = os.path.join(os.path.dirname(__file__), "tests/", "dns.j2") else: - dns_nameservers = dns_res.get('DNS_NAMESERVER', {}) - for k in dns_nameservers.keys(): - results['DNS_NAMESERVER'][str(k)] = {} - results['TACPLUS_SERVER'] = dict((item, {'priority': '1', 'tcp_port': '49'}) for item in tacacs_servers) + dns_conf = "/usr/share/sonic/templates/dns.j2" + if os.path.isfile(dns_conf): + text = "" + with open(dns_conf) as template_file: + # Semgrep does not allow to use jinja2 directly, but we do need jinja2 for SONiC + environment = jinja2.Environment(trim_blocks=True) # nosemgrep + dns_template = environment.from_string(template_file.read()) + text = dns_template.render(results) + try: + dns_res = json.loads(text) + except ValueError as e: + sys.exit("Error: fail to load dns configuration, %s" % str(e)) + else: + dns_nameservers = dns_res.get('DNS_NAMESERVER', {}) + for k in dns_nameservers.keys(): + results['DNS_NAMESERVER'][str(k)] = {} + results['TACPLUS_SERVER'] = dict((item, {'priority': '1', 'tcp_port': '49'}) for item in tacacs_servers) if len(acl_table_types) > 0: results['ACL_TABLE_TYPE'] = acl_table_types results['ACL_TABLE'] = filter_acl_table_bindings(acls, neighbors, pcs, pc_members, sub_role, current_device['type'] if current_device else None, is_storage_device, vlan_members) @@ -2358,6 +2878,36 @@ def parse_asic_meta_get_devices(root): return local_devices +def parse_chassis_hwsku(root,chassis_hostname): + for child in root: + if child.tag == str(QName(ns, "PngDec")): + devices = child.find(str(QName(ns, "Devices"))) + for device in devices.findall(str(QName(ns, "Device"))): + if chassis_hostname.lower() == device.find(str(QName(ns, "Hostname"))).text.lower(): + hwsku = device.find(str(QName(ns, "HwSku"))).text + return hwsku + return None + +def parse_mgmt_intf(child): + mgmt_intf = {} + for mgmtintf in child.find(str(QName(ns, "ManagementIPInterfaces"))).findall(str(QName(ns1, "ManagementIPInterface"))): + intfname = mgmtintf.find(str(QName(ns, "AttachTo"))).text + ipprefix = mgmtintf.find(str(QName(ns1, "PrefixStr"))).text + mgmtipn = ipaddress.ip_network(UNICODE_TYPE(ipprefix), False) + gwaddr = ipaddress.ip_address(next(mgmtipn.hosts())) + mgmt_intf[(intfname, ipprefix)] = {'gwaddr': gwaddr} + return mgmt_intf + +def parse_linecard_mgmt_ip(root, hname): + linecard_mgmt_intfs = {} + dpg = root.find(str(QName(ns, "DpgDec"))) + for child in dpg: + hostname = child.find(str(QName(ns, "Hostname"))) + if hostname.text.lower() != hname.lower(): + continue + linecard_mgmt_intfs = parse_mgmt_intf(child) + return linecard_mgmt_intfs + port_names_map = {} port_alias_map = {} port_alias_asic_map = {} diff --git a/src/sonic-config-engine/tests/chassis_data/packet_chassis_data/packet-chassis-port-config-1.ini b/src/sonic-config-engine/tests/chassis_data/packet_chassis_data/packet-chassis-port-config-1.ini new file mode 100644 index 000000000000..2d8df25cb04a --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/packet_chassis_data/packet-chassis-port-config-1.ini @@ -0,0 +1,49 @@ +# name lanes alias index speed asic_port_name role +Ethernet-BP0 0,1 Eth0-ASIC0 0 100000 Eth0-ASIC0 Int +Ethernet-BP6 6,7 Eth6-ASIC0 3 100000 Eth6-ASIC0 Int +Ethernet-BP8 8,9 Eth8-ASIC0 4 100000 Eth8-ASIC0 Int +Ethernet-BP10 10,11 Eth10-ASIC0 5 100000 Eth10-ASIC0 Int +Ethernet-BP26 258,259 Eth26-ASIC0 13 100000 Eth26-ASIC0 Int +Ethernet-BP28 260,261 Eth28-ASIC0 14 100000 Eth28-ASIC0 Int +Ethernet-BP32 264,265 Eth32-ASIC0 16 100000 Eth32-ASIC0 Int +Ethernet-BP38 270,271 Eth38-ASIC0 19 100000 Eth38-ASIC0 Int +Ethernet-BP48 512,513 Eth48-ASIC0 24 100000 Eth48-ASIC0 Int +Ethernet-BP50 514,515 Eth50-ASIC0 25 100000 Eth50-ASIC0 Int +Ethernet-BP58 522,523 Eth58-ASIC0 29 100000 Eth58-ASIC0 Int +Ethernet-BP60 524,525 Eth60-ASIC0 30 100000 Eth60-ASIC0 Int +Ethernet-BP72 768,769 Eth72-ASIC0 36 100000 Eth72-ASIC0 Int +Ethernet-BP80 776,777 Eth80-ASIC0 40 100000 Eth80-ASIC0 Int +Ethernet-BP82 778,779 Eth82-ASIC0 41 100000 Eth82-ASIC0 Int +Ethernet-BP86 782,783 Eth86-ASIC0 43 100000 Eth86-ASIC0 Int +Ethernet-BP90 1026,1027 Eth90-ASIC0 45 100000 Eth90-ASIC0 Int +Ethernet-BP92 1028,1029 Eth92-ASIC0 46 100000 Eth92-ASIC0 Int +Ethernet-BP96 1032,1033 Eth96-ASIC0 48 100000 Eth96-ASIC0 Int +Ethernet-BP102 1038,1039 Eth102-ASIC0 51 100000 Eth102-ASIC0 Int +Ethernet-BP104 1280,1281 Eth104-ASIC0 52 100000 Eth104-ASIC0 Int +Ethernet-BP106 1282,1283 Eth106-ASIC0 53 100000 Eth106-ASIC0 Int +Ethernet-BP114 1290,1291 Eth114-ASIC0 57 100000 Eth114-ASIC0 Int +Ethernet-BP116 1292,1293 Eth116-ASIC0 58 100000 Eth116-ASIC0 Int +Ethernet-BP128 1536,1537,1538,1539 Eth128-ASIC0 64 200000 Eth128-ASIC0 Int +Ethernet-BP132 1540,1541,1542,1543 Eth132-ASIC0 66 200000 Eth132-ASIC0 Int +Ethernet-BP136 1544,1545,1546,1547 Eth136-ASIC0 68 200000 Eth136-ASIC0 Int +Ethernet-BP140 1548,1549,1550,1551 Eth140-ASIC0 70 200000 Eth140-ASIC0 Int +Ethernet-BP154 1794,1795 Eth154-ASIC0 77 100000 Eth154-ASIC0 Int +Ethernet-BP156 1796,1797 Eth156-ASIC0 78 100000 Eth156-ASIC0 Int +Ethernet-BP160 1800,1801,1802,1803 Eth160-ASIC0 80 200000 Eth160-ASIC0 Int +Ethernet-BP164 1804,1805,1806,1807 Eth164-ASIC0 82 200000 Eth164-ASIC0 Int +Ethernet-BP168 2048,2049 Eth168-ASIC0 84 100000 Eth168-ASIC0 Int +Ethernet-BP170 2050,2051 Eth170-ASIC0 85 100000 Eth170-ASIC0 Int +Ethernet-BP178 2058,2059 Eth178-ASIC0 89 100000 Eth178-ASIC0 Int +Ethernet-BP180 2060,2061 Eth180-ASIC0 90 100000 Eth180-ASIC0 Int +Ethernet-BP184 2304,2305 Eth184-ASIC0 92 100000 Eth184-ASIC0 Int +Ethernet-BP190 2310,2311 Eth190-ASIC0 95 100000 Eth190-ASIC0 Int +Ethernet-BP192 2312,2313 Eth192-ASIC0 96 100000 Eth192-ASIC0 Int +Ethernet-BP194 2314,2315 Eth194-ASIC0 97 100000 Eth194-ASIC0 Int +Ethernet-BP208 2560,2561 Eth208-ASIC0 104 100000 Eth208-ASIC0 Int +Ethernet-BP214 2566,2567 Eth214-ASIC0 107 100000 Eth214-ASIC0 Int +Ethernet-BP218 2570,2571 Eth218-ASIC0 109 100000 Eth218-ASIC0 Int +Ethernet-BP220 2572,2573 Eth220-ASIC0 110 100000 Eth220-ASIC0 Int +Ethernet-BP232 2816,2817 Eth232-ASIC0 116 100000 Eth232-ASIC0 Int +Ethernet-BP234 2818,2819 Eth234-ASIC0 117 100000 Eth234-ASIC0 Int +Ethernet-BP242 2826,2827 Eth242-ASIC0 121 100000 Eth242-ASIC0 Int +Ethernet-BP244 2828,2829 Eth244-ASIC0 122 100000 Eth244-ASIC0 Int \ No newline at end of file diff --git a/src/sonic-config-engine/tests/chassis_data/packet_chassis_data/packet_chassis_sup.xml b/src/sonic-config-engine/tests/chassis_data/packet_chassis_data/packet_chassis_sup.xml new file mode 100644 index 000000000000..798d498f14fe --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/packet_chassis_data/packet_chassis_sup.xml @@ -0,0 +1,53496 @@ + + + + + + + + + + + + + + Sonic-T2-base-sku + + + + DeviceInterface + + false + 1 + FourHundredGigE0/0/0/0 + false + + Ethernet0 + 400000 + + + DeviceInterface + + false + 2 + HundredGigE0/0/0/0 + false + + Ethernet0 + 100000 + + + DeviceInterface + + false + 3 + FourHundredGigE0/0/0/1 + false + + Ethernet8 + 400000 + + + DeviceInterface + + false + 4 + HundredGigE0/0/0/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + + false + 5 + FourHundredGigE0/0/0/2 + false + + Ethernet16 + 400000 + + + DeviceInterface + + false + 6 + HundredGigE0/0/0/2 + false + + Ethernet16 + 100000 + + + DeviceInterface + + false + 7 + FourHundredGigE0/0/0/3 + false + + Ethernet24 + 400000 + + + DeviceInterface + + false + 8 + HundredGigE0/0/0/3 + false + + Ethernet24 + 100000 + + + DeviceInterface + + false + 9 + FourHundredGigE0/0/0/4 + false + + Ethernet32 + 400000 + + + DeviceInterface + + false + 10 + HundredGigE0/0/0/4 + false + + Ethernet32 + 100000 + + + DeviceInterface + + false + 11 + FourHundredGigE0/0/0/5 + false + + Ethernet40 + 400000 + + + DeviceInterface + + false + 12 + HundredGigE0/0/0/5 + false + + Ethernet40 + 100000 + + + DeviceInterface + + false + 13 + FourHundredGigE0/0/0/6 + false + + Ethernet48 + 400000 + + + DeviceInterface + + false + 14 + HundredGigE0/0/0/6 + false + + Ethernet48 + 100000 + + + DeviceInterface + + false + 15 + FourHundredGigE0/0/0/7 + false + + Ethernet56 + 400000 + + + DeviceInterface + + false + 16 + HundredGigE0/0/0/7 + false + + Ethernet56 + 100000 + + + DeviceInterface + + false + 17 + FourHundredGigE0/0/0/8 + false + + Ethernet64 + 400000 + + + DeviceInterface + + false + 18 + HundredGigE0/0/0/8 + false + + Ethernet64 + 100000 + + + DeviceInterface + + false + 19 + FourHundredGigE0/0/0/9 + false + + Ethernet72 + 400000 + + + DeviceInterface + + false + 20 + HundredGigE0/0/0/9 + false + + Ethernet72 + 100000 + + + DeviceInterface + + false + 21 + FourHundredGigE0/0/0/10 + false + + Ethernet80 + 400000 + + + DeviceInterface + + false + 22 + HundredGigE0/0/0/10 + false + + Ethernet80 + 100000 + + + DeviceInterface + + false + 23 + FourHundredGigE0/0/0/11 + false + + Ethernet88 + 400000 + + + DeviceInterface + + false + 24 + HundredGigE0/0/0/11 + false + + Ethernet88 + 100000 + + + DeviceInterface + + false + 25 + FourHundredGigE0/0/0/12 + false + + Ethernet96 + 400000 + + + DeviceInterface + + false + 26 + HundredGigE0/0/0/12 + false + + Ethernet96 + 100000 + + + DeviceInterface + + false + 27 + FourHundredGigE0/0/0/13 + false + + Ethernet104 + 400000 + + + DeviceInterface + + false + 28 + HundredGigE0/0/0/13 + false + + Ethernet104 + 100000 + + + DeviceInterface + + false + 29 + FourHundredGigE0/0/0/14 + false + + Ethernet112 + 400000 + + + DeviceInterface + + false + 30 + HundredGigE0/0/0/14 + false + + Ethernet112 + 100000 + + + DeviceInterface + + false + 31 + FourHundredGigE0/0/0/15 + false + + Ethernet120 + 400000 + + + DeviceInterface + + false + 32 + HundredGigE0/0/0/15 + false + + Ethernet120 + 100000 + + + DeviceInterface + + false + 33 + FourHundredGigE0/0/0/16 + false + + Ethernet128 + 400000 + + + DeviceInterface + + false + 34 + HundredGigE0/0/0/16 + false + + Ethernet128 + 100000 + + + DeviceInterface + + false + 35 + FourHundredGigE0/0/0/17 + false + + Ethernet136 + 400000 + + + DeviceInterface + + false + 36 + HundredGigE0/0/0/17 + false + + Ethernet136 + 100000 + + + DeviceInterface + + false + 37 + FourHundredGigE0/0/0/18 + false + + Ethernet144 + 400000 + + + DeviceInterface + + false + 38 + HundredGigE0/0/0/18 + false + + Ethernet144 + 100000 + + + DeviceInterface + + false + 39 + FourHundredGigE0/0/0/19 + false + + Ethernet152 + 400000 + + + DeviceInterface + + false + 40 + HundredGigE0/0/0/19 + false + + Ethernet152 + 100000 + + + DeviceInterface + + false + 41 + FourHundredGigE0/0/0/20 + false + + Ethernet160 + 400000 + + + DeviceInterface + + false + 42 + HundredGigE0/0/0/20 + false + + Ethernet160 + 100000 + + + DeviceInterface + + false + 43 + FourHundredGigE0/0/0/21 + false + + Ethernet168 + 400000 + + + DeviceInterface + + false + 44 + HundredGigE0/0/0/21 + false + + Ethernet168 + 100000 + + + DeviceInterface + + false + 45 + FourHundredGigE0/0/0/22 + false + + Ethernet176 + 400000 + + + DeviceInterface + + false + 46 + HundredGigE0/0/0/22 + false + + Ethernet176 + 100000 + + + DeviceInterface + + false + 47 + FourHundredGigE0/0/0/23 + false + + Ethernet184 + 400000 + + + DeviceInterface + + false + 48 + HundredGigE0/0/0/23 + false + + Ethernet184 + 100000 + + + DeviceInterface + + false + 49 + FourHundredGigE0/0/0/24 + false + + Ethernet192 + 400000 + + + DeviceInterface + + false + 50 + HundredGigE0/0/0/24 + false + + Ethernet192 + 100000 + + + DeviceInterface + + false + 51 + FourHundredGigE0/0/0/25 + false + + Ethernet200 + 400000 + + + DeviceInterface + + false + 52 + HundredGigE0/0/0/25 + false + + Ethernet200 + 100000 + + + DeviceInterface + + false + 53 + FourHundredGigE0/0/0/26 + false + + Ethernet208 + 400000 + + + DeviceInterface + + false + 54 + HundredGigE0/0/0/26 + false + + Ethernet208 + 100000 + + + DeviceInterface + + false + 55 + FourHundredGigE0/0/0/27 + false + + Ethernet216 + 400000 + + + DeviceInterface + + false + 56 + HundredGigE0/0/0/27 + false + + Ethernet216 + 100000 + + + DeviceInterface + + false + 57 + FourHundredGigE0/0/0/28 + false + + Ethernet224 + 400000 + + + DeviceInterface + + false + 58 + HundredGigE0/0/0/28 + false + + Ethernet224 + 100000 + + + DeviceInterface + + false + 59 + FourHundredGigE0/0/0/29 + false + + Ethernet232 + 400000 + + + DeviceInterface + + false + 60 + HundredGigE0/0/0/29 + false + + Ethernet232 + 100000 + + + DeviceInterface + + false + 61 + FourHundredGigE0/0/0/30 + false + + Ethernet240 + 400000 + + + DeviceInterface + + false + 62 + HundredGigE0/0/0/30 + false + + Ethernet240 + 100000 + + + DeviceInterface + + false + 63 + FourHundredGigE0/0/0/31 + false + + Ethernet248 + 400000 + + + DeviceInterface + + false + 64 + HundredGigE0/0/0/31 + false + + Ethernet248 + 100000 + + + DeviceInterface + + false + 65 + FourHundredGigE0/0/0/32 + false + + Ethernet256 + 400000 + + + DeviceInterface + + false + 66 + HundredGigE0/0/0/32 + false + + Ethernet256 + 100000 + + + DeviceInterface + + false + 67 + FourHundredGigE0/0/0/33 + false + + Ethernet264 + 400000 + + + DeviceInterface + + false + 68 + HundredGigE0/0/0/33 + false + + Ethernet264 + 100000 + + + DeviceInterface + + false + 69 + FourHundredGigE0/0/0/34 + false + + Ethernet272 + 400000 + + + DeviceInterface + + false + 70 + HundredGigE0/0/0/34 + false + + Ethernet272 + 100000 + + + DeviceInterface + + false + 71 + FourHundredGigE0/0/0/35 + false + + Ethernet280 + 400000 + + + DeviceInterface + + false + 72 + HundredGigE0/0/0/35 + false + + Ethernet280 + 100000 + + + DeviceInterface + + false + 73 + HundredGigE0/1/0/0 + false + + Ethernet0 + 100000 + + + DeviceInterface + + false + 74 + FortyGigE0/1/0/0 + false + + Ethernet0 + 40000 + + + DeviceInterface + + false + 75 + HundredGigE0/1/0/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + + false + 76 + FortyGigE0/1/0/1 + false + + Ethernet4 + 40000 + + + DeviceInterface + + false + 77 + HundredGigE0/1/0/2 + false + + Ethernet8 + 100000 + + + DeviceInterface + + false + 78 + FortyGigE0/1/0/2 + false + + Ethernet8 + 40000 + + + DeviceInterface + + false + 79 + HundredGigE0/1/0/3 + false + + Ethernet12 + 100000 + + + DeviceInterface + + false + 80 + FortyGigE0/1/0/3 + false + + Ethernet12 + 40000 + + + DeviceInterface + + false + 81 + HundredGigE0/1/0/4 + false + + Ethernet16 + 100000 + + + DeviceInterface + + false + 82 + FortyGigE0/1/0/4 + false + + Ethernet16 + 40000 + + + DeviceInterface + + false + 83 + HundredGigE0/1/0/5 + false + + Ethernet20 + 100000 + + + DeviceInterface + + false + 84 + FortyGigE0/1/0/5 + false + + Ethernet20 + 40000 + + + DeviceInterface + + false + 85 + HundredGigE0/1/0/6 + false + + Ethernet24 + 100000 + + + DeviceInterface + + false + 86 + FortyGigE0/1/0/6 + false + + Ethernet24 + 40000 + + + DeviceInterface + + false + 87 + HundredGigE0/1/0/7 + false + + Ethernet28 + 100000 + + + DeviceInterface + + false + 88 + FortyGigE0/1/0/7 + false + + Ethernet28 + 40000 + + + DeviceInterface + + false + 89 + HundredGigE0/1/0/8 + false + + Ethernet32 + 100000 + + + DeviceInterface + + false + 90 + FortyGigE0/1/0/8 + false + + Ethernet32 + 40000 + + + DeviceInterface + + false + 91 + HundredGigE0/1/0/9 + false + + Ethernet36 + 100000 + + + DeviceInterface + + false + 92 + FortyGigE0/1/0/9 + false + + Ethernet36 + 40000 + + + DeviceInterface + + false + 93 + HundredGigE0/1/0/10 + false + + Ethernet40 + 100000 + + + DeviceInterface + + false + 94 + FortyGigE0/1/0/10 + false + + Ethernet40 + 40000 + + + DeviceInterface + + false + 95 + HundredGigE0/1/0/11 + false + + Ethernet44 + 100000 + + + DeviceInterface + + false + 96 + FortyGigE0/1/0/11 + false + + Ethernet44 + 40000 + + + DeviceInterface + + false + 97 + HundredGigE0/1/0/12 + false + + Ethernet48 + 100000 + + + DeviceInterface + + false + 98 + FortyGigE0/1/0/12 + false + + Ethernet48 + 40000 + + + DeviceInterface + + false + 99 + HundredGigE0/1/0/13 + false + + Ethernet52 + 100000 + + + DeviceInterface + + false + 100 + FortyGigE0/1/0/13 + false + + Ethernet52 + 40000 + + + DeviceInterface + + false + 101 + HundredGigE0/1/0/14 + false + + Ethernet56 + 100000 + + + DeviceInterface + + false + 102 + FortyGigE0/1/0/14 + false + + Ethernet56 + 40000 + + + DeviceInterface + + false + 103 + HundredGigE0/1/0/15 + false + + Ethernet60 + 100000 + + + DeviceInterface + + false + 104 + FortyGigE0/1/0/15 + false + + Ethernet60 + 40000 + + + DeviceInterface + + false + 105 + HundredGigE0/1/0/16 + false + + Ethernet64 + 100000 + + + DeviceInterface + + false + 106 + FortyGigE0/1/0/16 + false + + Ethernet64 + 40000 + + + DeviceInterface + + false + 107 + HundredGigE0/1/0/17 + false + + Ethernet68 + 100000 + + + DeviceInterface + + false + 108 + FortyGigE0/1/0/17 + false + + Ethernet68 + 40000 + + + DeviceInterface + + false + 109 + HundredGigE0/1/0/18 + false + + Ethernet72 + 100000 + + + DeviceInterface + + false + 110 + FortyGigE0/1/0/18 + false + + Ethernet72 + 40000 + + + DeviceInterface + + false + 111 + HundredGigE0/1/0/19 + false + + Ethernet76 + 100000 + + + DeviceInterface + + false + 112 + FortyGigE0/1/0/19 + false + + Ethernet76 + 40000 + + + DeviceInterface + + false + 113 + HundredGigE0/1/0/20 + false + + Ethernet80 + 100000 + + + DeviceInterface + + false + 114 + FortyGigE0/1/0/20 + false + + Ethernet80 + 40000 + + + DeviceInterface + + false + 115 + HundredGigE0/1/0/21 + false + + Ethernet84 + 100000 + + + DeviceInterface + + false + 116 + FortyGigE0/1/0/21 + false + + Ethernet84 + 40000 + + + DeviceInterface + + false + 117 + HundredGigE0/1/0/22 + false + + Ethernet88 + 100000 + + + DeviceInterface + + false + 118 + FortyGigE0/1/0/22 + false + + Ethernet88 + 40000 + + + DeviceInterface + + false + 119 + HundredGigE0/1/0/23 + false + + Ethernet92 + 100000 + + + DeviceInterface + + false + 120 + FortyGigE0/1/0/23 + false + + Ethernet92 + 40000 + + + DeviceInterface + + false + 121 + HundredGigE0/1/0/24 + false + + Ethernet96 + 100000 + + + DeviceInterface + + false + 122 + FortyGigE0/1/0/24 + false + + Ethernet96 + 40000 + + + DeviceInterface + + false + 123 + HundredGigE0/1/0/25 + false + + Ethernet100 + 100000 + + + DeviceInterface + + false + 124 + FortyGigE0/1/0/25 + false + + Ethernet100 + 40000 + + + DeviceInterface + + false + 125 + HundredGigE0/1/0/26 + false + + Ethernet104 + 100000 + + + DeviceInterface + + false + 126 + FortyGigE0/1/0/26 + false + + Ethernet104 + 40000 + + + DeviceInterface + + false + 127 + HundredGigE0/1/0/27 + false + + Ethernet108 + 100000 + + + DeviceInterface + + false + 128 + FortyGigE0/1/0/27 + false + + Ethernet108 + 40000 + + + DeviceInterface + + false + 129 + HundredGigE0/1/0/28 + false + + Ethernet112 + 100000 + + + DeviceInterface + + false + 130 + FortyGigE0/1/0/28 + false + + Ethernet112 + 40000 + + + DeviceInterface + + false + 131 + HundredGigE0/1/0/29 + false + + Ethernet116 + 100000 + + + DeviceInterface + + false + 132 + FortyGigE0/1/0/29 + false + + Ethernet116 + 40000 + + + DeviceInterface + + false + 133 + HundredGigE0/1/0/30 + false + + Ethernet120 + 100000 + + + DeviceInterface + + false + 134 + FortyGigE0/1/0/30 + false + + Ethernet120 + 40000 + + + DeviceInterface + + false + 135 + HundredGigE0/1/0/31 + false + + Ethernet124 + 100000 + + + DeviceInterface + + false + 136 + FortyGigE0/1/0/31 + false + + Ethernet124 + 40000 + + + DeviceInterface + + false + 137 + HundredGigE0/1/0/32 + false + + Ethernet128 + 100000 + + + DeviceInterface + + false + 138 + FortyGigE0/1/0/32 + false + + Ethernet128 + 40000 + + + DeviceInterface + + false + 139 + HundredGigE0/1/0/33 + false + + Ethernet132 + 100000 + + + DeviceInterface + + false + 140 + FortyGigE0/1/0/33 + false + + Ethernet132 + 40000 + + + DeviceInterface + + false + 141 + HundredGigE0/1/0/34 + false + + Ethernet136 + 100000 + + + DeviceInterface + + false + 142 + FortyGigE0/1/0/34 + false + + Ethernet136 + 40000 + + + DeviceInterface + + false + 143 + HundredGigE0/1/0/35 + false + + Ethernet140 + 100000 + + + DeviceInterface + + false + 144 + FortyGigE0/1/0/35 + false + + Ethernet140 + 40000 + + + DeviceInterface + + false + 145 + HundredGigE0/1/0/36 + false + + Ethernet144 + 100000 + + + DeviceInterface + + false + 146 + FortyGigE0/1/0/36 + false + + Ethernet144 + 40000 + + + DeviceInterface + + false + 147 + HundredGigE0/1/0/37 + false + + Ethernet148 + 100000 + + + DeviceInterface + + false + 148 + FortyGigE0/1/0/37 + false + + Ethernet148 + 40000 + + + DeviceInterface + + false + 149 + HundredGigE0/1/0/38 + false + + Ethernet152 + 100000 + + + DeviceInterface + + false + 150 + FortyGigE0/1/0/38 + false + + Ethernet152 + 40000 + + + DeviceInterface + + false + 151 + HundredGigE0/1/0/39 + false + + Ethernet156 + 100000 + + + DeviceInterface + + false + 152 + FortyGigE0/1/0/39 + false + + Ethernet156 + 40000 + + + DeviceInterface + + false + 153 + HundredGigE0/1/0/40 + false + + Ethernet160 + 100000 + + + DeviceInterface + + false + 154 + FortyGigE0/1/0/40 + false + + Ethernet160 + 40000 + + + DeviceInterface + + false + 155 + HundredGigE0/1/0/41 + false + + Ethernet164 + 100000 + + + DeviceInterface + + false + 156 + FortyGigE0/1/0/41 + false + + Ethernet164 + 40000 + + + DeviceInterface + + false + 157 + HundredGigE0/1/0/42 + false + + Ethernet168 + 100000 + + + DeviceInterface + + false + 158 + FortyGigE0/1/0/42 + false + + Ethernet168 + 40000 + + + DeviceInterface + + false + 159 + HundredGigE0/1/0/43 + false + + Ethernet172 + 100000 + + + DeviceInterface + + false + 160 + FortyGigE0/1/0/43 + false + + Ethernet172 + 40000 + + + DeviceInterface + + false + 161 + HundredGigE0/1/0/44 + false + + Ethernet176 + 100000 + + + DeviceInterface + + false + 162 + FortyGigE0/1/0/44 + false + + Ethernet176 + 40000 + + + DeviceInterface + + false + 163 + HundredGigE0/1/0/45 + false + + Ethernet180 + 100000 + + + DeviceInterface + + false + 164 + FortyGigE0/1/0/45 + false + + Ethernet180 + 40000 + + + DeviceInterface + + false + 165 + HundredGigE0/1/0/46 + false + + Ethernet184 + 100000 + + + DeviceInterface + + false + 166 + FortyGigE0/1/0/46 + false + + Ethernet184 + 40000 + + + DeviceInterface + + false + 167 + HundredGigE0/1/0/47 + false + + Ethernet188 + 100000 + + + DeviceInterface + + false + 168 + FortyGigE0/1/0/47 + false + + Ethernet188 + 40000 + + + DeviceInterface + + false + 169 + HundredGigE0/2/0/0 + false + + Ethernet0 + 100000 + + + DeviceInterface + + false + 170 + FortyGigE0/2/0/0 + false + + Ethernet0 + 40000 + + + DeviceInterface + + false + 171 + HundredGigE0/2/0/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + + false + 172 + FortyGigE0/2/0/1 + false + + Ethernet4 + 40000 + + + DeviceInterface + + false + 173 + HundredGigE0/2/0/2 + false + + Ethernet8 + 100000 + + + DeviceInterface + + false + 174 + FortyGigE0/2/0/2 + false + + Ethernet8 + 40000 + + + DeviceInterface + + false + 175 + HundredGigE0/2/0/3 + false + + Ethernet12 + 100000 + + + DeviceInterface + + false + 176 + FortyGigE0/2/0/3 + false + + Ethernet12 + 40000 + + + DeviceInterface + + false + 177 + HundredGigE0/2/0/4 + false + + Ethernet16 + 100000 + + + DeviceInterface + + false + 178 + FortyGigE0/2/0/4 + false + + Ethernet16 + 40000 + + + DeviceInterface + + false + 179 + HundredGigE0/2/0/5 + false + + Ethernet20 + 100000 + + + DeviceInterface + + false + 180 + FortyGigE0/2/0/5 + false + + Ethernet20 + 40000 + + + DeviceInterface + + false + 181 + HundredGigE0/2/0/6 + false + + Ethernet24 + 100000 + + + DeviceInterface + + false + 182 + FortyGigE0/2/0/6 + false + + Ethernet24 + 40000 + + + DeviceInterface + + false + 183 + HundredGigE0/2/0/7 + false + + Ethernet28 + 100000 + + + DeviceInterface + + false + 184 + FortyGigE0/2/0/7 + false + + Ethernet28 + 40000 + + + DeviceInterface + + false + 185 + HundredGigE0/2/0/8 + false + + Ethernet32 + 100000 + + + DeviceInterface + + false + 186 + FortyGigE0/2/0/8 + false + + Ethernet32 + 40000 + + + DeviceInterface + + false + 187 + HundredGigE0/2/0/9 + false + + Ethernet36 + 100000 + + + DeviceInterface + + false + 188 + FortyGigE0/2/0/9 + false + + Ethernet36 + 40000 + + + DeviceInterface + + false + 189 + HundredGigE0/2/0/10 + false + + Ethernet40 + 100000 + + + DeviceInterface + + false + 190 + FortyGigE0/2/0/10 + false + + Ethernet40 + 40000 + + + DeviceInterface + + false + 191 + HundredGigE0/2/0/11 + false + + Ethernet44 + 100000 + + + DeviceInterface + + false + 192 + FortyGigE0/2/0/11 + false + + Ethernet44 + 40000 + + + DeviceInterface + + false + 193 + HundredGigE0/2/0/12 + false + + Ethernet48 + 100000 + + + DeviceInterface + + false + 194 + FortyGigE0/2/0/12 + false + + Ethernet48 + 40000 + + + DeviceInterface + + false + 195 + HundredGigE0/2/0/13 + false + + Ethernet52 + 100000 + + + DeviceInterface + + false + 196 + FortyGigE0/2/0/13 + false + + Ethernet52 + 40000 + + + DeviceInterface + + false + 197 + HundredGigE0/2/0/14 + false + + Ethernet56 + 100000 + + + DeviceInterface + + false + 198 + FortyGigE0/2/0/14 + false + + Ethernet56 + 40000 + + + DeviceInterface + + false + 199 + HundredGigE0/2/0/15 + false + + Ethernet60 + 100000 + + + DeviceInterface + + false + 200 + FortyGigE0/2/0/15 + false + + Ethernet60 + 40000 + + + DeviceInterface + + false + 201 + HundredGigE0/2/0/16 + false + + Ethernet64 + 100000 + + + DeviceInterface + + false + 202 + FortyGigE0/2/0/16 + false + + Ethernet64 + 40000 + + + DeviceInterface + + false + 203 + HundredGigE0/2/0/17 + false + + Ethernet68 + 100000 + + + DeviceInterface + + false + 204 + FortyGigE0/2/0/17 + false + + Ethernet68 + 40000 + + + DeviceInterface + + false + 205 + HundredGigE0/2/0/18 + false + + Ethernet72 + 100000 + + + DeviceInterface + + false + 206 + FortyGigE0/2/0/18 + false + + Ethernet72 + 40000 + + + DeviceInterface + + false + 207 + HundredGigE0/2/0/19 + false + + Ethernet76 + 100000 + + + DeviceInterface + + false + 208 + FortyGigE0/2/0/19 + false + + Ethernet76 + 40000 + + + DeviceInterface + + false + 209 + HundredGigE0/2/0/20 + false + + Ethernet80 + 100000 + + + DeviceInterface + + false + 210 + FortyGigE0/2/0/20 + false + + Ethernet80 + 40000 + + + DeviceInterface + + false + 211 + HundredGigE0/2/0/21 + false + + Ethernet84 + 100000 + + + DeviceInterface + + false + 212 + FortyGigE0/2/0/21 + false + + Ethernet84 + 40000 + + + DeviceInterface + + false + 213 + HundredGigE0/2/0/22 + false + + Ethernet88 + 100000 + + + DeviceInterface + + false + 214 + FortyGigE0/2/0/22 + false + + Ethernet88 + 40000 + + + DeviceInterface + + false + 215 + HundredGigE0/2/0/23 + false + + Ethernet92 + 100000 + + + DeviceInterface + + false + 216 + FortyGigE0/2/0/23 + false + + Ethernet92 + 40000 + + + DeviceInterface + + false + 217 + HundredGigE0/2/0/24 + false + + Ethernet96 + 100000 + + + DeviceInterface + + false + 218 + FortyGigE0/2/0/24 + false + + Ethernet96 + 40000 + + + DeviceInterface + + false + 219 + HundredGigE0/2/0/25 + false + + Ethernet100 + 100000 + + + DeviceInterface + + false + 220 + FortyGigE0/2/0/25 + false + + Ethernet100 + 40000 + + + DeviceInterface + + false + 221 + HundredGigE0/2/0/26 + false + + Ethernet104 + 100000 + + + DeviceInterface + + false + 222 + FortyGigE0/2/0/26 + false + + Ethernet104 + 40000 + + + DeviceInterface + + false + 223 + HundredGigE0/2/0/27 + false + + Ethernet108 + 100000 + + + DeviceInterface + + false + 224 + FortyGigE0/2/0/27 + false + + Ethernet108 + 40000 + + + DeviceInterface + + false + 225 + HundredGigE0/2/0/28 + false + + Ethernet112 + 100000 + + + DeviceInterface + + false + 226 + FortyGigE0/2/0/28 + false + + Ethernet112 + 40000 + + + DeviceInterface + + false + 227 + HundredGigE0/2/0/29 + false + + Ethernet116 + 100000 + + + DeviceInterface + + false + 228 + FortyGigE0/2/0/29 + false + + Ethernet116 + 40000 + + + DeviceInterface + + false + 229 + HundredGigE0/2/0/30 + false + + Ethernet120 + 100000 + + + DeviceInterface + + false + 230 + FortyGigE0/2/0/30 + false + + Ethernet120 + 40000 + + + DeviceInterface + + false + 231 + HundredGigE0/2/0/31 + false + + Ethernet124 + 100000 + + + DeviceInterface + + false + 232 + FortyGigE0/2/0/31 + false + + Ethernet124 + 40000 + + + DeviceInterface + + false + 233 + HundredGigE0/2/0/32 + false + + Ethernet128 + 100000 + + + DeviceInterface + + false + 234 + FortyGigE0/2/0/32 + false + + Ethernet128 + 40000 + + + DeviceInterface + + false + 235 + HundredGigE0/2/0/33 + false + + Ethernet132 + 100000 + + + DeviceInterface + + false + 236 + FortyGigE0/2/0/33 + false + + Ethernet132 + 40000 + + + DeviceInterface + + false + 237 + HundredGigE0/2/0/34 + false + + Ethernet136 + 100000 + + + DeviceInterface + + false + 238 + FortyGigE0/2/0/34 + false + + Ethernet136 + 40000 + + + DeviceInterface + + false + 239 + HundredGigE0/2/0/35 + false + + Ethernet140 + 100000 + + + DeviceInterface + + false + 240 + FortyGigE0/2/0/35 + false + + Ethernet140 + 40000 + + + DeviceInterface + + false + 241 + HundredGigE0/2/0/36 + false + + Ethernet144 + 100000 + + + DeviceInterface + + false + 242 + FortyGigE0/2/0/36 + false + + Ethernet144 + 40000 + + + DeviceInterface + + false + 243 + HundredGigE0/2/0/37 + false + + Ethernet148 + 100000 + + + DeviceInterface + + false + 244 + FortyGigE0/2/0/37 + false + + Ethernet148 + 40000 + + + DeviceInterface + + false + 245 + HundredGigE0/2/0/38 + false + + Ethernet152 + 100000 + + + DeviceInterface + + false + 246 + FortyGigE0/2/0/38 + false + + Ethernet152 + 40000 + + + DeviceInterface + + false + 247 + HundredGigE0/2/0/39 + false + + Ethernet156 + 100000 + + + DeviceInterface + + false + 248 + FortyGigE0/2/0/39 + false + + Ethernet156 + 40000 + + + DeviceInterface + + false + 249 + HundredGigE0/2/0/40 + false + + Ethernet160 + 100000 + + + DeviceInterface + + false + 250 + FortyGigE0/2/0/40 + false + + Ethernet160 + 40000 + + + DeviceInterface + + false + 251 + HundredGigE0/2/0/41 + false + + Ethernet164 + 100000 + + + DeviceInterface + + false + 252 + FortyGigE0/2/0/41 + false + + Ethernet164 + 40000 + + + DeviceInterface + + false + 253 + HundredGigE0/2/0/42 + false + + Ethernet168 + 100000 + + + DeviceInterface + + false + 254 + FortyGigE0/2/0/42 + false + + Ethernet168 + 40000 + + + DeviceInterface + + false + 255 + HundredGigE0/2/0/43 + false + + Ethernet172 + 100000 + + + DeviceInterface + + false + 256 + FortyGigE0/2/0/43 + false + + Ethernet172 + 40000 + + + DeviceInterface + + false + 257 + HundredGigE0/2/0/44 + false + + Ethernet176 + 100000 + + + DeviceInterface + + false + 258 + FortyGigE0/2/0/44 + false + + Ethernet176 + 40000 + + + DeviceInterface + + false + 259 + HundredGigE0/2/0/45 + false + + Ethernet180 + 100000 + + + DeviceInterface + + false + 260 + FortyGigE0/2/0/45 + false + + Ethernet180 + 40000 + + + DeviceInterface + + false + 261 + HundredGigE0/2/0/46 + false + + Ethernet184 + 100000 + + + DeviceInterface + + false + 262 + FortyGigE0/2/0/46 + false + + Ethernet184 + 40000 + + + DeviceInterface + + false + 263 + HundredGigE0/2/0/47 + false + + Ethernet188 + 100000 + + + DeviceInterface + + false + 264 + FortyGigE0/2/0/47 + false + + Ethernet188 + 40000 + + + DeviceInterface + + false + 265 + HundredGigE0/3/0/0 + false + + Ethernet0 + 100000 + + + DeviceInterface + + false + 266 + FortyGigE0/3/0/0 + false + + Ethernet0 + 40000 + + + DeviceInterface + + false + 267 + FourHundredGigE0/3/0/0 + false + + Ethernet0 + 400000 + + + DeviceInterface + + false + 268 + HundredGigE0/3/0/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + + false + 269 + FortyGigE0/3/0/1 + false + + Ethernet8 + 40000 + + + DeviceInterface + + false + 270 + FourHundredGigE0/3/0/1 + false + + Ethernet8 + 400000 + + + DeviceInterface + + false + 271 + HundredGigE0/3/0/2 + false + + Ethernet16 + 100000 + + + DeviceInterface + + false + 272 + FortyGigE0/3/0/2 + false + + Ethernet16 + 40000 + + + DeviceInterface + + false + 273 + FourHundredGigE0/3/0/2 + false + + Ethernet16 + 400000 + + + DeviceInterface + + false + 274 + HundredGigE0/3/0/3 + false + + Ethernet24 + 100000 + + + DeviceInterface + + false + 275 + FortyGigE0/3/0/3 + false + + Ethernet24 + 40000 + + + DeviceInterface + + false + 276 + FourHundredGigE0/3/0/3 + false + + Ethernet24 + 400000 + + + DeviceInterface + + false + 277 + HundredGigE0/3/0/4 + false + + Ethernet32 + 100000 + + + DeviceInterface + + false + 278 + FortyGigE0/3/0/4 + false + + Ethernet32 + 40000 + + + DeviceInterface + + false + 279 + FourHundredGigE0/3/0/4 + false + + Ethernet32 + 400000 + + + DeviceInterface + + false + 280 + HundredGigE0/3/0/5 + false + + Ethernet40 + 100000 + + + DeviceInterface + + false + 281 + FortyGigE0/3/0/5 + false + + Ethernet40 + 40000 + + + DeviceInterface + + false + 282 + FourHundredGigE0/3/0/5 + false + + Ethernet40 + 400000 + + + DeviceInterface + + false + 283 + HundredGigE0/3/0/6 + false + + Ethernet48 + 100000 + + + DeviceInterface + + false + 284 + FortyGigE0/3/0/6 + false + + Ethernet48 + 40000 + + + DeviceInterface + + false + 285 + FourHundredGigE0/3/0/6 + false + + Ethernet48 + 400000 + + + DeviceInterface + + false + 286 + HundredGigE0/3/0/7 + false + + Ethernet56 + 100000 + + + DeviceInterface + + false + 287 + FortyGigE0/3/0/7 + false + + Ethernet56 + 40000 + + + DeviceInterface + + false + 288 + FourHundredGigE0/3/0/7 + false + + Ethernet56 + 400000 + + + DeviceInterface + + false + 289 + HundredGigE0/3/0/8 + false + + Ethernet64 + 100000 + + + DeviceInterface + + false + 290 + FortyGigE0/3/0/8 + false + + Ethernet64 + 40000 + + + DeviceInterface + + false + 291 + FourHundredGigE0/3/0/8 + false + + Ethernet64 + 400000 + + + DeviceInterface + + false + 292 + HundredGigE0/3/0/9 + false + + Ethernet72 + 100000 + + + DeviceInterface + + false + 293 + FortyGigE0/3/0/9 + false + + Ethernet72 + 40000 + + + DeviceInterface + + false + 294 + FourHundredGigE0/3/0/9 + false + + Ethernet72 + 400000 + + + DeviceInterface + + false + 295 + HundredGigE0/3/0/10 + false + + Ethernet80 + 100000 + + + DeviceInterface + + false + 296 + FortyGigE0/3/0/10 + false + + Ethernet80 + 40000 + + + DeviceInterface + + false + 297 + FourHundredGigE0/3/0/10 + false + + Ethernet80 + 400000 + + + DeviceInterface + + false + 298 + HundredGigE0/3/0/11 + false + + Ethernet88 + 100000 + + + DeviceInterface + + false + 299 + FortyGigE0/3/0/11 + false + + Ethernet88 + 40000 + + + DeviceInterface + + false + 300 + FourHundredGigE0/3/0/11 + false + + Ethernet88 + 400000 + + + DeviceInterface + + false + 301 + HundredGigE0/3/0/12 + false + + Ethernet96 + 100000 + + + DeviceInterface + + false + 302 + FortyGigE0/3/0/12 + false + + Ethernet96 + 40000 + + + DeviceInterface + + false + 303 + FourHundredGigE0/3/0/12 + false + + Ethernet96 + 400000 + + + DeviceInterface + + false + 304 + HundredGigE0/3/0/13 + false + + Ethernet104 + 100000 + + + DeviceInterface + + false + 305 + FortyGigE0/3/0/13 + false + + Ethernet104 + 40000 + + + DeviceInterface + + false + 306 + FourHundredGigE0/3/0/13 + false + + Ethernet104 + 400000 + + + DeviceInterface + + false + 307 + HundredGigE0/3/0/14 + false + + Ethernet112 + 100000 + + + DeviceInterface + + false + 308 + FortyGigE0/3/0/14 + false + + Ethernet112 + 40000 + + + DeviceInterface + + false + 309 + FourHundredGigE0/3/0/14 + false + + Ethernet112 + 400000 + + + DeviceInterface + + false + 310 + HundredGigE0/3/0/15 + false + + Ethernet120 + 100000 + + + DeviceInterface + + false + 311 + FortyGigE0/3/0/15 + false + + Ethernet120 + 40000 + + + DeviceInterface + + false + 312 + FourHundredGigE0/3/0/15 + false + + Ethernet120 + 400000 + + + DeviceInterface + + false + 313 + HundredGigE0/3/0/16 + false + + Ethernet128 + 100000 + + + DeviceInterface + + false + 314 + FortyGigE0/3/0/16 + false + + Ethernet128 + 40000 + + + DeviceInterface + + false + 315 + FourHundredGigE0/3/0/16 + false + + Ethernet128 + 400000 + + + DeviceInterface + + false + 316 + HundredGigE0/3/0/17 + false + + Ethernet136 + 100000 + + + DeviceInterface + + false + 317 + FortyGigE0/3/0/17 + false + + Ethernet136 + 40000 + + + DeviceInterface + + false + 318 + FourHundredGigE0/3/0/17 + false + + Ethernet136 + 400000 + + + DeviceInterface + + false + 319 + HundredGigE0/3/0/18 + false + + Ethernet144 + 100000 + + + DeviceInterface + + false + 320 + FortyGigE0/3/0/18 + false + + Ethernet144 + 40000 + + + DeviceInterface + + false + 321 + FourHundredGigE0/3/0/18 + false + + Ethernet144 + 400000 + + + DeviceInterface + + false + 322 + HundredGigE0/3/0/19 + false + + Ethernet152 + 100000 + + + DeviceInterface + + false + 323 + FortyGigE0/3/0/19 + false + + Ethernet152 + 40000 + + + DeviceInterface + + false + 324 + FourHundredGigE0/3/0/19 + false + + Ethernet152 + 400000 + + + DeviceInterface + + false + 325 + HundredGigE0/3/0/20 + false + + Ethernet160 + 100000 + + + DeviceInterface + + false + 326 + FortyGigE0/3/0/20 + false + + Ethernet160 + 40000 + + + DeviceInterface + + false + 327 + FourHundredGigE0/3/0/20 + false + + Ethernet160 + 400000 + + + DeviceInterface + + false + 328 + HundredGigE0/3/0/21 + false + + Ethernet168 + 100000 + + + DeviceInterface + + false + 329 + FortyGigE0/3/0/21 + false + + Ethernet168 + 40000 + + + DeviceInterface + + false + 330 + FourHundredGigE0/3/0/21 + false + + Ethernet168 + 400000 + + + DeviceInterface + + false + 331 + HundredGigE0/3/0/22 + false + + Ethernet176 + 100000 + + + DeviceInterface + + false + 332 + FortyGigE0/3/0/22 + false + + Ethernet176 + 40000 + + + DeviceInterface + + false + 333 + FourHundredGigE0/3/0/22 + false + + Ethernet176 + 400000 + + + DeviceInterface + + false + 334 + HundredGigE0/3/0/23 + false + + Ethernet184 + 100000 + + + DeviceInterface + + false + 335 + FortyGigE0/3/0/23 + false + + Ethernet184 + 40000 + + + DeviceInterface + + false + 336 + FourHundredGigE0/3/0/23 + false + + Ethernet184 + 400000 + + + DeviceInterface + + false + 337 + HundredGigE0/3/0/24 + false + + Ethernet192 + 100000 + + + DeviceInterface + + false + 338 + FortyGigE0/3/0/24 + false + + Ethernet192 + 40000 + + + DeviceInterface + + false + 339 + FourHundredGigE0/3/0/24 + false + + Ethernet192 + 400000 + + + DeviceInterface + + false + 340 + HundredGigE0/3/0/25 + false + + Ethernet200 + 100000 + + + DeviceInterface + + false + 341 + FortyGigE0/3/0/25 + false + + Ethernet200 + 40000 + + + DeviceInterface + + false + 342 + FourHundredGigE0/3/0/25 + false + + Ethernet200 + 400000 + + + DeviceInterface + + false + 343 + HundredGigE0/3/0/26 + false + + Ethernet208 + 100000 + + + DeviceInterface + + false + 344 + FortyGigE0/3/0/26 + false + + Ethernet208 + 40000 + + + DeviceInterface + + false + 345 + FourHundredGigE0/3/0/26 + false + + Ethernet208 + 400000 + + + DeviceInterface + + false + 346 + HundredGigE0/3/0/27 + false + + Ethernet216 + 100000 + + + DeviceInterface + + false + 347 + FortyGigE0/3/0/27 + false + + Ethernet216 + 40000 + + + DeviceInterface + + false + 348 + FourHundredGigE0/3/0/27 + false + + Ethernet216 + 400000 + + + DeviceInterface + + false + 349 + HundredGigE0/3/0/28 + false + + Ethernet224 + 100000 + + + DeviceInterface + + false + 350 + FortyGigE0/3/0/28 + false + + Ethernet224 + 40000 + + + DeviceInterface + + false + 351 + FourHundredGigE0/3/0/28 + false + + Ethernet224 + 400000 + + + DeviceInterface + + false + 352 + HundredGigE0/3/0/29 + false + + Ethernet232 + 100000 + + + DeviceInterface + + false + 353 + FortyGigE0/3/0/29 + false + + Ethernet232 + 40000 + + + DeviceInterface + + false + 354 + FourHundredGigE0/3/0/29 + false + + Ethernet232 + 400000 + + + DeviceInterface + + false + 355 + HundredGigE0/3/0/30 + false + + Ethernet240 + 100000 + + + DeviceInterface + + false + 356 + FortyGigE0/3/0/30 + false + + Ethernet240 + 40000 + + + DeviceInterface + + false + 357 + FourHundredGigE0/3/0/30 + false + + Ethernet240 + 400000 + + + DeviceInterface + + false + 358 + HundredGigE0/3/0/31 + false + + Ethernet248 + 100000 + + + DeviceInterface + + false + 359 + FortyGigE0/3/0/31 + false + + Ethernet248 + 40000 + + + DeviceInterface + + false + 360 + FourHundredGigE0/3/0/31 + false + + Ethernet248 + 400000 + + + DeviceInterface + + false + 361 + HundredGigE0/3/0/32 + false + + Ethernet256 + 100000 + + + DeviceInterface + + false + 362 + FortyGigE0/3/0/32 + false + + Ethernet256 + 40000 + + + DeviceInterface + + false + 363 + FourHundredGigE0/3/0/32 + false + + Ethernet256 + 400000 + + + DeviceInterface + + false + 364 + HundredGigE0/3/0/33 + false + + Ethernet264 + 100000 + + + DeviceInterface + + false + 365 + FortyGigE0/3/0/33 + false + + Ethernet264 + 40000 + + + DeviceInterface + + false + 366 + FourHundredGigE0/3/0/33 + false + + Ethernet264 + 400000 + + + DeviceInterface + + false + 367 + HundredGigE0/3/0/34 + false + + Ethernet272 + 100000 + + + DeviceInterface + + false + 368 + FortyGigE0/3/0/34 + false + + Ethernet272 + 40000 + + + DeviceInterface + + false + 369 + FourHundredGigE0/3/0/34 + false + + Ethernet272 + 400000 + + + DeviceInterface + + false + 370 + HundredGigE0/3/0/35 + false + + Ethernet280 + 100000 + + + DeviceInterface + + false + 371 + FortyGigE0/3/0/35 + false + + Ethernet280 + 40000 + + + DeviceInterface + + false + 372 + FourHundredGigE0/3/0/35 + false + + Ethernet280 + 400000 + + + DeviceInterface + + false + 373 + FourHundredGigE0/4/0/0 + false + + Ethernet0 + 400000 + + + DeviceInterface + + false + 374 + HundredGigE0/4/0/0 + false + + Ethernet0 + 100000 + + + DeviceInterface + + false + 375 + FourHundredGigE0/4/0/1 + false + + Ethernet8 + 400000 + + + DeviceInterface + + false + 376 + HundredGigE0/4/0/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + + false + 377 + FourHundredGigE0/4/0/2 + false + + Ethernet16 + 400000 + + + DeviceInterface + + false + 378 + HundredGigE0/4/0/2 + false + + Ethernet16 + 100000 + + + DeviceInterface + + false + 379 + FourHundredGigE0/4/0/3 + false + + Ethernet24 + 400000 + + + DeviceInterface + + false + 380 + HundredGigE0/4/0/3 + false + + Ethernet24 + 100000 + + + DeviceInterface + + false + 381 + FourHundredGigE0/4/0/4 + false + + Ethernet32 + 400000 + + + DeviceInterface + + false + 382 + HundredGigE0/4/0/4 + false + + Ethernet32 + 100000 + + + DeviceInterface + + false + 383 + FourHundredGigE0/4/0/5 + false + + Ethernet40 + 400000 + + + DeviceInterface + + false + 384 + HundredGigE0/4/0/5 + false + + Ethernet40 + 100000 + + + DeviceInterface + + false + 385 + FourHundredGigE0/4/0/6 + false + + Ethernet48 + 400000 + + + DeviceInterface + + false + 386 + HundredGigE0/4/0/6 + false + + Ethernet48 + 100000 + + + DeviceInterface + + false + 387 + FourHundredGigE0/4/0/7 + false + + Ethernet56 + 400000 + + + DeviceInterface + + false + 388 + HundredGigE0/4/0/7 + false + + Ethernet56 + 100000 + + + DeviceInterface + + false + 389 + FourHundredGigE0/4/0/8 + false + + Ethernet64 + 400000 + + + DeviceInterface + + false + 390 + HundredGigE0/4/0/8 + false + + Ethernet64 + 100000 + + + DeviceInterface + + false + 391 + FourHundredGigE0/4/0/9 + false + + Ethernet72 + 400000 + + + DeviceInterface + + false + 392 + HundredGigE0/4/0/9 + false + + Ethernet72 + 100000 + + + DeviceInterface + + false + 393 + FourHundredGigE0/4/0/10 + false + + Ethernet80 + 400000 + + + DeviceInterface + + false + 394 + HundredGigE0/4/0/10 + false + + Ethernet80 + 100000 + + + DeviceInterface + + false + 395 + FourHundredGigE0/4/0/11 + false + + Ethernet88 + 400000 + + + DeviceInterface + + false + 396 + HundredGigE0/4/0/11 + false + + Ethernet88 + 100000 + + + DeviceInterface + + false + 397 + FourHundredGigE0/4/0/12 + false + + Ethernet96 + 400000 + + + DeviceInterface + + false + 398 + HundredGigE0/4/0/12 + false + + Ethernet96 + 100000 + + + DeviceInterface + + false + 399 + FourHundredGigE0/4/0/13 + false + + Ethernet104 + 400000 + + + DeviceInterface + + false + 400 + HundredGigE0/4/0/13 + false + + Ethernet104 + 100000 + + + DeviceInterface + + false + 401 + FourHundredGigE0/4/0/14 + false + + Ethernet112 + 400000 + + + DeviceInterface + + false + 402 + HundredGigE0/4/0/14 + false + + Ethernet112 + 100000 + + + DeviceInterface + + false + 403 + FourHundredGigE0/4/0/15 + false + + Ethernet120 + 400000 + + + DeviceInterface + + false + 404 + HundredGigE0/4/0/15 + false + + Ethernet120 + 100000 + + + DeviceInterface + + false + 405 + FourHundredGigE0/4/0/16 + false + + Ethernet128 + 400000 + + + DeviceInterface + + false + 406 + HundredGigE0/4/0/16 + false + + Ethernet128 + 100000 + + + DeviceInterface + + false + 407 + FourHundredGigE0/4/0/17 + false + + Ethernet136 + 400000 + + + DeviceInterface + + false + 408 + HundredGigE0/4/0/17 + false + + Ethernet136 + 100000 + + + DeviceInterface + + false + 409 + FourHundredGigE0/4/0/18 + false + + Ethernet144 + 400000 + + + DeviceInterface + + false + 410 + HundredGigE0/4/0/18 + false + + Ethernet144 + 100000 + + + DeviceInterface + + false + 411 + FourHundredGigE0/4/0/19 + false + + Ethernet152 + 400000 + + + DeviceInterface + + false + 412 + HundredGigE0/4/0/19 + false + + Ethernet152 + 100000 + + + DeviceInterface + + false + 413 + FourHundredGigE0/4/0/20 + false + + Ethernet160 + 400000 + + + DeviceInterface + + false + 414 + HundredGigE0/4/0/20 + false + + Ethernet160 + 100000 + + + DeviceInterface + + false + 415 + FourHundredGigE0/4/0/21 + false + + Ethernet168 + 400000 + + + DeviceInterface + + false + 416 + HundredGigE0/4/0/21 + false + + Ethernet168 + 100000 + + + DeviceInterface + + false + 417 + FourHundredGigE0/4/0/22 + false + + Ethernet176 + 400000 + + + DeviceInterface + + false + 418 + HundredGigE0/4/0/22 + false + + Ethernet176 + 100000 + + + DeviceInterface + + false + 419 + FourHundredGigE0/4/0/23 + false + + Ethernet184 + 400000 + + + DeviceInterface + + false + 420 + HundredGigE0/4/0/23 + false + + Ethernet184 + 100000 + + + DeviceInterface + + false + 421 + FourHundredGigE0/4/0/24 + false + + Ethernet192 + 400000 + + + DeviceInterface + + false + 422 + HundredGigE0/4/0/24 + false + + Ethernet192 + 100000 + + + DeviceInterface + + false + 423 + FourHundredGigE0/4/0/25 + false + + Ethernet200 + 400000 + + + DeviceInterface + + false + 424 + HundredGigE0/4/0/25 + false + + Ethernet200 + 100000 + + + DeviceInterface + + false + 425 + FourHundredGigE0/4/0/26 + false + + Ethernet208 + 400000 + + + DeviceInterface + + false + 426 + HundredGigE0/4/0/26 + false + + Ethernet208 + 100000 + + + DeviceInterface + + false + 427 + FourHundredGigE0/4/0/27 + false + + Ethernet216 + 400000 + + + DeviceInterface + + false + 428 + HundredGigE0/4/0/27 + false + + Ethernet216 + 100000 + + + DeviceInterface + + false + 429 + FourHundredGigE0/4/0/28 + false + + Ethernet224 + 400000 + + + DeviceInterface + + false + 430 + HundredGigE0/4/0/28 + false + + Ethernet224 + 100000 + + + DeviceInterface + + false + 431 + FourHundredGigE0/4/0/29 + false + + Ethernet232 + 400000 + + + DeviceInterface + + false + 432 + HundredGigE0/4/0/29 + false + + Ethernet232 + 100000 + + + DeviceInterface + + false + 433 + FourHundredGigE0/4/0/30 + false + + Ethernet240 + 400000 + + + DeviceInterface + + false + 434 + HundredGigE0/4/0/30 + false + + Ethernet240 + 100000 + + + DeviceInterface + + false + 435 + FourHundredGigE0/4/0/31 + false + + Ethernet248 + 400000 + + + DeviceInterface + + false + 436 + HundredGigE0/4/0/31 + false + + Ethernet248 + 100000 + + + DeviceInterface + + false + 437 + FourHundredGigE0/4/0/32 + false + + Ethernet256 + 400000 + + + DeviceInterface + + false + 438 + HundredGigE0/4/0/32 + false + + Ethernet256 + 100000 + + + DeviceInterface + + false + 439 + FourHundredGigE0/4/0/33 + false + + Ethernet264 + 400000 + + + DeviceInterface + + false + 440 + HundredGigE0/4/0/33 + false + + Ethernet264 + 100000 + + + DeviceInterface + + false + 441 + FourHundredGigE0/4/0/34 + false + + Ethernet272 + 400000 + + + DeviceInterface + + false + 442 + HundredGigE0/4/0/34 + false + + Ethernet272 + 100000 + + + DeviceInterface + + false + 443 + FourHundredGigE0/4/0/35 + false + + Ethernet280 + 400000 + + + DeviceInterface + + false + 444 + HundredGigE0/4/0/35 + false + + Ethernet280 + 100000 + + + false + 0 + Sonic-packet-chassis-sku + + + + FourHundredGigE0/0/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:0:0:0 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + HundredGigE0/0/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:0:0:0 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:0:0:1 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + HundredGigE0/0/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:0:0:1 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:0:0:2 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + HundredGigE0/0/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:0:0:2 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:0:0:3 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + HundredGigE0/0/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:0:0:3 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:0:0:4 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + HundredGigE0/0/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:0:0:4 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:0:0:5 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + HundredGigE0/0/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:0:0:5 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:0:0:6 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + HundredGigE0/0/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:0:0:6 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:0:0:7 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + HundredGigE0/0/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:0:0:7 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:0:0:8 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + HundredGigE0/0/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:0:0:8 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:0:0:9 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + HundredGigE0/0/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:0:0:9 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:0:0:10 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + HundredGigE0/0/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:0:0:10 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:0:0:11 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + HundredGigE0/0/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:0:0:11 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + FourHundredGigE0/0/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:0:0:12 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + HundredGigE0/0/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:0:0:12 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:0:0:13 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + HundredGigE0/0/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:0:0:13 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:0:0:14 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + HundredGigE0/0/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:0:0:14 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:0:0:15 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + HundredGigE0/0/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:0:0:15 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:0:0:16 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + HundredGigE0/0/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:0:0:16 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:0:0:17 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + HundredGigE0/0/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:0:0:17 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:0:0:18 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + HundredGigE0/0/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:0:0:18 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:0:0:19 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + HundredGigE0/0/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:0:0:19 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:0:0:20 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + HundredGigE0/0/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:0:0:20 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:0:0:21 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + HundredGigE0/0/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:0:0:21 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:0:0:22 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + HundredGigE0/0/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:0:0:22 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:0:0:23 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + HundredGigE0/0/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:0:0:23 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + FourHundredGigE0/0/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:0:0:24 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + HundredGigE0/0/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:0:0:24 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:0:0:25 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + HundredGigE0/0/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:0:0:25 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:0:0:26 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + HundredGigE0/0/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:0:0:26 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:0:0:27 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + HundredGigE0/0/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:0:0:27 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:0:0:28 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + HundredGigE0/0/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:0:0:28 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:0:0:29 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + HundredGigE0/0/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:0:0:29 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:0:0:30 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + HundredGigE0/0/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:0:0:30 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:0:0:31 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + HundredGigE0/0/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:0:0:31 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:0:0:32 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + HundredGigE0/0/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:0:0:32 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:0:0:33 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + HundredGigE0/0/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:0:0:33 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:0:0:34 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + HundredGigE0/0/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:0:0:34 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + FourHundredGigE0/0/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:0:0:35 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + HundredGigE0/0/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 0 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:0:0:35 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + HundredGigE0/1/0/0 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:1:0:0 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + FortyGigE0/1/0/0 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:1:0:0 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + HundredGigE0/1/0/1 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:1:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + FortyGigE0/1/0/1 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:1:0:1 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + HundredGigE0/1/0/2 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:1:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + FortyGigE0/1/0/2 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:1:0:2 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + HundredGigE0/1/0/3 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:1:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + FortyGigE0/1/0/3 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:1:0:3 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + HundredGigE0/1/0/4 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:1:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + FortyGigE0/1/0/4 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:1:0:4 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + HundredGigE0/1/0/5 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:1:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + FortyGigE0/1/0/5 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:1:0:5 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + HundredGigE0/1/0/6 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:1:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + FortyGigE0/1/0/6 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:1:0:6 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + HundredGigE0/1/0/7 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:1:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + FortyGigE0/1/0/7 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:1:0:7 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + HundredGigE0/1/0/8 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:1:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + FortyGigE0/1/0/8 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:1:0:8 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + HundredGigE0/1/0/9 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:1:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + FortyGigE0/1/0/9 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:1:0:9 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + HundredGigE0/1/0/10 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:1:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + FortyGigE0/1/0/10 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:1:0:10 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + HundredGigE0/1/0/11 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:1:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + FortyGigE0/1/0/11 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:1:0:11 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + HundredGigE0/1/0/12 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:1:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + FortyGigE0/1/0/12 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:1:0:12 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + HundredGigE0/1/0/13 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:1:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + FortyGigE0/1/0/13 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:1:0:13 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + HundredGigE0/1/0/14 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:1:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + FortyGigE0/1/0/14 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:1:0:14 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + HundredGigE0/1/0/15 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:1:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + FortyGigE0/1/0/15 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:1:0:15 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + HundredGigE0/1/0/16 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:1:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + FortyGigE0/1/0/16 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:1:0:16 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + HundredGigE0/1/0/17 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:1:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + FortyGigE0/1/0/17 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:1:0:17 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + HundredGigE0/1/0/18 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:1:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + FortyGigE0/1/0/18 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:1:0:18 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + HundredGigE0/1/0/19 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:1:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + FortyGigE0/1/0/19 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:1:0:19 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + HundredGigE0/1/0/20 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:1:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + FortyGigE0/1/0/20 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:1:0:20 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + HundredGigE0/1/0/21 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:1:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + FortyGigE0/1/0/21 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:1:0:21 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + HundredGigE0/1/0/22 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:1:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + FortyGigE0/1/0/22 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:1:0:22 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + HundredGigE0/1/0/23 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:1:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + FortyGigE0/1/0/23 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:1:0:23 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + HundredGigE0/1/0/24 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:1:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + FortyGigE0/1/0/24 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:1:0:24 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + HundredGigE0/1/0/25 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:1:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + FortyGigE0/1/0/25 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:1:0:25 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + HundredGigE0/1/0/26 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:1:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + FortyGigE0/1/0/26 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:1:0:26 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + HundredGigE0/1/0/27 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:1:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + FortyGigE0/1/0/27 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:1:0:27 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + HundredGigE0/1/0/28 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:1:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + FortyGigE0/1/0/28 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:1:0:28 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + HundredGigE0/1/0/29 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:1:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + FortyGigE0/1/0/29 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:1:0:29 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + HundredGigE0/1/0/30 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:1:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + FortyGigE0/1/0/30 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:1:0:30 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + HundredGigE0/1/0/31 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:1:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 13 + + + CoreId + 1 + + + + + FortyGigE0/1/0/31 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:1:0:31 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 13 + + + CoreId + 1 + + + + + HundredGigE0/1/0/32 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:1:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 14 + + + CoreId + 1 + + + + + FortyGigE0/1/0/32 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:1:0:32 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 14 + + + CoreId + 1 + + + + + HundredGigE0/1/0/33 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:1:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + FortyGigE0/1/0/33 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:1:0:33 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + HundredGigE0/1/0/34 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:1:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 15 + + + CoreId + 1 + + + + + FortyGigE0/1/0/34 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:1:0:34 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 15 + + + CoreId + 1 + + + + + HundredGigE0/1/0/35 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:1:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 16 + + + CoreId + 1 + + + + + FortyGigE0/1/0/35 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:1:0:35 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 16 + + + CoreId + 1 + + + + + HundredGigE0/1/0/36 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:1:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + FortyGigE0/1/0/36 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:1:0:36 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + HundredGigE0/1/0/37 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:1:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 17 + + + CoreId + 1 + + + + + FortyGigE0/1/0/37 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:1:0:37 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 17 + + + CoreId + 1 + + + + + HundredGigE0/1/0/38 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:1:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 18 + + + CoreId + 1 + + + + + FortyGigE0/1/0/38 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:1:0:38 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 18 + + + CoreId + 1 + + + + + HundredGigE0/1/0/39 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:1:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + FortyGigE0/1/0/39 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:1:0:39 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + HundredGigE0/1/0/40 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:1:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + FortyGigE0/1/0/40 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:1:0:40 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + HundredGigE0/1/0/41 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:1:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 20 + + + CoreId + 1 + + + + + FortyGigE0/1/0/41 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:1:0:41 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 20 + + + CoreId + 1 + + + + + HundredGigE0/1/0/42 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:1:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + FortyGigE0/1/0/42 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:1:0:42 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + HundredGigE0/1/0/43 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:1:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 21 + + + CoreId + 1 + + + + + FortyGigE0/1/0/43 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:1:0:43 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 21 + + + CoreId + 1 + + + + + HundredGigE0/1/0/44 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:1:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 22 + + + CoreId + 1 + + + + + FortyGigE0/1/0/44 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:1:0:44 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 22 + + + CoreId + 1 + + + + + HundredGigE0/1/0/45 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:1:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + FortyGigE0/1/0/45 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:1:0:45 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 0 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + HundredGigE0/1/0/46 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:1:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 23 + + + CoreId + 1 + + + + + FortyGigE0/1/0/46 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:1:0:46 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 23 + + + CoreId + 1 + + + + + HundredGigE0/1/0/47 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:1:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 24 + + + CoreId + 1 + + + + + FortyGigE0/1/0/47 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 1 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:1:0:47 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 1 + + + AsicInterfaceIndex + 24 + + + CoreId + 1 + + + + + HundredGigE0/2/0/0 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:2:0:0 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + FortyGigE0/2/0/0 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:2:0:0 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + HundredGigE0/2/0/1 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:2:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + FortyGigE0/2/0/1 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:2:0:1 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + HundredGigE0/2/0/2 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:2:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + FortyGigE0/2/0/2 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:2:0:2 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + HundredGigE0/2/0/3 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:2:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + FortyGigE0/2/0/3 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:2:0:3 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + HundredGigE0/2/0/4 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:2:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + FortyGigE0/2/0/4 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:2:0:4 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + HundredGigE0/2/0/5 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:2:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + FortyGigE0/2/0/5 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:2:0:5 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + HundredGigE0/2/0/6 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:2:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + FortyGigE0/2/0/6 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:2:0:6 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + HundredGigE0/2/0/7 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:2:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + FortyGigE0/2/0/7 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:2:0:7 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + HundredGigE0/2/0/8 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:2:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + FortyGigE0/2/0/8 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:2:0:8 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + HundredGigE0/2/0/9 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:2:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + FortyGigE0/2/0/9 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:2:0:9 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + HundredGigE0/2/0/10 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:2:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + FortyGigE0/2/0/10 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:2:0:10 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + HundredGigE0/2/0/11 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:2:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + FortyGigE0/2/0/11 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:2:0:11 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + HundredGigE0/2/0/12 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:2:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + FortyGigE0/2/0/12 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:2:0:12 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + HundredGigE0/2/0/13 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:2:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + FortyGigE0/2/0/13 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:2:0:13 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + HundredGigE0/2/0/14 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:2:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + FortyGigE0/2/0/14 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:2:0:14 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + HundredGigE0/2/0/15 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:2:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + FortyGigE0/2/0/15 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:2:0:15 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + HundredGigE0/2/0/16 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:2:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + FortyGigE0/2/0/16 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:2:0:16 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + HundredGigE0/2/0/17 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:2:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + FortyGigE0/2/0/17 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:2:0:17 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + HundredGigE0/2/0/18 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:2:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + FortyGigE0/2/0/18 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:2:0:18 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + HundredGigE0/2/0/19 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:2:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + FortyGigE0/2/0/19 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:2:0:19 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + HundredGigE0/2/0/20 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:2:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + FortyGigE0/2/0/20 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:2:0:20 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + HundredGigE0/2/0/21 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:2:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + FortyGigE0/2/0/21 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:2:0:21 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + HundredGigE0/2/0/22 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:2:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + FortyGigE0/2/0/22 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:2:0:22 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + HundredGigE0/2/0/23 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:2:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + FortyGigE0/2/0/23 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:2:0:23 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + HundredGigE0/2/0/24 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:2:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + FortyGigE0/2/0/24 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:2:0:24 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + HundredGigE0/2/0/25 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:2:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + FortyGigE0/2/0/25 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:2:0:25 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + HundredGigE0/2/0/26 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:2:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + FortyGigE0/2/0/26 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:2:0:26 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + HundredGigE0/2/0/27 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:2:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + FortyGigE0/2/0/27 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:2:0:27 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + HundredGigE0/2/0/28 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:2:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + FortyGigE0/2/0/28 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:2:0:28 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + HundredGigE0/2/0/29 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:2:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + FortyGigE0/2/0/29 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:2:0:29 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + HundredGigE0/2/0/30 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:2:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + FortyGigE0/2/0/30 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:2:0:30 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + HundredGigE0/2/0/31 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:2:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 13 + + + CoreId + 1 + + + + + FortyGigE0/2/0/31 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:2:0:31 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 13 + + + CoreId + 1 + + + + + HundredGigE0/2/0/32 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:2:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 14 + + + CoreId + 1 + + + + + FortyGigE0/2/0/32 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:2:0:32 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 14 + + + CoreId + 1 + + + + + HundredGigE0/2/0/33 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:2:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + FortyGigE0/2/0/33 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:2:0:33 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + HundredGigE0/2/0/34 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:2:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 15 + + + CoreId + 1 + + + + + FortyGigE0/2/0/34 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:2:0:34 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 15 + + + CoreId + 1 + + + + + HundredGigE0/2/0/35 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:2:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 16 + + + CoreId + 1 + + + + + FortyGigE0/2/0/35 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:2:0:35 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 16 + + + CoreId + 1 + + + + + HundredGigE0/2/0/36 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:2:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + FortyGigE0/2/0/36 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:2:0:36 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + HundredGigE0/2/0/37 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:2:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 17 + + + CoreId + 1 + + + + + FortyGigE0/2/0/37 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:2:0:37 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 17 + + + CoreId + 1 + + + + + HundredGigE0/2/0/38 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:2:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 18 + + + CoreId + 1 + + + + + FortyGigE0/2/0/38 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:2:0:38 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 18 + + + CoreId + 1 + + + + + HundredGigE0/2/0/39 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:2:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + FortyGigE0/2/0/39 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:2:0:39 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + HundredGigE0/2/0/40 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:2:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + FortyGigE0/2/0/40 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:2:0:40 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + HundredGigE0/2/0/41 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:2:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 20 + + + CoreId + 1 + + + + + FortyGigE0/2/0/41 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:2:0:41 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 20 + + + CoreId + 1 + + + + + HundredGigE0/2/0/42 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:2:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + FortyGigE0/2/0/42 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:2:0:42 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + HundredGigE0/2/0/43 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:2:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 21 + + + CoreId + 1 + + + + + FortyGigE0/2/0/43 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:2:0:43 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 21 + + + CoreId + 1 + + + + + HundredGigE0/2/0/44 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:2:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 22 + + + CoreId + 1 + + + + + FortyGigE0/2/0/44 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:2:0:44 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 22 + + + CoreId + 1 + + + + + HundredGigE0/2/0/45 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:2:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + FortyGigE0/2/0/45 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:2:0:45 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 4 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + HundredGigE0/2/0/46 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:2:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 23 + + + CoreId + 1 + + + + + FortyGigE0/2/0/46 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:2:0:46 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 23 + + + CoreId + 1 + + + + + HundredGigE0/2/0/47 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:2:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 24 + + + CoreId + 1 + + + + + FortyGigE0/2/0/47 + + + LineCardSku + sonic-100g-lc-sku + + + SlotIndex + 2 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:2:0:47 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 5 + + + AsicInterfaceIndex + 24 + + + CoreId + 1 + + + + + HundredGigE0/3/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:3:0:0 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + FortyGigE0/3/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:3:0:0 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:3:0:0 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + HundredGigE0/3/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:3:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + FortyGigE0/3/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:3:0:1 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:3:0:1 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + HundredGigE0/3/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:3:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + FortyGigE0/3/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:3:0:2 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:3:0:2 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + HundredGigE0/3/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:3:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + FortyGigE0/3/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:3:0:3 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:3:0:3 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + HundredGigE0/3/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:3:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + FortyGigE0/3/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:3:0:4 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:3:0:4 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + HundredGigE0/3/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:3:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + FortyGigE0/3/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:3:0:5 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:3:0:5 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + HundredGigE0/3/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:3:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + FortyGigE0/3/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:3:0:6 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:3:0:6 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + HundredGigE0/3/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:3:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + FortyGigE0/3/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:3:0:7 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:3:0:7 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + HundredGigE0/3/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:3:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + FortyGigE0/3/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:3:0:8 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:3:0:8 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + HundredGigE0/3/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:3:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + FortyGigE0/3/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:3:0:9 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:3:0:9 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + HundredGigE0/3/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:3:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + FortyGigE0/3/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:3:0:10 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:3:0:10 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + HundredGigE0/3/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:3:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + FortyGigE0/3/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:3:0:11 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + FourHundredGigE0/3/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:3:0:11 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + HundredGigE0/3/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:3:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + FortyGigE0/3/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:3:0:12 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:3:0:12 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + HundredGigE0/3/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:3:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + FortyGigE0/3/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:3:0:13 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:3:0:13 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + HundredGigE0/3/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:3:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + FortyGigE0/3/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:3:0:14 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:3:0:14 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + HundredGigE0/3/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:3:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + FortyGigE0/3/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:3:0:15 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:3:0:15 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + HundredGigE0/3/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:3:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + FortyGigE0/3/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:3:0:16 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:3:0:16 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + HundredGigE0/3/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:3:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + FortyGigE0/3/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:3:0:17 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:3:0:17 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + HundredGigE0/3/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:3:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + FortyGigE0/3/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:3:0:18 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:3:0:18 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + HundredGigE0/3/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:3:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + FortyGigE0/3/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:3:0:19 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:3:0:19 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + HundredGigE0/3/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:3:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + FortyGigE0/3/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:3:0:20 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:3:0:20 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + HundredGigE0/3/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:3:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + FortyGigE0/3/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:3:0:21 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:3:0:21 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + HundredGigE0/3/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:3:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + FortyGigE0/3/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:3:0:22 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:3:0:22 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + HundredGigE0/3/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:3:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + FortyGigE0/3/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:3:0:23 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + FourHundredGigE0/3/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:3:0:23 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + HundredGigE0/3/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:3:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + FortyGigE0/3/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:3:0:24 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:3:0:24 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + HundredGigE0/3/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:3:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + FortyGigE0/3/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:3:0:25 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:3:0:25 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + HundredGigE0/3/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:3:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + FortyGigE0/3/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:3:0:26 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:3:0:26 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + HundredGigE0/3/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:3:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + FortyGigE0/3/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:3:0:27 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:3:0:27 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + HundredGigE0/3/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:3:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + FortyGigE0/3/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:3:0:28 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:3:0:28 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + HundredGigE0/3/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:3:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + FortyGigE0/3/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:3:0:29 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:3:0:29 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + HundredGigE0/3/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:3:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + FortyGigE0/3/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:3:0:30 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:3:0:30 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + HundredGigE0/3/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:3:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + FortyGigE0/3/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:3:0:31 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:3:0:31 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + HundredGigE0/3/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:3:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + FortyGigE0/3/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:3:0:32 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:3:0:32 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + HundredGigE0/3/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:3:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + FortyGigE0/3/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:3:0:33 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:3:0:33 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + HundredGigE0/3/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:3:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + FortyGigE0/3/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:3:0:34 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:3:0:34 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + HundredGigE0/3/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:3:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + FortyGigE0/3/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:3:0:35 + + + InterfaceSubGroupIndex + 2 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + FourHundredGigE0/3/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:3:0:35 + + + InterfaceSubGroupIndex + 3 + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 10 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:4:0:0 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + HundredGigE0/4/0/0 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 0 + + + InterfaceGroupIndex + 0:4:0:0 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:4:0:1 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + HundredGigE0/4/0/1 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:4:0:1 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:4:0:2 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + HundredGigE0/4/0/2 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:4:0:2 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:4:0:3 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + HundredGigE0/4/0/3 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:4:0:3 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:4:0:4 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + HundredGigE0/4/0/4 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:4:0:4 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:4:0:5 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + HundredGigE0/4/0/5 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:4:0:5 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:4:0:6 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + HundredGigE0/4/0/6 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:4:0:6 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:4:0:7 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + HundredGigE0/4/0/7 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:4:0:7 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:4:0:8 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + HundredGigE0/4/0/8 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:4:0:8 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:4:0:9 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + HundredGigE0/4/0/9 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:4:0:9 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:4:0:10 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + HundredGigE0/4/0/10 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:4:0:10 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:4:0:11 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + HundredGigE0/4/0/11 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:4:0:11 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + FourHundredGigE0/4/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:4:0:12 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + HundredGigE0/4/0/12 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:4:0:12 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:4:0:13 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + HundredGigE0/4/0/13 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:4:0:13 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:4:0:14 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + HundredGigE0/4/0/14 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:4:0:14 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:4:0:15 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + HundredGigE0/4/0/15 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:4:0:15 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:4:0:16 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + HundredGigE0/4/0/16 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:4:0:16 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:4:0:17 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + HundredGigE0/4/0/17 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:4:0:17 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:4:0:18 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + HundredGigE0/4/0/18 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:4:0:18 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:4:0:19 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + HundredGigE0/4/0/19 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:4:0:19 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:4:0:20 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + HundredGigE0/4/0/20 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:4:0:20 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:4:0:21 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + HundredGigE0/4/0/21 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:4:0:21 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 10 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:4:0:22 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + HundredGigE0/4/0/22 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:4:0:22 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 11 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:4:0:23 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + HundredGigE0/4/0/23 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:4:0:23 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 13 + + + AsicInterfaceIndex + 12 + + + CoreId + 1 + + + + + FourHundredGigE0/4/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:4:0:24 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + HundredGigE0/4/0/24 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:4:0:24 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 1 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:4:0:25 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + HundredGigE0/4/0/25 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:4:0:25 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 2 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:4:0:26 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + HundredGigE0/4/0/26 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:4:0:26 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 3 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:4:0:27 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + HundredGigE0/4/0/27 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:4:0:27 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 4 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:4:0:28 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + HundredGigE0/4/0/28 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:4:0:28 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 5 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:4:0:29 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + HundredGigE0/4/0/29 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:4:0:29 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 6 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:4:0:30 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + HundredGigE0/4/0/30 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:4:0:30 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 7 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:4:0:31 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + HundredGigE0/4/0/31 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:4:0:31 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 8 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:4:0:32 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + HundredGigE0/4/0/32 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:4:0:32 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 9 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:4:0:33 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + HundredGigE0/4/0/33 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:4:0:33 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 10 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:4:0:34 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + HundredGigE0/4/0/34 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:4:0:34 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 11 + + + CoreId + 2 + + + + + FourHundredGigE0/4/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:4:0:35 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + HundredGigE0/4/0/35 + + + LineCardSku + sonic-400g-lc-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:4:0:35 + + + InterfaceSubGroupIndex + 2 + + + MacSecEnabled + True + + + ProviderChipName + ASIC2 + + + AsicSwitchId + 14 + + + AsicInterfaceIndex + 12 + + + CoreId + 2 + + + + + + + DeviceInterface + + false + 1 + MgmtEth0/RP0/CPU0/0 + false + + + 1000 + + + + + DeviceInterface + + false + 1 + FourHundredGigE0/0/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 2 + FourHundredGigE0/0/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 3 + FourHundredGigE0/0/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 4 + HundredGigE0/0/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 5 + HundredGigE0/0/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 6 + HundredGigE0/0/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 7 + FourHundredGigE0/0/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 8 + FourHundredGigE0/0/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 9 + FourHundredGigE0/0/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 10 + HundredGigE0/0/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 11 + HundredGigE0/0/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 12 + HundredGigE0/0/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 13 + FourHundredGigE0/0/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 14 + FourHundredGigE0/0/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 15 + FourHundredGigE0/0/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 16 + HundredGigE0/0/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 17 + HundredGigE0/0/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 18 + HundredGigE0/0/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 19 + FourHundredGigE0/0/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 20 + FourHundredGigE0/0/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 21 + FourHundredGigE0/0/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 22 + HundredGigE0/0/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 23 + HundredGigE0/0/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 24 + HundredGigE0/0/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 25 + FourHundredGigE0/0/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 26 + FourHundredGigE0/0/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 27 + FourHundredGigE0/0/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 28 + HundredGigE0/0/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 29 + HundredGigE0/0/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 30 + HundredGigE0/0/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 31 + FourHundredGigE0/0/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 32 + FourHundredGigE0/0/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 33 + FourHundredGigE0/0/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 34 + HundredGigE0/0/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 35 + HundredGigE0/0/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 36 + HundredGigE0/0/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 37 + FourHundredGigE0/0/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 38 + FourHundredGigE0/0/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 39 + FourHundredGigE0/0/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 40 + HundredGigE0/0/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 41 + HundredGigE0/0/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 42 + HundredGigE0/0/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 43 + FourHundredGigE0/0/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 44 + FourHundredGigE0/0/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 45 + FourHundredGigE0/0/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 46 + HundredGigE0/0/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 47 + HundredGigE0/0/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 48 + HundredGigE0/0/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 49 + FourHundredGigE0/0/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 50 + FourHundredGigE0/0/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 51 + FourHundredGigE0/0/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 52 + HundredGigE0/0/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 53 + HundredGigE0/0/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 54 + HundredGigE0/0/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 55 + FourHundredGigE0/0/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 56 + FourHundredGigE0/0/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 57 + FourHundredGigE0/0/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 58 + HundredGigE0/0/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 59 + HundredGigE0/0/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 60 + HundredGigE0/0/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 61 + FourHundredGigE0/0/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 62 + FourHundredGigE0/0/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 63 + FourHundredGigE0/0/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 64 + HundredGigE0/0/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 65 + HundredGigE0/0/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 66 + HundredGigE0/0/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 67 + FourHundredGigE0/0/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 68 + FourHundredGigE0/0/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 69 + FourHundredGigE0/0/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 70 + HundredGigE0/0/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 71 + HundredGigE0/0/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 72 + HundredGigE0/0/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 73 + FourHundredGigE0/0/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 74 + FourHundredGigE0/0/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 75 + FourHundredGigE0/0/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 76 + HundredGigE0/0/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 77 + HundredGigE0/0/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 78 + HundredGigE0/0/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 79 + FourHundredGigE0/0/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 80 + FourHundredGigE0/0/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 81 + FourHundredGigE0/0/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 82 + HundredGigE0/0/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 83 + HundredGigE0/0/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 84 + HundredGigE0/0/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 85 + FourHundredGigE0/0/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 86 + FourHundredGigE0/0/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 87 + FourHundredGigE0/0/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 88 + HundredGigE0/0/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 89 + HundredGigE0/0/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 90 + HundredGigE0/0/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 91 + FourHundredGigE0/0/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 92 + FourHundredGigE0/0/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 93 + FourHundredGigE0/0/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 94 + HundredGigE0/0/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 95 + HundredGigE0/0/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 96 + HundredGigE0/0/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 97 + FourHundredGigE0/0/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 98 + FourHundredGigE0/0/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 99 + FourHundredGigE0/0/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 100 + HundredGigE0/0/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 101 + HundredGigE0/0/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 102 + HundredGigE0/0/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 103 + FourHundredGigE0/0/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 104 + FourHundredGigE0/0/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 105 + FourHundredGigE0/0/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 106 + HundredGigE0/0/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 107 + HundredGigE0/0/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 108 + HundredGigE0/0/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 109 + FourHundredGigE0/0/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 110 + FourHundredGigE0/0/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 111 + FourHundredGigE0/0/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 112 + HundredGigE0/0/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 113 + HundredGigE0/0/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 114 + HundredGigE0/0/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 115 + FourHundredGigE0/0/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 116 + FourHundredGigE0/0/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 117 + FourHundredGigE0/0/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 118 + HundredGigE0/0/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 119 + HundredGigE0/0/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 120 + HundredGigE0/0/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 121 + FourHundredGigE0/0/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 122 + FourHundredGigE0/0/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 123 + FourHundredGigE0/0/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 124 + HundredGigE0/0/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 125 + HundredGigE0/0/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 126 + HundredGigE0/0/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 127 + FourHundredGigE0/0/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 128 + FourHundredGigE0/0/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 129 + FourHundredGigE0/0/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 130 + HundredGigE0/0/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 131 + HundredGigE0/0/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 132 + HundredGigE0/0/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 133 + FourHundredGigE0/0/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 134 + FourHundredGigE0/0/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 135 + FourHundredGigE0/0/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 136 + HundredGigE0/0/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 137 + HundredGigE0/0/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 138 + HundredGigE0/0/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 139 + FourHundredGigE0/0/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 140 + FourHundredGigE0/0/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 141 + FourHundredGigE0/0/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 142 + HundredGigE0/0/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 143 + HundredGigE0/0/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 144 + HundredGigE0/0/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 145 + FourHundredGigE0/0/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 146 + FourHundredGigE0/0/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 147 + FourHundredGigE0/0/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 148 + HundredGigE0/0/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 149 + HundredGigE0/0/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 150 + HundredGigE0/0/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 151 + FourHundredGigE0/0/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 152 + FourHundredGigE0/0/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 153 + FourHundredGigE0/0/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 154 + HundredGigE0/0/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 155 + HundredGigE0/0/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 156 + HundredGigE0/0/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 157 + FourHundredGigE0/0/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 158 + FourHundredGigE0/0/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 159 + FourHundredGigE0/0/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 160 + HundredGigE0/0/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 161 + HundredGigE0/0/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 162 + HundredGigE0/0/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 163 + FourHundredGigE0/0/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 164 + FourHundredGigE0/0/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 165 + FourHundredGigE0/0/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 166 + HundredGigE0/0/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 167 + HundredGigE0/0/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 168 + HundredGigE0/0/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 169 + FourHundredGigE0/0/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 170 + FourHundredGigE0/0/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 171 + FourHundredGigE0/0/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 172 + HundredGigE0/0/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 173 + HundredGigE0/0/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 174 + HundredGigE0/0/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 175 + FourHundredGigE0/0/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 176 + FourHundredGigE0/0/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 177 + FourHundredGigE0/0/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 178 + HundredGigE0/0/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 179 + HundredGigE0/0/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 180 + HundredGigE0/0/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 181 + FourHundredGigE0/0/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 182 + FourHundredGigE0/0/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 183 + FourHundredGigE0/0/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 184 + HundredGigE0/0/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 185 + HundredGigE0/0/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 186 + HundredGigE0/0/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 187 + FourHundredGigE0/0/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 188 + FourHundredGigE0/0/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 189 + FourHundredGigE0/0/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 190 + HundredGigE0/0/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 191 + HundredGigE0/0/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 192 + HundredGigE0/0/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 193 + FourHundredGigE0/0/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 194 + FourHundredGigE0/0/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 195 + FourHundredGigE0/0/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 196 + HundredGigE0/0/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 197 + HundredGigE0/0/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 198 + HundredGigE0/0/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 199 + FourHundredGigE0/0/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 200 + FourHundredGigE0/0/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 201 + FourHundredGigE0/0/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 202 + HundredGigE0/0/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 203 + HundredGigE0/0/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 204 + HundredGigE0/0/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 205 + FourHundredGigE0/0/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 206 + FourHundredGigE0/0/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 207 + FourHundredGigE0/0/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 208 + HundredGigE0/0/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 209 + HundredGigE0/0/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 210 + HundredGigE0/0/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 211 + FourHundredGigE0/0/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 212 + FourHundredGigE0/0/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 213 + FourHundredGigE0/0/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 214 + HundredGigE0/0/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 215 + HundredGigE0/0/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 216 + HundredGigE0/0/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 217 + HundredGigE0/1/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 218 + HundredGigE0/1/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 219 + HundredGigE0/1/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 220 + FortyGigE0/1/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 221 + FortyGigE0/1/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 222 + FortyGigE0/1/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 223 + HundredGigE0/1/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 224 + HundredGigE0/1/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 225 + HundredGigE0/1/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 226 + FortyGigE0/1/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 227 + FortyGigE0/1/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 228 + FortyGigE0/1/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 229 + HundredGigE0/1/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 230 + HundredGigE0/1/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 231 + HundredGigE0/1/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 232 + FortyGigE0/1/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 233 + FortyGigE0/1/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 234 + FortyGigE0/1/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 235 + HundredGigE0/1/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 236 + HundredGigE0/1/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 237 + HundredGigE0/1/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 238 + FortyGigE0/1/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 239 + FortyGigE0/1/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 240 + FortyGigE0/1/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 241 + HundredGigE0/1/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 242 + HundredGigE0/1/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 243 + HundredGigE0/1/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 244 + FortyGigE0/1/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 245 + FortyGigE0/1/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 246 + FortyGigE0/1/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 247 + HundredGigE0/1/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 248 + HundredGigE0/1/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 249 + HundredGigE0/1/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 250 + FortyGigE0/1/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 251 + FortyGigE0/1/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 252 + FortyGigE0/1/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 253 + HundredGigE0/1/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 254 + HundredGigE0/1/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 255 + HundredGigE0/1/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 256 + FortyGigE0/1/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 257 + FortyGigE0/1/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 258 + FortyGigE0/1/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 259 + HundredGigE0/1/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 260 + HundredGigE0/1/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 261 + HundredGigE0/1/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 262 + FortyGigE0/1/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 263 + FortyGigE0/1/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 264 + FortyGigE0/1/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 265 + HundredGigE0/1/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 266 + HundredGigE0/1/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 267 + HundredGigE0/1/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 268 + FortyGigE0/1/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 269 + FortyGigE0/1/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 270 + FortyGigE0/1/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 271 + HundredGigE0/1/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 272 + HundredGigE0/1/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 273 + HundredGigE0/1/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 274 + FortyGigE0/1/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 275 + FortyGigE0/1/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 276 + FortyGigE0/1/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 277 + HundredGigE0/1/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 278 + HundredGigE0/1/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 279 + HundredGigE0/1/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 280 + FortyGigE0/1/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 281 + FortyGigE0/1/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 282 + FortyGigE0/1/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 283 + HundredGigE0/1/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 284 + HundredGigE0/1/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 285 + HundredGigE0/1/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 286 + FortyGigE0/1/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 287 + FortyGigE0/1/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 288 + FortyGigE0/1/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 289 + HundredGigE0/1/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 290 + HundredGigE0/1/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 291 + HundredGigE0/1/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 292 + FortyGigE0/1/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 293 + FortyGigE0/1/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 294 + FortyGigE0/1/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 295 + HundredGigE0/1/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 296 + HundredGigE0/1/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 297 + HundredGigE0/1/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 298 + FortyGigE0/1/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 299 + FortyGigE0/1/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 300 + FortyGigE0/1/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 301 + HundredGigE0/1/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 302 + HundredGigE0/1/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 303 + HundredGigE0/1/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 304 + FortyGigE0/1/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 305 + FortyGigE0/1/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 306 + FortyGigE0/1/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 307 + HundredGigE0/1/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 308 + HundredGigE0/1/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 309 + HundredGigE0/1/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 310 + FortyGigE0/1/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 311 + FortyGigE0/1/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 312 + FortyGigE0/1/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 313 + HundredGigE0/1/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 314 + HundredGigE0/1/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 315 + HundredGigE0/1/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 316 + FortyGigE0/1/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 317 + FortyGigE0/1/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 318 + FortyGigE0/1/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 319 + HundredGigE0/1/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 320 + HundredGigE0/1/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 321 + HundredGigE0/1/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 322 + FortyGigE0/1/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 323 + FortyGigE0/1/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 324 + FortyGigE0/1/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 325 + HundredGigE0/1/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 326 + HundredGigE0/1/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 327 + HundredGigE0/1/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 328 + FortyGigE0/1/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 329 + FortyGigE0/1/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 330 + FortyGigE0/1/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 331 + HundredGigE0/1/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 332 + HundredGigE0/1/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 333 + HundredGigE0/1/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 334 + FortyGigE0/1/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 335 + FortyGigE0/1/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 336 + FortyGigE0/1/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 337 + HundredGigE0/1/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 338 + HundredGigE0/1/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 339 + HundredGigE0/1/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 340 + FortyGigE0/1/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 341 + FortyGigE0/1/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 342 + FortyGigE0/1/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 343 + HundredGigE0/1/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 344 + HundredGigE0/1/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 345 + HundredGigE0/1/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 346 + FortyGigE0/1/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 347 + FortyGigE0/1/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 348 + FortyGigE0/1/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 349 + HundredGigE0/1/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 350 + HundredGigE0/1/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 351 + HundredGigE0/1/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 352 + FortyGigE0/1/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 353 + FortyGigE0/1/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 354 + FortyGigE0/1/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 355 + HundredGigE0/1/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 356 + HundredGigE0/1/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 357 + HundredGigE0/1/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 358 + FortyGigE0/1/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 359 + FortyGigE0/1/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 360 + FortyGigE0/1/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 361 + HundredGigE0/1/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 362 + HundredGigE0/1/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 363 + HundredGigE0/1/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 364 + FortyGigE0/1/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 365 + FortyGigE0/1/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 366 + FortyGigE0/1/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 367 + HundredGigE0/1/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 368 + HundredGigE0/1/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 369 + HundredGigE0/1/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 370 + FortyGigE0/1/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 371 + FortyGigE0/1/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 372 + FortyGigE0/1/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 373 + HundredGigE0/1/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 374 + HundredGigE0/1/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 375 + HundredGigE0/1/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 376 + FortyGigE0/1/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 377 + FortyGigE0/1/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 378 + FortyGigE0/1/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 379 + HundredGigE0/1/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 380 + HundredGigE0/1/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 381 + HundredGigE0/1/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 382 + FortyGigE0/1/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 383 + FortyGigE0/1/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 384 + FortyGigE0/1/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 385 + HundredGigE0/1/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 386 + HundredGigE0/1/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 387 + HundredGigE0/1/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 388 + FortyGigE0/1/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 389 + FortyGigE0/1/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 390 + FortyGigE0/1/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 391 + HundredGigE0/1/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 392 + HundredGigE0/1/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 393 + HundredGigE0/1/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 394 + FortyGigE0/1/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 395 + FortyGigE0/1/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 396 + FortyGigE0/1/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 397 + HundredGigE0/1/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 398 + HundredGigE0/1/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 399 + HundredGigE0/1/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 400 + FortyGigE0/1/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 401 + FortyGigE0/1/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 402 + FortyGigE0/1/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 403 + HundredGigE0/1/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 404 + HundredGigE0/1/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 405 + HundredGigE0/1/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 406 + FortyGigE0/1/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 407 + FortyGigE0/1/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 408 + FortyGigE0/1/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 409 + HundredGigE0/1/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 410 + HundredGigE0/1/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 411 + HundredGigE0/1/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 412 + FortyGigE0/1/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 413 + FortyGigE0/1/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 414 + FortyGigE0/1/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 415 + HundredGigE0/1/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 416 + HundredGigE0/1/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 417 + HundredGigE0/1/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 418 + FortyGigE0/1/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 419 + FortyGigE0/1/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 420 + FortyGigE0/1/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 421 + HundredGigE0/1/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 422 + HundredGigE0/1/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 423 + HundredGigE0/1/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 424 + FortyGigE0/1/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 425 + FortyGigE0/1/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 426 + FortyGigE0/1/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 427 + HundredGigE0/1/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 428 + HundredGigE0/1/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 429 + HundredGigE0/1/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 430 + FortyGigE0/1/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 431 + FortyGigE0/1/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 432 + FortyGigE0/1/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 433 + HundredGigE0/1/0/36 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 434 + HundredGigE0/1/0/36 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 435 + HundredGigE0/1/0/36 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 436 + FortyGigE0/1/0/36 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 437 + FortyGigE0/1/0/36 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 438 + FortyGigE0/1/0/36 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 439 + HundredGigE0/1/0/37 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 440 + HundredGigE0/1/0/37 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 441 + HundredGigE0/1/0/37 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 442 + FortyGigE0/1/0/37 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 443 + FortyGigE0/1/0/37 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 444 + FortyGigE0/1/0/37 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 445 + HundredGigE0/1/0/38 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 446 + HundredGigE0/1/0/38 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 447 + HundredGigE0/1/0/38 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 448 + FortyGigE0/1/0/38 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 449 + FortyGigE0/1/0/38 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 450 + FortyGigE0/1/0/38 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 451 + HundredGigE0/1/0/39 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 452 + HundredGigE0/1/0/39 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 453 + HundredGigE0/1/0/39 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 454 + FortyGigE0/1/0/39 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 455 + FortyGigE0/1/0/39 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 456 + FortyGigE0/1/0/39 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 457 + HundredGigE0/1/0/40 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 458 + HundredGigE0/1/0/40 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 459 + HundredGigE0/1/0/40 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 460 + FortyGigE0/1/0/40 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 461 + FortyGigE0/1/0/40 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 462 + FortyGigE0/1/0/40 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 463 + HundredGigE0/1/0/41 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 464 + HundredGigE0/1/0/41 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 465 + HundredGigE0/1/0/41 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 466 + FortyGigE0/1/0/41 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 467 + FortyGigE0/1/0/41 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 468 + FortyGigE0/1/0/41 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 469 + HundredGigE0/1/0/42 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 470 + HundredGigE0/1/0/42 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 471 + HundredGigE0/1/0/42 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 472 + FortyGigE0/1/0/42 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 473 + FortyGigE0/1/0/42 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 474 + FortyGigE0/1/0/42 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 475 + HundredGigE0/1/0/43 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 476 + HundredGigE0/1/0/43 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 477 + HundredGigE0/1/0/43 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 478 + FortyGigE0/1/0/43 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 479 + FortyGigE0/1/0/43 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 480 + FortyGigE0/1/0/43 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 481 + HundredGigE0/1/0/44 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 482 + HundredGigE0/1/0/44 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 483 + HundredGigE0/1/0/44 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 484 + FortyGigE0/1/0/44 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 485 + FortyGigE0/1/0/44 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 486 + FortyGigE0/1/0/44 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 487 + HundredGigE0/1/0/45 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 488 + HundredGigE0/1/0/45 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 489 + HundredGigE0/1/0/45 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 490 + FortyGigE0/1/0/45 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 491 + FortyGigE0/1/0/45 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 492 + FortyGigE0/1/0/45 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 493 + HundredGigE0/1/0/46 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 494 + HundredGigE0/1/0/46 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 495 + HundredGigE0/1/0/46 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 496 + FortyGigE0/1/0/46 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 497 + FortyGigE0/1/0/46 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 498 + FortyGigE0/1/0/46 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 499 + HundredGigE0/1/0/47 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 500 + HundredGigE0/1/0/47 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 501 + HundredGigE0/1/0/47 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 502 + FortyGigE0/1/0/47 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 503 + FortyGigE0/1/0/47 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 504 + FortyGigE0/1/0/47 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 505 + HundredGigE0/2/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 506 + HundredGigE0/2/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 507 + HundredGigE0/2/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 508 + FortyGigE0/2/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 509 + FortyGigE0/2/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 510 + FortyGigE0/2/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 511 + HundredGigE0/2/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 512 + HundredGigE0/2/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 513 + HundredGigE0/2/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 514 + FortyGigE0/2/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 515 + FortyGigE0/2/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 516 + FortyGigE0/2/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 517 + HundredGigE0/2/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 518 + HundredGigE0/2/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 519 + HundredGigE0/2/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 520 + FortyGigE0/2/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 521 + FortyGigE0/2/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 522 + FortyGigE0/2/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 523 + HundredGigE0/2/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 524 + HundredGigE0/2/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 525 + HundredGigE0/2/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 526 + FortyGigE0/2/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 527 + FortyGigE0/2/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 528 + FortyGigE0/2/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 529 + HundredGigE0/2/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 530 + HundredGigE0/2/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 531 + HundredGigE0/2/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 532 + FortyGigE0/2/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 533 + FortyGigE0/2/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 534 + FortyGigE0/2/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 535 + HundredGigE0/2/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 536 + HundredGigE0/2/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 537 + HundredGigE0/2/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 538 + FortyGigE0/2/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 539 + FortyGigE0/2/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 540 + FortyGigE0/2/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 541 + HundredGigE0/2/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 542 + HundredGigE0/2/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 543 + HundredGigE0/2/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 544 + FortyGigE0/2/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 545 + FortyGigE0/2/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 546 + FortyGigE0/2/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 547 + HundredGigE0/2/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 548 + HundredGigE0/2/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 549 + HundredGigE0/2/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 550 + FortyGigE0/2/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 551 + FortyGigE0/2/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 552 + FortyGigE0/2/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 553 + HundredGigE0/2/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 554 + HundredGigE0/2/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 555 + HundredGigE0/2/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 556 + FortyGigE0/2/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 557 + FortyGigE0/2/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 558 + FortyGigE0/2/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 559 + HundredGigE0/2/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 560 + HundredGigE0/2/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 561 + HundredGigE0/2/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 562 + FortyGigE0/2/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 563 + FortyGigE0/2/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 564 + FortyGigE0/2/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 565 + HundredGigE0/2/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 566 + HundredGigE0/2/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 567 + HundredGigE0/2/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 568 + FortyGigE0/2/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 569 + FortyGigE0/2/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 570 + FortyGigE0/2/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 571 + HundredGigE0/2/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 572 + HundredGigE0/2/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 573 + HundredGigE0/2/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 574 + FortyGigE0/2/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 575 + FortyGigE0/2/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 576 + FortyGigE0/2/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 577 + HundredGigE0/2/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 578 + HundredGigE0/2/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 579 + HundredGigE0/2/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 580 + FortyGigE0/2/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 581 + FortyGigE0/2/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 582 + FortyGigE0/2/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 583 + HundredGigE0/2/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 584 + HundredGigE0/2/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 585 + HundredGigE0/2/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 586 + FortyGigE0/2/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 587 + FortyGigE0/2/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 588 + FortyGigE0/2/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 589 + HundredGigE0/2/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 590 + HundredGigE0/2/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 591 + HundredGigE0/2/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 592 + FortyGigE0/2/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 593 + FortyGigE0/2/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 594 + FortyGigE0/2/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 595 + HundredGigE0/2/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 596 + HundredGigE0/2/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 597 + HundredGigE0/2/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 598 + FortyGigE0/2/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 599 + FortyGigE0/2/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 600 + FortyGigE0/2/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 601 + HundredGigE0/2/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 602 + HundredGigE0/2/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 603 + HundredGigE0/2/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 604 + FortyGigE0/2/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 605 + FortyGigE0/2/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 606 + FortyGigE0/2/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 607 + HundredGigE0/2/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 608 + HundredGigE0/2/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 609 + HundredGigE0/2/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 610 + FortyGigE0/2/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 611 + FortyGigE0/2/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 612 + FortyGigE0/2/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 613 + HundredGigE0/2/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 614 + HundredGigE0/2/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 615 + HundredGigE0/2/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 616 + FortyGigE0/2/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 617 + FortyGigE0/2/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 618 + FortyGigE0/2/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 619 + HundredGigE0/2/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 620 + HundredGigE0/2/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 621 + HundredGigE0/2/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 622 + FortyGigE0/2/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 623 + FortyGigE0/2/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 624 + FortyGigE0/2/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 625 + HundredGigE0/2/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 626 + HundredGigE0/2/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 627 + HundredGigE0/2/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 628 + FortyGigE0/2/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 629 + FortyGigE0/2/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 630 + FortyGigE0/2/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 631 + HundredGigE0/2/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 632 + HundredGigE0/2/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 633 + HundredGigE0/2/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 634 + FortyGigE0/2/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 635 + FortyGigE0/2/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 636 + FortyGigE0/2/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 637 + HundredGigE0/2/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 638 + HundredGigE0/2/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 639 + HundredGigE0/2/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 640 + FortyGigE0/2/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 641 + FortyGigE0/2/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 642 + FortyGigE0/2/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 643 + HundredGigE0/2/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 644 + HundredGigE0/2/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 645 + HundredGigE0/2/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 646 + FortyGigE0/2/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 647 + FortyGigE0/2/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 648 + FortyGigE0/2/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 649 + HundredGigE0/2/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 650 + HundredGigE0/2/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 651 + HundredGigE0/2/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 652 + FortyGigE0/2/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 653 + FortyGigE0/2/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 654 + FortyGigE0/2/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 655 + HundredGigE0/2/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 656 + HundredGigE0/2/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 657 + HundredGigE0/2/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 658 + FortyGigE0/2/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 659 + FortyGigE0/2/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 660 + FortyGigE0/2/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 661 + HundredGigE0/2/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 662 + HundredGigE0/2/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 663 + HundredGigE0/2/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 664 + FortyGigE0/2/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 665 + FortyGigE0/2/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 666 + FortyGigE0/2/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 667 + HundredGigE0/2/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 668 + HundredGigE0/2/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 669 + HundredGigE0/2/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 670 + FortyGigE0/2/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 671 + FortyGigE0/2/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 672 + FortyGigE0/2/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 673 + HundredGigE0/2/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 674 + HundredGigE0/2/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 675 + HundredGigE0/2/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 676 + FortyGigE0/2/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 677 + FortyGigE0/2/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 678 + FortyGigE0/2/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 679 + HundredGigE0/2/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 680 + HundredGigE0/2/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 681 + HundredGigE0/2/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 682 + FortyGigE0/2/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 683 + FortyGigE0/2/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 684 + FortyGigE0/2/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 685 + HundredGigE0/2/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 686 + HundredGigE0/2/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 687 + HundredGigE0/2/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 688 + FortyGigE0/2/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 689 + FortyGigE0/2/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 690 + FortyGigE0/2/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 691 + HundredGigE0/2/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 692 + HundredGigE0/2/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 693 + HundredGigE0/2/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 694 + FortyGigE0/2/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 695 + FortyGigE0/2/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 696 + FortyGigE0/2/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 697 + HundredGigE0/2/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 698 + HundredGigE0/2/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 699 + HundredGigE0/2/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 700 + FortyGigE0/2/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 701 + FortyGigE0/2/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 702 + FortyGigE0/2/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 703 + HundredGigE0/2/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 704 + HundredGigE0/2/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 705 + HundredGigE0/2/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 706 + FortyGigE0/2/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 707 + FortyGigE0/2/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 708 + FortyGigE0/2/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 709 + HundredGigE0/2/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 710 + HundredGigE0/2/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 711 + HundredGigE0/2/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 712 + FortyGigE0/2/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 713 + FortyGigE0/2/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 714 + FortyGigE0/2/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 715 + HundredGigE0/2/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 716 + HundredGigE0/2/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 717 + HundredGigE0/2/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 718 + FortyGigE0/2/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 719 + FortyGigE0/2/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 720 + FortyGigE0/2/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 721 + HundredGigE0/2/0/36 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 722 + HundredGigE0/2/0/36 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 723 + HundredGigE0/2/0/36 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 724 + FortyGigE0/2/0/36 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 725 + FortyGigE0/2/0/36 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 726 + FortyGigE0/2/0/36 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 727 + HundredGigE0/2/0/37 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 728 + HundredGigE0/2/0/37 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 729 + HundredGigE0/2/0/37 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 730 + FortyGigE0/2/0/37 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 731 + FortyGigE0/2/0/37 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 732 + FortyGigE0/2/0/37 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 733 + HundredGigE0/2/0/38 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 734 + HundredGigE0/2/0/38 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 735 + HundredGigE0/2/0/38 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 736 + FortyGigE0/2/0/38 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 737 + FortyGigE0/2/0/38 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 738 + FortyGigE0/2/0/38 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 739 + HundredGigE0/2/0/39 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 740 + HundredGigE0/2/0/39 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 741 + HundredGigE0/2/0/39 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 742 + FortyGigE0/2/0/39 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 743 + FortyGigE0/2/0/39 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 744 + FortyGigE0/2/0/39 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 745 + HundredGigE0/2/0/40 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 746 + HundredGigE0/2/0/40 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 747 + HundredGigE0/2/0/40 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 748 + FortyGigE0/2/0/40 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 749 + FortyGigE0/2/0/40 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 750 + FortyGigE0/2/0/40 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 751 + HundredGigE0/2/0/41 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 752 + HundredGigE0/2/0/41 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 753 + HundredGigE0/2/0/41 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 754 + FortyGigE0/2/0/41 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 755 + FortyGigE0/2/0/41 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 756 + FortyGigE0/2/0/41 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 757 + HundredGigE0/2/0/42 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 758 + HundredGigE0/2/0/42 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 759 + HundredGigE0/2/0/42 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 760 + FortyGigE0/2/0/42 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 761 + FortyGigE0/2/0/42 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 762 + FortyGigE0/2/0/42 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 763 + HundredGigE0/2/0/43 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 764 + HundredGigE0/2/0/43 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 765 + HundredGigE0/2/0/43 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 766 + FortyGigE0/2/0/43 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 767 + FortyGigE0/2/0/43 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 768 + FortyGigE0/2/0/43 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 769 + HundredGigE0/2/0/44 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 770 + HundredGigE0/2/0/44 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 771 + HundredGigE0/2/0/44 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 772 + FortyGigE0/2/0/44 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 773 + FortyGigE0/2/0/44 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 774 + FortyGigE0/2/0/44 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 775 + HundredGigE0/2/0/45 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 776 + HundredGigE0/2/0/45 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 777 + HundredGigE0/2/0/45 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 778 + FortyGigE0/2/0/45 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 779 + FortyGigE0/2/0/45 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 780 + FortyGigE0/2/0/45 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 781 + HundredGigE0/2/0/46 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 782 + HundredGigE0/2/0/46 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 783 + HundredGigE0/2/0/46 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 784 + FortyGigE0/2/0/46 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 785 + FortyGigE0/2/0/46 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 786 + FortyGigE0/2/0/46 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 787 + HundredGigE0/2/0/47 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 788 + HundredGigE0/2/0/47 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 789 + HundredGigE0/2/0/47 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 790 + FortyGigE0/2/0/47 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 791 + FortyGigE0/2/0/47 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 792 + FortyGigE0/2/0/47 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 793 + HundredGigE0/3/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 794 + HundredGigE0/3/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 795 + HundredGigE0/3/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 796 + FortyGigE0/3/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 797 + FortyGigE0/3/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 798 + FortyGigE0/3/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 799 + FourHundredGigE0/3/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 800 + FourHundredGigE0/3/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 801 + FourHundredGigE0/3/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 802 + HundredGigE0/3/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 803 + HundredGigE0/3/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 804 + HundredGigE0/3/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 805 + FortyGigE0/3/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 806 + FortyGigE0/3/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 807 + FortyGigE0/3/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 808 + FourHundredGigE0/3/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 809 + FourHundredGigE0/3/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 810 + FourHundredGigE0/3/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 811 + HundredGigE0/3/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 812 + HundredGigE0/3/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 813 + HundredGigE0/3/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 814 + FortyGigE0/3/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 815 + FortyGigE0/3/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 816 + FortyGigE0/3/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 817 + FourHundredGigE0/3/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 818 + FourHundredGigE0/3/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 819 + FourHundredGigE0/3/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 820 + HundredGigE0/3/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 821 + HundredGigE0/3/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 822 + HundredGigE0/3/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 823 + FortyGigE0/3/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 824 + FortyGigE0/3/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 825 + FortyGigE0/3/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 826 + FourHundredGigE0/3/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 827 + FourHundredGigE0/3/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 828 + FourHundredGigE0/3/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 829 + HundredGigE0/3/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 830 + HundredGigE0/3/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 831 + HundredGigE0/3/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 832 + FortyGigE0/3/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 833 + FortyGigE0/3/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 834 + FortyGigE0/3/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 835 + FourHundredGigE0/3/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 836 + FourHundredGigE0/3/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 837 + FourHundredGigE0/3/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 838 + HundredGigE0/3/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 839 + HundredGigE0/3/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 840 + HundredGigE0/3/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 841 + FortyGigE0/3/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 842 + FortyGigE0/3/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 843 + FortyGigE0/3/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 844 + FourHundredGigE0/3/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 845 + FourHundredGigE0/3/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 846 + FourHundredGigE0/3/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 847 + HundredGigE0/3/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 848 + HundredGigE0/3/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 849 + HundredGigE0/3/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 850 + FortyGigE0/3/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 851 + FortyGigE0/3/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 852 + FortyGigE0/3/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 853 + FourHundredGigE0/3/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 854 + FourHundredGigE0/3/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 855 + FourHundredGigE0/3/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 856 + HundredGigE0/3/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 857 + HundredGigE0/3/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 858 + HundredGigE0/3/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 859 + FortyGigE0/3/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 860 + FortyGigE0/3/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 861 + FortyGigE0/3/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 862 + FourHundredGigE0/3/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 863 + FourHundredGigE0/3/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 864 + FourHundredGigE0/3/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 865 + HundredGigE0/3/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 866 + HundredGigE0/3/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 867 + HundredGigE0/3/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 868 + FortyGigE0/3/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 869 + FortyGigE0/3/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 870 + FortyGigE0/3/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 871 + FourHundredGigE0/3/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 872 + FourHundredGigE0/3/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 873 + FourHundredGigE0/3/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 874 + HundredGigE0/3/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 875 + HundredGigE0/3/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 876 + HundredGigE0/3/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 877 + FortyGigE0/3/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 878 + FortyGigE0/3/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 879 + FortyGigE0/3/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 880 + FourHundredGigE0/3/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 881 + FourHundredGigE0/3/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 882 + FourHundredGigE0/3/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 883 + HundredGigE0/3/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 884 + HundredGigE0/3/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 885 + HundredGigE0/3/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 886 + FortyGigE0/3/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 887 + FortyGigE0/3/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 888 + FortyGigE0/3/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 889 + FourHundredGigE0/3/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 890 + FourHundredGigE0/3/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 891 + FourHundredGigE0/3/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 892 + HundredGigE0/3/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 893 + HundredGigE0/3/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 894 + HundredGigE0/3/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 895 + FortyGigE0/3/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 896 + FortyGigE0/3/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 897 + FortyGigE0/3/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 898 + FourHundredGigE0/3/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 899 + FourHundredGigE0/3/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 900 + FourHundredGigE0/3/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 901 + HundredGigE0/3/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 902 + HundredGigE0/3/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 903 + HundredGigE0/3/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 904 + FortyGigE0/3/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 905 + FortyGigE0/3/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 906 + FortyGigE0/3/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 907 + FourHundredGigE0/3/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 908 + FourHundredGigE0/3/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 909 + FourHundredGigE0/3/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 910 + HundredGigE0/3/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 911 + HundredGigE0/3/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 912 + HundredGigE0/3/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 913 + FortyGigE0/3/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 914 + FortyGigE0/3/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 915 + FortyGigE0/3/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 916 + FourHundredGigE0/3/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 917 + FourHundredGigE0/3/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 918 + FourHundredGigE0/3/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 919 + HundredGigE0/3/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 920 + HundredGigE0/3/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 921 + HundredGigE0/3/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 922 + FortyGigE0/3/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 923 + FortyGigE0/3/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 924 + FortyGigE0/3/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 925 + FourHundredGigE0/3/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 926 + FourHundredGigE0/3/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 927 + FourHundredGigE0/3/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 928 + HundredGigE0/3/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 929 + HundredGigE0/3/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 930 + HundredGigE0/3/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 931 + FortyGigE0/3/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 932 + FortyGigE0/3/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 933 + FortyGigE0/3/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 934 + FourHundredGigE0/3/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 935 + FourHundredGigE0/3/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 936 + FourHundredGigE0/3/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 937 + HundredGigE0/3/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 938 + HundredGigE0/3/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 939 + HundredGigE0/3/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 940 + FortyGigE0/3/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 941 + FortyGigE0/3/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 942 + FortyGigE0/3/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 943 + FourHundredGigE0/3/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 944 + FourHundredGigE0/3/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 945 + FourHundredGigE0/3/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 946 + HundredGigE0/3/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 947 + HundredGigE0/3/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 948 + HundredGigE0/3/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 949 + FortyGigE0/3/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 950 + FortyGigE0/3/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 951 + FortyGigE0/3/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 952 + FourHundredGigE0/3/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 953 + FourHundredGigE0/3/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 954 + FourHundredGigE0/3/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 955 + HundredGigE0/3/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 956 + HundredGigE0/3/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 957 + HundredGigE0/3/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 958 + FortyGigE0/3/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 959 + FortyGigE0/3/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 960 + FortyGigE0/3/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 961 + FourHundredGigE0/3/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 962 + FourHundredGigE0/3/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 963 + FourHundredGigE0/3/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 964 + HundredGigE0/3/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 965 + HundredGigE0/3/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 966 + HundredGigE0/3/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 967 + FortyGigE0/3/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 968 + FortyGigE0/3/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 969 + FortyGigE0/3/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 970 + FourHundredGigE0/3/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 971 + FourHundredGigE0/3/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 972 + FourHundredGigE0/3/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 973 + HundredGigE0/3/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 974 + HundredGigE0/3/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 975 + HundredGigE0/3/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 976 + FortyGigE0/3/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 977 + FortyGigE0/3/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 978 + FortyGigE0/3/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 979 + FourHundredGigE0/3/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 980 + FourHundredGigE0/3/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 981 + FourHundredGigE0/3/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 982 + HundredGigE0/3/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 983 + HundredGigE0/3/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 984 + HundredGigE0/3/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 985 + FortyGigE0/3/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 986 + FortyGigE0/3/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 987 + FortyGigE0/3/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 988 + FourHundredGigE0/3/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 989 + FourHundredGigE0/3/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 990 + FourHundredGigE0/3/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 991 + HundredGigE0/3/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 992 + HundredGigE0/3/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 993 + HundredGigE0/3/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 994 + FortyGigE0/3/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 995 + FortyGigE0/3/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 996 + FortyGigE0/3/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 997 + FourHundredGigE0/3/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 998 + FourHundredGigE0/3/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 999 + FourHundredGigE0/3/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1000 + HundredGigE0/3/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1001 + HundredGigE0/3/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1002 + HundredGigE0/3/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1003 + FortyGigE0/3/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1004 + FortyGigE0/3/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1005 + FortyGigE0/3/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1006 + FourHundredGigE0/3/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1007 + FourHundredGigE0/3/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1008 + FourHundredGigE0/3/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1009 + HundredGigE0/3/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1010 + HundredGigE0/3/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1011 + HundredGigE0/3/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1012 + FortyGigE0/3/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1013 + FortyGigE0/3/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1014 + FortyGigE0/3/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1015 + FourHundredGigE0/3/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1016 + FourHundredGigE0/3/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1017 + FourHundredGigE0/3/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1018 + HundredGigE0/3/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1019 + HundredGigE0/3/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1020 + HundredGigE0/3/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1021 + FortyGigE0/3/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1022 + FortyGigE0/3/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1023 + FortyGigE0/3/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1024 + FourHundredGigE0/3/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1025 + FourHundredGigE0/3/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1026 + FourHundredGigE0/3/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1027 + HundredGigE0/3/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1028 + HundredGigE0/3/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1029 + HundredGigE0/3/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1030 + FortyGigE0/3/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1031 + FortyGigE0/3/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1032 + FortyGigE0/3/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1033 + FourHundredGigE0/3/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1034 + FourHundredGigE0/3/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1035 + FourHundredGigE0/3/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1036 + HundredGigE0/3/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1037 + HundredGigE0/3/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1038 + HundredGigE0/3/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1039 + FortyGigE0/3/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1040 + FortyGigE0/3/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1041 + FortyGigE0/3/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1042 + FourHundredGigE0/3/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1043 + FourHundredGigE0/3/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1044 + FourHundredGigE0/3/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1045 + HundredGigE0/3/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1046 + HundredGigE0/3/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1047 + HundredGigE0/3/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1048 + FortyGigE0/3/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1049 + FortyGigE0/3/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1050 + FortyGigE0/3/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1051 + FourHundredGigE0/3/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1052 + FourHundredGigE0/3/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1053 + FourHundredGigE0/3/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1054 + HundredGigE0/3/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1055 + HundredGigE0/3/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1056 + HundredGigE0/3/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1057 + FortyGigE0/3/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1058 + FortyGigE0/3/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1059 + FortyGigE0/3/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1060 + FourHundredGigE0/3/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1061 + FourHundredGigE0/3/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1062 + FourHundredGigE0/3/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1063 + HundredGigE0/3/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1064 + HundredGigE0/3/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1065 + HundredGigE0/3/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1066 + FortyGigE0/3/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1067 + FortyGigE0/3/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1068 + FortyGigE0/3/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1069 + FourHundredGigE0/3/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1070 + FourHundredGigE0/3/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1071 + FourHundredGigE0/3/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1072 + HundredGigE0/3/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1073 + HundredGigE0/3/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1074 + HundredGigE0/3/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1075 + FortyGigE0/3/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1076 + FortyGigE0/3/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1077 + FortyGigE0/3/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1078 + FourHundredGigE0/3/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1079 + FourHundredGigE0/3/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1080 + FourHundredGigE0/3/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1081 + HundredGigE0/3/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1082 + HundredGigE0/3/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1083 + HundredGigE0/3/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1084 + FortyGigE0/3/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1085 + FortyGigE0/3/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1086 + FortyGigE0/3/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1087 + FourHundredGigE0/3/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1088 + FourHundredGigE0/3/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1089 + FourHundredGigE0/3/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1090 + HundredGigE0/3/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1091 + HundredGigE0/3/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1092 + HundredGigE0/3/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1093 + FortyGigE0/3/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1094 + FortyGigE0/3/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1095 + FortyGigE0/3/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1096 + FourHundredGigE0/3/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1097 + FourHundredGigE0/3/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1098 + FourHundredGigE0/3/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1099 + HundredGigE0/3/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1100 + HundredGigE0/3/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1101 + HundredGigE0/3/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1102 + FortyGigE0/3/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1103 + FortyGigE0/3/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1104 + FortyGigE0/3/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1105 + FourHundredGigE0/3/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1106 + FourHundredGigE0/3/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1107 + FourHundredGigE0/3/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1108 + HundredGigE0/3/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1109 + HundredGigE0/3/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1110 + HundredGigE0/3/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1111 + FortyGigE0/3/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1112 + FortyGigE0/3/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1113 + FortyGigE0/3/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1114 + FourHundredGigE0/3/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1115 + FourHundredGigE0/3/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1116 + FourHundredGigE0/3/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1117 + FourHundredGigE0/4/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1118 + FourHundredGigE0/4/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1119 + FourHundredGigE0/4/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1120 + HundredGigE0/4/0/0 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1121 + HundredGigE0/4/0/0 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1122 + HundredGigE0/4/0/0 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1123 + FourHundredGigE0/4/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1124 + FourHundredGigE0/4/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1125 + FourHundredGigE0/4/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1126 + HundredGigE0/4/0/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1127 + HundredGigE0/4/0/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1128 + HundredGigE0/4/0/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1129 + FourHundredGigE0/4/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1130 + FourHundredGigE0/4/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1131 + FourHundredGigE0/4/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1132 + HundredGigE0/4/0/2 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1133 + HundredGigE0/4/0/2 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1134 + HundredGigE0/4/0/2 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1135 + FourHundredGigE0/4/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1136 + FourHundredGigE0/4/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1137 + FourHundredGigE0/4/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1138 + HundredGigE0/4/0/3 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1139 + HundredGigE0/4/0/3 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1140 + HundredGigE0/4/0/3 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1141 + FourHundredGigE0/4/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1142 + FourHundredGigE0/4/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1143 + FourHundredGigE0/4/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1144 + HundredGigE0/4/0/4 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1145 + HundredGigE0/4/0/4 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1146 + HundredGigE0/4/0/4 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1147 + FourHundredGigE0/4/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1148 + FourHundredGigE0/4/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1149 + FourHundredGigE0/4/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1150 + HundredGigE0/4/0/5 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1151 + HundredGigE0/4/0/5 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1152 + HundredGigE0/4/0/5 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1153 + FourHundredGigE0/4/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1154 + FourHundredGigE0/4/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1155 + FourHundredGigE0/4/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1156 + HundredGigE0/4/0/6 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1157 + HundredGigE0/4/0/6 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1158 + HundredGigE0/4/0/6 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1159 + FourHundredGigE0/4/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1160 + FourHundredGigE0/4/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1161 + FourHundredGigE0/4/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1162 + HundredGigE0/4/0/7 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1163 + HundredGigE0/4/0/7 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1164 + HundredGigE0/4/0/7 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1165 + FourHundredGigE0/4/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1166 + FourHundredGigE0/4/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1167 + FourHundredGigE0/4/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1168 + HundredGigE0/4/0/8 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1169 + HundredGigE0/4/0/8 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1170 + HundredGigE0/4/0/8 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1171 + FourHundredGigE0/4/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1172 + FourHundredGigE0/4/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1173 + FourHundredGigE0/4/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1174 + HundredGigE0/4/0/9 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1175 + HundredGigE0/4/0/9 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1176 + HundredGigE0/4/0/9 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1177 + FourHundredGigE0/4/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1178 + FourHundredGigE0/4/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1179 + FourHundredGigE0/4/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1180 + HundredGigE0/4/0/10 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1181 + HundredGigE0/4/0/10 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1182 + HundredGigE0/4/0/10 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1183 + FourHundredGigE0/4/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1184 + FourHundredGigE0/4/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1185 + FourHundredGigE0/4/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1186 + HundredGigE0/4/0/11 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1187 + HundredGigE0/4/0/11 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1188 + HundredGigE0/4/0/11 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1189 + FourHundredGigE0/4/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1190 + FourHundredGigE0/4/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1191 + FourHundredGigE0/4/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1192 + HundredGigE0/4/0/12 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1193 + HundredGigE0/4/0/12 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1194 + HundredGigE0/4/0/12 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1195 + FourHundredGigE0/4/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1196 + FourHundredGigE0/4/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1197 + FourHundredGigE0/4/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1198 + HundredGigE0/4/0/13 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1199 + HundredGigE0/4/0/13 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1200 + HundredGigE0/4/0/13 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1201 + FourHundredGigE0/4/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1202 + FourHundredGigE0/4/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1203 + FourHundredGigE0/4/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1204 + HundredGigE0/4/0/14 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1205 + HundredGigE0/4/0/14 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1206 + HundredGigE0/4/0/14 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1207 + FourHundredGigE0/4/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1208 + FourHundredGigE0/4/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1209 + FourHundredGigE0/4/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1210 + HundredGigE0/4/0/15 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1211 + HundredGigE0/4/0/15 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1212 + HundredGigE0/4/0/15 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1213 + FourHundredGigE0/4/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1214 + FourHundredGigE0/4/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1215 + FourHundredGigE0/4/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1216 + HundredGigE0/4/0/16 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1217 + HundredGigE0/4/0/16 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1218 + HundredGigE0/4/0/16 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1219 + FourHundredGigE0/4/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1220 + FourHundredGigE0/4/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1221 + FourHundredGigE0/4/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1222 + HundredGigE0/4/0/17 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1223 + HundredGigE0/4/0/17 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1224 + HundredGigE0/4/0/17 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1225 + FourHundredGigE0/4/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1226 + FourHundredGigE0/4/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1227 + FourHundredGigE0/4/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1228 + HundredGigE0/4/0/18 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1229 + HundredGigE0/4/0/18 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1230 + HundredGigE0/4/0/18 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1231 + FourHundredGigE0/4/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1232 + FourHundredGigE0/4/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1233 + FourHundredGigE0/4/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1234 + HundredGigE0/4/0/19 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1235 + HundredGigE0/4/0/19 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1236 + HundredGigE0/4/0/19 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1237 + FourHundredGigE0/4/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1238 + FourHundredGigE0/4/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1239 + FourHundredGigE0/4/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1240 + HundredGigE0/4/0/20 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1241 + HundredGigE0/4/0/20 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1242 + HundredGigE0/4/0/20 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1243 + FourHundredGigE0/4/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1244 + FourHundredGigE0/4/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1245 + FourHundredGigE0/4/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1246 + HundredGigE0/4/0/21 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1247 + HundredGigE0/4/0/21 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1248 + HundredGigE0/4/0/21 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1249 + FourHundredGigE0/4/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1250 + FourHundredGigE0/4/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1251 + FourHundredGigE0/4/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1252 + HundredGigE0/4/0/22 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1253 + HundredGigE0/4/0/22 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1254 + HundredGigE0/4/0/22 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1255 + FourHundredGigE0/4/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1256 + FourHundredGigE0/4/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1257 + FourHundredGigE0/4/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1258 + HundredGigE0/4/0/23 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1259 + HundredGigE0/4/0/23 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1260 + HundredGigE0/4/0/23 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1261 + FourHundredGigE0/4/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1262 + FourHundredGigE0/4/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1263 + FourHundredGigE0/4/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1264 + HundredGigE0/4/0/24 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1265 + HundredGigE0/4/0/24 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1266 + HundredGigE0/4/0/24 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1267 + FourHundredGigE0/4/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1268 + FourHundredGigE0/4/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1269 + FourHundredGigE0/4/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1270 + HundredGigE0/4/0/25 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1271 + HundredGigE0/4/0/25 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1272 + HundredGigE0/4/0/25 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1273 + FourHundredGigE0/4/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1274 + FourHundredGigE0/4/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1275 + FourHundredGigE0/4/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1276 + HundredGigE0/4/0/26 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1277 + HundredGigE0/4/0/26 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1278 + HundredGigE0/4/0/26 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1279 + FourHundredGigE0/4/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1280 + FourHundredGigE0/4/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1281 + FourHundredGigE0/4/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1282 + HundredGigE0/4/0/27 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1283 + HundredGigE0/4/0/27 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1284 + HundredGigE0/4/0/27 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1285 + FourHundredGigE0/4/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1286 + FourHundredGigE0/4/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1287 + FourHundredGigE0/4/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1288 + HundredGigE0/4/0/28 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1289 + HundredGigE0/4/0/28 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1290 + HundredGigE0/4/0/28 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1291 + FourHundredGigE0/4/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1292 + FourHundredGigE0/4/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1293 + FourHundredGigE0/4/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1294 + HundredGigE0/4/0/29 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1295 + HundredGigE0/4/0/29 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1296 + HundredGigE0/4/0/29 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1297 + FourHundredGigE0/4/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1298 + FourHundredGigE0/4/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1299 + FourHundredGigE0/4/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1300 + HundredGigE0/4/0/30 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1301 + HundredGigE0/4/0/30 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1302 + HundredGigE0/4/0/30 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1303 + FourHundredGigE0/4/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1304 + FourHundredGigE0/4/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1305 + FourHundredGigE0/4/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1306 + HundredGigE0/4/0/31 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1307 + HundredGigE0/4/0/31 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1308 + HundredGigE0/4/0/31 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1309 + FourHundredGigE0/4/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1310 + FourHundredGigE0/4/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1311 + FourHundredGigE0/4/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1312 + HundredGigE0/4/0/32 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1313 + HundredGigE0/4/0/32 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1314 + HundredGigE0/4/0/32 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1315 + FourHundredGigE0/4/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1316 + FourHundredGigE0/4/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1317 + FourHundredGigE0/4/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1318 + HundredGigE0/4/0/33 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1319 + HundredGigE0/4/0/33 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1320 + HundredGigE0/4/0/33 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1321 + FourHundredGigE0/4/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1322 + FourHundredGigE0/4/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1323 + FourHundredGigE0/4/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1324 + HundredGigE0/4/0/34 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1325 + HundredGigE0/4/0/34 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1326 + HundredGigE0/4/0/34 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1327 + FourHundredGigE0/4/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1328 + FourHundredGigE0/4/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1329 + FourHundredGigE0/4/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + false + 1330 + HundredGigE0/4/0/35 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + false + 1331 + HundredGigE0/4/0/35 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + false + 1332 + HundredGigE0/4/0/35 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + + + DeviceInterface + + false + 1 + power0 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 2 + power1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 3 + power0 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 4 + power1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 5 + power0 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 6 + power1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 7 + power0 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 8 + power1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 9 + power0 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 10 + power1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 11 + power0 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + false + 12 + power1 + false + + + 0 + + C19 + C19 + true + + + + + + DeviceInterface + + false + 1 + rp0-console0 + false + console + + 115200 + false + + + + DeviceInterface + + false + 2 + logical0 + false + logical0 + + 115200 + true + 0 + + + DeviceInterface + + false + 3 + logical1 + false + logical1 + + 115200 + true + 1 + + + DeviceInterface + + false + 4 + logical2 + false + logical2 + + 115200 + true + 2 + + + DeviceInterface + + false + 5 + logical3 + false + logical3 + + 115200 + true + 3 + + + DeviceInterface + + false + 6 + logical4 + false + logical4 + + 115200 + true + 4 + + + DeviceInterface + + false + 7 + logical5 + false + logical5 + + 115200 + true + 5 + + + DeviceInterface + + false + 8 + logical6 + false + logical6 + + 115200 + true + 6 + + + DeviceInterface + + false + 9 + logical7 + false + logical7 + + 115200 + true + 7 + + + DeviceInterface + + false + 10 + logical8 + false + logical8 + + 115200 + true + 8 + + + DeviceInterface + + false + 11 + logical9 + false + logical9 + + 115200 + true + 9 + + + DeviceInterface + + false + 12 + logical10 + false + logical10 + + 115200 + true + 10 + + + DeviceInterface + + false + 13 + logical11 + false + logical11 + + 115200 + true + 11 + + + DeviceInterface + + false + 14 + logical12 + false + logical12 + + 115200 + true + 12 + + + + Sonic + + + + + + + + + + + + str-sonic-sup00-ASIC00 + + + PortChannelInterface + PortChannel5001 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5002 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5003 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5004 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5005 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5006 + Eth154;Eth168;Eth178 + + + + PortChannelInterface + PortChannel5007 + Eth156;Eth170;Eth180 + + + + PortChannelInterface + PortChannel5008 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5009 + Eth184;Eth194;Eth220 + + + + PortChannelInterface + PortChannel5010 + Eth190;Eth192;Eth218 + + + + PortChannelInterface + PortChannel5011 + Eth208;Eth212 + + + + PortChannelInterface + PortChannel5012 + Eth232;Eth236 + + + + PortChannelInterface + PortChannel5013 + Eth240;Eth244 + + + + + + + VlanInterface + Vlan2 + PortChannel5001;PortChannel5002;PortChannel5003;PortChannel5004;PortChannel5005;PortChannel5006;PortChannel5007;PortChannel5008;PortChannel5009;PortChannel5010;PortChannel5011;PortChannel5012;PortChannel5013 + + UnTagged + 2 + 2 + 10.235.96.0/25;fc00:34::a:eb60:1/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC01 + + + PortChannelInterface + PortChannel5014 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5015 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5016 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5017 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5018 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5019 + Eth152;Eth156 + + + + PortChannelInterface + PortChannel5020 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5021 + Eth168;Eth172 + + + + PortChannelInterface + PortChannel5022 + Eth176;Eth180 + + + + PortChannelInterface + PortChannel5023 + Eth184;Eth188;Eth194;Eth216 + + + + PortChannelInterface + PortChannel5024 + Eth190;Eth192;Eth196;Eth222 + + + + PortChannelInterface + PortChannel5025 + Eth208;Eth212;Eth234;Eth244 + + + + PortChannelInterface + PortChannel5026 + Eth214;Eth232;Eth236;Eth242 + + + + + + + VlanInterface + Vlan2 + PortChannel5014;PortChannel5015;PortChannel5016;PortChannel5017;PortChannel5018;PortChannel5019;PortChannel5020;PortChannel5021;PortChannel5022;PortChannel5023;PortChannel5024;PortChannel5025;PortChannel5026 + + UnTagged + 2 + 2 + 10.235.96.128/25;fc00:34::a:eb60:8001/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC04 + + + PortChannelInterface + PortChannel5027 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5028 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5029 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5030 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5031 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5032 + Eth154;Eth168;Eth178 + + + + PortChannelInterface + PortChannel5033 + Eth156;Eth170;Eth180 + + + + PortChannelInterface + PortChannel5034 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5035 + Eth184;Eth194;Eth220 + + + + PortChannelInterface + PortChannel5036 + Eth190;Eth192;Eth218 + + + + PortChannelInterface + PortChannel5037 + Eth208;Eth212 + + + + PortChannelInterface + PortChannel5038 + Eth232;Eth236 + + + + PortChannelInterface + PortChannel5039 + Eth240;Eth244 + + + + + + + VlanInterface + Vlan2 + PortChannel5027;PortChannel5028;PortChannel5029;PortChannel5030;PortChannel5031;PortChannel5032;PortChannel5033;PortChannel5034;PortChannel5035;PortChannel5036;PortChannel5037;PortChannel5038;PortChannel5039 + + UnTagged + 2 + 2 + 10.235.97.0/25;fc00:34::a:eb61:1/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC05 + + + PortChannelInterface + PortChannel5040 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5041 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5042 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5043 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5044 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5045 + Eth152;Eth156 + + + + PortChannelInterface + PortChannel5046 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5047 + Eth168;Eth172 + + + + PortChannelInterface + PortChannel5048 + Eth176;Eth180 + + + + PortChannelInterface + PortChannel5049 + Eth184;Eth188;Eth194;Eth216 + + + + PortChannelInterface + PortChannel5050 + Eth190;Eth192;Eth196;Eth222 + + + + PortChannelInterface + PortChannel5051 + Eth208;Eth212;Eth234;Eth244 + + + + PortChannelInterface + PortChannel5052 + Eth214;Eth232;Eth236;Eth242 + + + + + + + VlanInterface + Vlan2 + PortChannel5040;PortChannel5041;PortChannel5042;PortChannel5043;PortChannel5044;PortChannel5045;PortChannel5046;PortChannel5047;PortChannel5048;PortChannel5049;PortChannel5050;PortChannel5051;PortChannel5052 + + UnTagged + 2 + 2 + 10.235.97.128/25;fc00:34::a:eb61:8001/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC08 + + + PortChannelInterface + PortChannel5053 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5054 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5055 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5056 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5057 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5058 + Eth154;Eth168;Eth178 + + + + PortChannelInterface + PortChannel5059 + Eth156;Eth170;Eth180 + + + + PortChannelInterface + PortChannel5060 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5061 + Eth184;Eth194;Eth220 + + + + PortChannelInterface + PortChannel5062 + Eth190;Eth192;Eth218 + + + + PortChannelInterface + PortChannel5063 + Eth208;Eth212 + + + + PortChannelInterface + PortChannel5064 + Eth232;Eth236 + + + + PortChannelInterface + PortChannel5065 + Eth240;Eth244 + + + + + + + VlanInterface + Vlan2 + PortChannel5053;PortChannel5054;PortChannel5055;PortChannel5056;PortChannel5057;PortChannel5058;PortChannel5059;PortChannel5060;PortChannel5061;PortChannel5062;PortChannel5063;PortChannel5064;PortChannel5065 + + UnTagged + 2 + 2 + 10.235.98.0/25;fc00:34::a:eb62:1/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC09 + + + PortChannelInterface + PortChannel5066 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5067 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5068 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5069 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5070 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5071 + Eth152;Eth156 + + + + PortChannelInterface + PortChannel5072 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5073 + Eth168;Eth172 + + + + PortChannelInterface + PortChannel5074 + Eth176;Eth180 + + + + PortChannelInterface + PortChannel5075 + Eth184;Eth188;Eth194;Eth216 + + + + PortChannelInterface + PortChannel5076 + Eth190;Eth192;Eth196;Eth222 + + + + PortChannelInterface + PortChannel5077 + Eth208;Eth212;Eth234;Eth244 + + + + PortChannelInterface + PortChannel5078 + Eth214;Eth232;Eth236;Eth242 + + + + + + + VlanInterface + Vlan2 + PortChannel5066;PortChannel5067;PortChannel5068;PortChannel5069;PortChannel5070;PortChannel5071;PortChannel5072;PortChannel5073;PortChannel5074;PortChannel5075;PortChannel5076;PortChannel5077;PortChannel5078 + + UnTagged + 2 + 2 + 10.235.98.128/25;fc00:34::a:eb62:8001/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC10 + + + PortChannelInterface + PortChannel5079 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5080 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5081 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5082 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5083 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5084 + Eth154;Eth168;Eth178 + + + + PortChannelInterface + PortChannel5085 + Eth156;Eth170;Eth180 + + + + PortChannelInterface + PortChannel5086 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5087 + Eth184;Eth194;Eth220 + + + + PortChannelInterface + PortChannel5088 + Eth190;Eth192;Eth218 + + + + PortChannelInterface + PortChannel5089 + Eth208;Eth212 + + + + PortChannelInterface + PortChannel5090 + Eth232;Eth236 + + + + PortChannelInterface + PortChannel5091 + Eth240;Eth244 + + + + + + + VlanInterface + Vlan2 + PortChannel5079;PortChannel5080;PortChannel5081;PortChannel5082;PortChannel5083;PortChannel5084;PortChannel5085;PortChannel5086;PortChannel5087;PortChannel5088;PortChannel5089;PortChannel5090;PortChannel5091 + + UnTagged + 2 + 2 + 10.235.99.0/25;fc00:34::a:eb63:1/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC11 + + + PortChannelInterface + PortChannel5092 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5093 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5094 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5095 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5096 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5097 + Eth152;Eth156 + + + + PortChannelInterface + PortChannel5098 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5099 + Eth168;Eth172 + + + + PortChannelInterface + PortChannel5100 + Eth176;Eth180 + + + + PortChannelInterface + PortChannel5101 + Eth184;Eth188;Eth194;Eth216 + + + + PortChannelInterface + PortChannel5102 + Eth190;Eth192;Eth196;Eth222 + + + + PortChannelInterface + PortChannel5103 + Eth208;Eth212;Eth234;Eth244 + + + + PortChannelInterface + PortChannel5104 + Eth214;Eth232;Eth236;Eth242 + + + + + + + VlanInterface + Vlan2 + PortChannel5092;PortChannel5093;PortChannel5094;PortChannel5095;PortChannel5096;PortChannel5097;PortChannel5098;PortChannel5099;PortChannel5100;PortChannel5101;PortChannel5102;PortChannel5103;PortChannel5104 + + UnTagged + 2 + 2 + 10.235.99.128/25;fc00:34::a:eb63:8001/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC12 + + + PortChannelInterface + PortChannel5105 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5106 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5107 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5108 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5109 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5110 + Eth154;Eth168;Eth178 + + + + PortChannelInterface + PortChannel5111 + Eth156;Eth170;Eth180 + + + + PortChannelInterface + PortChannel5112 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5113 + Eth184;Eth194;Eth220 + + + + PortChannelInterface + PortChannel5114 + Eth190;Eth192;Eth218 + + + + PortChannelInterface + PortChannel5115 + Eth208;Eth212 + + + + PortChannelInterface + PortChannel5116 + Eth232;Eth236 + + + + PortChannelInterface + PortChannel5117 + Eth240;Eth244 + + + + + + + VlanInterface + Vlan2 + PortChannel5105;PortChannel5106;PortChannel5107;PortChannel5108;PortChannel5109;PortChannel5110;PortChannel5111;PortChannel5112;PortChannel5113;PortChannel5114;PortChannel5115;PortChannel5116;PortChannel5117 + + UnTagged + 2 + 2 + 10.235.100.0/25;fc00:34::a:eb64:1/113 + + + + + + + + + + + + + + + + + + + + str-sonic-sup00-ASIC13 + + + PortChannelInterface + PortChannel5118 + Eth96;Eth100 + + + + PortChannelInterface + PortChannel5119 + Eth104;Eth108 + + + + PortChannelInterface + PortChannel5120 + Eth112;Eth116 + + + + PortChannelInterface + PortChannel5121 + Eth128;Eth132 + + + + PortChannelInterface + PortChannel5122 + Eth136;Eth140 + + + + PortChannelInterface + PortChannel5123 + Eth152;Eth156 + + + + PortChannelInterface + PortChannel5124 + Eth160;Eth164 + + + + PortChannelInterface + PortChannel5125 + Eth168;Eth172 + + + + PortChannelInterface + PortChannel5126 + Eth176;Eth180 + + + + PortChannelInterface + PortChannel5127 + Eth184;Eth188;Eth194;Eth216 + + + + PortChannelInterface + PortChannel5128 + Eth190;Eth192;Eth196;Eth222 + + + + PortChannelInterface + PortChannel5129 + Eth208;Eth212;Eth234;Eth244 + + + + PortChannelInterface + PortChannel5130 + Eth214;Eth232;Eth236;Eth242 + + + + + + + VlanInterface + Vlan2 + PortChannel5118;PortChannel5119;PortChannel5120;PortChannel5121;PortChannel5122;PortChannel5123;PortChannel5124;PortChannel5125;PortChannel5126;PortChannel5127;PortChannel5128;PortChannel5129;PortChannel5130 + + UnTagged + 2 + 2 + 10.235.100.128/25;fc00:34::a:eb64:8001/113 + + + + + + + + + + + + + + + + LoopbackInterface + HostIP + Loopback0 + + 10.3.0.5/32 + + 10.3.0.5/32 + + + LoopbackInterface + HostIP1 + Loopback0 + + fc00:34::1/128 + + fc00:34::1/128 + + + + + ManagementInterface + ManagementIP + Management1/1 + + 10.3.146.198/24 + + 10.3.146.198/24 + + + + ManagementInterface + v6ManagementIP + Management1/1 + + 2a01:111:e210:3000::a03:92c6/64 + + 2a01:111:e210:3000::a03:92c6/64 + + + + + + + + str-sonic-sup00 + + + + + + + + + + + + + + + str-sonic-sup00:console;str-console-194:port 27 + + + FlowControl + + False + + + str-sonic:rp0-console0;str-console-194:port 27 + + + + + + + + str-sonic-sup00-ASIC00 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + ProviderLineCard + + str-sonic-fc00 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC01 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + ProviderLineCard + + str-sonic-fc00 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC04 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 8 + + + ProviderLineCard + + str-sonic-fc02 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC05 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 9 + + + ProviderLineCard + + str-sonic-fc02 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC08 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 20 + + + ProviderLineCard + + str-sonic-fc04 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC09 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 21 + + + ProviderLineCard + + str-sonic-fc04 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC10 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 26 + + + ProviderLineCard + + str-sonic-fc05 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC11 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 27 + + + ProviderLineCard + + str-sonic-fc05 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC12 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 32 + + + ProviderLineCard + + str-sonic-fc06 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC13 + + + ForwardingMethod + + chassis-packet + + + ParentHardwareFabricSkuName + + sonic-sup-sku + + + SubRole + + BackEnd + + + AsicSwitchId + + 33 + + + ProviderLineCard + + str-sonic-fc06 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00 + + + FirmwareProfile + + SONiC-sonic-sup-sku-sup + + + ForwardingMethod + + chassis-packet + + + OsVersion + + SONiC.20220532.45 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-sup00-ASIC00;str-sonic-sup00-ASIC01;str-sonic-sup00-ASIC04;str-sonic-sup00-ASIC05;str-sonic-sup00-ASIC08;str-sonic-sup00-ASIC09;str-sonic-sup00-ASIC10;str-sonic-sup00-ASIC11;str-sonic-sup00-ASIC12;str-sonic-sup00-ASIC13 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic + + + CloudType + + Public + + + ConfigDbAclFile + + SonicNativeAcl.liquid + + + ConfigTemplateFile + + Sonic.xml + + + DNSServers + + 10.64.5.5;10.64.6.6;10.64.6.7 + + + DcCode + + STR + + + DeploymentId + + 3 + + + ErspanDestinationIpv4 + + 10.20.6.4 + + + FirmwareProfile + + SONiC-sonic-sup-sku-sup + + + Function + + LabTest + + + Group + + str:-1848794319 + + + InitConfigTemplateFile + + Sonic.init.xml + + + Location + + TBD + + + Loopback0Ipv4 + + 10.3.0.1/32;10.3.0.2/32;10.3.0.3/32;10.3.0.4/32;10.3.0.5/32 + + + Loopback0Ipv6 + + fc00:30::1/128;fc00:31::1/128;fc00:32::1/128;fc00:33::1/128;fc00:34::1/128 + + + Loopback4096Ipv4 + + 192.0.0.1/32;192.0.0.2/32;192.0.0.3/32;192.0.0.4/32;192.0.0.5/32;192.0.0.6/32;192.0.0.7/32;192.0.0.8/32;192.0.0.9/32;192.0.0.10/32;192.0.0.11/32;192.0.0.12/32;192.0.0.13/32 + + + Loopback4096Ipv6 + + 2603:10e2:400::1/128;2603:10e2:400::2/128;2603:10e2:400::3/128;2603:10e2:400::4/128;2603:10e2:400::5/128;2603:10e2:400::6/128;2603:10e2:400::7/128;2603:10e2:400::8/128;2603:10e2:400::9/128;2603:10e2:400::a/128;2603:10e2:400::b/128;2603:10e2:400::c/128;2603:10e2:400::d/128 + + + MacSecEnabled + + True + + + MacSecProfile + usstagee.Sonic.MacSec + PrimaryKey="macsec-profile-two" FallbackKey="macsec-profile" MacsecPolicy="" + + + ManagementIpv4 + + 10.3.146.199/24;10.3.146.200/24;10.3.146.201/24;10.3.146.205/24;10.3.146.214/24 + + + ManagementIpv6 + + 2a01:111:e210:3000::a03:92c7/64;2a01:111:e210:3000::a03:92c8/64;2a01:111:e210:3000::a03:92c9/64;2a01:111:e210:3000::a03:92cd/64;2a01:111:e210:3000::a03:92d6/64 + + + MaxCountOfCores + + 64 + + + NtpResources + Public.Ntp + 17.39.1.129;17.39.1.130 + + + QosProfile + + VerlaineLongHaul + + + RemoteAuthenticationProtocol + + Tacacs + + + SnmpResources + + 10.52.180.161;10.3.157.12 + + + SonicConfigTemplateFile + + Sonic.xml + + + SonicEnabled + + True + + + SyslogResources + + 10.52.180.161;10.3.157.12 + + + SyslogServer + + 10.20.4.167;10.20.7.33;10.20.6.16;10.20.6.84 + + + TacacsKey + + $Secrets.TacacsKey + + + TacacsSecurityLevel + + 7 + + + TacacsServer + + 123.46.98.21 + + + OsVersion + + SONiC.20220532.45 + + + Region + + test + + + ChassisEnabled + + true + + + + + + + + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth392 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth392 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth392 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth400 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth154 + true + str-sonic-lc02-ASIC01 + Eth288 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth156 + true + str-sonic-lc02-ASIC00 + Eth294 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth392 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth168 + true + str-sonic-lc02-ASIC01 + Eth292 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth170 + true + str-sonic-lc02-ASIC00 + Eth290 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth178 + true + str-sonic-lc02-ASIC01 + Eth294 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth180 + true + str-sonic-lc02-ASIC00 + Eth292 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth184 + true + str-sonic-lc01-ASIC00 + Eth294 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth190 + true + str-sonic-lc01-ASIC01 + Eth288 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth192 + true + str-sonic-lc01-ASIC01 + Eth292 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth194 + true + str-sonic-lc01-ASIC00 + Eth290 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth208 + true + str-sonic-lc00-ASIC00 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth212 + true + str-sonic-lc00-ASIC00 + Eth392 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth218 + true + str-sonic-lc01-ASIC01 + Eth294 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC00 + Eth220 + true + str-sonic-lc01-ASIC00 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth232 + true + str-sonic-lc00-ASIC01 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth236 + true + str-sonic-lc00-ASIC01 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth240 + true + str-sonic-lc00-ASIC02 + Eth392 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC00 + Eth244 + true + str-sonic-lc00-ASIC02 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth392 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth392 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth152 + true + str-sonic-lc00-ASIC02 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth156 + true + str-sonic-lc00-ASIC02 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth168 + true + str-sonic-lc00-ASIC00 + Eth404 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth172 + true + str-sonic-lc00-ASIC00 + Eth400 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth176 + true + str-sonic-lc00-ASIC01 + Eth396 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC01 + Eth180 + true + str-sonic-lc00-ASIC01 + Eth392 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth184 + true + str-sonic-lc02-ASIC00 + Eth286 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth188 + true + str-sonic-lc02-ASIC00 + Eth288 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth190 + true + str-sonic-lc02-ASIC01 + Eth192 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth192 + true + str-sonic-lc02-ASIC01 + Eth302 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth194 + true + str-sonic-lc02-ASIC00 + Eth192 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth196 + true + str-sonic-lc02-ASIC01 + Eth290 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth208 + true + str-sonic-lc01-ASIC00 + Eth286 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth212 + true + str-sonic-lc01-ASIC00 + Eth288 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth214 + true + str-sonic-lc01-ASIC01 + Eth192 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth216 + true + str-sonic-lc02-ASIC00 + Eth302 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth222 + true + str-sonic-lc02-ASIC01 + Eth286 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth232 + true + str-sonic-lc01-ASIC01 + Eth302 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth234 + true + str-sonic-lc01-ASIC00 + Eth192 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth236 + true + str-sonic-lc01-ASIC01 + Eth290 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth242 + true + str-sonic-lc01-ASIC01 + Eth286 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC01 + Eth244 + true + str-sonic-lc01-ASIC00 + Eth302 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth376 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth376 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth376 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth376 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth376 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth154 + true + str-sonic-lc02-ASIC01 + Eth282 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth156 + true + str-sonic-lc02-ASIC00 + Eth264 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth376 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth168 + true + str-sonic-lc02-ASIC01 + Eth266 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth170 + true + str-sonic-lc02-ASIC00 + Eth282 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth178 + true + str-sonic-lc02-ASIC01 + Eth264 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth180 + true + str-sonic-lc02-ASIC00 + Eth266 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth184 + true + str-sonic-lc01-ASIC00 + Eth264 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth190 + true + str-sonic-lc01-ASIC01 + Eth282 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth192 + true + str-sonic-lc01-ASIC01 + Eth266 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth194 + true + str-sonic-lc01-ASIC00 + Eth282 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth208 + true + str-sonic-lc00-ASIC00 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth212 + true + str-sonic-lc00-ASIC00 + Eth376 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth218 + true + str-sonic-lc01-ASIC01 + Eth264 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC04 + Eth220 + true + str-sonic-lc01-ASIC00 + Eth266 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth232 + true + str-sonic-lc00-ASIC01 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth236 + true + str-sonic-lc00-ASIC01 + Eth376 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth240 + true + str-sonic-lc00-ASIC02 + Eth376 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC04 + Eth244 + true + str-sonic-lc00-ASIC02 + Eth380 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth152 + true + str-sonic-lc00-ASIC02 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth156 + true + str-sonic-lc00-ASIC02 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth168 + true + str-sonic-lc00-ASIC00 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth172 + true + str-sonic-lc00-ASIC00 + Eth384 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth176 + true + str-sonic-lc00-ASIC01 + Eth388 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC05 + Eth180 + true + str-sonic-lc00-ASIC01 + Eth384 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth184 + true + str-sonic-lc02-ASIC00 + Eth280 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth188 + true + str-sonic-lc02-ASIC00 + Eth284 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth190 + true + str-sonic-lc02-ASIC01 + Eth276 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth192 + true + str-sonic-lc02-ASIC01 + Eth278 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth194 + true + str-sonic-lc02-ASIC00 + Eth276 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth196 + true + str-sonic-lc02-ASIC01 + Eth284 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth208 + true + str-sonic-lc01-ASIC00 + Eth280 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth212 + true + str-sonic-lc01-ASIC00 + Eth284 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth214 + true + str-sonic-lc01-ASIC01 + Eth276 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth216 + true + str-sonic-lc02-ASIC00 + Eth278 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth222 + true + str-sonic-lc02-ASIC01 + Eth280 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth232 + true + str-sonic-lc01-ASIC01 + Eth278 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth234 + true + str-sonic-lc01-ASIC00 + Eth276 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth236 + true + str-sonic-lc01-ASIC01 + Eth284 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth242 + true + str-sonic-lc01-ASIC01 + Eth280 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC05 + Eth244 + true + str-sonic-lc01-ASIC00 + Eth278 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth360 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth360 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth360 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth360 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth360 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth154 + true + str-sonic-lc02-ASIC01 + Eth242 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth156 + true + str-sonic-lc02-ASIC00 + Eth236 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth360 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth168 + true + str-sonic-lc02-ASIC01 + Eth238 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth170 + true + str-sonic-lc02-ASIC00 + Eth242 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth178 + true + str-sonic-lc02-ASIC01 + Eth236 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth180 + true + str-sonic-lc02-ASIC00 + Eth238 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth184 + true + str-sonic-lc01-ASIC00 + Eth236 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth190 + true + str-sonic-lc01-ASIC01 + Eth242 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth192 + true + str-sonic-lc01-ASIC01 + Eth238 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth194 + true + str-sonic-lc01-ASIC00 + Eth242 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth208 + true + str-sonic-lc00-ASIC00 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth212 + true + str-sonic-lc00-ASIC00 + Eth360 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth218 + true + str-sonic-lc01-ASIC01 + Eth236 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC08 + Eth220 + true + str-sonic-lc01-ASIC00 + Eth238 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth232 + true + str-sonic-lc00-ASIC01 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth236 + true + str-sonic-lc00-ASIC01 + Eth360 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth240 + true + str-sonic-lc00-ASIC02 + Eth360 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC08 + Eth244 + true + str-sonic-lc00-ASIC02 + Eth364 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth152 + true + str-sonic-lc00-ASIC02 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth156 + true + str-sonic-lc00-ASIC02 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth168 + true + str-sonic-lc00-ASIC00 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth172 + true + str-sonic-lc00-ASIC00 + Eth332 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth176 + true + str-sonic-lc00-ASIC01 + Eth328 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC09 + Eth180 + true + str-sonic-lc00-ASIC01 + Eth332 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth184 + true + str-sonic-lc02-ASIC00 + Eth244 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth188 + true + str-sonic-lc02-ASIC00 + Eth240 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth190 + true + str-sonic-lc02-ASIC01 + Eth248 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth192 + true + str-sonic-lc02-ASIC01 + Eth246 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth194 + true + str-sonic-lc02-ASIC00 + Eth248 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth196 + true + str-sonic-lc02-ASIC01 + Eth240 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth208 + true + str-sonic-lc01-ASIC00 + Eth244 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth212 + true + str-sonic-lc01-ASIC00 + Eth240 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth214 + true + str-sonic-lc01-ASIC01 + Eth248 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth216 + true + str-sonic-lc02-ASIC00 + Eth246 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth222 + true + str-sonic-lc02-ASIC01 + Eth244 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth232 + true + str-sonic-lc01-ASIC01 + Eth246 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth234 + true + str-sonic-lc01-ASIC00 + Eth248 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth236 + true + str-sonic-lc01-ASIC01 + Eth240 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth242 + true + str-sonic-lc01-ASIC01 + Eth244 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC09 + Eth244 + true + str-sonic-lc01-ASIC00 + Eth246 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth340 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth154 + true + str-sonic-lc02-ASIC01 + Eth218 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth156 + true + str-sonic-lc02-ASIC00 + Eth222 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth336 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth168 + true + str-sonic-lc02-ASIC01 + Eth214 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth170 + true + str-sonic-lc02-ASIC00 + Eth218 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth178 + true + str-sonic-lc02-ASIC01 + Eth222 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth180 + true + str-sonic-lc02-ASIC00 + Eth214 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth184 + true + str-sonic-lc01-ASIC00 + Eth222 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth190 + true + str-sonic-lc01-ASIC01 + Eth218 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth192 + true + str-sonic-lc01-ASIC01 + Eth214 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth194 + true + str-sonic-lc01-ASIC00 + Eth218 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth208 + true + str-sonic-lc00-ASIC00 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth212 + true + str-sonic-lc00-ASIC00 + Eth340 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth218 + true + str-sonic-lc01-ASIC01 + Eth222 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC10 + Eth220 + true + str-sonic-lc01-ASIC00 + Eth214 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth232 + true + str-sonic-lc00-ASIC01 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth236 + true + str-sonic-lc00-ASIC01 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth240 + true + str-sonic-lc00-ASIC02 + Eth336 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC10 + Eth244 + true + str-sonic-lc00-ASIC02 + Eth340 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth152 + true + str-sonic-lc00-ASIC02 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth156 + true + str-sonic-lc00-ASIC02 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth168 + true + str-sonic-lc00-ASIC00 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth172 + true + str-sonic-lc00-ASIC00 + Eth312 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth176 + true + str-sonic-lc00-ASIC01 + Eth316 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC11 + Eth180 + true + str-sonic-lc00-ASIC01 + Eth312 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth184 + true + str-sonic-lc02-ASIC00 + Eth220 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth188 + true + str-sonic-lc02-ASIC00 + Eth216 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth190 + true + str-sonic-lc02-ASIC01 + Eth234 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth192 + true + str-sonic-lc02-ASIC01 + Eth232 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth194 + true + str-sonic-lc02-ASIC00 + Eth234 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth196 + true + str-sonic-lc02-ASIC01 + Eth216 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth208 + true + str-sonic-lc01-ASIC00 + Eth220 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth212 + true + str-sonic-lc01-ASIC00 + Eth216 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth214 + true + str-sonic-lc01-ASIC01 + Eth234 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth216 + true + str-sonic-lc02-ASIC00 + Eth232 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth222 + true + str-sonic-lc02-ASIC01 + Eth220 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth232 + true + str-sonic-lc01-ASIC01 + Eth232 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth234 + true + str-sonic-lc01-ASIC00 + Eth234 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth236 + true + str-sonic-lc01-ASIC01 + Eth216 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth242 + true + str-sonic-lc01-ASIC01 + Eth220 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC11 + Eth244 + true + str-sonic-lc01-ASIC00 + Eth232 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth320 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth154 + true + str-sonic-lc02-ASIC01 + Eth204 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth156 + true + str-sonic-lc02-ASIC00 + Eth208 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth320 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth168 + true + str-sonic-lc02-ASIC01 + Eth206 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth170 + true + str-sonic-lc02-ASIC00 + Eth230 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth178 + true + str-sonic-lc02-ASIC01 + Eth208 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth180 + true + str-sonic-lc02-ASIC00 + Eth206 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth184 + true + str-sonic-lc01-ASIC00 + Eth208 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth190 + true + str-sonic-lc01-ASIC01 + Eth204 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth192 + true + str-sonic-lc01-ASIC01 + Eth206 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth194 + true + str-sonic-lc01-ASIC00 + Eth230 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth208 + true + str-sonic-lc00-ASIC00 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth212 + true + str-sonic-lc00-ASIC00 + Eth324 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth218 + true + str-sonic-lc01-ASIC01 + Eth208 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC12 + Eth220 + true + str-sonic-lc01-ASIC00 + Eth206 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth232 + true + str-sonic-lc00-ASIC01 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth236 + true + str-sonic-lc00-ASIC01 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth240 + true + str-sonic-lc00-ASIC02 + Eth320 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC12 + Eth244 + true + str-sonic-lc00-ASIC02 + Eth324 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth96 + true + str-sonic-lc04-ASIC00 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth100 + true + str-sonic-lc04-ASIC00 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth104 + true + str-sonic-lc04-ASIC01 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth108 + true + str-sonic-lc04-ASIC01 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth112 + true + str-sonic-lc04-ASIC02 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth116 + true + str-sonic-lc04-ASIC02 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth128 + true + str-sonic-lc03-ASIC00 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth132 + true + str-sonic-lc03-ASIC00 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth136 + true + str-sonic-lc03-ASIC01 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth140 + true + str-sonic-lc03-ASIC01 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth152 + true + str-sonic-lc00-ASIC02 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth156 + true + str-sonic-lc00-ASIC02 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth160 + true + str-sonic-lc03-ASIC02 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth164 + true + str-sonic-lc03-ASIC02 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth168 + true + str-sonic-lc00-ASIC00 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth172 + true + str-sonic-lc00-ASIC00 + Eth288 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth176 + true + str-sonic-lc00-ASIC01 + Eth292 + true + + + BackendFabricLink + 200000 + false + str-sonic-sup00-ASIC13 + Eth180 + true + str-sonic-lc00-ASIC01 + Eth288 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth184 + true + str-sonic-lc02-ASIC00 + Eth228 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth188 + true + str-sonic-lc02-ASIC00 + Eth204 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth190 + true + str-sonic-lc02-ASIC01 + Eth224 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth192 + true + str-sonic-lc02-ASIC01 + Eth226 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth194 + true + str-sonic-lc02-ASIC00 + Eth224 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth196 + true + str-sonic-lc02-ASIC01 + Eth230 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth208 + true + str-sonic-lc01-ASIC00 + Eth228 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth212 + true + str-sonic-lc01-ASIC00 + Eth204 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth214 + true + str-sonic-lc01-ASIC01 + Eth224 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth216 + true + str-sonic-lc02-ASIC00 + Eth226 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth222 + true + str-sonic-lc02-ASIC01 + Eth228 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth232 + true + str-sonic-lc01-ASIC01 + Eth226 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth234 + true + str-sonic-lc01-ASIC00 + Eth224 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth236 + true + str-sonic-lc01-ASIC01 + Eth230 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth242 + true + str-sonic-lc01-ASIC01 + Eth228 + true + + + BackendFabricLink + 100000 + false + str-sonic-sup00-ASIC13 + Eth244 + true + str-sonic-lc01-ASIC00 + Eth226 + true + + + DeviceSerialLink + 115200 + true + str-console-194 + port 27 + true + str-sonic-sup00 + console + true + 27 + + + DeviceSerialLink + 115200 + true + str-sonic-sup00 + logical0 + true + str-sonic-lc00 + console + true + 0 + + + DeviceSerialLink + 115200 + true + str-sonic-sup00 + logical1 + true + str-sonic-lc01 + console + true + 1 + + + DeviceSerialLink + 115200 + true + str-sonic-sup00 + logical2 + true + str-sonic-lc02 + console + true + 2 + + + DeviceSerialLink + 115200 + true + str-sonic-sup00 + logical3 + true + str-sonic-lc03 + console + true + 3 + + + DeviceSerialLink + 115200 + true + str-sonic-sup00 + logical4 + true + str-sonic-lc04 + console + true + 4 + + + + + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC00 + sonic-fabric-asic-sku +
+ + LinecardAsic +
+ 10.3.0.5/32 +
+ + fc00:34::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc04-ASIC00 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.5/32 +
+ + fc00:34::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc04-ASIC01 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.5/32 +
+ + fc00:34::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc04-ASIC02 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.4/32 +
+ + fc00:33::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC00 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.4/32 +
+ + fc00:33::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC01 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.3/32 +
+ + fc00:32::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc02-ASIC01 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.3/32 +
+ + fc00:32::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc02-ASIC00 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.4/32 +
+ + fc00:33::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC02 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.2/32 +
+ + fc00:31::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc01-ASIC00 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.2/32 +
+ + fc00:31::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc01-ASIC01 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.1/32 +
+ + fc00:30::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc00-ASIC00 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.1/32 +
+ + fc00:30::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc00-ASIC01 + sonic-lc-asic +
+ + LinecardAsic +
+ 10.3.0.1/32 +
+ + fc00:30::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc00-ASIC02 + sonic-lc-asic +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC01 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC04 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC05 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC08 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC09 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC10 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC11 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC12 + sonic-fabric-asic-sku +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC13 + sonic-fabric-asic-sku +
+ + Supervisor +
+ 10.3.0.5/32 +
+ + fc00:34::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.198/24 + + + 2a01:111:e210:3000::a03:92c6/64 + + + + str-sonic-sup00 + sonic-sup-sku +
+ + MiniTs +
+ 0.0.0.0/0 +
+ + ::/0 + + + starlabDefaultSlice + None + + + 3 + + STARLab + + 10.3.145.194/24 + + + ::/0 + + + + str-console-194 + Digi-CM48 +
+ + Linecard +
+ 10.3.0.1/32 +
+ + fc00:30::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.199/24 + + + 2a01:111:e210:3000::a03:92c7/64 + + + + str-sonic-lc00 + sonic-400g-lc-sku +
+ + Linecard +
+ 10.3.0.2/32 +
+ + fc00:31::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.200/24 + + + 2a01:111:e210:3000::a03:92c8/64 + + + + str-sonic-lc01 + sonic-100g-lc-sku +
+ + Linecard +
+ 10.3.0.3/32 +
+ + fc00:32::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.201/24 + + + 2a01:111:e210:3000::a03:92c9/64 + + + + str-sonic-lc02 + sonic-100g-lc-sku +
+ + Linecard +
+ 10.3.0.4/32 +
+ + fc00:33::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.205/24 + + + 2a01:111:e210:3000::a03:92cd/64 + + + + str-sonic-lc03 + sonic-400g-lc-sku +
+ + Linecard +
+ 10.3.0.5/32 +
+ + fc00:34::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.214/24 + + + 2a01:111:e210:3000::a03:92d6/64 + + + + str-sonic-lc04 + sonic-400g-lc-sku +
+ + SpineRouter +
+ 10.3.0.5/32 +
+ + fc00:34::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.198/24 + + + 2a01:111:e210:3000::a03:92c6/64 + + + + str-sonic + Sonic-packet-chassis-sku + 0 +
+
+
+ str-sonic-sup00 + sonic-sup-sku + 1.0.1388.35303 + +
diff --git a/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/system_ports.json b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/system_ports.json new file mode 100644 index 000000000000..0cb7e777b943 --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/system_ports.json @@ -0,0 +1,3170 @@ +{ + "str-sonic-lc03|ASIC0|Ethernet0": { + "system_port_id": 1, + "switch_id": 8, + "core_index": "1", + "core_port_index": "1", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet8": { + "system_port_id": 2, + "switch_id": 8, + "core_index": "1", + "core_port_index": "2", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet16": { + "system_port_id": 3, + "switch_id": 8, + "core_index": "1", + "core_port_index": "3", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet24": { + "system_port_id": 4, + "switch_id": 8, + "core_index": "1", + "core_port_index": "4", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet32": { + "system_port_id": 5, + "switch_id": 8, + "core_index": "1", + "core_port_index": "5", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet40": { + "system_port_id": 6, + "switch_id": 8, + "core_index": "1", + "core_port_index": "6", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet48": { + "system_port_id": 7, + "switch_id": 8, + "core_index": "1", + "core_port_index": "7", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet56": { + "system_port_id": 8, + "switch_id": 8, + "core_index": "1", + "core_port_index": "8", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet64": { + "system_port_id": 9, + "switch_id": 8, + "core_index": "1", + "core_port_index": "9", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet72": { + "system_port_id": 10, + "switch_id": 8, + "core_index": "0", + "core_port_index": "10", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet80": { + "system_port_id": 11, + "switch_id": 8, + "core_index": "0", + "core_port_index": "11", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet88": { + "system_port_id": 12, + "switch_id": 8, + "core_index": "0", + "core_port_index": "12", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet96": { + "system_port_id": 13, + "switch_id": 8, + "core_index": "0", + "core_port_index": "13", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet104": { + "system_port_id": 14, + "switch_id": 8, + "core_index": "0", + "core_port_index": "14", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet112": { + "system_port_id": 15, + "switch_id": 8, + "core_index": "0", + "core_port_index": "15", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet120": { + "system_port_id": 16, + "switch_id": 8, + "core_index": "0", + "core_port_index": "16", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet128": { + "system_port_id": 17, + "switch_id": 8, + "core_index": "0", + "core_port_index": "17", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet136": { + "system_port_id": 18, + "switch_id": 8, + "core_index": "0", + "core_port_index": "18", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet144": { + "system_port_id": 19, + "switch_id": 10, + "core_index": "1", + "core_port_index": "1", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet152": { + "system_port_id": 20, + "switch_id": 10, + "core_index": "1", + "core_port_index": "2", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet160": { + "system_port_id": 21, + "switch_id": 10, + "core_index": "1", + "core_port_index": "3", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet168": { + "system_port_id": 22, + "switch_id": 10, + "core_index": "1", + "core_port_index": "4", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet176": { + "system_port_id": 23, + "switch_id": 10, + "core_index": "1", + "core_port_index": "5", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet184": { + "system_port_id": 24, + "switch_id": 10, + "core_index": "1", + "core_port_index": "6", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet192": { + "system_port_id": 25, + "switch_id": 10, + "core_index": "1", + "core_port_index": "7", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet200": { + "system_port_id": 26, + "switch_id": 10, + "core_index": "1", + "core_port_index": "8", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet208": { + "system_port_id": 27, + "switch_id": 10, + "core_index": "1", + "core_port_index": "9", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet216": { + "system_port_id": 28, + "switch_id": 10, + "core_index": "0", + "core_port_index": "10", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet224": { + "system_port_id": 29, + "switch_id": 10, + "core_index": "0", + "core_port_index": "11", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet232": { + "system_port_id": 30, + "switch_id": 10, + "core_index": "0", + "core_port_index": "12", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet240": { + "system_port_id": 31, + "switch_id": 10, + "core_index": "0", + "core_port_index": "13", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet248": { + "system_port_id": 32, + "switch_id": 10, + "core_index": "0", + "core_port_index": "14", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet256": { + "system_port_id": 33, + "switch_id": 10, + "core_index": "0", + "core_port_index": "15", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet264": { + "system_port_id": 34, + "switch_id": 10, + "core_index": "0", + "core_port_index": "16", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet272": { + "system_port_id": 35, + "switch_id": 10, + "core_index": "0", + "core_port_index": "17", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet280": { + "system_port_id": 36, + "switch_id": 10, + "core_index": "0", + "core_port_index": "18", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|cpu0": { + "system_port_id": 37, + "switch_id": 8, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|cpu1": { + "system_port_id": 38, + "switch_id": 10, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet-Rec0": { + "system_port_id": 39, + "switch_id": 8, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet-Rec1": { + "system_port_id": 40, + "switch_id": 10, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC0|Ethernet-IB0": { + "system_port_id": 41, + "switch_id": 8, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc03|ASIC1|Ethernet-IB1": { + "system_port_id": 42, + "switch_id": 10, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet0": { + "system_port_id": 43, + "switch_id": 12, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet4": { + "system_port_id": 44, + "switch_id": 12, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet8": { + "system_port_id": 45, + "switch_id": 12, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet12": { + "system_port_id": 46, + "switch_id": 12, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet16": { + "system_port_id": 47, + "switch_id": 12, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet20": { + "system_port_id": 48, + "switch_id": 12, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet24": { + "system_port_id": 49, + "switch_id": 12, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet28": { + "system_port_id": 50, + "switch_id": 12, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet32": { + "system_port_id": 51, + "switch_id": 12, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet36": { + "system_port_id": 52, + "switch_id": 12, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet40": { + "system_port_id": 53, + "switch_id": 12, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet44": { + "system_port_id": 54, + "switch_id": 12, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet48": { + "system_port_id": 55, + "switch_id": 12, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet52": { + "system_port_id": 56, + "switch_id": 12, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet56": { + "system_port_id": 57, + "switch_id": 12, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet60": { + "system_port_id": 58, + "switch_id": 12, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet64": { + "system_port_id": 59, + "switch_id": 12, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet68": { + "system_port_id": 60, + "switch_id": 12, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet72": { + "system_port_id": 61, + "switch_id": 12, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet76": { + "system_port_id": 62, + "switch_id": 12, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet80": { + "system_port_id": 63, + "switch_id": 12, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet84": { + "system_port_id": 64, + "switch_id": 12, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet88": { + "system_port_id": 65, + "switch_id": 12, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet92": { + "system_port_id": 66, + "switch_id": 12, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet96": { + "system_port_id": 67, + "switch_id": 12, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet100": { + "system_port_id": 68, + "switch_id": 12, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet104": { + "system_port_id": 69, + "switch_id": 12, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet108": { + "system_port_id": 70, + "switch_id": 12, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet112": { + "system_port_id": 71, + "switch_id": 12, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet116": { + "system_port_id": 72, + "switch_id": 12, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet120": { + "system_port_id": 73, + "switch_id": 12, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet124": { + "system_port_id": 74, + "switch_id": 12, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet128": { + "system_port_id": 75, + "switch_id": 12, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet132": { + "system_port_id": 76, + "switch_id": 12, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet136": { + "system_port_id": 77, + "switch_id": 12, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet140": { + "system_port_id": 78, + "switch_id": 12, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet144": { + "system_port_id": 79, + "switch_id": 12, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet148": { + "system_port_id": 80, + "switch_id": 12, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet152": { + "system_port_id": 81, + "switch_id": 12, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet156": { + "system_port_id": 82, + "switch_id": 12, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet160": { + "system_port_id": 83, + "switch_id": 12, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet164": { + "system_port_id": 84, + "switch_id": 12, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet168": { + "system_port_id": 85, + "switch_id": 12, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet172": { + "system_port_id": 86, + "switch_id": 12, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet176": { + "system_port_id": 87, + "switch_id": 12, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet180": { + "system_port_id": 88, + "switch_id": 12, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet184": { + "system_port_id": 89, + "switch_id": 12, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet188": { + "system_port_id": 90, + "switch_id": 12, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|cpu0": { + "system_port_id": 91, + "switch_id": 12, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet-Rec0": { + "system_port_id": 92, + "switch_id": 12, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc04|ASIC0|Ethernet-IB0": { + "system_port_id": 93, + "switch_id": 12, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet0": { + "system_port_id": 94, + "switch_id": 16, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet4": { + "system_port_id": 95, + "switch_id": 16, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet8": { + "system_port_id": 96, + "switch_id": 16, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet12": { + "system_port_id": 97, + "switch_id": 16, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet16": { + "system_port_id": 98, + "switch_id": 16, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet20": { + "system_port_id": 99, + "switch_id": 16, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet24": { + "system_port_id": 100, + "switch_id": 16, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet28": { + "system_port_id": 101, + "switch_id": 16, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet32": { + "system_port_id": 102, + "switch_id": 16, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet36": { + "system_port_id": 103, + "switch_id": 16, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet40": { + "system_port_id": 104, + "switch_id": 16, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet44": { + "system_port_id": 105, + "switch_id": 16, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet48": { + "system_port_id": 106, + "switch_id": 16, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet52": { + "system_port_id": 107, + "switch_id": 16, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet56": { + "system_port_id": 108, + "switch_id": 16, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet60": { + "system_port_id": 109, + "switch_id": 16, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet64": { + "system_port_id": 110, + "switch_id": 16, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet68": { + "system_port_id": 111, + "switch_id": 16, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet72": { + "system_port_id": 112, + "switch_id": 16, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet76": { + "system_port_id": 113, + "switch_id": 16, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet80": { + "system_port_id": 114, + "switch_id": 16, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet84": { + "system_port_id": 115, + "switch_id": 16, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet88": { + "system_port_id": 116, + "switch_id": 16, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet92": { + "system_port_id": 117, + "switch_id": 16, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet96": { + "system_port_id": 118, + "switch_id": 16, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet100": { + "system_port_id": 119, + "switch_id": 16, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet104": { + "system_port_id": 120, + "switch_id": 16, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet108": { + "system_port_id": 121, + "switch_id": 16, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet112": { + "system_port_id": 122, + "switch_id": 16, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet116": { + "system_port_id": 123, + "switch_id": 16, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet120": { + "system_port_id": 124, + "switch_id": 16, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet124": { + "system_port_id": 125, + "switch_id": 16, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet128": { + "system_port_id": 126, + "switch_id": 16, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet132": { + "system_port_id": 127, + "switch_id": 16, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet136": { + "system_port_id": 128, + "switch_id": 16, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet140": { + "system_port_id": 129, + "switch_id": 16, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet144": { + "system_port_id": 130, + "switch_id": 16, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet148": { + "system_port_id": 131, + "switch_id": 16, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet152": { + "system_port_id": 132, + "switch_id": 16, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet156": { + "system_port_id": 133, + "switch_id": 16, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet160": { + "system_port_id": 134, + "switch_id": 16, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet164": { + "system_port_id": 135, + "switch_id": 16, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet168": { + "system_port_id": 136, + "switch_id": 16, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet172": { + "system_port_id": 137, + "switch_id": 16, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet176": { + "system_port_id": 138, + "switch_id": 16, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet180": { + "system_port_id": 139, + "switch_id": 16, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet184": { + "system_port_id": 140, + "switch_id": 16, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet188": { + "system_port_id": 141, + "switch_id": 16, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|cpu0": { + "system_port_id": 142, + "switch_id": 16, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet-Rec0": { + "system_port_id": 143, + "switch_id": 16, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc05|ASIC0|Ethernet-IB0": { + "system_port_id": 144, + "switch_id": 16, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet0": { + "system_port_id": 145, + "switch_id": 20, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet4": { + "system_port_id": 146, + "switch_id": 20, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet8": { + "system_port_id": 147, + "switch_id": 20, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet12": { + "system_port_id": 148, + "switch_id": 20, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet16": { + "system_port_id": 149, + "switch_id": 20, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet20": { + "system_port_id": 150, + "switch_id": 20, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet24": { + "system_port_id": 151, + "switch_id": 20, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet28": { + "system_port_id": 152, + "switch_id": 20, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet32": { + "system_port_id": 153, + "switch_id": 20, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet36": { + "system_port_id": 154, + "switch_id": 20, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet40": { + "system_port_id": 155, + "switch_id": 20, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet44": { + "system_port_id": 156, + "switch_id": 20, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet48": { + "system_port_id": 157, + "switch_id": 20, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet52": { + "system_port_id": 158, + "switch_id": 20, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet56": { + "system_port_id": 159, + "switch_id": 20, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet60": { + "system_port_id": 160, + "switch_id": 20, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet64": { + "system_port_id": 161, + "switch_id": 20, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet68": { + "system_port_id": 162, + "switch_id": 20, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet72": { + "system_port_id": 163, + "switch_id": 20, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet76": { + "system_port_id": 164, + "switch_id": 20, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet80": { + "system_port_id": 165, + "switch_id": 20, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet84": { + "system_port_id": 166, + "switch_id": 20, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet88": { + "system_port_id": 167, + "switch_id": 20, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet92": { + "system_port_id": 168, + "switch_id": 20, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet96": { + "system_port_id": 169, + "switch_id": 20, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet100": { + "system_port_id": 170, + "switch_id": 20, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet104": { + "system_port_id": 171, + "switch_id": 20, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet108": { + "system_port_id": 172, + "switch_id": 20, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet112": { + "system_port_id": 173, + "switch_id": 20, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet116": { + "system_port_id": 174, + "switch_id": 20, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet120": { + "system_port_id": 175, + "switch_id": 20, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet124": { + "system_port_id": 176, + "switch_id": 20, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet128": { + "system_port_id": 177, + "switch_id": 20, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet132": { + "system_port_id": 178, + "switch_id": 20, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet136": { + "system_port_id": 179, + "switch_id": 20, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet140": { + "system_port_id": 180, + "switch_id": 20, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet144": { + "system_port_id": 181, + "switch_id": 20, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet148": { + "system_port_id": 182, + "switch_id": 20, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet152": { + "system_port_id": 183, + "switch_id": 20, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet156": { + "system_port_id": 184, + "switch_id": 20, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet160": { + "system_port_id": 185, + "switch_id": 20, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet164": { + "system_port_id": 186, + "switch_id": 20, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet168": { + "system_port_id": 187, + "switch_id": 20, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet172": { + "system_port_id": 188, + "switch_id": 20, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet176": { + "system_port_id": 189, + "switch_id": 20, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet180": { + "system_port_id": 190, + "switch_id": 20, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet184": { + "system_port_id": 191, + "switch_id": 20, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet188": { + "system_port_id": 192, + "switch_id": 20, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|cpu0": { + "system_port_id": 193, + "switch_id": 20, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet-Rec0": { + "system_port_id": 194, + "switch_id": 20, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc06|ASIC0|Ethernet-IB0": { + "system_port_id": 195, + "switch_id": 20, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet0": { + "system_port_id": 196, + "switch_id": 24, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet4": { + "system_port_id": 197, + "switch_id": 24, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet8": { + "system_port_id": 198, + "switch_id": 24, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet12": { + "system_port_id": 199, + "switch_id": 24, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet16": { + "system_port_id": 200, + "switch_id": 24, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet20": { + "system_port_id": 201, + "switch_id": 24, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet24": { + "system_port_id": 202, + "switch_id": 24, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet28": { + "system_port_id": 203, + "switch_id": 24, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet32": { + "system_port_id": 204, + "switch_id": 24, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet36": { + "system_port_id": 205, + "switch_id": 24, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet40": { + "system_port_id": 206, + "switch_id": 24, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet44": { + "system_port_id": 207, + "switch_id": 24, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet48": { + "system_port_id": 208, + "switch_id": 24, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet52": { + "system_port_id": 209, + "switch_id": 24, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet56": { + "system_port_id": 210, + "switch_id": 24, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet60": { + "system_port_id": 211, + "switch_id": 24, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet64": { + "system_port_id": 212, + "switch_id": 24, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet68": { + "system_port_id": 213, + "switch_id": 24, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet72": { + "system_port_id": 214, + "switch_id": 24, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet76": { + "system_port_id": 215, + "switch_id": 24, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet80": { + "system_port_id": 216, + "switch_id": 24, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet84": { + "system_port_id": 217, + "switch_id": 24, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet88": { + "system_port_id": 218, + "switch_id": 24, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet92": { + "system_port_id": 219, + "switch_id": 24, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet96": { + "system_port_id": 220, + "switch_id": 24, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet100": { + "system_port_id": 221, + "switch_id": 24, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet104": { + "system_port_id": 222, + "switch_id": 24, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet108": { + "system_port_id": 223, + "switch_id": 24, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet112": { + "system_port_id": 224, + "switch_id": 24, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet116": { + "system_port_id": 225, + "switch_id": 24, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet120": { + "system_port_id": 226, + "switch_id": 24, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet124": { + "system_port_id": 227, + "switch_id": 24, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet128": { + "system_port_id": 228, + "switch_id": 24, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet132": { + "system_port_id": 229, + "switch_id": 24, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet136": { + "system_port_id": 230, + "switch_id": 24, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet140": { + "system_port_id": 231, + "switch_id": 24, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet144": { + "system_port_id": 232, + "switch_id": 24, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet148": { + "system_port_id": 233, + "switch_id": 24, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet152": { + "system_port_id": 234, + "switch_id": 24, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet156": { + "system_port_id": 235, + "switch_id": 24, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet160": { + "system_port_id": 236, + "switch_id": 24, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet164": { + "system_port_id": 237, + "switch_id": 24, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet168": { + "system_port_id": 238, + "switch_id": 24, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet172": { + "system_port_id": 239, + "switch_id": 24, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet176": { + "system_port_id": 240, + "switch_id": 24, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet180": { + "system_port_id": 241, + "switch_id": 24, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet184": { + "system_port_id": 242, + "switch_id": 24, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet188": { + "system_port_id": 243, + "switch_id": 24, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|cpu0": { + "system_port_id": 244, + "switch_id": 24, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet-Rec0": { + "system_port_id": 245, + "switch_id": 24, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc07|ASIC0|Ethernet-IB0": { + "system_port_id": 246, + "switch_id": 24, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet0": { + "system_port_id": 247, + "switch_id": 28, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet4": { + "system_port_id": 248, + "switch_id": 28, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet8": { + "system_port_id": 249, + "switch_id": 28, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet12": { + "system_port_id": 250, + "switch_id": 28, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet16": { + "system_port_id": 251, + "switch_id": 28, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet20": { + "system_port_id": 252, + "switch_id": 28, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet24": { + "system_port_id": 253, + "switch_id": 28, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet28": { + "system_port_id": 254, + "switch_id": 28, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet32": { + "system_port_id": 255, + "switch_id": 28, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet36": { + "system_port_id": 256, + "switch_id": 28, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet40": { + "system_port_id": 257, + "switch_id": 28, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet44": { + "system_port_id": 258, + "switch_id": 28, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet48": { + "system_port_id": 259, + "switch_id": 28, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet52": { + "system_port_id": 260, + "switch_id": 28, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet56": { + "system_port_id": 261, + "switch_id": 28, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet60": { + "system_port_id": 262, + "switch_id": 28, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet64": { + "system_port_id": 263, + "switch_id": 28, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet68": { + "system_port_id": 264, + "switch_id": 28, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet72": { + "system_port_id": 265, + "switch_id": 28, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet76": { + "system_port_id": 266, + "switch_id": 28, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet80": { + "system_port_id": 267, + "switch_id": 28, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet84": { + "system_port_id": 268, + "switch_id": 28, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet88": { + "system_port_id": 269, + "switch_id": 28, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet92": { + "system_port_id": 270, + "switch_id": 28, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet96": { + "system_port_id": 271, + "switch_id": 28, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet100": { + "system_port_id": 272, + "switch_id": 28, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet104": { + "system_port_id": 273, + "switch_id": 28, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet108": { + "system_port_id": 274, + "switch_id": 28, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet112": { + "system_port_id": 275, + "switch_id": 28, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet116": { + "system_port_id": 276, + "switch_id": 28, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet120": { + "system_port_id": 277, + "switch_id": 28, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet124": { + "system_port_id": 278, + "switch_id": 28, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet128": { + "system_port_id": 279, + "switch_id": 28, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet132": { + "system_port_id": 280, + "switch_id": 28, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet136": { + "system_port_id": 281, + "switch_id": 28, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet140": { + "system_port_id": 282, + "switch_id": 28, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet144": { + "system_port_id": 283, + "switch_id": 28, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet148": { + "system_port_id": 284, + "switch_id": 28, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet152": { + "system_port_id": 285, + "switch_id": 28, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet156": { + "system_port_id": 286, + "switch_id": 28, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet160": { + "system_port_id": 287, + "switch_id": 28, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet164": { + "system_port_id": 288, + "switch_id": 28, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet168": { + "system_port_id": 289, + "switch_id": 28, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet172": { + "system_port_id": 290, + "switch_id": 28, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet176": { + "system_port_id": 291, + "switch_id": 28, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet180": { + "system_port_id": 292, + "switch_id": 28, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet184": { + "system_port_id": 293, + "switch_id": 28, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet188": { + "system_port_id": 294, + "switch_id": 28, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|cpu0": { + "system_port_id": 295, + "switch_id": 28, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet-Rec0": { + "system_port_id": 296, + "switch_id": 28, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc08|ASIC0|Ethernet-IB0": { + "system_port_id": 297, + "switch_id": 28, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet0": { + "system_port_id": 298, + "switch_id": 32, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet4": { + "system_port_id": 299, + "switch_id": 32, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet8": { + "system_port_id": 300, + "switch_id": 32, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet12": { + "system_port_id": 301, + "switch_id": 32, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet16": { + "system_port_id": 302, + "switch_id": 32, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet20": { + "system_port_id": 303, + "switch_id": 32, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet24": { + "system_port_id": 304, + "switch_id": 32, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet28": { + "system_port_id": 305, + "switch_id": 32, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet32": { + "system_port_id": 306, + "switch_id": 32, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet36": { + "system_port_id": 307, + "switch_id": 32, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet40": { + "system_port_id": 308, + "switch_id": 32, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet44": { + "system_port_id": 309, + "switch_id": 32, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet48": { + "system_port_id": 310, + "switch_id": 32, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet52": { + "system_port_id": 311, + "switch_id": 32, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet56": { + "system_port_id": 312, + "switch_id": 32, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet60": { + "system_port_id": 313, + "switch_id": 32, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet64": { + "system_port_id": 314, + "switch_id": 32, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet68": { + "system_port_id": 315, + "switch_id": 32, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet72": { + "system_port_id": 316, + "switch_id": 32, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet76": { + "system_port_id": 317, + "switch_id": 32, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet80": { + "system_port_id": 318, + "switch_id": 32, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet84": { + "system_port_id": 319, + "switch_id": 32, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet88": { + "system_port_id": 320, + "switch_id": 32, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet92": { + "system_port_id": 321, + "switch_id": 32, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet96": { + "system_port_id": 322, + "switch_id": 32, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet100": { + "system_port_id": 323, + "switch_id": 32, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet104": { + "system_port_id": 324, + "switch_id": 32, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet108": { + "system_port_id": 325, + "switch_id": 32, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet112": { + "system_port_id": 326, + "switch_id": 32, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet116": { + "system_port_id": 327, + "switch_id": 32, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet120": { + "system_port_id": 328, + "switch_id": 32, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet124": { + "system_port_id": 329, + "switch_id": 32, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet128": { + "system_port_id": 330, + "switch_id": 32, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet132": { + "system_port_id": 331, + "switch_id": 32, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet136": { + "system_port_id": 332, + "switch_id": 32, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet140": { + "system_port_id": 333, + "switch_id": 32, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet144": { + "system_port_id": 334, + "switch_id": 32, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet148": { + "system_port_id": 335, + "switch_id": 32, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet152": { + "system_port_id": 336, + "switch_id": 32, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet156": { + "system_port_id": 337, + "switch_id": 32, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet160": { + "system_port_id": 338, + "switch_id": 32, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet164": { + "system_port_id": 339, + "switch_id": 32, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet168": { + "system_port_id": 340, + "switch_id": 32, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet172": { + "system_port_id": 341, + "switch_id": 32, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet176": { + "system_port_id": 342, + "switch_id": 32, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet180": { + "system_port_id": 343, + "switch_id": 32, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet184": { + "system_port_id": 344, + "switch_id": 32, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc09|ASIC0|Ethernet188": { + "system_port_id": 345, + "switch_id": 32, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet0": { + "system_port_id": 346, + "switch_id": 36, + "core_index": "0", + "core_port_index": "1", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet4": { + "system_port_id": 347, + "switch_id": 36, + "core_index": "0", + "core_port_index": "2", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet8": { + "system_port_id": 348, + "switch_id": 36, + "core_index": "0", + "core_port_index": "3", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet12": { + "system_port_id": 349, + "switch_id": 36, + "core_index": "0", + "core_port_index": "4", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet16": { + "system_port_id": 350, + "switch_id": 36, + "core_index": "0", + "core_port_index": "5", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet20": { + "system_port_id": 351, + "switch_id": 36, + "core_index": "0", + "core_port_index": "6", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet24": { + "system_port_id": 352, + "switch_id": 36, + "core_index": "0", + "core_port_index": "7", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet28": { + "system_port_id": 353, + "switch_id": 36, + "core_index": "0", + "core_port_index": "8", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet32": { + "system_port_id": 354, + "switch_id": 36, + "core_index": "0", + "core_port_index": "9", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet36": { + "system_port_id": 355, + "switch_id": 36, + "core_index": "0", + "core_port_index": "10", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet40": { + "system_port_id": 356, + "switch_id": 36, + "core_index": "0", + "core_port_index": "11", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet44": { + "system_port_id": 357, + "switch_id": 36, + "core_index": "0", + "core_port_index": "12", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet48": { + "system_port_id": 358, + "switch_id": 36, + "core_index": "0", + "core_port_index": "13", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet52": { + "system_port_id": 359, + "switch_id": 36, + "core_index": "0", + "core_port_index": "14", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet56": { + "system_port_id": 360, + "switch_id": 36, + "core_index": "0", + "core_port_index": "15", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet60": { + "system_port_id": 361, + "switch_id": 36, + "core_index": "0", + "core_port_index": "16", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet64": { + "system_port_id": 362, + "switch_id": 36, + "core_index": "0", + "core_port_index": "17", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet68": { + "system_port_id": 363, + "switch_id": 36, + "core_index": "0", + "core_port_index": "18", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet72": { + "system_port_id": 364, + "switch_id": 36, + "core_index": "0", + "core_port_index": "19", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet76": { + "system_port_id": 365, + "switch_id": 36, + "core_index": "0", + "core_port_index": "20", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet80": { + "system_port_id": 366, + "switch_id": 36, + "core_index": "0", + "core_port_index": "21", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet84": { + "system_port_id": 367, + "switch_id": 36, + "core_index": "0", + "core_port_index": "22", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet88": { + "system_port_id": 368, + "switch_id": 36, + "core_index": "0", + "core_port_index": "23", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet92": { + "system_port_id": 369, + "switch_id": 36, + "core_index": "0", + "core_port_index": "24", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet96": { + "system_port_id": 370, + "switch_id": 36, + "core_index": "1", + "core_port_index": "25", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet100": { + "system_port_id": 371, + "switch_id": 36, + "core_index": "1", + "core_port_index": "26", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet104": { + "system_port_id": 372, + "switch_id": 36, + "core_index": "1", + "core_port_index": "27", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet108": { + "system_port_id": 373, + "switch_id": 36, + "core_index": "1", + "core_port_index": "28", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet112": { + "system_port_id": 374, + "switch_id": 36, + "core_index": "1", + "core_port_index": "29", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet116": { + "system_port_id": 375, + "switch_id": 36, + "core_index": "1", + "core_port_index": "30", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet120": { + "system_port_id": 376, + "switch_id": 36, + "core_index": "1", + "core_port_index": "31", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet124": { + "system_port_id": 377, + "switch_id": 36, + "core_index": "1", + "core_port_index": "32", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet128": { + "system_port_id": 378, + "switch_id": 36, + "core_index": "1", + "core_port_index": "33", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet132": { + "system_port_id": 379, + "switch_id": 36, + "core_index": "1", + "core_port_index": "34", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet136": { + "system_port_id": 380, + "switch_id": 36, + "core_index": "1", + "core_port_index": "35", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet140": { + "system_port_id": 381, + "switch_id": 36, + "core_index": "1", + "core_port_index": "36", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet144": { + "system_port_id": 382, + "switch_id": 36, + "core_index": "1", + "core_port_index": "37", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet148": { + "system_port_id": 383, + "switch_id": 36, + "core_index": "1", + "core_port_index": "38", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet152": { + "system_port_id": 384, + "switch_id": 36, + "core_index": "1", + "core_port_index": "39", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet156": { + "system_port_id": 385, + "switch_id": 36, + "core_index": "1", + "core_port_index": "40", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet160": { + "system_port_id": 386, + "switch_id": 36, + "core_index": "1", + "core_port_index": "41", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet164": { + "system_port_id": 387, + "switch_id": 36, + "core_index": "1", + "core_port_index": "42", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet168": { + "system_port_id": 388, + "switch_id": 36, + "core_index": "1", + "core_port_index": "43", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet172": { + "system_port_id": 389, + "switch_id": 36, + "core_index": "1", + "core_port_index": "44", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet176": { + "system_port_id": 390, + "switch_id": 36, + "core_index": "1", + "core_port_index": "45", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet180": { + "system_port_id": 391, + "switch_id": 36, + "core_index": "1", + "core_port_index": "46", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet184": { + "system_port_id": 392, + "switch_id": 36, + "core_index": "1", + "core_port_index": "47", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet188": { + "system_port_id": 393, + "switch_id": 36, + "core_index": "1", + "core_port_index": "48", + "speed": "100000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|cpu0": { + "system_port_id": 394, + "switch_id": 36, + "core_index": 0, + "core_port_index": 0, + "speed": "10000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet-Rec0": { + "system_port_id": 395, + "switch_id": 36, + "core_index": "0", + "core_port_index": "49", + "speed": "400000", + "num_voq": "8" + }, + "str-sonic-lc10|ASIC0|Ethernet-IB0": { + "system_port_id": 396, + "switch_id": 36, + "core_index": "1", + "core_port_index": "50", + "speed": "400000", + "num_voq": "8" + } +} diff --git a/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq-sample-port-config-1.ini b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq-sample-port-config-1.ini new file mode 100644 index 000000000000..0accaf10769a --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq-sample-port-config-1.ini @@ -0,0 +1,51 @@ +# name lanes alias index role speed asic_port_name core_id core_port_id num_voq +Ethernet0 6,7 Ethernet1/1 1 Ext 100000 Eth0 0 1 8 +Ethernet4 2,3 Ethernet2/1 2 Ext 100000 Eth4 0 2 8 +Ethernet8 4,5 Ethernet3/1 3 Ext 100000 Eth8 0 3 8 +Ethernet12 0,1 Ethernet4/1 4 Ext 100000 Eth12 0 4 8 +Ethernet16 14,15 Ethernet5/1 5 Ext 100000 Eth16 0 5 8 +Ethernet20 10,11 Ethernet6/1 6 Ext 100000 Eth20 0 6 8 +Ethernet24 12,13 Ethernet7/1 7 Ext 100000 Eth24 0 7 8 +Ethernet28 8,9 Ethernet8/1 8 Ext 100000 Eth28 0 8 8 +Ethernet32 22,23 Ethernet9/1 9 Ext 100000 Eth32 0 9 8 +Ethernet36 18,19 Ethernet10/1 10 Ext 100000 Eth36 0 10 8 +Ethernet40 20,21 Ethernet11/1 11 Ext 100000 Eth40 0 11 8 +Ethernet44 16,17 Ethernet12/1 12 Ext 100000 Eth44 0 12 8 +Ethernet48 30,31 Ethernet13/1 13 Ext 100000 Eth48 0 13 8 +Ethernet52 26,27 Ethernet14/1 14 Ext 100000 Eth52 0 14 8 +Ethernet56 28,29 Ethernet15/1 15 Ext 100000 Eth56 0 15 8 +Ethernet60 24,25 Ethernet16/1 16 Ext 100000 Eth60 0 16 8 +Ethernet64 38,39 Ethernet17/1 17 Ext 100000 Eth64 0 17 8 +Ethernet68 34,35 Ethernet18/1 18 Ext 100000 Eth68 0 18 8 +Ethernet72 36,37 Ethernet19/1 19 Ext 100000 Eth72 0 19 8 +Ethernet76 32,33 Ethernet20/1 20 Ext 100000 Eth76 0 20 8 +Ethernet80 46,47 Ethernet21/1 21 Ext 100000 Eth80 0 21 8 +Ethernet84 42,43 Ethernet22/1 22 Ext 100000 Eth84 0 22 8 +Ethernet88 44,45 Ethernet23/1 23 Ext 100000 Eth88 0 23 8 +Ethernet92 40,41 Ethernet24/1 24 Ext 100000 Eth92 0 24 8 +Ethernet96 94,95 Ethernet25/1 25 Ext 100000 Eth96 1 25 8 +Ethernet100 90,91 Ethernet26/1 26 Ext 100000 Eth100 1 26 8 +Ethernet104 92,93 Ethernet27/1 27 Ext 100000 Eth104 1 27 8 +Ethernet108 88,89 Ethernet28/1 28 Ext 100000 Eth108 1 28 8 +Ethernet112 86,87 Ethernet29/1 29 Ext 100000 Eth112 1 29 8 +Ethernet116 82,83 Ethernet30/1 30 Ext 100000 Eth116 1 30 8 +Ethernet120 84,85 Ethernet31/1 31 Ext 100000 Eth120 1 31 8 +Ethernet124 80,81 Ethernet32/1 32 Ext 100000 Eth124 1 32 8 +Ethernet128 78,79 Ethernet33/1 33 Ext 100000 Eth128 1 33 8 +Ethernet132 74,75 Ethernet34/1 34 Ext 100000 Eth132 1 34 8 +Ethernet136 76,77 Ethernet35/1 35 Ext 100000 Eth136 1 35 8 +Ethernet140 72,73 Ethernet36/1 36 Ext 100000 Eth140 1 36 8 +Ethernet144 70,71 Ethernet37/1 37 Ext 100000 Eth144 1 37 8 +Ethernet148 66,67 Ethernet38/1 38 Ext 100000 Eth148 1 38 8 +Ethernet152 68,69 Ethernet39/1 39 Ext 100000 Eth152 1 39 8 +Ethernet156 64,65 Ethernet40/1 40 Ext 100000 Eth156 1 40 8 +Ethernet160 62,63 Ethernet41/1 41 Ext 100000 Eth160 1 41 8 +Ethernet164 58,59 Ethernet42/1 42 Ext 100000 Eth164 1 42 8 +Ethernet168 60,61 Ethernet43/1 43 Ext 100000 Eth168 1 43 8 +Ethernet172 56,57 Ethernet44/1 44 Ext 100000 Eth172 1 44 8 +Ethernet176 54,55 Ethernet45/1 45 Ext 100000 Eth176 1 45 8 +Ethernet180 50,51 Ethernet46/1 46 Ext 100000 Eth180 1 46 8 +Ethernet184 52,53 Ethernet47/1 47 Ext 100000 Eth184 1 47 8 +Ethernet188 48,49 Ethernet48/1 48 Ext 100000 Eth188 1 48 8 +Ethernet-Rec0 249 Recirc0/0 51 Rec 400000 Rcy0 0 49 8 +Ethernet-IB0 250 Recirc0/1 52 Inb 400000 Rcy1 1 50 8 \ No newline at end of file diff --git a/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq-sample-port-config-2.ini b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq-sample-port-config-2.ini new file mode 100644 index 000000000000..223eb915a20f --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq-sample-port-config-2.ini @@ -0,0 +1,21 @@ +# name lanes alias index role speed asic_port_name core_id core_port_id num_voq +Ethernet0 72,73,74,75,76,77,78,79 Ethernet1/1 1 Ext 400000 Eth0 1 1 8 +Ethernet8 80,81,82,83,84,85,86,87 Ethernet2/1 2 Ext 400000 Eth8 1 2 8 +Ethernet16 88,89,90,91,92,93,94,95 Ethernet3/1 3 Ext 400000 Eth16 1 3 8 +Ethernet24 96,97,98,99,100,101,102,103 Ethernet4/1 4 Ext 400000 Eth24 1 4 8 +Ethernet32 104,105,106,107,108,109,110,111 Ethernet5/1 5 Ext 400000 Eth32 1 5 8 +Ethernet40 112,113,114,115,116,117,118,119 Ethernet6/1 6 Ext 400000 Eth40 1 6 8 +Ethernet48 120,121,122,123,124,125,126,127 Ethernet7/1 7 Ext 400000 Eth48 1 7 8 +Ethernet56 128,129,130,131,132,133,134,135 Ethernet8/1 8 Ext 400000 Eth56 1 8 8 +Ethernet64 136,137,138,139,140,141,142,143 Ethernet9/1 9 Ext 400000 Eth64 1 9 8 +Ethernet72 64,65,66,67,68,69,70,71 Ethernet10/1 10 Ext 400000 Eth72 0 10 8 +Ethernet80 56,57,58,59,60,61,62,63 Ethernet11/1 11 Ext 400000 Eth80 0 11 8 +Ethernet88 48,49,50,51,52,53,54,55 Ethernet12/1 12 Ext 400000 Eth88 0 12 8 +Ethernet96 40,41,42,43,44,45,46,47 Ethernet13/1 13 Ext 400000 Eth96 0 13 8 +Ethernet104 32,33,34,35,36,37,38,39 Ethernet14/1 14 Ext 400000 Eth104 0 14 8 +Ethernet112 24,25,26,27,28,29,30,31 Ethernet15/1 15 Ext 400000 Eth112 0 15 8 +Ethernet120 16,17,18,19,20,21,22,23 Ethernet16/1 16 Ext 400000 Eth120 0 16 8 +Ethernet128 8,9,10,11,12,13,14,15 Ethernet17/1 17 Ext 400000 Eth128 0 17 8 +Ethernet136 0,1,2,3,4,5,6,7 Ethernet18/1 18 Ext 400000 Eth136 0 18 8 +Ethernet-Rec0 249 Recirc0/0 37 Rec 400000 Rcy0 0 49 8 +Ethernet-IB0 250 Recirc0/1 38 Inb 400000 Rcy1 1 50 8 \ No newline at end of file diff --git a/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_lc_multi_asic.xml b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_lc_multi_asic.xml new file mode 100644 index 000000000000..2bbf8868da5e --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_lc_multi_asic.xml @@ -0,0 +1,48338 @@ + + + + + + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc03-ASIC01 + 10.241.88.1 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc04-ASIC00 + 10.241.88.2 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc04-ASIC00 + 2a01:111:e210:5e:0:a:f158:200 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc05-ASIC00 + 10.241.88.3 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc05-ASIC00 + 2a01:111:e210:5e:0:a:f158:300 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc06-ASIC00 + 10.241.88.4 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc07-ASIC00 + 10.241.88.5 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc07-ASIC00 + 2a01:111:e210:5e:0:a:f158:500 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc08-ASIC00 + 10.241.88.6 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc08-ASIC00 + 2a01:111:e210:5e:0:a:f158:600 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc09-ASIC00 + 10.241.88.7 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc09-ASIC00 + 2a01:111:e210:5e:0:a:f158:700 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc10-ASIC00 + 10.241.88.8 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc10-ASIC00 + 2a01:111:e210:5e:0:a:f158:800 + 1 + 0 + 0 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.0 + ARISTA91T3 + 10.0.0.1 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.4 + ARISTA93T3 + 10.0.0.5 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.8 + ARISTA05T3 + 10.0.0.9 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.12 + ARISTA07T3 + 10.0.0.13 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.16 + ARISTA09T3 + 10.0.0.17 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.20 + ARISTA11T3 + 10.0.0.21 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.24 + ARISTA18T3 + 10.0.0.25 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + 10.0.0.28 + ARISTA15T3 + 10.0.0.29 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::1 + ARISTA91T3 + fc00::2 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::9 + ARISTA93T3 + fc00::a + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::11 + ARISTA05T3 + fc00::12 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::19 + ARISTA07T3 + fc00::1a + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::21 + ARISTA09T3 + fc00::22 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::29 + ARISTA11T3 + fc00::2a + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::31 + ARISTA18T3 + fc00::32 + 1 + 10 + 3 + + + BGPSession + false + str-sonic-lc03-ASIC00 + fc00::39 + ARISTA15T3 + fc00::3a + 1 + 10 + 3 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc04-ASIC00 + 10.241.88.2 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc04-ASIC00 + 2a01:111:e210:5e:0:a:f158:200 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc05-ASIC00 + 10.241.88.3 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc05-ASIC00 + 2a01:111:e210:5e:0:a:f158:300 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc06-ASIC00 + 10.241.88.4 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc07-ASIC00 + 10.241.88.5 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc07-ASIC00 + 2a01:111:e210:5e:0:a:f158:500 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc08-ASIC00 + 10.241.88.6 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc08-ASIC00 + 2a01:111:e210:5e:0:a:f158:600 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc09-ASIC00 + 10.241.88.7 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc09-ASIC00 + 2a01:111:e210:5e:0:a:f158:700 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc10-ASIC00 + 10.241.88.8 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc10-ASIC00 + 2a01:111:e210:5e:0:a:f158:800 + 1 + 0 + 0 + + + + + 65100 + + + BGPGroup + 10.241.88.0;2a01:111:e210:5e:0:a:f158:0 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc03-ASIC00 + + + BGPPeer +
10.241.88.0
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:0
+ + + +
+ + BGPPeer +
10.0.0.0
+ + + +
+ + BGPPeer +
10.0.0.4
+ + + +
+ + BGPPeer +
10.0.0.8
+ + + +
+ + BGPPeer +
10.0.0.12
+ + + +
+ + BGPPeer +
10.0.0.16
+ + + +
+ + BGPPeer +
10.0.0.20
+ + + +
+ + BGPPeer +
10.0.0.24
+ + + +
+ + BGPPeer +
10.0.0.28
+ + + +
+ + BGPPeer +
fc00::1
+ + + +
+ + BGPPeer +
fc00::9
+ + + +
+ + BGPPeer +
fc00::11
+ + + +
+ + BGPPeer +
fc00::19
+ + + +
+ + BGPPeer +
fc00::21
+ + + +
+ + BGPPeer +
fc00::29
+ + + +
+ + BGPPeer +
fc00::31
+ + + +
+ + BGPPeer +
fc00::39
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.1;2a01:111:e210:5e:0:a:f158:100 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc03-ASIC01 + + + BGPPeer +
10.241.88.1
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:100
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.2;2a01:111:e210:5e:0:a:f158:200 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc04-ASIC00 + + + BGPPeer +
10.241.88.2
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:200
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.3;2a01:111:e210:5e:0:a:f158:300 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc05-ASIC00 + + + BGPPeer +
10.241.88.3
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:300
+ + + +
+ + BGPPeer +
10.0.0.72
+ + + +
+ + BGPPeer +
fc00::91
+ + + +
+ + BGPPeer +
10.0.0.76
+ + + +
+ + BGPPeer +
fc00::99
+ + + +
+ + BGPPeer +
10.0.0.80
+ + + +
+ + BGPPeer +
fc00::a1
+ + + +
+ + BGPPeer +
10.0.0.84
+ + + +
+ + BGPPeer +
fc00::a9
+ + + +
+ + BGPPeer +
10.0.0.88
+ + + +
+ + BGPPeer +
fc00::b1
+ + + +
+ + BGPPeer +
10.0.0.92
+ + + +
+ + BGPPeer +
fc00::b9
+ + + +
+ + BGPPeer +
10.0.0.64
+ + + +
+ + BGPPeer +
fc00::81
+ + + +
+ + BGPPeer +
10.0.0.68
+ + + +
+ + BGPPeer +
fc00::89
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.4;2a01:111:e210:5e:0:a:f158:400 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc06-ASIC00 + + + BGPPeer +
10.241.88.4
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:400
+ + + +
+ + BGPPeer +
10.0.0.128
+ + + +
+ + BGPPeer +
fc00::101
+ + + +
+ + BGPPeer +
10.0.0.132
+ + + +
+ + BGPPeer +
fc00::109
+ + + +
+ + BGPPeer +
10.0.0.136
+ + + +
+ + BGPPeer +
fc00::111
+ + + +
+ + BGPPeer +
10.0.0.140
+ + + +
+ + BGPPeer +
fc00::119
+ + + +
+ + BGPPeer +
10.0.0.144
+ + + +
+ + BGPPeer +
fc00::121
+ + + +
+ + BGPPeer +
10.0.0.148
+ + + +
+ + BGPPeer +
fc00::129
+ + + +
+ + BGPPeer +
10.0.0.152
+ + + +
+ + BGPPeer +
fc00::131
+ + + +
+ + BGPPeer +
10.0.0.156
+ + + +
+ + BGPPeer +
fc00::139
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.5;2a01:111:e210:5e:0:a:f158:500 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc07-ASIC00 + + + BGPPeer +
10.241.88.5
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:500
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.6;2a01:111:e210:5e:0:a:f158:600 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc08-ASIC00 + + + BGPPeer +
10.241.88.6
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:600
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.7;2a01:111:e210:5e:0:a:f158:700 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc09-ASIC00 + + + BGPPeer +
10.241.88.7
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:700
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.8;2a01:111:e210:5e:0:a:f158:800 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc10-ASIC00 + + + BGPPeer +
10.241.88.8
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:800
+ + + +
+
+ + +
+ + 65203 + + + ARISTA91T3 + + + BGPPeer +
10.0.0.1
+ + + +
+ + BGPPeer +
fc00::2
+ + + +
+
+ + +
+ + 65204 + + + ARISTA93T3 + + + BGPPeer +
10.0.0.5
+ + + +
+ + BGPPeer +
fc00::a
+ + + +
+
+ + +
+ + 65205 + + + ARISTA05T3 + + + BGPPeer +
10.0.0.9
+ + + +
+ + BGPPeer +
fc00::12
+ + + +
+
+ + +
+ + 65206 + + + ARISTA07T3 + + + BGPPeer +
10.0.0.13
+ + + +
+ + BGPPeer +
fc00::1a
+ + + +
+
+ + +
+ + 65207 + + + ARISTA09T3 + + + BGPPeer +
10.0.0.17
+ + + +
+ + BGPPeer +
fc00::22
+ + + +
+
+ + +
+ + 65208 + + + ARISTA11T3 + + + BGPPeer +
10.0.0.21
+ + + +
+ + BGPPeer +
fc00::2a
+ + + +
+
+ + +
+ + 65213 + + + ARISTA18T3 + + + BGPPeer +
10.0.0.25
+ + + +
+ + BGPPeer +
fc00::32
+ + + +
+
+ + +
+ + 65211 + + + ARISTA15T3 + + + BGPPeer +
10.0.0.29
+ + + +
+ + BGPPeer +
fc00::3a
+ + + +
+
+ + +
+
+ +
+ + + + + + DeviceInterface + + true + 1 + cpu3/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 2 + cpu3/1 + false + + cpu1 + 10000 + + + + + DeviceInterface + + true + 3 + Recirc3/0/0 + false + + Ethernet-Rec0 + 10000 + + + + + DeviceInterface + + true + 4 + Recirc3/1/0 + false + + Ethernet-Rec1 + 10000 + + + + + DeviceInterface + + true + 5 + Recirc3/0/1 + false + + Ethernet-IB0 + 10000 + + + + + DeviceInterface + + true + 6 + Recirc3/1/1 + false + + Ethernet-IB1 + 10000 + + + + + DeviceInterface + + true + 7 + cpu4/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 8 + Recirc4/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 9 + Recirc4/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 10 + cpu5/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 11 + Recirc5/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 12 + Recirc5/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 13 + cpu6/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 14 + Recirc6/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 15 + Recirc6/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 16 + cpu7/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 17 + Recirc7/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 18 + Recirc7/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 19 + cpu8/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 20 + Recirc8/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 21 + Recirc8/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 22 + cpu10/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 23 + Recirc10/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 24 + Recirc10/0/1 + false + + Ethernet-IB0 + 400000 + + + + + Sonic-T2-Base-sku + + + + DeviceInterface + 100000 + true + 1 + Ethernet3/1/1 + false + + Ethernet0 + 400000 + + + DeviceInterface + 100000 + true + 2 + Ethernet3/2/1 + false + + Ethernet8 + 400000 + + + DeviceInterface + 100000 + true + 3 + Ethernet3/3/1 + false + + Ethernet16 + 400000 + + + DeviceInterface + 100000 + true + 4 + Ethernet3/4/1 + false + + Ethernet24 + 400000 + + + DeviceInterface + 100000 + true + 5 + Ethernet3/5/1 + false + + Ethernet32 + 400000 + + + DeviceInterface + 100000 + true + 6 + Ethernet3/6/1 + false + + Ethernet40 + 400000 + + + DeviceInterface + 100000 + true + 7 + Ethernet3/7/1 + false + + Ethernet48 + 400000 + + + DeviceInterface + 100000 + true + 8 + Ethernet3/8/1 + false + + Ethernet56 + 400000 + + + DeviceInterface + 100000 + true + 9 + Ethernet3/9/1 + false + + Ethernet64 + 400000 + + + DeviceInterface + 100000 + true + 10 + Ethernet3/10/1 + false + + Ethernet72 + 400000 + + + DeviceInterface + 100000 + true + 11 + Ethernet3/11/1 + false + + Ethernet80 + 400000 + + + DeviceInterface + 100000 + true + 12 + Ethernet3/12/1 + false + + Ethernet88 + 400000 + + + DeviceInterface + 100000 + true + 13 + Ethernet3/13/1 + false + + Ethernet96 + 400000 + + + DeviceInterface + 100000 + true + 14 + Ethernet3/14/1 + false + + Ethernet104 + 400000 + + + DeviceInterface + 100000 + true + 15 + Ethernet3/15/1 + false + + Ethernet112 + 400000 + + + DeviceInterface + 100000 + true + 16 + Ethernet3/16/1 + false + + Ethernet120 + 400000 + + + DeviceInterface + 100000 + true + 17 + Ethernet3/17/1 + false + + Ethernet128 + 400000 + + + DeviceInterface + 100000 + true + 18 + Ethernet3/18/1 + false + + Ethernet136 + 400000 + + + DeviceInterface + 100000 + true + 19 + Ethernet3/19/1 + false + + Ethernet144 + 400000 + + + DeviceInterface + 100000 + true + 20 + Ethernet3/20/1 + false + + Ethernet152 + 400000 + + + DeviceInterface + 100000 + true + 21 + Ethernet3/21/1 + false + + Ethernet160 + 400000 + + + DeviceInterface + 100000 + true + 22 + Ethernet3/22/1 + false + + Ethernet168 + 400000 + + + DeviceInterface + 100000 + true + 23 + Ethernet3/23/1 + false + + Ethernet176 + 400000 + + + DeviceInterface + 100000 + true + 24 + Ethernet3/24/1 + false + + Ethernet184 + 400000 + + + DeviceInterface + 100000 + true + 25 + Ethernet3/25/1 + false + + Ethernet192 + 400000 + + + DeviceInterface + 100000 + true + 26 + Ethernet3/26/1 + false + + Ethernet200 + 400000 + + + DeviceInterface + 100000 + true + 27 + Ethernet3/27/1 + false + + Ethernet208 + 400000 + + + DeviceInterface + 100000 + true + 28 + Ethernet3/28/1 + false + + Ethernet216 + 400000 + + + DeviceInterface + 100000 + true + 29 + Ethernet3/29/1 + false + + Ethernet224 + 400000 + + + DeviceInterface + 100000 + true + 30 + Ethernet3/30/1 + false + + Ethernet232 + 400000 + + + DeviceInterface + 100000 + true + 31 + Ethernet3/31/1 + false + + Ethernet240 + 400000 + + + DeviceInterface + 100000 + true + 32 + Ethernet3/32/1 + false + + Ethernet248 + 400000 + + + DeviceInterface + 100000 + true + 33 + Ethernet3/33/1 + false + + Ethernet256 + 400000 + + + DeviceInterface + 100000 + true + 34 + Ethernet3/34/1 + false + + Ethernet264 + 400000 + + + DeviceInterface + 100000 + true + 35 + Ethernet3/35/1 + false + + Ethernet272 + 400000 + + + DeviceInterface + 100000 + true + 36 + Ethernet3/36/1 + false + + Ethernet280 + 400000 + + + DeviceInterface + 40000 + true + 37 + Ethernet4/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 38 + Ethernet4/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 39 + Ethernet4/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 40 + Ethernet4/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 41 + Ethernet4/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 42 + Ethernet4/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 43 + Ethernet4/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 44 + Ethernet4/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 45 + Ethernet4/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 46 + Ethernet4/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 47 + Ethernet4/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 48 + Ethernet4/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 49 + Ethernet4/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 50 + Ethernet4/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 51 + Ethernet4/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 52 + Ethernet4/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 53 + Ethernet4/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 54 + Ethernet4/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 55 + Ethernet4/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 56 + Ethernet4/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 57 + Ethernet4/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 58 + Ethernet4/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 59 + Ethernet4/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 60 + Ethernet4/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 61 + Ethernet4/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 62 + Ethernet4/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 63 + Ethernet4/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 64 + Ethernet4/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 65 + Ethernet4/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 66 + Ethernet4/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 67 + Ethernet4/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 68 + Ethernet4/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 69 + Ethernet4/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 70 + Ethernet4/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 71 + Ethernet4/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 72 + Ethernet4/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 73 + Ethernet4/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 74 + Ethernet4/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 75 + Ethernet4/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 76 + Ethernet4/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 77 + Ethernet4/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 78 + Ethernet4/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 79 + Ethernet4/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 80 + Ethernet4/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 81 + Ethernet4/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 82 + Ethernet4/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 83 + Ethernet4/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 84 + Ethernet4/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 85 + Ethernet5/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 86 + Ethernet5/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 87 + Ethernet5/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 88 + Ethernet5/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 89 + Ethernet5/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 90 + Ethernet5/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 91 + Ethernet5/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 92 + Ethernet5/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 93 + Ethernet5/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 94 + Ethernet5/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 95 + Ethernet5/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 96 + Ethernet5/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 97 + Ethernet5/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 98 + Ethernet5/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 99 + Ethernet5/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 100 + Ethernet5/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 101 + Ethernet5/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 102 + Ethernet5/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 103 + Ethernet5/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 104 + Ethernet5/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 105 + Ethernet5/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 106 + Ethernet5/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 107 + Ethernet5/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 108 + Ethernet5/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 109 + Ethernet5/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 110 + Ethernet5/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 111 + Ethernet5/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 112 + Ethernet5/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 113 + Ethernet5/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 114 + Ethernet5/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 115 + Ethernet5/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 116 + Ethernet5/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 117 + Ethernet5/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 118 + Ethernet5/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 119 + Ethernet5/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 120 + Ethernet5/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 121 + Ethernet5/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 122 + Ethernet5/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 123 + Ethernet5/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 124 + Ethernet5/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 125 + Ethernet5/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 126 + Ethernet5/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 127 + Ethernet5/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 128 + Ethernet5/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 129 + Ethernet5/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 130 + Ethernet5/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 131 + Ethernet5/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 132 + Ethernet5/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 133 + Ethernet6/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 134 + Ethernet6/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 135 + Ethernet6/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 136 + Ethernet6/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 137 + Ethernet6/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 138 + Ethernet6/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 139 + Ethernet6/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 140 + Ethernet6/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 141 + Ethernet6/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 142 + Ethernet6/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 143 + Ethernet6/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 144 + Ethernet6/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 145 + Ethernet6/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 146 + Ethernet6/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 147 + Ethernet6/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 148 + Ethernet6/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 149 + Ethernet6/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 150 + Ethernet6/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 151 + Ethernet6/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 152 + Ethernet6/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 153 + Ethernet6/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 154 + Ethernet6/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 155 + Ethernet6/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 156 + Ethernet6/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 157 + Ethernet6/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 158 + Ethernet6/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 159 + Ethernet6/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 160 + Ethernet6/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 161 + Ethernet6/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 162 + Ethernet6/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 163 + Ethernet6/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 164 + Ethernet6/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 165 + Ethernet6/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 166 + Ethernet6/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 167 + Ethernet6/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 168 + Ethernet6/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 169 + Ethernet6/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 170 + Ethernet6/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 171 + Ethernet6/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 172 + Ethernet6/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 173 + Ethernet6/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 174 + Ethernet6/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 175 + Ethernet6/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 176 + Ethernet6/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 177 + Ethernet6/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 178 + Ethernet6/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 179 + Ethernet6/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 180 + Ethernet6/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 181 + Ethernet7/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 182 + Ethernet7/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 183 + Ethernet7/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 184 + Ethernet7/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 185 + Ethernet7/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 186 + Ethernet7/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 187 + Ethernet7/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 188 + Ethernet7/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 189 + Ethernet7/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 190 + Ethernet7/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 191 + Ethernet7/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 192 + Ethernet7/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 193 + Ethernet7/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 194 + Ethernet7/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 195 + Ethernet7/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 196 + Ethernet7/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 197 + Ethernet7/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 198 + Ethernet7/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 199 + Ethernet7/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 200 + Ethernet7/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 201 + Ethernet7/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 202 + Ethernet7/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 203 + Ethernet7/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 204 + Ethernet7/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 205 + Ethernet7/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 206 + Ethernet7/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 207 + Ethernet7/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 208 + Ethernet7/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 209 + Ethernet7/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 210 + Ethernet7/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 211 + Ethernet7/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 212 + Ethernet7/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 213 + Ethernet7/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 214 + Ethernet7/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 215 + Ethernet7/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 216 + Ethernet7/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 217 + Ethernet7/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 218 + Ethernet7/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 219 + Ethernet7/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 220 + Ethernet7/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 221 + Ethernet7/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 222 + Ethernet7/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 223 + Ethernet7/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 224 + Ethernet7/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 225 + Ethernet7/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 226 + Ethernet7/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 227 + Ethernet7/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 228 + Ethernet7/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 229 + Ethernet8/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 230 + Ethernet8/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 231 + Ethernet8/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 232 + Ethernet8/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 233 + Ethernet8/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 234 + Ethernet8/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 235 + Ethernet8/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 236 + Ethernet8/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 237 + Ethernet8/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 238 + Ethernet8/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 239 + Ethernet8/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 240 + Ethernet8/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 241 + Ethernet8/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 242 + Ethernet8/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 243 + Ethernet8/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 244 + Ethernet8/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 245 + Ethernet8/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 246 + Ethernet8/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 247 + Ethernet8/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 248 + Ethernet8/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 249 + Ethernet8/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 250 + Ethernet8/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 251 + Ethernet8/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 252 + Ethernet8/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 253 + Ethernet8/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 254 + Ethernet8/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 255 + Ethernet8/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 256 + Ethernet8/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 257 + Ethernet8/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 258 + Ethernet8/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 259 + Ethernet8/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 260 + Ethernet8/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 261 + Ethernet8/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 262 + Ethernet8/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 263 + Ethernet8/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 264 + Ethernet8/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 265 + Ethernet8/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 266 + Ethernet8/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 267 + Ethernet8/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 268 + Ethernet8/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 269 + Ethernet8/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 270 + Ethernet8/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 271 + Ethernet8/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 272 + Ethernet8/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 273 + Ethernet8/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 274 + Ethernet8/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 275 + Ethernet8/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 276 + Ethernet8/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 277 + Ethernet9/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 278 + Ethernet9/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 279 + Ethernet9/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 280 + Ethernet9/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 281 + Ethernet9/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 282 + Ethernet9/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 283 + Ethernet9/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 284 + Ethernet9/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 285 + Ethernet9/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 286 + Ethernet9/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 287 + Ethernet9/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 288 + Ethernet9/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 289 + Ethernet9/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 290 + Ethernet9/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 291 + Ethernet9/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 292 + Ethernet9/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 293 + Ethernet9/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 294 + Ethernet9/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 295 + Ethernet9/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 296 + Ethernet9/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 297 + Ethernet9/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 298 + Ethernet9/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 299 + Ethernet9/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 300 + Ethernet9/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 301 + Ethernet9/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 302 + Ethernet9/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 303 + Ethernet9/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 304 + Ethernet9/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 305 + Ethernet9/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 306 + Ethernet9/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 307 + Ethernet9/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 308 + Ethernet9/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 309 + Ethernet9/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 310 + Ethernet9/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 311 + Ethernet9/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 312 + Ethernet9/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 313 + Ethernet9/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 314 + Ethernet9/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 315 + Ethernet9/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 316 + Ethernet9/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 317 + Ethernet9/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 318 + Ethernet9/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 319 + Ethernet9/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 320 + Ethernet9/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 321 + Ethernet9/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 322 + Ethernet9/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 323 + Ethernet9/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 324 + Ethernet9/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 325 + Ethernet10/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 326 + Ethernet10/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 327 + Ethernet10/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 328 + Ethernet10/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 329 + Ethernet10/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 330 + Ethernet10/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 331 + Ethernet10/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 332 + Ethernet10/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 333 + Ethernet10/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 334 + Ethernet10/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 335 + Ethernet10/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 336 + Ethernet10/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 337 + Ethernet10/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 338 + Ethernet10/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 339 + Ethernet10/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 340 + Ethernet10/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 341 + Ethernet10/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 342 + Ethernet10/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 343 + Ethernet10/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 344 + Ethernet10/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 345 + Ethernet10/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 346 + Ethernet10/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 347 + Ethernet10/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 348 + Ethernet10/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 349 + Ethernet10/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 350 + Ethernet10/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 351 + Ethernet10/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 352 + Ethernet10/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 353 + Ethernet10/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 354 + Ethernet10/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 355 + Ethernet10/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 356 + Ethernet10/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 357 + Ethernet10/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 358 + Ethernet10/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 359 + Ethernet10/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 360 + Ethernet10/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 361 + Ethernet10/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 362 + Ethernet10/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 363 + Ethernet10/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 364 + Ethernet10/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 365 + Ethernet10/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 366 + Ethernet10/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 367 + Ethernet10/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 368 + Ethernet10/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 369 + Ethernet10/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 370 + Ethernet10/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 371 + Ethernet10/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 372 + Ethernet10/48/1 + false + + Ethernet188 + 100000 + + + true + 0 + Sonic-Chassis-sku + + + + Ethernet3/1/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:3:0:1 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + Ethernet3/2/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:3:0:2 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + Ethernet3/3/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:3:0:3 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + Ethernet3/4/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:3:0:4 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + Ethernet3/5/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:3:0:5 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + Ethernet3/6/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:3:0:6 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + Ethernet3/7/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:3:0:7 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + Ethernet3/8/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:3:0:8 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + Ethernet3/9/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:3:0:9 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + Ethernet3/10/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:3:0:10 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet3/11/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:3:0:11 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet3/12/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:3:0:12 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet3/13/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:3:0:13 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet3/14/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:3:0:14 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet3/15/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:3:0:15 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet3/16/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:3:0:16 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet3/17/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:3:0:17 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet3/18/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:3:0:18 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet3/19/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:3:0:19 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + Ethernet3/20/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:3:0:20 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + Ethernet3/21/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:3:0:21 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + Ethernet3/22/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:3:0:22 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + Ethernet3/23/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:3:0:23 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + Ethernet3/24/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:3:0:24 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + Ethernet3/25/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:3:0:25 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + Ethernet3/26/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:3:0:26 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + Ethernet3/27/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:3:0:27 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + Ethernet3/28/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:3:0:28 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet3/29/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:3:0:29 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet3/30/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:3:0:30 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet3/31/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:3:0:31 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet3/32/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:3:0:32 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet3/33/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:3:0:33 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet3/34/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:3:0:34 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet3/35/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:3:0:35 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet3/36/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:3:0:36 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + cpu3/0 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:3:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + cpu3/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:3:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Recirc3/0/0 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:3:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Recirc3/1/0 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:3:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Recirc3/0/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:3:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + Recirc3/1/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:3:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + Ethernet4/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:4:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet4/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:4:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet4/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:4:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet4/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:4:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet4/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:4:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet4/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:4:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet4/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:4:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet4/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:4:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet4/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:4:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet4/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:4:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet4/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:4:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet4/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:4:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet4/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:4:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet4/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:4:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet4/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:4:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet4/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:4:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet4/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:4:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet4/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:4:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet4/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:4:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet4/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:4:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet4/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:4:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet4/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:4:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet4/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:4:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet4/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:4:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet4/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:4:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet4/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:4:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet4/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:4:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet4/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:4:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet4/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:4:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet4/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:4:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet4/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:4:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet4/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:4:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet4/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:4:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet4/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:4:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet4/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:4:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet4/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:4:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet4/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:4:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet4/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:4:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet4/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:4:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet4/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:4:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet4/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:4:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet4/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:4:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet4/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:4:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet4/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:4:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet4/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:4:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet4/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:4:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet4/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:4:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet4/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:4:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu4/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:4:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc4/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:4:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc4/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:4:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet5/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:5:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet5/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:5:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet5/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:5:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet5/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:5:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet5/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:5:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet5/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:5:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet5/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:5:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet5/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:5:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet5/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:5:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet5/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:5:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet5/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:5:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet5/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:5:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet5/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:5:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet5/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:5:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet5/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:5:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet5/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:5:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet5/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:5:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet5/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:5:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet5/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:5:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet5/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:5:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet5/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:5:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet5/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:5:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet5/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:5:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet5/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:5:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet5/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:5:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet5/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:5:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet5/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:5:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet5/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:5:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet5/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:5:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet5/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:5:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet5/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:5:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet5/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:5:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet5/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:5:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet5/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:5:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet5/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:5:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet5/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:5:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet5/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:5:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet5/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:5:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet5/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:5:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet5/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:5:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet5/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:5:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet5/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:5:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet5/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:5:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet5/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:5:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet5/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:5:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet5/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:5:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet5/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:5:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet5/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:5:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu5/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:5:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc5/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:5:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc5/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:5:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet6/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:6:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet6/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:6:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet6/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:6:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet6/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:6:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet6/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:6:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet6/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:6:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet6/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:6:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet6/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:6:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet6/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:6:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet6/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:6:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet6/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:6:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet6/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:6:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet6/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:6:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet6/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:6:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet6/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:6:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet6/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:6:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet6/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:6:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet6/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:6:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet6/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:6:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet6/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:6:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet6/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:6:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet6/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:6:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet6/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:6:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet6/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:6:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet6/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:6:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet6/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:6:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet6/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:6:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet6/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:6:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet6/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:6:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet6/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:6:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet6/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:6:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet6/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:6:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet6/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:6:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet6/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:6:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet6/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:6:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet6/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:6:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet6/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:6:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet6/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:6:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet6/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:6:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet6/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:6:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet6/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:6:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet6/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:6:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet6/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:6:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet6/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:6:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet6/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:6:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet6/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:6:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet6/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:6:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet6/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:6:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu6/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:6:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc6/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:6:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc6/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:6:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet7/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:7:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet7/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:7:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet7/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:7:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet7/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:7:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet7/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:7:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet7/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:7:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet7/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:7:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet7/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:7:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet7/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:7:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet7/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:7:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet7/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:7:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet7/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:7:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet7/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:7:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet7/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:7:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet7/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:7:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet7/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:7:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet7/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:7:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet7/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:7:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet7/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:7:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet7/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:7:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet7/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:7:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet7/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:7:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet7/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:7:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet7/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:7:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet7/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:7:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet7/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:7:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet7/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:7:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet7/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:7:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet7/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:7:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet7/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:7:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet7/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:7:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet7/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:7:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet7/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:7:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet7/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:7:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet7/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:7:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet7/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:7:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet7/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:7:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet7/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:7:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet7/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:7:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet7/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:7:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet7/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:7:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet7/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:7:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet7/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:7:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet7/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:7:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet7/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:7:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet7/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:7:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet7/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:7:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet7/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:7:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu7/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:7:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc7/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:7:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc7/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:7:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet8/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:8:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet8/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:8:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet8/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:8:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet8/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:8:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet8/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:8:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet8/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:8:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet8/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:8:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet8/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:8:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet8/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:8:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet8/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:8:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet8/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:8:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet8/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:8:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet8/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:8:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet8/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:8:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet8/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:8:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet8/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:8:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet8/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:8:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet8/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:8:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet8/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:8:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet8/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:8:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet8/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:8:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet8/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:8:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet8/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:8:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet8/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:8:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet8/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:8:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet8/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:8:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet8/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:8:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet8/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:8:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet8/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:8:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet8/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:8:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet8/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:8:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet8/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:8:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet8/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:8:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet8/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:8:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet8/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:8:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet8/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:8:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet8/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:8:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet8/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:8:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet8/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:8:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet8/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:8:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet8/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:8:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet8/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:8:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet8/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:8:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet8/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:8:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet8/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:8:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet8/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:8:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet8/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:8:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet8/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:8:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu8/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:8:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc8/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:8:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc8/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:8:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet9/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:9:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet9/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:9:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet9/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:9:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet9/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:9:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet9/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:9:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet9/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:9:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet9/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:9:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet9/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:9:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet9/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:9:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet9/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:9:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet9/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:9:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet9/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:9:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet9/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:9:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet9/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:9:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet9/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:9:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet9/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:9:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet9/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:9:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet9/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:9:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet9/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:9:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet9/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:9:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet9/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:9:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet9/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:9:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet9/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:9:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet9/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:9:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet9/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:9:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet9/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:9:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet9/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:9:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet9/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:9:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet9/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:9:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet9/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:9:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet9/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:9:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet9/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:9:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet9/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:9:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet9/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:9:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet9/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:9:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet9/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:9:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet9/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:9:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet9/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:9:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet9/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:9:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet9/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:9:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet9/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:9:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet9/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:9:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet9/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:9:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet9/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:9:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet9/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:9:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet9/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:9:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet9/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:9:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet9/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:9:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + Ethernet10/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:10:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet10/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:10:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet10/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:10:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet10/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:10:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet10/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:10:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet10/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:10:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet10/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:10:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet10/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:10:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet10/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:10:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet10/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:10:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet10/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:10:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet10/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:10:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet10/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:10:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet10/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:10:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet10/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:10:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet10/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:10:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet10/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:10:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet10/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:10:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet10/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:10:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet10/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:10:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet10/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:10:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet10/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:10:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet10/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:10:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet10/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:10:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet10/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:10:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet10/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:10:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet10/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:10:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet10/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:10:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet10/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:10:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet10/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:10:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet10/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:10:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet10/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:10:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet10/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:10:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet10/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:10:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet10/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:10:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet10/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:10:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet10/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:10:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet10/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:10:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet10/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:10:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet10/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:10:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet10/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:10:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet10/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:10:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet10/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:10:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet10/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:10:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet10/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:10:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet10/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:10:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet10/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:10:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet10/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:10:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu10/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:10:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc10/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:10:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc10/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:10:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + + + DeviceInterface + + true + 1 + Management1/1 + false + + + 1000 + + + + + DeviceInterface + + true + 1 + Ethernet3/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 2 + Ethernet3/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 3 + Ethernet3/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 4 + Ethernet3/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 5 + Ethernet3/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 6 + Ethernet3/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 7 + Ethernet3/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 8 + Ethernet3/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 9 + Ethernet3/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 10 + Ethernet3/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 11 + Ethernet3/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 12 + Ethernet3/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 13 + Ethernet3/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 14 + Ethernet3/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 15 + Ethernet3/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 16 + Ethernet3/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 17 + Ethernet3/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 18 + Ethernet3/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 19 + Ethernet3/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 20 + Ethernet3/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 21 + Ethernet3/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 22 + Ethernet3/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 23 + Ethernet3/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 24 + Ethernet3/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 25 + Ethernet3/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 26 + Ethernet3/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 27 + Ethernet3/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 28 + Ethernet3/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 29 + Ethernet3/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 30 + Ethernet3/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 31 + Ethernet3/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 32 + Ethernet3/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 33 + Ethernet3/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 34 + Ethernet3/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 35 + Ethernet3/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 36 + Ethernet3/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 37 + Ethernet3/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 38 + Ethernet3/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 39 + Ethernet3/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 40 + Ethernet3/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 41 + Ethernet3/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 42 + Ethernet3/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 43 + Ethernet3/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 44 + Ethernet3/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 45 + Ethernet3/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 46 + Ethernet3/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 47 + Ethernet3/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 48 + Ethernet3/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 49 + Ethernet3/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 50 + Ethernet3/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 51 + Ethernet3/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 52 + Ethernet3/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 53 + Ethernet3/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 54 + Ethernet3/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 55 + Ethernet3/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 56 + Ethernet3/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 57 + Ethernet3/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 58 + Ethernet3/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 59 + Ethernet3/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 60 + Ethernet3/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 61 + Ethernet3/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 62 + Ethernet3/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 63 + Ethernet3/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 64 + Ethernet3/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 65 + Ethernet3/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 66 + Ethernet3/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 67 + Ethernet3/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 68 + Ethernet3/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 69 + Ethernet3/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 70 + Ethernet3/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 71 + Ethernet3/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 72 + Ethernet3/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 73 + Ethernet3/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 74 + Ethernet3/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 75 + Ethernet3/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 76 + Ethernet3/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 77 + Ethernet3/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 78 + Ethernet3/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 79 + Ethernet3/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 80 + Ethernet3/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 81 + Ethernet3/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 82 + Ethernet3/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 83 + Ethernet3/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 84 + Ethernet3/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 85 + Ethernet3/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 86 + Ethernet3/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 87 + Ethernet3/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 88 + Ethernet3/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 89 + Ethernet3/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 90 + Ethernet3/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 91 + Ethernet3/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 92 + Ethernet3/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 93 + Ethernet3/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 94 + Ethernet3/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 95 + Ethernet3/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 96 + Ethernet3/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 97 + Ethernet3/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 98 + Ethernet3/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 99 + Ethernet3/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 100 + Ethernet3/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 101 + Ethernet3/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 102 + Ethernet3/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 103 + Ethernet3/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 104 + Ethernet3/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 105 + Ethernet3/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 106 + Ethernet3/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 107 + Ethernet3/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 108 + Ethernet3/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 109 + Ethernet4/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 110 + Ethernet4/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 111 + Ethernet4/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 112 + Ethernet4/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 113 + Ethernet4/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 114 + Ethernet4/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 115 + Ethernet4/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 116 + Ethernet4/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 117 + Ethernet4/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 118 + Ethernet4/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 119 + Ethernet4/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 120 + Ethernet4/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 121 + Ethernet4/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 122 + Ethernet4/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 123 + Ethernet4/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 124 + Ethernet4/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 125 + Ethernet4/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 126 + Ethernet4/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 127 + Ethernet4/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 128 + Ethernet4/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 129 + Ethernet4/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 130 + Ethernet4/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 131 + Ethernet4/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 132 + Ethernet4/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 133 + Ethernet4/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 134 + Ethernet4/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 135 + Ethernet4/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 136 + Ethernet4/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 137 + Ethernet4/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 138 + Ethernet4/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 139 + Ethernet4/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 140 + Ethernet4/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 141 + Ethernet4/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 142 + Ethernet4/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 143 + Ethernet4/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 144 + Ethernet4/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 145 + Ethernet4/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 146 + Ethernet4/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 147 + Ethernet4/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 148 + Ethernet4/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 149 + Ethernet4/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 150 + Ethernet4/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 151 + Ethernet4/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 152 + Ethernet4/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 153 + Ethernet4/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 154 + Ethernet4/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 155 + Ethernet4/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 156 + Ethernet4/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 157 + Ethernet4/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 158 + Ethernet4/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 159 + Ethernet4/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 160 + Ethernet4/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 161 + Ethernet4/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 162 + Ethernet4/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 163 + Ethernet4/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 164 + Ethernet4/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 165 + Ethernet4/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 166 + Ethernet4/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 167 + Ethernet4/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 168 + Ethernet4/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 169 + Ethernet4/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 170 + Ethernet4/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 171 + Ethernet4/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 172 + Ethernet4/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 173 + Ethernet4/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 174 + Ethernet4/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 175 + Ethernet4/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 176 + Ethernet4/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 177 + Ethernet4/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 178 + Ethernet4/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 179 + Ethernet4/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 180 + Ethernet4/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 181 + Ethernet4/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 182 + Ethernet4/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 183 + Ethernet4/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 184 + Ethernet4/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 185 + Ethernet4/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 186 + Ethernet4/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 187 + Ethernet4/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 188 + Ethernet4/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 189 + Ethernet4/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 190 + Ethernet4/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 191 + Ethernet4/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 192 + Ethernet4/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 193 + Ethernet4/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 194 + Ethernet4/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 195 + Ethernet4/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 196 + Ethernet4/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 197 + Ethernet4/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 198 + Ethernet4/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 199 + Ethernet4/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 200 + Ethernet4/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 201 + Ethernet4/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 202 + Ethernet4/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 203 + Ethernet4/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 204 + Ethernet4/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 205 + Ethernet4/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 206 + Ethernet4/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 207 + Ethernet4/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 208 + Ethernet4/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 209 + Ethernet4/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 210 + Ethernet4/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 211 + Ethernet4/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 212 + Ethernet4/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 213 + Ethernet4/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 214 + Ethernet4/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 215 + Ethernet4/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 216 + Ethernet4/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 217 + Ethernet4/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 218 + Ethernet4/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 219 + Ethernet4/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 220 + Ethernet4/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 221 + Ethernet4/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 222 + Ethernet4/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 223 + Ethernet4/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 224 + Ethernet4/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 225 + Ethernet4/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 226 + Ethernet4/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 227 + Ethernet4/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 228 + Ethernet4/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 229 + Ethernet4/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 230 + Ethernet4/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 231 + Ethernet4/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 232 + Ethernet4/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 233 + Ethernet4/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 234 + Ethernet4/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 235 + Ethernet4/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 236 + Ethernet4/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 237 + Ethernet4/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 238 + Ethernet4/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 239 + Ethernet4/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 240 + Ethernet4/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 241 + Ethernet4/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 242 + Ethernet4/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 243 + Ethernet4/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 244 + Ethernet4/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 245 + Ethernet4/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 246 + Ethernet4/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 247 + Ethernet4/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 248 + Ethernet4/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 249 + Ethernet4/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 250 + Ethernet4/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 251 + Ethernet4/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 252 + Ethernet4/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 253 + Ethernet5/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 254 + Ethernet5/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 255 + Ethernet5/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 256 + Ethernet5/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 257 + Ethernet5/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 258 + Ethernet5/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 259 + Ethernet5/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 260 + Ethernet5/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 261 + Ethernet5/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 262 + Ethernet5/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 263 + Ethernet5/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 264 + Ethernet5/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 265 + Ethernet5/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 266 + Ethernet5/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 267 + Ethernet5/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 268 + Ethernet5/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 269 + Ethernet5/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 270 + Ethernet5/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 271 + Ethernet5/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 272 + Ethernet5/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 273 + Ethernet5/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 274 + Ethernet5/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 275 + Ethernet5/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 276 + Ethernet5/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 277 + Ethernet5/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 278 + Ethernet5/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 279 + Ethernet5/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 280 + Ethernet5/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 281 + Ethernet5/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 282 + Ethernet5/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 283 + Ethernet5/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 284 + Ethernet5/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 285 + Ethernet5/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 286 + Ethernet5/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 287 + Ethernet5/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 288 + Ethernet5/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 289 + Ethernet5/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 290 + Ethernet5/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 291 + Ethernet5/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 292 + Ethernet5/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 293 + Ethernet5/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 294 + Ethernet5/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 295 + Ethernet5/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 296 + Ethernet5/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 297 + Ethernet5/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 298 + Ethernet5/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 299 + Ethernet5/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 300 + Ethernet5/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 301 + Ethernet5/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 302 + Ethernet5/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 303 + Ethernet5/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 304 + Ethernet5/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 305 + Ethernet5/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 306 + Ethernet5/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 307 + Ethernet5/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 308 + Ethernet5/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 309 + Ethernet5/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 310 + Ethernet5/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 311 + Ethernet5/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 312 + Ethernet5/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 313 + Ethernet5/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 314 + Ethernet5/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 315 + Ethernet5/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 316 + Ethernet5/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 317 + Ethernet5/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 318 + Ethernet5/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 319 + Ethernet5/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 320 + Ethernet5/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 321 + Ethernet5/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 322 + Ethernet5/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 323 + Ethernet5/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 324 + Ethernet5/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 325 + Ethernet5/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 326 + Ethernet5/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 327 + Ethernet5/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 328 + Ethernet5/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 329 + Ethernet5/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 330 + Ethernet5/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 331 + Ethernet5/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 332 + Ethernet5/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 333 + Ethernet5/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 334 + Ethernet5/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 335 + Ethernet5/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 336 + Ethernet5/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 337 + Ethernet5/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 338 + Ethernet5/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 339 + Ethernet5/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 340 + Ethernet5/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 341 + Ethernet5/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 342 + Ethernet5/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 343 + Ethernet5/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 344 + Ethernet5/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 345 + Ethernet5/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 346 + Ethernet5/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 347 + Ethernet5/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 348 + Ethernet5/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 349 + Ethernet5/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 350 + Ethernet5/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 351 + Ethernet5/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 352 + Ethernet5/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 353 + Ethernet5/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 354 + Ethernet5/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 355 + Ethernet5/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 356 + Ethernet5/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 357 + Ethernet5/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 358 + Ethernet5/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 359 + Ethernet5/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 360 + Ethernet5/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 361 + Ethernet5/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 362 + Ethernet5/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 363 + Ethernet5/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 364 + Ethernet5/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 365 + Ethernet5/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 366 + Ethernet5/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 367 + Ethernet5/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 368 + Ethernet5/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 369 + Ethernet5/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 370 + Ethernet5/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 371 + Ethernet5/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 372 + Ethernet5/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 373 + Ethernet5/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 374 + Ethernet5/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 375 + Ethernet5/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 376 + Ethernet5/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 377 + Ethernet5/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 378 + Ethernet5/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 379 + Ethernet5/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 380 + Ethernet5/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 381 + Ethernet5/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 382 + Ethernet5/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 383 + Ethernet5/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 384 + Ethernet5/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 385 + Ethernet5/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 386 + Ethernet5/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 387 + Ethernet5/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 388 + Ethernet5/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 389 + Ethernet5/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 390 + Ethernet5/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 391 + Ethernet5/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 392 + Ethernet5/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 393 + Ethernet5/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 394 + Ethernet5/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 395 + Ethernet5/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 396 + Ethernet5/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 397 + Ethernet6/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 398 + Ethernet6/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 399 + Ethernet6/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 400 + Ethernet6/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 401 + Ethernet6/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 402 + Ethernet6/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 403 + Ethernet6/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 404 + Ethernet6/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 405 + Ethernet6/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 406 + Ethernet6/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 407 + Ethernet6/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 408 + Ethernet6/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 409 + Ethernet6/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 410 + Ethernet6/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 411 + Ethernet6/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 412 + Ethernet6/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 413 + Ethernet6/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 414 + Ethernet6/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 415 + Ethernet6/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 416 + Ethernet6/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 417 + Ethernet6/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 418 + Ethernet6/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 419 + Ethernet6/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 420 + Ethernet6/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 421 + Ethernet6/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 422 + Ethernet6/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 423 + Ethernet6/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 424 + Ethernet6/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 425 + Ethernet6/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 426 + Ethernet6/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 427 + Ethernet6/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 428 + Ethernet6/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 429 + Ethernet6/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 430 + Ethernet6/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 431 + Ethernet6/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 432 + Ethernet6/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 433 + Ethernet6/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 434 + Ethernet6/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 435 + Ethernet6/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 436 + Ethernet6/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 437 + Ethernet6/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 438 + Ethernet6/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 439 + Ethernet6/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 440 + Ethernet6/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 441 + Ethernet6/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 442 + Ethernet6/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 443 + Ethernet6/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 444 + Ethernet6/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 445 + Ethernet6/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 446 + Ethernet6/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 447 + Ethernet6/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 448 + Ethernet6/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 449 + Ethernet6/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 450 + Ethernet6/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 451 + Ethernet6/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 452 + Ethernet6/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 453 + Ethernet6/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 454 + Ethernet6/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 455 + Ethernet6/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 456 + Ethernet6/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 457 + Ethernet6/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 458 + Ethernet6/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 459 + Ethernet6/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 460 + Ethernet6/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 461 + Ethernet6/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 462 + Ethernet6/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 463 + Ethernet6/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 464 + Ethernet6/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 465 + Ethernet6/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 466 + Ethernet6/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 467 + Ethernet6/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 468 + Ethernet6/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 469 + Ethernet6/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 470 + Ethernet6/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 471 + Ethernet6/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 472 + Ethernet6/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 473 + Ethernet6/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 474 + Ethernet6/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 475 + Ethernet6/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 476 + Ethernet6/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 477 + Ethernet6/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 478 + Ethernet6/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 479 + Ethernet6/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 480 + Ethernet6/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 481 + Ethernet6/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 482 + Ethernet6/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 483 + Ethernet6/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 484 + Ethernet6/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 485 + Ethernet6/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 486 + Ethernet6/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 487 + Ethernet6/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 488 + Ethernet6/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 489 + Ethernet6/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 490 + Ethernet6/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 491 + Ethernet6/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 492 + Ethernet6/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 493 + Ethernet6/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 494 + Ethernet6/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 495 + Ethernet6/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 496 + Ethernet6/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 497 + Ethernet6/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 498 + Ethernet6/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 499 + Ethernet6/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 500 + Ethernet6/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 501 + Ethernet6/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 502 + Ethernet6/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 503 + Ethernet6/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 504 + Ethernet6/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 505 + Ethernet6/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 506 + Ethernet6/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 507 + Ethernet6/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 508 + Ethernet6/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 509 + Ethernet6/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 510 + Ethernet6/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 511 + Ethernet6/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 512 + Ethernet6/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 513 + Ethernet6/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 514 + Ethernet6/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 515 + Ethernet6/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 516 + Ethernet6/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 517 + Ethernet6/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 518 + Ethernet6/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 519 + Ethernet6/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 520 + Ethernet6/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 521 + Ethernet6/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 522 + Ethernet6/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 523 + Ethernet6/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 524 + Ethernet6/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 525 + Ethernet6/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 526 + Ethernet6/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 527 + Ethernet6/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 528 + Ethernet6/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 529 + Ethernet6/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 530 + Ethernet6/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 531 + Ethernet6/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 532 + Ethernet6/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 533 + Ethernet6/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 534 + Ethernet6/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 535 + Ethernet6/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 536 + Ethernet6/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 537 + Ethernet6/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 538 + Ethernet6/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 539 + Ethernet6/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 540 + Ethernet6/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 541 + Ethernet7/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 542 + Ethernet7/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 543 + Ethernet7/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 544 + Ethernet7/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 545 + Ethernet7/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 546 + Ethernet7/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 547 + Ethernet7/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 548 + Ethernet7/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 549 + Ethernet7/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 550 + Ethernet7/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 551 + Ethernet7/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 552 + Ethernet7/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 553 + Ethernet7/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 554 + Ethernet7/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 555 + Ethernet7/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 556 + Ethernet7/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 557 + Ethernet7/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 558 + Ethernet7/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 559 + Ethernet7/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 560 + Ethernet7/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 561 + Ethernet7/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 562 + Ethernet7/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 563 + Ethernet7/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 564 + Ethernet7/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 565 + Ethernet7/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 566 + Ethernet7/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 567 + Ethernet7/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 568 + Ethernet7/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 569 + Ethernet7/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 570 + Ethernet7/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 571 + Ethernet7/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 572 + Ethernet7/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 573 + Ethernet7/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 574 + Ethernet7/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 575 + Ethernet7/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 576 + Ethernet7/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 577 + Ethernet7/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 578 + Ethernet7/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 579 + Ethernet7/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 580 + Ethernet7/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 581 + Ethernet7/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 582 + Ethernet7/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 583 + Ethernet7/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 584 + Ethernet7/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 585 + Ethernet7/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 586 + Ethernet7/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 587 + Ethernet7/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 588 + Ethernet7/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 589 + Ethernet7/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 590 + Ethernet7/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 591 + Ethernet7/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 592 + Ethernet7/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 593 + Ethernet7/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 594 + Ethernet7/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 595 + Ethernet7/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 596 + Ethernet7/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 597 + Ethernet7/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 598 + Ethernet7/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 599 + Ethernet7/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 600 + Ethernet7/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 601 + Ethernet7/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 602 + Ethernet7/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 603 + Ethernet7/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 604 + Ethernet7/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 605 + Ethernet7/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 606 + Ethernet7/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 607 + Ethernet7/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 608 + Ethernet7/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 609 + Ethernet7/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 610 + Ethernet7/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 611 + Ethernet7/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 612 + Ethernet7/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 613 + Ethernet7/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 614 + Ethernet7/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 615 + Ethernet7/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 616 + Ethernet7/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 617 + Ethernet7/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 618 + Ethernet7/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 619 + Ethernet7/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 620 + Ethernet7/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 621 + Ethernet7/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 622 + Ethernet7/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 623 + Ethernet7/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 624 + Ethernet7/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 625 + Ethernet7/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 626 + Ethernet7/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 627 + Ethernet7/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 628 + Ethernet7/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 629 + Ethernet7/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 630 + Ethernet7/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 631 + Ethernet7/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 632 + Ethernet7/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 633 + Ethernet7/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 634 + Ethernet7/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 635 + Ethernet7/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 636 + Ethernet7/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 637 + Ethernet7/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 638 + Ethernet7/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 639 + Ethernet7/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 640 + Ethernet7/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 641 + Ethernet7/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 642 + Ethernet7/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 643 + Ethernet7/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 644 + Ethernet7/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 645 + Ethernet7/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 646 + Ethernet7/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 647 + Ethernet7/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 648 + Ethernet7/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 649 + Ethernet7/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 650 + Ethernet7/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 651 + Ethernet7/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 652 + Ethernet7/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 653 + Ethernet7/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 654 + Ethernet7/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 655 + Ethernet7/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 656 + Ethernet7/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 657 + Ethernet7/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 658 + Ethernet7/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 659 + Ethernet7/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 660 + Ethernet7/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 661 + Ethernet7/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 662 + Ethernet7/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 663 + Ethernet7/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 664 + Ethernet7/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 665 + Ethernet7/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 666 + Ethernet7/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 667 + Ethernet7/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 668 + Ethernet7/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 669 + Ethernet7/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 670 + Ethernet7/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 671 + Ethernet7/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 672 + Ethernet7/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 673 + Ethernet7/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 674 + Ethernet7/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 675 + Ethernet7/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 676 + Ethernet7/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 677 + Ethernet7/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 678 + Ethernet7/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 679 + Ethernet7/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 680 + Ethernet7/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 681 + Ethernet7/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 682 + Ethernet7/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 683 + Ethernet7/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 684 + Ethernet7/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 685 + Ethernet8/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 686 + Ethernet8/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 687 + Ethernet8/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 688 + Ethernet8/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 689 + Ethernet8/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 690 + Ethernet8/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 691 + Ethernet8/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 692 + Ethernet8/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 693 + Ethernet8/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 694 + Ethernet8/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 695 + Ethernet8/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 696 + Ethernet8/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 697 + Ethernet8/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 698 + Ethernet8/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 699 + Ethernet8/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 700 + Ethernet8/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 701 + Ethernet8/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 702 + Ethernet8/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 703 + Ethernet8/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 704 + Ethernet8/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 705 + Ethernet8/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 706 + Ethernet8/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 707 + Ethernet8/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 708 + Ethernet8/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 709 + Ethernet8/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 710 + Ethernet8/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 711 + Ethernet8/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 712 + Ethernet8/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 713 + Ethernet8/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 714 + Ethernet8/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 715 + Ethernet8/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 716 + Ethernet8/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 717 + Ethernet8/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 718 + Ethernet8/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 719 + Ethernet8/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 720 + Ethernet8/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 721 + Ethernet8/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 722 + Ethernet8/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 723 + Ethernet8/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 724 + Ethernet8/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 725 + Ethernet8/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 726 + Ethernet8/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 727 + Ethernet8/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 728 + Ethernet8/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 729 + Ethernet8/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 730 + Ethernet8/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 731 + Ethernet8/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 732 + Ethernet8/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 733 + Ethernet8/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 734 + Ethernet8/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 735 + Ethernet8/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 736 + Ethernet8/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 737 + Ethernet8/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 738 + Ethernet8/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 739 + Ethernet8/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 740 + Ethernet8/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 741 + Ethernet8/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 742 + Ethernet8/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 743 + Ethernet8/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 744 + Ethernet8/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 745 + Ethernet8/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 746 + Ethernet8/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 747 + Ethernet8/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 748 + Ethernet8/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 749 + Ethernet8/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 750 + Ethernet8/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 751 + Ethernet8/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 752 + Ethernet8/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 753 + Ethernet8/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 754 + Ethernet8/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 755 + Ethernet8/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 756 + Ethernet8/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 757 + Ethernet8/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 758 + Ethernet8/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 759 + Ethernet8/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 760 + Ethernet8/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 761 + Ethernet8/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 762 + Ethernet8/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 763 + Ethernet8/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 764 + Ethernet8/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 765 + Ethernet8/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 766 + Ethernet8/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 767 + Ethernet8/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 768 + Ethernet8/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 769 + Ethernet8/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 770 + Ethernet8/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 771 + Ethernet8/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 772 + Ethernet8/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 773 + Ethernet8/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 774 + Ethernet8/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 775 + Ethernet8/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 776 + Ethernet8/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 777 + Ethernet8/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 778 + Ethernet8/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 779 + Ethernet8/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 780 + Ethernet8/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 781 + Ethernet8/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 782 + Ethernet8/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 783 + Ethernet8/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 784 + Ethernet8/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 785 + Ethernet8/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 786 + Ethernet8/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 787 + Ethernet8/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 788 + Ethernet8/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 789 + Ethernet8/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 790 + Ethernet8/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 791 + Ethernet8/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 792 + Ethernet8/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 793 + Ethernet8/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 794 + Ethernet8/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 795 + Ethernet8/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 796 + Ethernet8/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 797 + Ethernet8/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 798 + Ethernet8/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 799 + Ethernet8/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 800 + Ethernet8/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 801 + Ethernet8/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 802 + Ethernet8/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 803 + Ethernet8/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 804 + Ethernet8/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 805 + Ethernet8/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 806 + Ethernet8/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 807 + Ethernet8/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 808 + Ethernet8/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 809 + Ethernet8/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 810 + Ethernet8/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 811 + Ethernet8/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 812 + Ethernet8/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 813 + Ethernet8/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 814 + Ethernet8/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 815 + Ethernet8/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 816 + Ethernet8/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 817 + Ethernet8/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 818 + Ethernet8/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 819 + Ethernet8/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 820 + Ethernet8/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 821 + Ethernet8/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 822 + Ethernet8/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 823 + Ethernet8/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 824 + Ethernet8/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 825 + Ethernet8/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 826 + Ethernet8/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 827 + Ethernet8/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 828 + Ethernet8/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 829 + Ethernet9/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 830 + Ethernet9/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 831 + Ethernet9/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 832 + Ethernet9/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 833 + Ethernet9/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 834 + Ethernet9/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 835 + Ethernet9/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 836 + Ethernet9/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 837 + Ethernet9/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 838 + Ethernet9/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 839 + Ethernet9/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 840 + Ethernet9/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 841 + Ethernet9/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 842 + Ethernet9/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 843 + Ethernet9/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 844 + Ethernet9/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 845 + Ethernet9/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 846 + Ethernet9/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 847 + Ethernet9/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 848 + Ethernet9/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 849 + Ethernet9/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 850 + Ethernet9/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 851 + Ethernet9/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 852 + Ethernet9/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 853 + Ethernet9/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 854 + Ethernet9/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 855 + Ethernet9/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 856 + Ethernet9/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 857 + Ethernet9/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 858 + Ethernet9/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 859 + Ethernet9/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 860 + Ethernet9/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 861 + Ethernet9/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 862 + Ethernet9/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 863 + Ethernet9/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 864 + Ethernet9/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 865 + Ethernet9/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 866 + Ethernet9/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 867 + Ethernet9/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 868 + Ethernet9/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 869 + Ethernet9/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 870 + Ethernet9/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 871 + Ethernet9/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 872 + Ethernet9/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 873 + Ethernet9/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 874 + Ethernet9/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 875 + Ethernet9/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 876 + Ethernet9/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 877 + Ethernet9/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 878 + Ethernet9/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 879 + Ethernet9/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 880 + Ethernet9/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 881 + Ethernet9/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 882 + Ethernet9/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 883 + Ethernet9/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 884 + Ethernet9/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 885 + Ethernet9/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 886 + Ethernet9/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 887 + Ethernet9/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 888 + Ethernet9/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 889 + Ethernet9/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 890 + Ethernet9/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 891 + Ethernet9/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 892 + Ethernet9/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 893 + Ethernet9/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 894 + Ethernet9/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 895 + Ethernet9/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 896 + Ethernet9/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 897 + Ethernet9/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 898 + Ethernet9/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 899 + Ethernet9/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 900 + Ethernet9/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 901 + Ethernet9/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 902 + Ethernet9/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 903 + Ethernet9/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 904 + Ethernet9/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 905 + Ethernet9/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 906 + Ethernet9/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 907 + Ethernet9/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 908 + Ethernet9/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 909 + Ethernet9/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 910 + Ethernet9/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 911 + Ethernet9/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 912 + Ethernet9/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 913 + Ethernet9/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 914 + Ethernet9/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 915 + Ethernet9/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 916 + Ethernet9/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 917 + Ethernet9/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 918 + Ethernet9/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 919 + Ethernet9/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 920 + Ethernet9/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 921 + Ethernet9/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 922 + Ethernet9/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 923 + Ethernet9/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 924 + Ethernet9/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 925 + Ethernet9/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 926 + Ethernet9/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 927 + Ethernet9/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 928 + Ethernet9/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 929 + Ethernet9/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 930 + Ethernet9/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 931 + Ethernet9/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 932 + Ethernet9/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 933 + Ethernet9/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 934 + Ethernet9/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 935 + Ethernet9/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 936 + Ethernet9/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 937 + Ethernet9/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 938 + Ethernet9/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 939 + Ethernet9/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 940 + Ethernet9/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 941 + Ethernet9/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 942 + Ethernet9/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 943 + Ethernet9/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 944 + Ethernet9/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 945 + Ethernet9/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 946 + Ethernet9/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 947 + Ethernet9/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 948 + Ethernet9/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 949 + Ethernet9/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 950 + Ethernet9/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 951 + Ethernet9/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 952 + Ethernet9/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 953 + Ethernet9/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 954 + Ethernet9/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 955 + Ethernet9/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 956 + Ethernet9/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 957 + Ethernet9/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 958 + Ethernet9/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 959 + Ethernet9/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 960 + Ethernet9/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 961 + Ethernet9/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 962 + Ethernet9/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 963 + Ethernet9/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 964 + Ethernet9/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 965 + Ethernet9/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 966 + Ethernet9/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 967 + Ethernet9/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 968 + Ethernet9/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 969 + Ethernet9/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 970 + Ethernet9/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 971 + Ethernet9/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 972 + Ethernet9/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 973 + Ethernet10/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 974 + Ethernet10/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 975 + Ethernet10/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 976 + Ethernet10/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 977 + Ethernet10/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 978 + Ethernet10/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 979 + Ethernet10/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 980 + Ethernet10/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 981 + Ethernet10/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 982 + Ethernet10/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 983 + Ethernet10/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 984 + Ethernet10/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 985 + Ethernet10/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 986 + Ethernet10/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 987 + Ethernet10/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 988 + Ethernet10/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 989 + Ethernet10/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 990 + Ethernet10/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 991 + Ethernet10/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 992 + Ethernet10/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 993 + Ethernet10/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 994 + Ethernet10/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 995 + Ethernet10/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 996 + Ethernet10/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 997 + Ethernet10/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 998 + Ethernet10/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 999 + Ethernet10/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1000 + Ethernet10/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1001 + Ethernet10/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1002 + Ethernet10/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1003 + Ethernet10/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1004 + Ethernet10/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1005 + Ethernet10/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1006 + Ethernet10/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1007 + Ethernet10/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1008 + Ethernet10/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1009 + Ethernet10/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1010 + Ethernet10/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1011 + Ethernet10/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1012 + Ethernet10/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1013 + Ethernet10/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1014 + Ethernet10/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1015 + Ethernet10/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1016 + Ethernet10/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1017 + Ethernet10/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1018 + Ethernet10/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1019 + Ethernet10/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1020 + Ethernet10/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1021 + Ethernet10/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1022 + Ethernet10/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1023 + Ethernet10/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1024 + Ethernet10/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1025 + Ethernet10/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1026 + Ethernet10/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1027 + Ethernet10/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1028 + Ethernet10/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1029 + Ethernet10/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1030 + Ethernet10/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1031 + Ethernet10/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1032 + Ethernet10/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1033 + Ethernet10/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1034 + Ethernet10/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1035 + Ethernet10/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1036 + Ethernet10/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1037 + Ethernet10/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1038 + Ethernet10/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1039 + Ethernet10/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1040 + Ethernet10/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1041 + Ethernet10/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1042 + Ethernet10/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1043 + Ethernet10/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1044 + Ethernet10/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1045 + Ethernet10/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1046 + Ethernet10/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1047 + Ethernet10/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1048 + Ethernet10/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1049 + Ethernet10/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1050 + Ethernet10/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1051 + Ethernet10/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1052 + Ethernet10/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1053 + Ethernet10/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1054 + Ethernet10/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1055 + Ethernet10/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1056 + Ethernet10/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1057 + Ethernet10/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1058 + Ethernet10/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1059 + Ethernet10/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1060 + Ethernet10/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1061 + Ethernet10/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1062 + Ethernet10/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1063 + Ethernet10/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1064 + Ethernet10/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1065 + Ethernet10/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1066 + Ethernet10/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1067 + Ethernet10/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1068 + Ethernet10/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1069 + Ethernet10/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1070 + Ethernet10/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1071 + Ethernet10/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1072 + Ethernet10/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1073 + Ethernet10/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1074 + Ethernet10/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1075 + Ethernet10/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1076 + Ethernet10/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1077 + Ethernet10/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1078 + Ethernet10/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1079 + Ethernet10/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1080 + Ethernet10/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1081 + Ethernet10/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1082 + Ethernet10/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1083 + Ethernet10/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1084 + Ethernet10/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1085 + Ethernet10/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1086 + Ethernet10/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1087 + Ethernet10/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1088 + Ethernet10/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1089 + Ethernet10/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1090 + Ethernet10/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1091 + Ethernet10/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1092 + Ethernet10/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1093 + Ethernet10/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1094 + Ethernet10/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1095 + Ethernet10/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1096 + Ethernet10/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1097 + Ethernet10/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1098 + Ethernet10/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1099 + Ethernet10/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1100 + Ethernet10/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1101 + Ethernet10/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1102 + Ethernet10/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1103 + Ethernet10/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1104 + Ethernet10/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1105 + Ethernet10/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1106 + Ethernet10/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1107 + Ethernet10/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1108 + Ethernet10/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1109 + Ethernet10/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1110 + Ethernet10/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1111 + Ethernet10/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1112 + Ethernet10/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1113 + Ethernet10/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1114 + Ethernet10/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1115 + Ethernet10/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1116 + Ethernet10/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + + + DeviceInterface + + true + 1 + power1/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 2 + power1/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 3 + power2/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 4 + power2/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 5 + power3/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 6 + power3/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 7 + power4/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 8 + power4/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 9 + power7/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 10 + power7/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 11 + power8/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 12 + power8/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 13 + power9/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 14 + power9/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 15 + power10/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 16 + power10/1 + false + + + 0 + + C19 + C19 + true + + + + + + DeviceInterface + + true + 1 + console + false + console + + 9600 + false + + + + DeviceInterface + + false + 2 + logical1 + false + logical1 + + 9600 + true + 1 + + + DeviceInterface + + false + 3 + logical2 + false + logical2 + + 9600 + true + 2 + + + DeviceInterface + + false + 4 + logical3 + false + logical3 + + 9600 + true + 3 + + + DeviceInterface + + false + 5 + logical4 + false + logical4 + + 9600 + true + 4 + + + DeviceInterface + + false + 6 + logical5 + false + logical5 + + 9600 + true + 5 + + + DeviceInterface + + false + 7 + logical6 + false + logical6 + + 9600 + true + 6 + + + DeviceInterface + + false + 8 + logical7 + false + logical7 + + 9600 + true + 7 + + + DeviceInterface + + false + 9 + logical8 + false + logical8 + + 9600 + true + 8 + + + DeviceInterface + + false + 10 + logical9 + false + logical9 + + 9600 + true + 9 + + + DeviceInterface + + false + 11 + logical10 + false + logical10 + + 9600 + true + 10 + + + DeviceInterface + + false + 12 + logical11 + false + logical11 + + 9600 + true + 11 + + + DeviceInterface + + false + 13 + logical12 + false + logical12 + + 9600 + true + 12 + + + + Arista + + + + + + + + LoopbackInterface + HostIP + Loopback0 + + 10.2.0.1/32 + + 10.2.0.1/32 + + + LoopbackInterface + HostIP1 + Loopback0 + + fc00:20::1/128 + + fc00:20::1/128 + + + LoopbackInterface + Loopback4096 + Loopback4096 + + 192.0.0.1/32 + + 192.0.0.1/32 + + + LoopbackInterface + v6Loopback4096 + Loopback4096 + + 2603:10e2:400::1/128 + + 2603:10e2:400::1/128 + + + + + + + + str-sonic-lc03-ASIC00 + + + PortChannelInterface + PortChannel102 + Eth0;Eth8 + + + + PortChannelInterface + PortChannel104 + Eth16;Eth24 + + + + PortChannelInterface + PortChannel106 + Eth32;Eth40 + + + + PortChannelInterface + PortChannel108 + Eth48;Eth56 + + + + PortChannelInterface + PortChannel1010 + Eth72;Eth64 + + + + PortChannelInterface + PortChannel1012 + Eth80;Eth88 + + + + PortChannelInterface + PortChannel1016 + Eth104;Eth112 + + + + PortChannelInterface + PortChannel1020 + Eth128;Eth136 + + + + + + + + IPInterface + VoqInband + Ethernet-IB0 + 10.241.88.0/32 + + + IPInterface + v6VoqInband + Ethernet-IB0 + 2a01:111:e210:5e:0:a:f158:0/128 + + + IPInterface + + PortChannel102 + 10.0.0.0/31 + + + IPInterface + + PortChannel102 + fc00::1/126 + + + IPInterface + + PortChannel104 + 10.0.0.4/31 + + + IPInterface + + PortChannel104 + fc00::9/126 + + + IPInterface + + PortChannel106 + 10.0.0.8/31 + + + IPInterface + + PortChannel106 + fc00::11/126 + + + IPInterface + + PortChannel108 + 10.0.0.12/31 + + + IPInterface + + PortChannel108 + fc00::19/126 + + + IPInterface + + PortChannel1010 + 10.0.0.16/31 + + + IPInterface + + PortChannel1010 + fc00::21/126 + + + IPInterface + + PortChannel1012 + 10.0.0.20/31 + + + IPInterface + + PortChannel1012 + fc00::29/126 + + + IPInterface + + PortChannel1016 + 10.0.0.28/31 + + + IPInterface + + PortChannel1016 + fc00::39/126 + + + IPInterface + + PortChannel1020 + 10.0.0.24/31 + + + IPInterface + + PortChannel1020 + fc00::31/126 + + + + + + + + + + + + + LoopbackInterface + HostIP + Loopback0 + + 10.2.0.1/32 + + 10.2.0.1/32 + + + LoopbackInterface + HostIP1 + Loopback0 + + fc00:20::1/128 + + fc00:20::1/128 + + + LoopbackInterface + Loopback4096 + Loopback4096 + + 192.0.0.2/32 + + 192.0.0.2/32 + + + LoopbackInterface + v6Loopback4096 + Loopback4096 + + 2603:10e2:400::2/128 + + 2603:10e2:400::2/128 + + + + + + + + str-sonic-lc03-ASIC01 + + + + + + IPInterface + VoqInband + Ethernet-IB1 + 10.241.88.1/32 + + + IPInterface + v6VoqInband + Ethernet-IB1 + 2a01:111:e210:5e:0:a:f158:100/128 + + + + + + + + + + + + + LoopbackInterface + HostIP + Loopback0 + + 10.2.0.1/32 + + 10.2.0.1/32 + + + LoopbackInterface + HostIP1 + Loopback0 + + fc00:20::1/128 + + fc00:20::1/128 + + + + + ManagementInterface + ManagementIP + Management1/1 + + 10.3.146.58/24 + + 10.3.146.58/24 + + + + ManagementInterface + v6ManagementIP + Management1/1 + + 2a01:111:e210:3000::a03:923a/64 + + 2a01:111:e210:3000::a03:923a/64 + + + + + + + + str-sonic-lc03 + + + + + + + + + + + + + + + str-sonic-lc03-ASIC00:Eth0;ARISTA91T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/1/1#0:3:0:1#1 + + + str-sonic:Ethernet3/1/1;ARISTA91T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth8;ARISTA91T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/2/1#0:3:0:2#1 + + + EndOpticalTerminalDevice + + Sonic-OMT + + + FiberDistance + + 20.3 + + + Frequency + + 196.025 + + + MacSecEnabled + + True + + + Modulation + + 16QAM + + + OpticSkuA + + optic-sku-01 + + + OpticSkuZ + + optic-sku-02 + + + OpticalCircuitID + + optical-circuit-01 + + + RxPower + + -6 + + + SolutionId + + span01 + + + Speed + + 400000 + + + StartOpticalTerminalDevice + + optical-sku-01 + + + TxPower + + -10 + + + str-sonic:Ethernet3/2/1;ARISTA91T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth16;ARISTA93T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/3/1#0:3:0:3#1 + + + str-sonic:Ethernet3/3/1;ARISTA93T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth24;ARISTA93T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/4/1#0:3:0:4#1 + + + str-sonic:Ethernet3/4/1;ARISTA93T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth32;ARISTA05T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/5/1#0:3:0:5#1 + + + str-sonic:Ethernet3/5/1;ARISTA05T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth40;ARISTA05T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/6/1#0:3:0:6#1 + + + str-sonic:Ethernet3/6/1;ARISTA05T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth48;ARISTA07T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/7/1#0:3:0:7#1 + + + str-sonic:Ethernet3/7/1;ARISTA07T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth56;ARISTA07T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/8/1#0:3:0:8#1 + + + str-sonic:Ethernet3/8/1;ARISTA07T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth64;ARISTA09T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/9/1#0:3:0:9#1 + + + str-sonic:Ethernet3/9/1;ARISTA09T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth72;ARISTA09T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/10/1#0:3:0:10#1 + + + str-sonic:Ethernet3/10/1;ARISTA09T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth80;ARISTA11T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/11/1#0:3:0:11#1 + + + str-sonic:Ethernet3/11/1;ARISTA11T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth88;ARISTA11T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/12/1#0:3:0:12#1 + + + str-sonic:Ethernet3/12/1;ARISTA11T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth96;ARISTA13T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/13/1#0:3:0:13#1 + + + str-sonic:Ethernet3/13/1;ARISTA13T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth104;ARISTA15T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/14/1#0:3:0:14#1 + + + str-sonic:Ethernet3/14/1;ARISTA15T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth112;ARISTA15T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/15/1#0:3:0:15#1 + + + str-sonic:Ethernet3/15/1;ARISTA15T3:Ethernet2 + + + str-sonic-lc03-ASIC00:Eth120;ARISTA17T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/16/1#0:3:0:16#1 + + + str-sonic:Ethernet3/16/1;ARISTA17T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth128;ARISTA18T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/17/1#0:3:0:17#1 + + + str-sonic:Ethernet3/17/1;ARISTA18T3:Ethernet1 + + + str-sonic-lc03-ASIC00:Eth136;ARISTA18T3:Ethernet2 + + + EndItfKey + + Ethernet2#0:1:0:2#1 + + + StartItfKey + + Ethernet3/18/1#0:3:0:18#1 + + + str-sonic:Ethernet3/18/1;ARISTA18T3:Ethernet2 + + + str-sonic-lc03-ASIC01:Eth0;ARISTA19T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/19/1#0:3:0:19#1 + + + str-sonic:Ethernet3/19/1;ARISTA19T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth8;ARISTA20T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/20/1#0:3:0:20#1 + + + str-sonic:Ethernet3/20/1;ARISTA20T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth16;ARISTA21T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/21/1#0:3:0:21#1 + + + str-sonic:Ethernet3/21/1;ARISTA21T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth24;ARISTA22T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/22/1#0:3:0:22#1 + + + str-sonic:Ethernet3/22/1;ARISTA22T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth32;ARISTA23T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/23/1#0:3:0:23#1 + + + str-sonic:Ethernet3/23/1;ARISTA23T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth40;ARISTA24T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/24/1#0:3:0:24#1 + + + str-sonic:Ethernet3/24/1;ARISTA24T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth48;ARISTA25T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/25/1#0:3:0:25#1 + + + str-sonic:Ethernet3/25/1;ARISTA25T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth56;ARISTA26T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/26/1#0:3:0:26#1 + + + str-sonic:Ethernet3/26/1;ARISTA26T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth64;ARISTA27T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/27/1#0:3:0:27#1 + + + str-sonic:Ethernet3/27/1;ARISTA27T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth72;ARISTA28T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/28/1#0:3:0:28#1 + + + str-sonic:Ethernet3/28/1;ARISTA28T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth80;ARISTA29T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/29/1#0:3:0:29#1 + + + str-sonic:Ethernet3/29/1;ARISTA29T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth88;ARISTA30T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/30/1#0:3:0:30#1 + + + str-sonic:Ethernet3/30/1;ARISTA30T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth96;ARISTA31T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/31/1#0:3:0:31#1 + + + str-sonic:Ethernet3/31/1;ARISTA31T3:Ethernet1 + + + str-sonic-lc03-ASIC01:Eth104;ARISTA32T3:Ethernet1 + + + EndItfKey + + Ethernet1#0:1:0:1#1 + + + StartItfKey + + Ethernet3/32/1#0:3:0:32#1 + + + str-sonic:Ethernet3/32/1;ARISTA32T3:Ethernet1 + + + + + + + + str-sonic-lc04 + + + FirmwareProfile + + Sonic-lc-100g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 4 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc04-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc05 + + + FirmwareProfile + + Sonic-lc-100g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 5 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc05-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc06 + + + FirmwareProfile + + Sonic-lc-100g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 6 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc06-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc07 + + + FirmwareProfile + + Sonic-lc-100g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 7 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc07-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc08 + + + FirmwareProfile + + Sonic-lc-100g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 8 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc08-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc09 + + + FirmwareProfile + + Sonic-lc-400g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 9 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc09-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc10 + + + FirmwareProfile + + Sonic-lc-100g-sku + + + ForwardingMethod + + VoQ + + + SlotIndex + + 10 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc10-ASIC00 + + + SiblingLineCards + + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc03-ASIC00 + + + ForwardingMethod + + VoQ + + + SubRole + + FrontEnd + + + AsicSwitchId + + 8 + + + ProviderLineCard + + str-sonic-lc03 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc03-ASIC01 + + + ForwardingMethod + + VoQ + + + SubRole + + FrontEnd + + + AsicSwitchId + + 9 + + + ProviderLineCard + + str-sonic-lc03 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc03 + + + FirmwareProfile + + SONiC-Sonic-400g-lc-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 3 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + True + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc03-ASIC00;str-sonic-lc03-ASIC01 + + + SiblingLineCards + + + str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic + + + CloudType + + Public + + + ConfigDbAclFile + + SonicNativeAcl.liquid + + + ConfigTemplateFile + + Sonic.xml + + + DNSServers + + 10.64.5.5;10.64.6.6;10.64.6.7 + + + DcCode + + STR + + + DeploymentId + + 3 + + + EnableStreamingTelemetry + + true + + + ErspanDestinationIpv4 + + 10.20.6.4 + + + FirmwareProfile + + Sonic-sup-sku + + + Function + + LabTest + + + Group + + str:542907040 + + + InitConfigTemplateFile + + Sonic.init.xml + + + Location + + TBD + + + Loopback0Ipv4 + + 10.2.0.1/32;10.2.0.2/32;10.2.0.3/32;10.2.0.4/32 + + + Loopback0Ipv6 + + fc00:20::1/128;fc00:21::1/128;fc00:22::1/128;fc00:23::1/128 + + + Loopback4096Ipv4 + + 192.0.0.1/32;192.0.0.2/32;192.0.0.8/32;192.0.0.9/32 + + + Loopback4096Ipv6 + + + 2603:10e2:400::1/128;2603:10e2:400::2/128;2603:10e2:400::8/128;2603:10e2:400::9/128 + + + MacSecEnabled + + True + + + MacSecProfile + usstagee.Sonic.MacSec + PrimaryKey="macsec-profile-two" FallbackKey="macsec-profile" + MacsecPolicy="" + + + ManagementIpv4 + + + 10.3.146.58/24;10.3.146.71/24;10.3.146.72/24;10.3.146.74/24;10.3.146.75/24;10.3.146.80/24;10.3.146.81/24;10.3.146.83/24 + + + ManagementIpv6 + + + 2a01:111:e210:3000::a03:923a/64;2a01:111:e210:3000::a03:9247/64;2a01:111:e210:3000::a03:9248/64;2a01:111:e210:3000::a03:924a/64;2a01:111:e210:3000::a03:924b/64;2a01:111:e210:3000::a03:9250/64;2a01:111:e210:3000::a03:9251/64;2a01:111:e210:3000::a03:9253/64 + + + MaxCountOfCores + + 64 + + + NtpResources + Public.Ntp + 17.39.1.129;17.39.1.130 + + + QosProfile + + VerlaineLongHaul + + + RemoteAuthenticationProtocol + + Tacacs + + + SnmpResources + + 10.52.180.161;10.3.157.12 + + + SonicConfigTemplateFile + + Sonic.xml + + + SonicEnabled + + True + + + SyslogResources + + 10.52.180.161;10.3.157.12 + + + SyslogServer + + 10.20.4.167;10.20.7.33;10.20.6.16;10.20.6.84 + + + TacacsKey + + $Secrets.TacacsKey + + + TacacsSecurityLevel + + 7 + + + TacacsServer + + 123.46.98.21 + + + TotalCountOfVoQ + + 8 + + + Region + + test + + + ChassisEnabled + + true + + + + + + + + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth456 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth457 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth458 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth459 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth460 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth461 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth462 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth463 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth468 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth469 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth470 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth471 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth477 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth478 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth497 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth512 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth513 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth515 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth516 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth518 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth530 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth531 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth533 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth534 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth535 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth537 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth539 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth540 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth542 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth543 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth552 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth553 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth554 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth555 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth556 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth557 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth558 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth559 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth560 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth561 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth562 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth563 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth564 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth565 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth566 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth567 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth568 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth569 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth570 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth571 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth572 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth573 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth574 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth575 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA91T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth0 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA91T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth8 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA93T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth16 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA93T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth24 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA05T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth32 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA05T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth40 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA07T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth48 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA07T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth56 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA09T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth64 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA09T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth72 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA11T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth80 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA11T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth88 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA13T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth96 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA15T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth104 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA15T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth112 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA17T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth120 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA18T3 + Ethernet1 + true + str-sonic-lc03-ASIC00 + Eth128 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA18T3 + Ethernet2 + true + str-sonic-lc03-ASIC00 + Eth136 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth452 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth453 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth454 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth455 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth456 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth457 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth458 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth459 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth460 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth461 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth462 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth463 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth468 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth469 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth470 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth471 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth496 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth501 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth502 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth507 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth508 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth514 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth517 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth519 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth520 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth521 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth523 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth524 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth527 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth528 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth529 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth530 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth531 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth532 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth533 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth534 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth535 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth536 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth537 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth538 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth539 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth540 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth541 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth542 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth543 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth552 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth553 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth554 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth555 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth556 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth557 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth558 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth559 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth560 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth561 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth562 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth563 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth564 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth565 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth566 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth567 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth568 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth569 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth570 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth571 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth572 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth573 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth574 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth575 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA19T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth0 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA20T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth8 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA21T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth16 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA22T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth24 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA23T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth32 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA24T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth40 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA25T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth48 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA26T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth56 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA27T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth64 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA28T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth72 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA29T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth80 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA30T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth88 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA31T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth96 + true + + + DeviceInterfaceLink + 100000 + true + ARISTA32T3 + Ethernet1 + true + str-sonic-lc03-ASIC01 + Eth104 + true + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical3 + true + str-sonic-lc03 + logical + true + 3 + + + + + LinecardAsic +
+ 10.2.0.1/32 +
+ + fc00:20::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC00 + Broadcom-Jericho2cplus +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC02 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC03 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC09 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC08 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC05 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC04 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC10 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC11 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC06 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC07 + Broadcom-Ramon +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.10/17 + + + ::/0 + + + + ARISTA91T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.11/17 + + + ::/0 + + + + ARISTA93T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.12/17 + + + ::/0 + + + + ARISTA05T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.13/17 + + + ::/0 + + + + ARISTA07T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.14/17 + + + ::/0 + + + + ARISTA09T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.15/17 + + + ::/0 + + + + ARISTA11T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.16/17 + + + ::/0 + + + + ARISTA13T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.17/17 + + + ::/0 + + + + ARISTA15T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.18/17 + + + ::/0 + + + + ARISTA17T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.19/17 + + + ::/0 + + + + ARISTA18T3 + Sonic-T3-sku +
+ + LinecardAsic +
+ 10.2.0.1/32 +
+ + fc00:20::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC01 + Broadcom-Jericho2cplus +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.20/17 + + + ::/0 + + + + ARISTA19T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.21/17 + + + ::/0 + + + + ARISTA20T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.22/17 + + + ::/0 + + + + ARISTA21T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.23/17 + + + ::/0 + + + + ARISTA22T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.24/17 + + + ::/0 + + + + ARISTA23T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.25/17 + + + ::/0 + + + + ARISTA24T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.26/17 + + + ::/0 + + + + ARISTA25T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.27/17 + + + ::/0 + + + + ARISTA26T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.28/17 + + + ::/0 + + + + ARISTA27T3 + Sonic-T3-sku +
+ + RegionalHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.29/17 + + + ::/0 + + + + ARISTA28T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.30/17 + + + ::/0 + + + + ARISTA29T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.31/17 + + + ::/0 + + + + ARISTA30T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.32/17 + + + ::/0 + + + + ARISTA31T3 + Sonic-T3-sku +
+ + AZNGHub +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.33/17 + + + ::/0 + + + + ARISTA32T3 + Sonic-T3-sku +
+ + Linecard +
+ 10.2.0.1/32 +
+ + fc00:20::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.58/24 + + + 2a01:111:e210:3000::a03:923a/64 + + + + str-sonic-lc03 + Sonic-400g-lc-sku +
+ + Supervisor +
+ 10.152.0.46/32 +
+ + 2a01:111:e210:5e::/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.111/24 + + + 2a01:111:e210:3000::a03:926f/64 + + + + str-sonic-sup00 + sonic-sup-sku +
+ + SpineRouter +
+ 10.152.0.46/32 +
+ + 2a01:111:e210:5e::/128 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.111/24 + + + 2a01:111:e210:3000::a03:926f/64 + + + + str-sonic + Sonic-Chassis-sku + 0 +
+
+
+ str-sonic-lc03 + Sonic-400g-lc-sku + 1.0.1388.35297 + +
\ No newline at end of file diff --git a/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_lc_single_asic.xml b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_lc_single_asic.xml new file mode 100644 index 000000000000..1e80a5bcbd58 --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_lc_single_asic.xml @@ -0,0 +1,46215 @@ + + + + + + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 10.241.88.4 + str-sonic-lc07-ASIC00 + 10.241.88.5 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + str-sonic-lc07-ASIC00 + 2a01:111:e210:5e:0:a:f158:500 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 10.241.88.4 + str-sonic-lc08-ASIC00 + 10.241.88.6 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + str-sonic-lc08-ASIC00 + 2a01:111:e210:5e:0:a:f158:600 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 10.241.88.4 + str-sonic-lc09-ASIC00 + 10.241.88.7 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + str-sonic-lc09-ASIC00 + 2a01:111:e210:5e:0:a:f158:700 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 10.241.88.4 + str-sonic-lc10-ASIC00 + 10.241.88.8 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + str-sonic-lc10-ASIC00 + 2a01:111:e210:5e:0:a:f158:800 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 10.241.88.0 + str-sonic-lc06-ASIC00 + 10.241.88.4 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC00 + 2a01:111:e210:5e:0:a:f158:0 + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 10.241.88.1 + str-sonic-lc06-ASIC00 + 10.241.88.4 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc03-ASIC01 + 2a01:111:e210:5e:0:a:f158:100 + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc04-ASIC00 + 10.241.88.2 + str-sonic-lc06-ASIC00 + 10.241.88.4 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc04-ASIC00 + 2a01:111:e210:5e:0:a:f158:200 + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + 1 + 0 + 0 + + + BGPSessionstr-soni + + VoQ + VoQ + + false + str-sonic-lc05-ASIC00 + 10.241.88.3 + str-sonic-lc06-ASIC00 + 10.241.88.4 + 1 + 0 + 0 + + + BGPSession + + VoQ + VoQ + + false + str-sonic-lc05-ASIC00 + 2a01:111:e210:5e:0:a:f158:300 + str-sonic-lc06-ASIC00 + 2a01:111:e210:5e:0:a:f158:400 + 1 + 0 + 0 + + + BGPSession + false + ARISTA33T1 + 10.0.0.129 + str-sonic-lc06-ASIC00 + 10.0.0.128 + 1 + 10 + 3 + + + BGPSession + false + ARISTA33T1 + fc00::102 + str-sonic-lc06-ASIC00 + fc00::101 + 1 + 10 + 3 + + + BGPSession + false + ARISTA35T1 + 10.0.0.133 + str-sonic-lc06-ASIC00 + 10.0.0.132 + 1 + 10 + 3 + + + BGPSession + false + ARISTA35T1 + fc00::10a + str-sonic-lc06-ASIC00 + fc00::109 + 1 + 10 + 3 + + + BGPSession + false + ARISTA37T1 + 10.0.0.137 + str-sonic-lc06-ASIC00 + 10.0.0.136 + 1 + 10 + 3 + + + BGPSession + false + ARISTA37T1 + fc00::112 + str-sonic-lc06-ASIC00 + fc00::111 + 1 + 10 + 3 + + + BGPSession + false + ARISTA39T1 + 10.0.0.141 + str-sonic-lc06-ASIC00 + 10.0.0.140 + 1 + 10 + 3 + + + BGPSession + false + ARISTA39T1 + fc00::11a + str-sonic-lc06-ASIC00 + fc00::119 + 1 + 10 + 3 + + + BGPSession + false + ARISTA41T1 + 10.0.0.145 + str-sonic-lc06-ASIC00 + 10.0.0.144 + 1 + 10 + 3 + + + BGPSession + false + ARISTA41T1 + fc00::122 + str-sonic-lc06-ASIC00 + fc00::121 + 1 + 10 + 3 + + + BGPSession + false + ARISTA43T1 + 10.0.0.149 + str-sonic-lc06-ASIC00 + 10.0.0.148 + 1 + 10 + 3 + + + BGPSession + false + ARISTA43T1 + fc00::12a + str-sonic-lc06-ASIC00 + fc00::129 + 1 + 10 + 3 + + + BGPSession + false + ARISTA47T1 + 10.0.0.153 + str-sonic-lc06-ASIC00 + 10.0.0.152 + 1 + 10 + 3 + + + BGPSession + false + ARISTA47T1 + fc00::132 + str-sonic-lc06-ASIC00 + fc00::131 + 1 + 10 + 3 + + + BGPSession + false + ARISTA50T1 + 10.0.0.157 + str-sonic-lc06-ASIC00 + 10.0.0.156 + 1 + 10 + 3 + + + BGPSession + false + ARISTA50T1 + fc00::13a + str-sonic-lc06-ASIC00 + fc00::139 + 1 + 10 + 3 + + + + + 65100 + + + BGPGroup + 10.241.88.4;2a01:111:e210:5e:0:a:f158:400 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc06-ASIC00 + + + BGPPeer +
10.241.88.4
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:400
+ + + +
+ + BGPPeer +
10.0.0.128
+ + + +
+ + BGPPeer +
fc00::101
+ + + +
+ + BGPPeer +
10.0.0.132
+ + + +
+ + BGPPeer +
fc00::109
+ + + +
+ + BGPPeer +
10.0.0.136
+ + + +
+ + BGPPeer +
fc00::111
+ + + +
+ + BGPPeer +
10.0.0.140
+ + + +
+ + BGPPeer +
fc00::119
+ + + +
+ + BGPPeer +
10.0.0.144
+ + + +
+ + BGPPeer +
fc00::121
+ + + +
+ + BGPPeer +
10.0.0.148
+ + + +
+ + BGPPeer +
fc00::129
+ + + +
+ + BGPPeer +
10.0.0.152
+ + + +
+ + BGPPeer +
fc00::131
+ + + +
+ + BGPPeer +
10.0.0.156
+ + + +
+ + BGPPeer +
fc00::139
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.5;2a01:111:e210:5e:0:a:f158:500 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc07-ASIC00 + + + BGPPeer +
10.241.88.5
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:500
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.6;2a01:111:e210:5e:0:a:f158:600 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc08-ASIC00 + + + BGPPeer +
10.241.88.6
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:600
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.7;2a01:111:e210:5e:0:a:f158:700 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc09-ASIC00 + + + BGPPeer +
10.241.88.7
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:700
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.8;2a01:111:e210:5e:0:a:f158:800 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc10-ASIC00 + + + BGPPeer +
10.241.88.8
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:800
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.0;2a01:111:e210:5e:0:a:f158:0 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc03-ASIC00 + + + BGPPeer +
10.241.88.0
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:0
+ + + +
+ + BGPPeer +
10.0.0.0
+ + + +
+ + BGPPeer +
10.0.0.4
+ + + +
+ + BGPPeer +
10.0.0.8
+ + + +
+ + BGPPeer +
10.0.0.12
+ + + +
+ + BGPPeer +
10.0.0.16
+ + + +
+ + BGPPeer +
10.0.0.20
+ + + +
+ + BGPPeer +
10.0.0.24
+ + + +
+ + BGPPeer +
10.0.0.28
+ + + +
+ + BGPPeer +
fc00::1
+ + + +
+ + BGPPeer +
fc00::9
+ + + +
+ + BGPPeer +
fc00::11
+ + + +
+ + BGPPeer +
fc00::19
+ + + +
+ + BGPPeer +
fc00::21
+ + + +
+ + BGPPeer +
fc00::29
+ + + +
+ + BGPPeer +
fc00::31
+ + + +
+ + BGPPeer +
fc00::39
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.1;2a01:111:e210:5e:0:a:f158:100 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc03-ASIC01 + + + BGPPeer +
10.241.88.1
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:100
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.2;2a01:111:e210:5e:0:a:f158:200 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc04-ASIC00 + + + BGPPeer +
10.241.88.2
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:200
+ + + +
+
+ + +
+ + 65100 + + + BGPGroup + 10.241.88.3;2a01:111:e210:5e:0:a:f158:300 + eBGP + + + + + + 0 + + false + false + VoQ + 0 + 0 + 0 + + + + str-sonic-lc05-ASIC00 + + + BGPPeer +
10.241.88.3
+ + + +
+ + BGPPeer +
2a01:111:e210:5e:0:a:f158:300
+ + + +
+ + BGPPeer +
10.0.0.72
+ + + +
+ + BGPPeer +
fc00::91
+ + + +
+ + BGPPeer +
10.0.0.76
+ + + +
+ + BGPPeer +
fc00::99
+ + + +
+ + BGPPeer +
10.0.0.80
+ + + +
+ + BGPPeer +
fc00::a1
+ + + +
+ + BGPPeer +
10.0.0.84
+ + + +
+ + BGPPeer +
fc00::a9
+ + + +
+ + BGPPeer +
10.0.0.88
+ + + +
+ + BGPPeer +
fc00::b1
+ + + +
+ + BGPPeer +
10.0.0.92
+ + + +
+ + BGPPeer +
fc00::b9
+ + + +
+ + BGPPeer +
10.0.0.64
+ + + +
+ + BGPPeer +
fc00::81
+ + + +
+ + BGPPeer +
10.0.0.68
+ + + +
+ + BGPPeer +
fc00::89
+ + + +
+
+ + +
+ + 65338 + + + ARISTA33T1 + + + BGPPeer +
10.0.0.129
+ + + +
+ + BGPPeer +
fc00::102
+ + + +
+
+ + +
+ + 65339 + + + ARISTA35T1 + + + BGPPeer +
10.0.0.133
+ + + +
+ + BGPPeer +
fc00::10a
+ + + +
+
+ + +
+ + 65340 + + + ARISTA37T1 + + + BGPPeer +
10.0.0.137
+ + + +
+ + BGPPeer +
fc00::112
+ + + +
+
+ + +
+ + 65341 + + + ARISTA39T1 + + + BGPPeer +
10.0.0.141
+ + + +
+ + BGPPeer +
fc00::11a
+ + + +
+
+ + +
+ + 65342 + + + ARISTA41T1 + + + BGPPeer +
10.0.0.145
+ + + +
+ + BGPPeer +
fc00::122
+ + + +
+
+ + +
+ + 65343 + + + ARISTA43T1 + + + BGPPeer +
10.0.0.149
+ + + +
+ + BGPPeer +
fc00::12a
+ + + +
+
+ + +
+ + 65345 + + + ARISTA47T1 + + + BGPPeer +
10.0.0.153
+ + + +
+ + BGPPeer +
fc00::132
+ + + +
+
+ + +
+ + 65347 + + + ARISTA50T1 + + + BGPPeer +
10.0.0.157
+ + + +
+ + BGPPeer +
fc00::13a
+ + + +
+
+ + +
+
+ +
+ + + + + + DeviceInterface + + true + 1 + cpu3/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 2 + cpu3/1 + false + + cpu1 + 10000 + + + + + DeviceInterface + + true + 3 + Recirc3/0/0 + false + + Ethernet-Rec0 + 10000 + + + + + DeviceInterface + + true + 4 + Recirc3/1/0 + false + + Ethernet-Rec1 + 10000 + + + + + DeviceInterface + + true + 5 + Recirc3/0/1 + false + + Ethernet-IB0 + 10000 + + + + + DeviceInterface + + true + 6 + Recirc3/1/1 + false + + Ethernet-IB1 + 10000 + + + + + DeviceInterface + + true + 7 + cpu4/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 8 + Recirc4/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 9 + Recirc4/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 10 + cpu5/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 11 + Recirc5/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 12 + Recirc5/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 13 + cpu6/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 14 + Recirc6/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 15 + Recirc6/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 16 + cpu7/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 17 + Recirc7/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 18 + Recirc7/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 19 + cpu8/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 20 + Recirc8/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 21 + Recirc8/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 22 + cpu10/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 23 + Recirc10/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 24 + Recirc10/0/1 + false + + Ethernet-IB0 + 400000 + + + + + Sonic-T2-Base-sku + + + + DeviceInterface + 100000 + true + 1 + Ethernet3/1/1 + false + + Ethernet0 + 400000 + + + DeviceInterface + 100000 + true + 2 + Ethernet3/2/1 + false + + Ethernet8 + 400000 + + + DeviceInterface + 100000 + true + 3 + Ethernet3/3/1 + false + + Ethernet16 + 400000 + + + DeviceInterface + 100000 + true + 4 + Ethernet3/4/1 + false + + Ethernet24 + 400000 + + + DeviceInterface + 100000 + true + 5 + Ethernet3/5/1 + false + + Ethernet32 + 400000 + + + DeviceInterface + 100000 + true + 6 + Ethernet3/6/1 + false + + Ethernet40 + 400000 + + + DeviceInterface + 100000 + true + 7 + Ethernet3/7/1 + false + + Ethernet48 + 400000 + + + DeviceInterface + 100000 + true + 8 + Ethernet3/8/1 + false + + Ethernet56 + 400000 + + + DeviceInterface + 100000 + true + 9 + Ethernet3/9/1 + false + + Ethernet64 + 400000 + + + DeviceInterface + 100000 + true + 10 + Ethernet3/10/1 + false + + Ethernet72 + 400000 + + + DeviceInterface + 100000 + true + 11 + Ethernet3/11/1 + false + + Ethernet80 + 400000 + + + DeviceInterface + 100000 + true + 12 + Ethernet3/12/1 + false + + Ethernet88 + 400000 + + + DeviceInterface + 100000 + true + 13 + Ethernet3/13/1 + false + + Ethernet96 + 400000 + + + DeviceInterface + 100000 + true + 14 + Ethernet3/14/1 + false + + Ethernet104 + 400000 + + + DeviceInterface + 100000 + true + 15 + Ethernet3/15/1 + false + + Ethernet112 + 400000 + + + DeviceInterface + 100000 + true + 16 + Ethernet3/16/1 + false + + Ethernet120 + 400000 + + + DeviceInterface + 100000 + true + 17 + Ethernet3/17/1 + false + + Ethernet128 + 400000 + + + DeviceInterface + 100000 + true + 18 + Ethernet3/18/1 + false + + Ethernet136 + 400000 + + + DeviceInterface + 100000 + true + 19 + Ethernet3/19/1 + false + + Ethernet144 + 400000 + + + DeviceInterface + 100000 + true + 20 + Ethernet3/20/1 + false + + Ethernet152 + 400000 + + + DeviceInterface + 100000 + true + 21 + Ethernet3/21/1 + false + + Ethernet160 + 400000 + + + DeviceInterface + 100000 + true + 22 + Ethernet3/22/1 + false + + Ethernet168 + 400000 + + + DeviceInterface + 100000 + true + 23 + Ethernet3/23/1 + false + + Ethernet176 + 400000 + + + DeviceInterface + 100000 + true + 24 + Ethernet3/24/1 + false + + Ethernet184 + 400000 + + + DeviceInterface + 100000 + true + 25 + Ethernet3/25/1 + false + + Ethernet192 + 400000 + + + DeviceInterface + 100000 + true + 26 + Ethernet3/26/1 + false + + Ethernet200 + 400000 + + + DeviceInterface + 100000 + true + 27 + Ethernet3/27/1 + false + + Ethernet208 + 400000 + + + DeviceInterface + 100000 + true + 28 + Ethernet3/28/1 + false + + Ethernet216 + 400000 + + + DeviceInterface + 100000 + true + 29 + Ethernet3/29/1 + false + + Ethernet224 + 400000 + + + DeviceInterface + 100000 + true + 30 + Ethernet3/30/1 + false + + Ethernet232 + 400000 + + + DeviceInterface + 100000 + true + 31 + Ethernet3/31/1 + false + + Ethernet240 + 400000 + + + DeviceInterface + 100000 + true + 32 + Ethernet3/32/1 + false + + Ethernet248 + 400000 + + + DeviceInterface + 100000 + true + 33 + Ethernet3/33/1 + false + + Ethernet256 + 400000 + + + DeviceInterface + 100000 + true + 34 + Ethernet3/34/1 + false + + Ethernet264 + 400000 + + + DeviceInterface + 100000 + true + 35 + Ethernet3/35/1 + false + + Ethernet272 + 400000 + + + DeviceInterface + 100000 + true + 36 + Ethernet3/36/1 + false + + Ethernet280 + 400000 + + + DeviceInterface + 40000 + true + 37 + Ethernet4/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 38 + Ethernet4/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 39 + Ethernet4/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 40 + Ethernet4/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 41 + Ethernet4/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 42 + Ethernet4/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 43 + Ethernet4/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 44 + Ethernet4/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 45 + Ethernet4/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 46 + Ethernet4/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 47 + Ethernet4/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 48 + Ethernet4/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 49 + Ethernet4/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 50 + Ethernet4/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 51 + Ethernet4/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 52 + Ethernet4/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 53 + Ethernet4/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 54 + Ethernet4/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 55 + Ethernet4/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 56 + Ethernet4/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 57 + Ethernet4/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 58 + Ethernet4/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 59 + Ethernet4/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 60 + Ethernet4/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 61 + Ethernet4/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 62 + Ethernet4/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 63 + Ethernet4/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 64 + Ethernet4/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 65 + Ethernet4/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 66 + Ethernet4/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 67 + Ethernet4/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 68 + Ethernet4/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 69 + Ethernet4/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 70 + Ethernet4/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 71 + Ethernet4/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 72 + Ethernet4/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 73 + Ethernet4/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 74 + Ethernet4/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 75 + Ethernet4/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 76 + Ethernet4/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 77 + Ethernet4/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 78 + Ethernet4/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 79 + Ethernet4/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 80 + Ethernet4/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 81 + Ethernet4/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 82 + Ethernet4/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 83 + Ethernet4/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 84 + Ethernet4/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 85 + Ethernet5/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 86 + Ethernet5/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 87 + Ethernet5/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 88 + Ethernet5/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 89 + Ethernet5/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 90 + Ethernet5/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 91 + Ethernet5/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 92 + Ethernet5/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 93 + Ethernet5/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 94 + Ethernet5/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 95 + Ethernet5/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 96 + Ethernet5/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 97 + Ethernet5/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 98 + Ethernet5/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 99 + Ethernet5/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 100 + Ethernet5/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 101 + Ethernet5/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 102 + Ethernet5/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 103 + Ethernet5/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 104 + Ethernet5/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 105 + Ethernet5/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 106 + Ethernet5/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 107 + Ethernet5/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 108 + Ethernet5/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 109 + Ethernet5/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 110 + Ethernet5/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 111 + Ethernet5/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 112 + Ethernet5/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 113 + Ethernet5/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 114 + Ethernet5/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 115 + Ethernet5/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 116 + Ethernet5/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 117 + Ethernet5/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 118 + Ethernet5/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 119 + Ethernet5/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 120 + Ethernet5/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 121 + Ethernet5/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 122 + Ethernet5/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 123 + Ethernet5/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 124 + Ethernet5/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 125 + Ethernet5/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 126 + Ethernet5/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 127 + Ethernet5/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 128 + Ethernet5/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 129 + Ethernet5/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 130 + Ethernet5/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 131 + Ethernet5/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 132 + Ethernet5/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 133 + Ethernet6/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 134 + Ethernet6/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 135 + Ethernet6/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 136 + Ethernet6/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 137 + Ethernet6/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 138 + Ethernet6/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 139 + Ethernet6/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 140 + Ethernet6/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 141 + Ethernet6/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 142 + Ethernet6/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 143 + Ethernet6/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 144 + Ethernet6/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 145 + Ethernet6/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 146 + Ethernet6/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 147 + Ethernet6/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 148 + Ethernet6/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 149 + Ethernet6/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 150 + Ethernet6/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 151 + Ethernet6/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 152 + Ethernet6/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 153 + Ethernet6/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 154 + Ethernet6/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 155 + Ethernet6/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 156 + Ethernet6/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 157 + Ethernet6/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 158 + Ethernet6/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 159 + Ethernet6/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 160 + Ethernet6/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 161 + Ethernet6/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 162 + Ethernet6/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 163 + Ethernet6/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 164 + Ethernet6/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 165 + Ethernet6/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 166 + Ethernet6/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 167 + Ethernet6/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 168 + Ethernet6/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 169 + Ethernet6/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 170 + Ethernet6/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 171 + Ethernet6/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 172 + Ethernet6/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 173 + Ethernet6/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 174 + Ethernet6/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 175 + Ethernet6/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 176 + Ethernet6/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 177 + Ethernet6/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 178 + Ethernet6/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 179 + Ethernet6/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 180 + Ethernet6/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 181 + Ethernet7/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 182 + Ethernet7/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 183 + Ethernet7/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 184 + Ethernet7/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 185 + Ethernet7/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 186 + Ethernet7/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 187 + Ethernet7/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 188 + Ethernet7/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 189 + Ethernet7/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 190 + Ethernet7/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 191 + Ethernet7/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 192 + Ethernet7/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 193 + Ethernet7/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 194 + Ethernet7/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 195 + Ethernet7/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 196 + Ethernet7/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 197 + Ethernet7/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 198 + Ethernet7/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 199 + Ethernet7/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 200 + Ethernet7/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 201 + Ethernet7/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 202 + Ethernet7/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 203 + Ethernet7/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 204 + Ethernet7/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 205 + Ethernet7/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 206 + Ethernet7/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 207 + Ethernet7/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 208 + Ethernet7/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 209 + Ethernet7/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 210 + Ethernet7/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 211 + Ethernet7/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 212 + Ethernet7/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 213 + Ethernet7/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 214 + Ethernet7/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 215 + Ethernet7/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 216 + Ethernet7/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 217 + Ethernet7/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 218 + Ethernet7/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 219 + Ethernet7/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 220 + Ethernet7/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 221 + Ethernet7/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 222 + Ethernet7/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 223 + Ethernet7/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 224 + Ethernet7/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 225 + Ethernet7/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 226 + Ethernet7/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 227 + Ethernet7/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 228 + Ethernet7/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 229 + Ethernet8/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 230 + Ethernet8/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 231 + Ethernet8/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 232 + Ethernet8/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 233 + Ethernet8/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 234 + Ethernet8/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 235 + Ethernet8/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 236 + Ethernet8/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 237 + Ethernet8/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 238 + Ethernet8/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 239 + Ethernet8/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 240 + Ethernet8/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 241 + Ethernet8/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 242 + Ethernet8/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 243 + Ethernet8/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 244 + Ethernet8/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 245 + Ethernet8/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 246 + Ethernet8/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 247 + Ethernet8/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 248 + Ethernet8/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 249 + Ethernet8/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 250 + Ethernet8/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 251 + Ethernet8/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 252 + Ethernet8/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 253 + Ethernet8/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 254 + Ethernet8/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 255 + Ethernet8/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 256 + Ethernet8/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 257 + Ethernet8/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 258 + Ethernet8/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 259 + Ethernet8/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 260 + Ethernet8/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 261 + Ethernet8/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 262 + Ethernet8/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 263 + Ethernet8/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 264 + Ethernet8/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 265 + Ethernet8/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 266 + Ethernet8/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 267 + Ethernet8/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 268 + Ethernet8/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 269 + Ethernet8/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 270 + Ethernet8/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 271 + Ethernet8/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 272 + Ethernet8/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 273 + Ethernet8/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 274 + Ethernet8/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 275 + Ethernet8/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 276 + Ethernet8/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 277 + Ethernet9/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 278 + Ethernet9/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 279 + Ethernet9/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 280 + Ethernet9/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 281 + Ethernet9/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 282 + Ethernet9/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 283 + Ethernet9/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 284 + Ethernet9/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 285 + Ethernet9/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 286 + Ethernet9/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 287 + Ethernet9/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 288 + Ethernet9/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 289 + Ethernet9/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 290 + Ethernet9/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 291 + Ethernet9/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 292 + Ethernet9/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 293 + Ethernet9/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 294 + Ethernet9/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 295 + Ethernet9/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 296 + Ethernet9/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 297 + Ethernet9/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 298 + Ethernet9/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 299 + Ethernet9/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 300 + Ethernet9/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 301 + Ethernet9/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 302 + Ethernet9/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 303 + Ethernet9/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 304 + Ethernet9/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 305 + Ethernet9/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 306 + Ethernet9/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 307 + Ethernet9/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 308 + Ethernet9/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 309 + Ethernet9/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 310 + Ethernet9/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 311 + Ethernet9/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 312 + Ethernet9/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 313 + Ethernet9/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 314 + Ethernet9/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 315 + Ethernet9/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 316 + Ethernet9/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 317 + Ethernet9/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 318 + Ethernet9/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 319 + Ethernet9/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 320 + Ethernet9/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 321 + Ethernet9/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 322 + Ethernet9/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 323 + Ethernet9/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 324 + Ethernet9/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 325 + Ethernet10/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 326 + Ethernet10/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 327 + Ethernet10/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 328 + Ethernet10/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 329 + Ethernet10/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 330 + Ethernet10/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 331 + Ethernet10/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 332 + Ethernet10/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 333 + Ethernet10/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 334 + Ethernet10/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 335 + Ethernet10/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 336 + Ethernet10/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 337 + Ethernet10/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 338 + Ethernet10/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 339 + Ethernet10/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 340 + Ethernet10/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 341 + Ethernet10/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 342 + Ethernet10/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 343 + Ethernet10/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 344 + Ethernet10/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 345 + Ethernet10/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 346 + Ethernet10/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 347 + Ethernet10/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 348 + Ethernet10/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 349 + Ethernet10/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 350 + Ethernet10/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 351 + Ethernet10/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 352 + Ethernet10/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 353 + Ethernet10/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 354 + Ethernet10/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 355 + Ethernet10/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 356 + Ethernet10/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 357 + Ethernet10/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 358 + Ethernet10/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 359 + Ethernet10/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 360 + Ethernet10/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 361 + Ethernet10/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 362 + Ethernet10/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 363 + Ethernet10/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 364 + Ethernet10/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 365 + Ethernet10/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 366 + Ethernet10/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 367 + Ethernet10/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 368 + Ethernet10/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 369 + Ethernet10/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 370 + Ethernet10/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 371 + Ethernet10/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 372 + Ethernet10/48/1 + false + + Ethernet188 + 100000 + + + true + 0 + Sonic-Chassis-sku + + + + Ethernet3/1/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:3:0:1 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + Ethernet3/2/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:3:0:2 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + Ethernet3/3/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:3:0:3 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + Ethernet3/4/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:3:0:4 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + Ethernet3/5/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:3:0:5 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + Ethernet3/6/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:3:0:6 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + Ethernet3/7/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:3:0:7 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + Ethernet3/8/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:3:0:8 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + Ethernet3/9/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:3:0:9 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + Ethernet3/10/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:3:0:10 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet3/11/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:3:0:11 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet3/12/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:3:0:12 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet3/13/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:3:0:13 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet3/14/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:3:0:14 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet3/15/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:3:0:15 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet3/16/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:3:0:16 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet3/17/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:3:0:17 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet3/18/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:3:0:18 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet3/19/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:3:0:19 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + Ethernet3/20/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:3:0:20 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + Ethernet3/21/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:3:0:21 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + Ethernet3/22/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:3:0:22 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + Ethernet3/23/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:3:0:23 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + Ethernet3/24/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:3:0:24 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + Ethernet3/25/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:3:0:25 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + Ethernet3/26/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:3:0:26 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + Ethernet3/27/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:3:0:27 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + Ethernet3/28/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:3:0:28 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet3/29/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:3:0:29 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet3/30/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:3:0:30 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet3/31/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:3:0:31 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet3/32/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:3:0:32 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet3/33/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:3:0:33 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet3/34/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:3:0:34 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet3/35/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:3:0:35 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet3/36/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:3:0:36 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + cpu3/0 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:3:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + cpu3/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:3:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Recirc3/0/0 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:3:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Recirc3/1/0 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:3:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Recirc3/0/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:3:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + Recirc3/1/1 + + + LineCardSku + Sonic-400g-lc-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:3:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + Ethernet4/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:4:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet4/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:4:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet4/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:4:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet4/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:4:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet4/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:4:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet4/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:4:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet4/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:4:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet4/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:4:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet4/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:4:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet4/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:4:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet4/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:4:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet4/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:4:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet4/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:4:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet4/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:4:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet4/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:4:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet4/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:4:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet4/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:4:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet4/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:4:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet4/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:4:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet4/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:4:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet4/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:4:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet4/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:4:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet4/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:4:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet4/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:4:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet4/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:4:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet4/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:4:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet4/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:4:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet4/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:4:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet4/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:4:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet4/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:4:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet4/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:4:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet4/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:4:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet4/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:4:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet4/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:4:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet4/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:4:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet4/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:4:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet4/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:4:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet4/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:4:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet4/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:4:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet4/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:4:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet4/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:4:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet4/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:4:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet4/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:4:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet4/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:4:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet4/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:4:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet4/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:4:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet4/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:4:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet4/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:4:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu4/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:4:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc4/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:4:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc4/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:4:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet5/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:5:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet5/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:5:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet5/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:5:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet5/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:5:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet5/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:5:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet5/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:5:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet5/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:5:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet5/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:5:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet5/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:5:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet5/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:5:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet5/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:5:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet5/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:5:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet5/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:5:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet5/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:5:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet5/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:5:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet5/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:5:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet5/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:5:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet5/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:5:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet5/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:5:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet5/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:5:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet5/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:5:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet5/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:5:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet5/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:5:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet5/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:5:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet5/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:5:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet5/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:5:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet5/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:5:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet5/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:5:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet5/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:5:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet5/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:5:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet5/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:5:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet5/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:5:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet5/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:5:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet5/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:5:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet5/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:5:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet5/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:5:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet5/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:5:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet5/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:5:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet5/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:5:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet5/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:5:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet5/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:5:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet5/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:5:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet5/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:5:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet5/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:5:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet5/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:5:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet5/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:5:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet5/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:5:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet5/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:5:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu5/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:5:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc5/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:5:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc5/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:5:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet6/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:6:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet6/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:6:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet6/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:6:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet6/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:6:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet6/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:6:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet6/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:6:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet6/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:6:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet6/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:6:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet6/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:6:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet6/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:6:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet6/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:6:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet6/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:6:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet6/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:6:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet6/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:6:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet6/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:6:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet6/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:6:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet6/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:6:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet6/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:6:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet6/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:6:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet6/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:6:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet6/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:6:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet6/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:6:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet6/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:6:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet6/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:6:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet6/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:6:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet6/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:6:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet6/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:6:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet6/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:6:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet6/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:6:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet6/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:6:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet6/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:6:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet6/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:6:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet6/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:6:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet6/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:6:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet6/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:6:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet6/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:6:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet6/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:6:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet6/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:6:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet6/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:6:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet6/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:6:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet6/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:6:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet6/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:6:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet6/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:6:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet6/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:6:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet6/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:6:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet6/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:6:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet6/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:6:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet6/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:6:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu6/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:6:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc6/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:6:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc6/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:6:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet7/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:7:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet7/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:7:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet7/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:7:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet7/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:7:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet7/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:7:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet7/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:7:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet7/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:7:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet7/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:7:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet7/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:7:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet7/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:7:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet7/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:7:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet7/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:7:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet7/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:7:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet7/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:7:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet7/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:7:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet7/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:7:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet7/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:7:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet7/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:7:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet7/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:7:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet7/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:7:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet7/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:7:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet7/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:7:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet7/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:7:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet7/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:7:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet7/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:7:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet7/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:7:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet7/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:7:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet7/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:7:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet7/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:7:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet7/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:7:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet7/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:7:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet7/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:7:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet7/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:7:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet7/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:7:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet7/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:7:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet7/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:7:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet7/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:7:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet7/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:7:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet7/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:7:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet7/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:7:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet7/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:7:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet7/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:7:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet7/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:7:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet7/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:7:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet7/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:7:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet7/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:7:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet7/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:7:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet7/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:7:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu7/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:7:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc7/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:7:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc7/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:7:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet8/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:8:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet8/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:8:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet8/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:8:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet8/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:8:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet8/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:8:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet8/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:8:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet8/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:8:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet8/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:8:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet8/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:8:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet8/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:8:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet8/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:8:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet8/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:8:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet8/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:8:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet8/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:8:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet8/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:8:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet8/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:8:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet8/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:8:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet8/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:8:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet8/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:8:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet8/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:8:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet8/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:8:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet8/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:8:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet8/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:8:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet8/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:8:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet8/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:8:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet8/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:8:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet8/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:8:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet8/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:8:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet8/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:8:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet8/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:8:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet8/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:8:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet8/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:8:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet8/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:8:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet8/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:8:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet8/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:8:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet8/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:8:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet8/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:8:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet8/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:8:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet8/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:8:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet8/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:8:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet8/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:8:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet8/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:8:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet8/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:8:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet8/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:8:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet8/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:8:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet8/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:8:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet8/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:8:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet8/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:8:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu8/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:8:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc8/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:8:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc8/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:8:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet9/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:9:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet9/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:9:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet9/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:9:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet9/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:9:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet9/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:9:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet9/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:9:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet9/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:9:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet9/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:9:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet9/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:9:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet9/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:9:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet9/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:9:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet9/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:9:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet9/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:9:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet9/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:9:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet9/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:9:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet9/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:9:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet9/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:9:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet9/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:9:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet9/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:9:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet9/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:9:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet9/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:9:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet9/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:9:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet9/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:9:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet9/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:9:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet9/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:9:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet9/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:9:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet9/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:9:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet9/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:9:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet9/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:9:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet9/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:9:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet9/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:9:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet9/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:9:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet9/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:9:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet9/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:9:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet9/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:9:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet9/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:9:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet9/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:9:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet9/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:9:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet9/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:9:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet9/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:9:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet9/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:9:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet9/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:9:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet9/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:9:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet9/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:9:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet9/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:9:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet9/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:9:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet9/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:9:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet9/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:9:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + Ethernet10/1/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:10:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet10/2/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:10:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet10/3/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:10:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet10/4/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:10:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet10/5/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:10:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet10/6/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:10:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet10/7/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:10:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet10/8/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:10:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet10/9/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:10:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet10/10/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:10:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet10/11/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:10:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet10/12/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:10:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet10/13/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:10:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet10/14/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:10:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet10/15/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:10:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet10/16/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:10:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet10/17/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:10:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet10/18/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:10:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet10/19/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:10:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet10/20/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:10:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet10/21/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:10:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet10/22/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:10:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet10/23/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:10:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet10/24/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:10:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet10/25/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:10:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet10/26/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:10:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet10/27/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:10:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet10/28/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:10:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet10/29/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:10:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet10/30/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:10:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet10/31/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:10:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet10/32/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:10:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet10/33/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:10:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet10/34/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:10:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet10/35/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:10:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet10/36/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:10:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet10/37/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:10:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet10/38/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:10:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet10/39/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:10:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet10/40/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:10:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet10/41/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:10:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet10/42/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:10:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet10/43/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:10:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet10/44/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:10:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet10/45/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:10:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet10/46/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:10:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet10/47/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:10:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet10/48/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:10:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu10/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:10:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc10/0/0 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:10:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc10/0/1 + + + LineCardSku + Sonic-lc-100g-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:10:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + + + DeviceInterface + + true + 1 + Management1/1 + false + + + 1000 + + + + + DeviceInterface + + true + 1 + Ethernet3/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 2 + Ethernet3/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 3 + Ethernet3/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 4 + Ethernet3/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 5 + Ethernet3/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 6 + Ethernet3/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 7 + Ethernet3/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 8 + Ethernet3/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 9 + Ethernet3/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 10 + Ethernet3/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 11 + Ethernet3/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 12 + Ethernet3/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 13 + Ethernet3/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 14 + Ethernet3/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 15 + Ethernet3/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 16 + Ethernet3/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 17 + Ethernet3/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 18 + Ethernet3/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 19 + Ethernet3/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 20 + Ethernet3/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 21 + Ethernet3/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 22 + Ethernet3/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 23 + Ethernet3/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 24 + Ethernet3/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 25 + Ethernet3/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 26 + Ethernet3/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 27 + Ethernet3/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 28 + Ethernet3/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 29 + Ethernet3/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 30 + Ethernet3/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 31 + Ethernet3/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 32 + Ethernet3/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 33 + Ethernet3/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 34 + Ethernet3/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 35 + Ethernet3/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 36 + Ethernet3/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 37 + Ethernet3/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 38 + Ethernet3/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 39 + Ethernet3/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 40 + Ethernet3/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 41 + Ethernet3/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 42 + Ethernet3/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 43 + Ethernet3/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 44 + Ethernet3/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 45 + Ethernet3/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 46 + Ethernet3/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 47 + Ethernet3/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 48 + Ethernet3/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 49 + Ethernet3/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 50 + Ethernet3/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 51 + Ethernet3/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 52 + Ethernet3/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 53 + Ethernet3/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 54 + Ethernet3/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 55 + Ethernet3/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 56 + Ethernet3/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 57 + Ethernet3/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 58 + Ethernet3/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 59 + Ethernet3/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 60 + Ethernet3/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 61 + Ethernet3/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 62 + Ethernet3/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 63 + Ethernet3/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 64 + Ethernet3/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 65 + Ethernet3/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 66 + Ethernet3/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 67 + Ethernet3/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 68 + Ethernet3/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 69 + Ethernet3/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 70 + Ethernet3/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 71 + Ethernet3/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 72 + Ethernet3/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 73 + Ethernet3/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 74 + Ethernet3/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 75 + Ethernet3/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 76 + Ethernet3/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 77 + Ethernet3/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 78 + Ethernet3/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 79 + Ethernet3/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 80 + Ethernet3/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 81 + Ethernet3/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 82 + Ethernet3/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 83 + Ethernet3/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 84 + Ethernet3/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 85 + Ethernet3/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 86 + Ethernet3/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 87 + Ethernet3/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 88 + Ethernet3/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 89 + Ethernet3/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 90 + Ethernet3/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 91 + Ethernet3/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 92 + Ethernet3/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 93 + Ethernet3/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 94 + Ethernet3/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 95 + Ethernet3/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 96 + Ethernet3/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 97 + Ethernet3/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 98 + Ethernet3/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 99 + Ethernet3/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 100 + Ethernet3/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 101 + Ethernet3/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 102 + Ethernet3/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 103 + Ethernet3/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 104 + Ethernet3/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 105 + Ethernet3/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 106 + Ethernet3/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 107 + Ethernet3/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 108 + Ethernet3/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 109 + Ethernet4/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 110 + Ethernet4/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 111 + Ethernet4/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 112 + Ethernet4/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 113 + Ethernet4/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 114 + Ethernet4/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 115 + Ethernet4/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 116 + Ethernet4/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 117 + Ethernet4/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 118 + Ethernet4/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 119 + Ethernet4/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 120 + Ethernet4/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 121 + Ethernet4/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 122 + Ethernet4/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 123 + Ethernet4/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 124 + Ethernet4/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 125 + Ethernet4/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 126 + Ethernet4/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 127 + Ethernet4/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 128 + Ethernet4/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 129 + Ethernet4/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 130 + Ethernet4/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 131 + Ethernet4/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 132 + Ethernet4/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 133 + Ethernet4/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 134 + Ethernet4/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 135 + Ethernet4/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 136 + Ethernet4/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 137 + Ethernet4/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 138 + Ethernet4/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 139 + Ethernet4/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 140 + Ethernet4/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 141 + Ethernet4/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 142 + Ethernet4/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 143 + Ethernet4/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 144 + Ethernet4/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 145 + Ethernet4/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 146 + Ethernet4/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 147 + Ethernet4/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 148 + Ethernet4/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 149 + Ethernet4/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 150 + Ethernet4/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 151 + Ethernet4/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 152 + Ethernet4/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 153 + Ethernet4/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 154 + Ethernet4/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 155 + Ethernet4/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 156 + Ethernet4/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 157 + Ethernet4/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 158 + Ethernet4/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 159 + Ethernet4/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 160 + Ethernet4/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 161 + Ethernet4/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 162 + Ethernet4/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 163 + Ethernet4/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 164 + Ethernet4/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 165 + Ethernet4/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 166 + Ethernet4/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 167 + Ethernet4/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 168 + Ethernet4/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 169 + Ethernet4/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 170 + Ethernet4/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 171 + Ethernet4/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 172 + Ethernet4/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 173 + Ethernet4/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 174 + Ethernet4/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 175 + Ethernet4/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 176 + Ethernet4/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 177 + Ethernet4/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 178 + Ethernet4/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 179 + Ethernet4/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 180 + Ethernet4/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 181 + Ethernet4/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 182 + Ethernet4/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 183 + Ethernet4/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 184 + Ethernet4/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 185 + Ethernet4/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 186 + Ethernet4/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 187 + Ethernet4/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 188 + Ethernet4/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 189 + Ethernet4/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 190 + Ethernet4/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 191 + Ethernet4/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 192 + Ethernet4/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 193 + Ethernet4/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 194 + Ethernet4/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 195 + Ethernet4/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 196 + Ethernet4/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 197 + Ethernet4/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 198 + Ethernet4/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 199 + Ethernet4/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 200 + Ethernet4/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 201 + Ethernet4/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 202 + Ethernet4/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 203 + Ethernet4/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 204 + Ethernet4/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 205 + Ethernet4/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 206 + Ethernet4/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 207 + Ethernet4/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 208 + Ethernet4/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 209 + Ethernet4/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 210 + Ethernet4/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 211 + Ethernet4/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 212 + Ethernet4/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 213 + Ethernet4/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 214 + Ethernet4/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 215 + Ethernet4/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 216 + Ethernet4/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 217 + Ethernet4/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 218 + Ethernet4/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 219 + Ethernet4/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 220 + Ethernet4/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 221 + Ethernet4/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 222 + Ethernet4/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 223 + Ethernet4/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 224 + Ethernet4/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 225 + Ethernet4/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 226 + Ethernet4/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 227 + Ethernet4/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 228 + Ethernet4/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 229 + Ethernet4/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 230 + Ethernet4/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 231 + Ethernet4/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 232 + Ethernet4/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 233 + Ethernet4/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 234 + Ethernet4/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 235 + Ethernet4/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 236 + Ethernet4/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 237 + Ethernet4/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 238 + Ethernet4/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 239 + Ethernet4/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 240 + Ethernet4/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 241 + Ethernet4/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 242 + Ethernet4/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 243 + Ethernet4/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 244 + Ethernet4/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 245 + Ethernet4/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 246 + Ethernet4/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 247 + Ethernet4/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 248 + Ethernet4/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 249 + Ethernet4/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 250 + Ethernet4/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 251 + Ethernet4/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 252 + Ethernet4/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 253 + Ethernet5/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 254 + Ethernet5/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 255 + Ethernet5/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 256 + Ethernet5/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 257 + Ethernet5/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 258 + Ethernet5/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 259 + Ethernet5/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 260 + Ethernet5/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 261 + Ethernet5/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 262 + Ethernet5/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 263 + Ethernet5/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 264 + Ethernet5/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 265 + Ethernet5/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 266 + Ethernet5/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 267 + Ethernet5/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 268 + Ethernet5/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 269 + Ethernet5/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 270 + Ethernet5/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 271 + Ethernet5/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 272 + Ethernet5/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 273 + Ethernet5/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 274 + Ethernet5/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 275 + Ethernet5/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 276 + Ethernet5/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 277 + Ethernet5/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 278 + Ethernet5/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 279 + Ethernet5/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 280 + Ethernet5/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 281 + Ethernet5/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 282 + Ethernet5/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 283 + Ethernet5/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 284 + Ethernet5/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 285 + Ethernet5/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 286 + Ethernet5/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 287 + Ethernet5/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 288 + Ethernet5/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 289 + Ethernet5/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 290 + Ethernet5/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 291 + Ethernet5/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 292 + Ethernet5/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 293 + Ethernet5/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 294 + Ethernet5/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 295 + Ethernet5/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 296 + Ethernet5/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 297 + Ethernet5/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 298 + Ethernet5/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 299 + Ethernet5/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 300 + Ethernet5/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 301 + Ethernet5/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 302 + Ethernet5/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 303 + Ethernet5/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 304 + Ethernet5/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 305 + Ethernet5/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 306 + Ethernet5/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 307 + Ethernet5/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 308 + Ethernet5/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 309 + Ethernet5/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 310 + Ethernet5/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 311 + Ethernet5/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 312 + Ethernet5/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 313 + Ethernet5/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 314 + Ethernet5/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 315 + Ethernet5/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 316 + Ethernet5/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 317 + Ethernet5/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 318 + Ethernet5/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 319 + Ethernet5/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 320 + Ethernet5/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 321 + Ethernet5/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 322 + Ethernet5/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 323 + Ethernet5/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 324 + Ethernet5/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 325 + Ethernet5/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 326 + Ethernet5/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 327 + Ethernet5/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 328 + Ethernet5/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 329 + Ethernet5/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 330 + Ethernet5/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 331 + Ethernet5/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 332 + Ethernet5/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 333 + Ethernet5/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 334 + Ethernet5/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 335 + Ethernet5/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 336 + Ethernet5/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 337 + Ethernet5/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 338 + Ethernet5/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 339 + Ethernet5/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 340 + Ethernet5/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 341 + Ethernet5/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 342 + Ethernet5/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 343 + Ethernet5/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 344 + Ethernet5/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 345 + Ethernet5/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 346 + Ethernet5/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 347 + Ethernet5/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 348 + Ethernet5/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 349 + Ethernet5/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 350 + Ethernet5/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 351 + Ethernet5/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 352 + Ethernet5/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 353 + Ethernet5/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 354 + Ethernet5/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 355 + Ethernet5/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 356 + Ethernet5/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 357 + Ethernet5/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 358 + Ethernet5/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 359 + Ethernet5/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 360 + Ethernet5/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 361 + Ethernet5/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 362 + Ethernet5/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 363 + Ethernet5/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 364 + Ethernet5/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 365 + Ethernet5/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 366 + Ethernet5/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 367 + Ethernet5/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 368 + Ethernet5/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 369 + Ethernet5/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 370 + Ethernet5/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 371 + Ethernet5/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 372 + Ethernet5/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 373 + Ethernet5/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 374 + Ethernet5/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 375 + Ethernet5/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 376 + Ethernet5/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 377 + Ethernet5/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 378 + Ethernet5/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 379 + Ethernet5/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 380 + Ethernet5/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 381 + Ethernet5/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 382 + Ethernet5/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 383 + Ethernet5/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 384 + Ethernet5/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 385 + Ethernet5/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 386 + Ethernet5/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 387 + Ethernet5/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 388 + Ethernet5/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 389 + Ethernet5/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 390 + Ethernet5/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 391 + Ethernet5/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 392 + Ethernet5/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 393 + Ethernet5/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 394 + Ethernet5/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 395 + Ethernet5/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 396 + Ethernet5/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 397 + Ethernet6/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 398 + Ethernet6/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 399 + Ethernet6/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 400 + Ethernet6/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 401 + Ethernet6/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 402 + Ethernet6/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 403 + Ethernet6/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 404 + Ethernet6/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 405 + Ethernet6/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 406 + Ethernet6/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 407 + Ethernet6/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 408 + Ethernet6/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 409 + Ethernet6/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 410 + Ethernet6/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 411 + Ethernet6/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 412 + Ethernet6/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 413 + Ethernet6/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 414 + Ethernet6/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 415 + Ethernet6/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 416 + Ethernet6/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 417 + Ethernet6/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 418 + Ethernet6/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 419 + Ethernet6/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 420 + Ethernet6/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 421 + Ethernet6/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 422 + Ethernet6/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 423 + Ethernet6/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 424 + Ethernet6/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 425 + Ethernet6/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 426 + Ethernet6/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 427 + Ethernet6/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 428 + Ethernet6/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 429 + Ethernet6/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 430 + Ethernet6/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 431 + Ethernet6/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 432 + Ethernet6/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 433 + Ethernet6/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 434 + Ethernet6/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 435 + Ethernet6/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 436 + Ethernet6/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 437 + Ethernet6/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 438 + Ethernet6/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 439 + Ethernet6/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 440 + Ethernet6/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 441 + Ethernet6/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 442 + Ethernet6/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 443 + Ethernet6/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 444 + Ethernet6/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 445 + Ethernet6/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 446 + Ethernet6/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 447 + Ethernet6/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 448 + Ethernet6/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 449 + Ethernet6/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 450 + Ethernet6/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 451 + Ethernet6/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 452 + Ethernet6/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 453 + Ethernet6/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 454 + Ethernet6/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 455 + Ethernet6/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 456 + Ethernet6/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 457 + Ethernet6/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 458 + Ethernet6/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 459 + Ethernet6/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 460 + Ethernet6/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 461 + Ethernet6/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 462 + Ethernet6/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 463 + Ethernet6/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 464 + Ethernet6/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 465 + Ethernet6/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 466 + Ethernet6/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 467 + Ethernet6/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 468 + Ethernet6/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 469 + Ethernet6/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 470 + Ethernet6/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 471 + Ethernet6/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 472 + Ethernet6/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 473 + Ethernet6/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 474 + Ethernet6/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 475 + Ethernet6/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 476 + Ethernet6/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 477 + Ethernet6/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 478 + Ethernet6/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 479 + Ethernet6/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 480 + Ethernet6/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 481 + Ethernet6/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 482 + Ethernet6/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 483 + Ethernet6/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 484 + Ethernet6/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 485 + Ethernet6/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 486 + Ethernet6/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 487 + Ethernet6/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 488 + Ethernet6/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 489 + Ethernet6/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 490 + Ethernet6/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 491 + Ethernet6/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 492 + Ethernet6/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 493 + Ethernet6/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 494 + Ethernet6/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 495 + Ethernet6/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 496 + Ethernet6/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 497 + Ethernet6/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 498 + Ethernet6/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 499 + Ethernet6/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 500 + Ethernet6/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 501 + Ethernet6/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 502 + Ethernet6/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 503 + Ethernet6/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 504 + Ethernet6/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 505 + Ethernet6/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 506 + Ethernet6/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 507 + Ethernet6/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 508 + Ethernet6/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 509 + Ethernet6/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 510 + Ethernet6/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 511 + Ethernet6/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 512 + Ethernet6/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 513 + Ethernet6/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 514 + Ethernet6/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 515 + Ethernet6/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 516 + Ethernet6/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 517 + Ethernet6/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 518 + Ethernet6/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 519 + Ethernet6/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 520 + Ethernet6/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 521 + Ethernet6/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 522 + Ethernet6/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 523 + Ethernet6/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 524 + Ethernet6/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 525 + Ethernet6/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 526 + Ethernet6/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 527 + Ethernet6/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 528 + Ethernet6/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 529 + Ethernet6/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 530 + Ethernet6/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 531 + Ethernet6/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 532 + Ethernet6/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 533 + Ethernet6/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 534 + Ethernet6/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 535 + Ethernet6/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 536 + Ethernet6/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 537 + Ethernet6/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 538 + Ethernet6/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 539 + Ethernet6/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 540 + Ethernet6/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 541 + Ethernet7/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 542 + Ethernet7/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 543 + Ethernet7/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 544 + Ethernet7/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 545 + Ethernet7/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 546 + Ethernet7/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 547 + Ethernet7/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 548 + Ethernet7/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 549 + Ethernet7/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 550 + Ethernet7/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 551 + Ethernet7/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 552 + Ethernet7/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 553 + Ethernet7/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 554 + Ethernet7/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 555 + Ethernet7/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 556 + Ethernet7/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 557 + Ethernet7/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 558 + Ethernet7/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 559 + Ethernet7/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 560 + Ethernet7/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 561 + Ethernet7/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 562 + Ethernet7/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 563 + Ethernet7/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 564 + Ethernet7/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 565 + Ethernet7/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 566 + Ethernet7/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 567 + Ethernet7/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 568 + Ethernet7/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 569 + Ethernet7/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 570 + Ethernet7/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 571 + Ethernet7/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 572 + Ethernet7/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 573 + Ethernet7/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 574 + Ethernet7/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 575 + Ethernet7/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 576 + Ethernet7/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 577 + Ethernet7/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 578 + Ethernet7/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 579 + Ethernet7/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 580 + Ethernet7/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 581 + Ethernet7/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 582 + Ethernet7/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 583 + Ethernet7/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 584 + Ethernet7/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 585 + Ethernet7/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 586 + Ethernet7/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 587 + Ethernet7/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 588 + Ethernet7/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 589 + Ethernet7/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 590 + Ethernet7/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 591 + Ethernet7/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 592 + Ethernet7/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 593 + Ethernet7/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 594 + Ethernet7/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 595 + Ethernet7/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 596 + Ethernet7/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 597 + Ethernet7/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 598 + Ethernet7/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 599 + Ethernet7/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 600 + Ethernet7/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 601 + Ethernet7/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 602 + Ethernet7/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 603 + Ethernet7/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 604 + Ethernet7/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 605 + Ethernet7/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 606 + Ethernet7/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 607 + Ethernet7/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 608 + Ethernet7/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 609 + Ethernet7/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 610 + Ethernet7/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 611 + Ethernet7/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 612 + Ethernet7/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 613 + Ethernet7/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 614 + Ethernet7/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 615 + Ethernet7/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 616 + Ethernet7/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 617 + Ethernet7/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 618 + Ethernet7/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 619 + Ethernet7/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 620 + Ethernet7/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 621 + Ethernet7/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 622 + Ethernet7/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 623 + Ethernet7/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 624 + Ethernet7/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 625 + Ethernet7/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 626 + Ethernet7/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 627 + Ethernet7/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 628 + Ethernet7/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 629 + Ethernet7/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 630 + Ethernet7/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 631 + Ethernet7/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 632 + Ethernet7/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 633 + Ethernet7/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 634 + Ethernet7/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 635 + Ethernet7/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 636 + Ethernet7/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 637 + Ethernet7/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 638 + Ethernet7/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 639 + Ethernet7/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 640 + Ethernet7/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 641 + Ethernet7/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 642 + Ethernet7/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 643 + Ethernet7/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 644 + Ethernet7/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 645 + Ethernet7/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 646 + Ethernet7/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 647 + Ethernet7/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 648 + Ethernet7/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 649 + Ethernet7/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 650 + Ethernet7/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 651 + Ethernet7/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 652 + Ethernet7/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 653 + Ethernet7/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 654 + Ethernet7/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 655 + Ethernet7/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 656 + Ethernet7/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 657 + Ethernet7/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 658 + Ethernet7/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 659 + Ethernet7/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 660 + Ethernet7/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 661 + Ethernet7/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 662 + Ethernet7/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 663 + Ethernet7/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 664 + Ethernet7/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 665 + Ethernet7/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 666 + Ethernet7/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 667 + Ethernet7/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 668 + Ethernet7/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 669 + Ethernet7/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 670 + Ethernet7/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 671 + Ethernet7/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 672 + Ethernet7/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 673 + Ethernet7/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 674 + Ethernet7/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 675 + Ethernet7/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 676 + Ethernet7/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 677 + Ethernet7/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 678 + Ethernet7/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 679 + Ethernet7/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 680 + Ethernet7/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 681 + Ethernet7/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 682 + Ethernet7/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 683 + Ethernet7/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 684 + Ethernet7/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 685 + Ethernet8/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 686 + Ethernet8/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 687 + Ethernet8/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 688 + Ethernet8/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 689 + Ethernet8/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 690 + Ethernet8/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 691 + Ethernet8/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 692 + Ethernet8/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 693 + Ethernet8/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 694 + Ethernet8/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 695 + Ethernet8/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 696 + Ethernet8/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 697 + Ethernet8/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 698 + Ethernet8/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 699 + Ethernet8/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 700 + Ethernet8/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 701 + Ethernet8/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 702 + Ethernet8/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 703 + Ethernet8/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 704 + Ethernet8/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 705 + Ethernet8/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 706 + Ethernet8/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 707 + Ethernet8/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 708 + Ethernet8/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 709 + Ethernet8/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 710 + Ethernet8/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 711 + Ethernet8/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 712 + Ethernet8/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 713 + Ethernet8/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 714 + Ethernet8/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 715 + Ethernet8/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 716 + Ethernet8/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 717 + Ethernet8/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 718 + Ethernet8/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 719 + Ethernet8/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 720 + Ethernet8/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 721 + Ethernet8/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 722 + Ethernet8/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 723 + Ethernet8/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 724 + Ethernet8/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 725 + Ethernet8/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 726 + Ethernet8/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 727 + Ethernet8/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 728 + Ethernet8/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 729 + Ethernet8/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 730 + Ethernet8/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 731 + Ethernet8/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 732 + Ethernet8/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 733 + Ethernet8/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 734 + Ethernet8/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 735 + Ethernet8/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 736 + Ethernet8/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 737 + Ethernet8/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 738 + Ethernet8/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 739 + Ethernet8/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 740 + Ethernet8/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 741 + Ethernet8/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 742 + Ethernet8/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 743 + Ethernet8/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 744 + Ethernet8/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 745 + Ethernet8/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 746 + Ethernet8/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 747 + Ethernet8/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 748 + Ethernet8/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 749 + Ethernet8/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 750 + Ethernet8/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 751 + Ethernet8/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 752 + Ethernet8/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 753 + Ethernet8/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 754 + Ethernet8/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 755 + Ethernet8/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 756 + Ethernet8/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 757 + Ethernet8/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 758 + Ethernet8/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 759 + Ethernet8/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 760 + Ethernet8/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 761 + Ethernet8/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 762 + Ethernet8/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 763 + Ethernet8/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 764 + Ethernet8/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 765 + Ethernet8/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 766 + Ethernet8/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 767 + Ethernet8/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 768 + Ethernet8/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 769 + Ethernet8/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 770 + Ethernet8/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 771 + Ethernet8/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 772 + Ethernet8/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 773 + Ethernet8/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 774 + Ethernet8/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 775 + Ethernet8/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 776 + Ethernet8/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 777 + Ethernet8/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 778 + Ethernet8/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 779 + Ethernet8/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 780 + Ethernet8/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 781 + Ethernet8/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 782 + Ethernet8/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 783 + Ethernet8/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 784 + Ethernet8/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 785 + Ethernet8/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 786 + Ethernet8/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 787 + Ethernet8/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 788 + Ethernet8/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 789 + Ethernet8/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 790 + Ethernet8/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 791 + Ethernet8/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 792 + Ethernet8/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 793 + Ethernet8/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 794 + Ethernet8/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 795 + Ethernet8/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 796 + Ethernet8/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 797 + Ethernet8/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 798 + Ethernet8/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 799 + Ethernet8/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 800 + Ethernet8/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 801 + Ethernet8/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 802 + Ethernet8/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 803 + Ethernet8/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 804 + Ethernet8/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 805 + Ethernet8/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 806 + Ethernet8/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 807 + Ethernet8/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 808 + Ethernet8/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 809 + Ethernet8/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 810 + Ethernet8/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 811 + Ethernet8/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 812 + Ethernet8/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 813 + Ethernet8/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 814 + Ethernet8/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 815 + Ethernet8/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 816 + Ethernet8/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 817 + Ethernet8/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 818 + Ethernet8/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 819 + Ethernet8/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 820 + Ethernet8/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 821 + Ethernet8/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 822 + Ethernet8/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 823 + Ethernet8/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 824 + Ethernet8/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 825 + Ethernet8/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 826 + Ethernet8/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 827 + Ethernet8/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 828 + Ethernet8/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 829 + Ethernet9/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 830 + Ethernet9/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 831 + Ethernet9/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 832 + Ethernet9/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 833 + Ethernet9/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 834 + Ethernet9/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 835 + Ethernet9/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 836 + Ethernet9/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 837 + Ethernet9/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 838 + Ethernet9/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 839 + Ethernet9/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 840 + Ethernet9/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 841 + Ethernet9/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 842 + Ethernet9/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 843 + Ethernet9/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 844 + Ethernet9/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 845 + Ethernet9/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 846 + Ethernet9/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 847 + Ethernet9/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 848 + Ethernet9/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 849 + Ethernet9/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 850 + Ethernet9/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 851 + Ethernet9/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 852 + Ethernet9/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 853 + Ethernet9/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 854 + Ethernet9/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 855 + Ethernet9/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 856 + Ethernet9/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 857 + Ethernet9/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 858 + Ethernet9/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 859 + Ethernet9/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 860 + Ethernet9/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 861 + Ethernet9/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 862 + Ethernet9/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 863 + Ethernet9/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 864 + Ethernet9/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 865 + Ethernet9/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 866 + Ethernet9/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 867 + Ethernet9/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 868 + Ethernet9/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 869 + Ethernet9/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 870 + Ethernet9/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 871 + Ethernet9/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 872 + Ethernet9/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 873 + Ethernet9/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 874 + Ethernet9/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 875 + Ethernet9/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 876 + Ethernet9/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 877 + Ethernet9/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 878 + Ethernet9/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 879 + Ethernet9/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 880 + Ethernet9/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 881 + Ethernet9/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 882 + Ethernet9/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 883 + Ethernet9/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 884 + Ethernet9/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 885 + Ethernet9/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 886 + Ethernet9/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 887 + Ethernet9/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 888 + Ethernet9/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 889 + Ethernet9/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 890 + Ethernet9/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 891 + Ethernet9/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 892 + Ethernet9/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 893 + Ethernet9/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 894 + Ethernet9/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 895 + Ethernet9/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 896 + Ethernet9/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 897 + Ethernet9/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 898 + Ethernet9/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 899 + Ethernet9/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 900 + Ethernet9/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 901 + Ethernet9/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 902 + Ethernet9/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 903 + Ethernet9/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 904 + Ethernet9/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 905 + Ethernet9/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 906 + Ethernet9/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 907 + Ethernet9/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 908 + Ethernet9/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 909 + Ethernet9/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 910 + Ethernet9/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 911 + Ethernet9/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 912 + Ethernet9/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 913 + Ethernet9/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 914 + Ethernet9/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 915 + Ethernet9/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 916 + Ethernet9/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 917 + Ethernet9/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 918 + Ethernet9/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 919 + Ethernet9/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 920 + Ethernet9/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 921 + Ethernet9/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 922 + Ethernet9/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 923 + Ethernet9/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 924 + Ethernet9/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 925 + Ethernet9/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 926 + Ethernet9/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 927 + Ethernet9/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 928 + Ethernet9/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 929 + Ethernet9/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 930 + Ethernet9/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 931 + Ethernet9/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 932 + Ethernet9/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 933 + Ethernet9/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 934 + Ethernet9/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 935 + Ethernet9/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 936 + Ethernet9/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 937 + Ethernet9/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 938 + Ethernet9/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 939 + Ethernet9/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 940 + Ethernet9/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 941 + Ethernet9/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 942 + Ethernet9/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 943 + Ethernet9/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 944 + Ethernet9/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 945 + Ethernet9/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 946 + Ethernet9/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 947 + Ethernet9/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 948 + Ethernet9/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 949 + Ethernet9/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 950 + Ethernet9/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 951 + Ethernet9/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 952 + Ethernet9/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 953 + Ethernet9/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 954 + Ethernet9/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 955 + Ethernet9/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 956 + Ethernet9/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 957 + Ethernet9/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 958 + Ethernet9/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 959 + Ethernet9/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 960 + Ethernet9/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 961 + Ethernet9/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 962 + Ethernet9/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 963 + Ethernet9/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 964 + Ethernet9/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 965 + Ethernet9/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 966 + Ethernet9/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 967 + Ethernet9/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 968 + Ethernet9/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 969 + Ethernet9/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 970 + Ethernet9/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 971 + Ethernet9/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 972 + Ethernet9/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 973 + Ethernet10/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 974 + Ethernet10/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 975 + Ethernet10/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 976 + Ethernet10/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 977 + Ethernet10/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 978 + Ethernet10/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 979 + Ethernet10/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 980 + Ethernet10/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 981 + Ethernet10/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 982 + Ethernet10/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 983 + Ethernet10/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 984 + Ethernet10/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 985 + Ethernet10/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 986 + Ethernet10/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 987 + Ethernet10/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 988 + Ethernet10/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 989 + Ethernet10/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 990 + Ethernet10/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 991 + Ethernet10/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 992 + Ethernet10/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 993 + Ethernet10/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 994 + Ethernet10/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 995 + Ethernet10/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 996 + Ethernet10/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 997 + Ethernet10/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 998 + Ethernet10/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 999 + Ethernet10/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1000 + Ethernet10/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1001 + Ethernet10/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1002 + Ethernet10/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1003 + Ethernet10/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1004 + Ethernet10/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1005 + Ethernet10/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1006 + Ethernet10/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1007 + Ethernet10/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1008 + Ethernet10/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1009 + Ethernet10/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1010 + Ethernet10/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1011 + Ethernet10/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1012 + Ethernet10/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1013 + Ethernet10/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1014 + Ethernet10/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1015 + Ethernet10/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1016 + Ethernet10/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1017 + Ethernet10/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1018 + Ethernet10/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1019 + Ethernet10/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1020 + Ethernet10/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1021 + Ethernet10/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1022 + Ethernet10/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1023 + Ethernet10/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1024 + Ethernet10/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1025 + Ethernet10/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1026 + Ethernet10/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1027 + Ethernet10/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1028 + Ethernet10/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1029 + Ethernet10/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1030 + Ethernet10/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1031 + Ethernet10/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1032 + Ethernet10/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1033 + Ethernet10/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1034 + Ethernet10/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1035 + Ethernet10/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1036 + Ethernet10/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1037 + Ethernet10/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1038 + Ethernet10/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1039 + Ethernet10/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1040 + Ethernet10/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1041 + Ethernet10/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1042 + Ethernet10/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1043 + Ethernet10/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1044 + Ethernet10/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1045 + Ethernet10/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1046 + Ethernet10/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1047 + Ethernet10/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1048 + Ethernet10/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1049 + Ethernet10/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1050 + Ethernet10/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1051 + Ethernet10/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1052 + Ethernet10/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1053 + Ethernet10/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1054 + Ethernet10/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1055 + Ethernet10/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1056 + Ethernet10/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1057 + Ethernet10/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1058 + Ethernet10/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1059 + Ethernet10/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1060 + Ethernet10/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1061 + Ethernet10/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1062 + Ethernet10/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1063 + Ethernet10/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1064 + Ethernet10/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1065 + Ethernet10/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1066 + Ethernet10/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1067 + Ethernet10/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1068 + Ethernet10/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1069 + Ethernet10/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1070 + Ethernet10/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1071 + Ethernet10/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1072 + Ethernet10/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1073 + Ethernet10/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1074 + Ethernet10/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1075 + Ethernet10/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1076 + Ethernet10/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1077 + Ethernet10/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1078 + Ethernet10/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1079 + Ethernet10/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1080 + Ethernet10/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1081 + Ethernet10/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1082 + Ethernet10/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1083 + Ethernet10/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1084 + Ethernet10/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1085 + Ethernet10/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1086 + Ethernet10/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1087 + Ethernet10/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1088 + Ethernet10/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1089 + Ethernet10/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1090 + Ethernet10/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1091 + Ethernet10/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1092 + Ethernet10/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1093 + Ethernet10/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1094 + Ethernet10/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1095 + Ethernet10/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1096 + Ethernet10/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1097 + Ethernet10/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1098 + Ethernet10/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1099 + Ethernet10/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1100 + Ethernet10/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1101 + Ethernet10/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1102 + Ethernet10/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1103 + Ethernet10/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1104 + Ethernet10/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1105 + Ethernet10/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1106 + Ethernet10/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1107 + Ethernet10/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1108 + Ethernet10/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1109 + Ethernet10/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1110 + Ethernet10/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1111 + Ethernet10/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1112 + Ethernet10/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1113 + Ethernet10/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1114 + Ethernet10/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1115 + Ethernet10/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1116 + Ethernet10/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + + + DeviceInterface + + true + 1 + power1/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 2 + power1/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 3 + power2/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 4 + power2/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 5 + power3/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 6 + power3/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 7 + power4/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 8 + power4/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 9 + power7/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 10 + power7/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 11 + power8/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 12 + power8/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 13 + power9/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 14 + power9/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 15 + power10/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 16 + power10/1 + false + + + 0 + + C19 + C19 + true + + + + + + DeviceInterface + + true + 1 + console + false + console + + 9600 + false + + + + DeviceInterface + + false + 2 + logical1 + false + logical1 + + 9600 + true + 1 + + + DeviceInterface + + false + 3 + logical2 + false + logical2 + + 9600 + true + 2 + + + DeviceInterface + + false + 4 + logical3 + false + logical3 + + 9600 + true + 3 + + + DeviceInterface + + false + 5 + logical4 + false + logical4 + + 9600 + true + 4 + + + DeviceInterface + + false + 6 + logical5 + false + logical5 + + 9600 + true + 5 + + + DeviceInterface + + false + 7 + logical6 + false + logical6 + + 9600 + true + 6 + + + DeviceInterface + + false + 8 + logical7 + false + logical7 + + 9600 + true + 7 + + + DeviceInterface + + false + 9 + logical8 + false + logical8 + + 9600 + true + 8 + + + DeviceInterface + + false + 10 + logical9 + false + logical9 + + 9600 + true + 9 + + + DeviceInterface + + false + 11 + logical10 + false + logical10 + + 9600 + true + 10 + + + DeviceInterface + + false + 12 + logical11 + false + logical11 + + 9600 + true + 11 + + + DeviceInterface + + false + 13 + logical12 + false + logical12 + + 9600 + true + 12 + + + + Arista + + + + + + + + + + + + str-sonic-lc06-ASIC00 + + + PortChannelInterface + PortChannel1049 + Eth0;Eth4 + + + + PortChannelInterface + PortChannel1050 + Eth8;Eth12 + + + + PortChannelInterface + PortChannel1051 + Eth16;Eth20 + + + + PortChannelInterface + PortChannel1052 + Eth24;Eth28 + + + + PortChannelInterface + PortChannel1053 + Eth36;Eth32 + + + + PortChannelInterface + PortChannel1054 + Eth40;Eth44 + + + + PortChannelInterface + PortChannel1056 + Eth52;Eth56 + + + + PortChannelInterface + PortChannel1058 + Eth64;Eth68 + + + + + + + + IPInterface + VoqInband + Ethernet-IB0 + 10.241.88.4/32 + + + IPInterface + v6VoqInband + Ethernet-IB0 + 2a01:111:e210:5e:0:a:f158:400/128 + + + IPInterface + + PortChannel1049 + 10.0.0.128/31 + + + IPInterface + + PortChannel1049 + fc00::101/126 + + + IPInterface + + PortChannel1050 + 10.0.0.132/31 + + + IPInterface + + PortChannel1050 + fc00::109/126 + + + IPInterface + + PortChannel1051 + 10.0.0.136/31 + + + IPInterface + + PortChannel1051 + fc00::111/126 + + + IPInterface + + PortChannel1052 + 10.0.0.140/31 + + + IPInterface + + PortChannel1052 + fc00::119/126 + + + IPInterface + + PortChannel1053 + 10.0.0.144/31 + + + IPInterface + + PortChannel1053 + fc00::121/126 + + + IPInterface + + PortChannel1054 + 10.0.0.148/31 + + + IPInterface + + PortChannel1054 + fc00::129/126 + + + IPInterface + + PortChannel1056 + 10.0.0.152/31 + + + IPInterface + + PortChannel1056 + fc00::131/126 + + + IPInterface + + PortChannel1058 + 10.0.0.156/31 + + + IPInterface + + PortChannel1058 + fc00::139/126 + + + + + + + + + + + + + LoopbackInterface + HostIP + Loopback0 + + 10.2.0.4/32 + + 10.2.0.4/32 + + + LoopbackInterface + HostIP1 + Loopback0 + + fc00:23::1/128 + + fc00:23::1/128 + + + + + ManagementInterface + ManagementIP + Management1/1 + + 10.3.146.74/24 + + 10.3.146.74/24 + + + + ManagementInterface + v6ManagementIP + Management1/1 + + 2a01:111:e210:3000::a03:924a/64 + + 2a01:111:e210:3000::a03:924a/64 + + + + + + + + str-sonic-lc06 + + + + + + + + + + + + + + + ARISTA33T1:Ethernet1;str-sonic-lc06-ASIC00:Eth0 + + + EndItfKey + + Ethernet6/1/1#0:6:0:1#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA33T1:Ethernet1;str-sonic:Ethernet6/1/1 + + + ARISTA33T1:Ethernet2;str-sonic-lc06-ASIC00:Eth4 + + + EndItfKey + + Ethernet6/2/1#0:6:0:2#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA33T1:Ethernet2;str-sonic:Ethernet6/2/1 + + + ARISTA35T1:Ethernet1;str-sonic-lc06-ASIC00:Eth8 + + + EndItfKey + + Ethernet6/3/1#0:6:0:3#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA35T1:Ethernet1;str-sonic:Ethernet6/3/1 + + + ARISTA35T1:Ethernet2;str-sonic-lc06-ASIC00:Eth12 + + + EndItfKey + + Ethernet6/4/1#0:6:0:4#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA35T1:Ethernet2;str-sonic:Ethernet6/4/1 + + + ARISTA37T1:Ethernet1;str-sonic-lc06-ASIC00:Eth16 + + + EndItfKey + + Ethernet6/5/1#0:6:0:5#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA37T1:Ethernet1;str-sonic:Ethernet6/5/1 + + + ARISTA37T1:Ethernet2;str-sonic-lc06-ASIC00:Eth20 + + + EndItfKey + + Ethernet6/6/1#0:6:0:6#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA37T1:Ethernet2;str-sonic:Ethernet6/6/1 + + + ARISTA39T1:Ethernet1;str-sonic-lc06-ASIC00:Eth24 + + + EndItfKey + + Ethernet6/7/1#0:6:0:7#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA39T1:Ethernet1;str-sonic:Ethernet6/7/1 + + + ARISTA39T1:Ethernet2;str-sonic-lc06-ASIC00:Eth28 + + + EndItfKey + + Ethernet6/8/1#0:6:0:8#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA39T1:Ethernet2;str-sonic:Ethernet6/8/1 + + + ARISTA41T1:Ethernet1;str-sonic-lc06-ASIC00:Eth32 + + + EndItfKey + + Ethernet6/9/1#0:6:0:9#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA41T1:Ethernet1;str-sonic:Ethernet6/9/1 + + + ARISTA41T1:Ethernet2;str-sonic-lc06-ASIC00:Eth36 + + + EndItfKey + + Ethernet6/10/1#0:6:0:10#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA41T1:Ethernet2;str-sonic:Ethernet6/10/1 + + + ARISTA43T1:Ethernet1;str-sonic-lc06-ASIC00:Eth40 + + + EndItfKey + + Ethernet6/11/1#0:6:0:11#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA43T1:Ethernet1;str-sonic:Ethernet6/11/1 + + + ARISTA43T1:Ethernet2;str-sonic-lc06-ASIC00:Eth44 + + + EndItfKey + + Ethernet6/12/1#0:6:0:12#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA43T1:Ethernet2;str-sonic:Ethernet6/12/1 + + + ARISTA45T1:Ethernet1;str-sonic-lc06-ASIC00:Eth48 + + + EndItfKey + + Ethernet6/13/1#0:6:0:13#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA45T1:Ethernet1;str-sonic:Ethernet6/13/1 + + + ARISTA47T1:Ethernet1;str-sonic-lc06-ASIC00:Eth52 + + + EndItfKey + + Ethernet6/14/1#0:6:0:14#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA47T1:Ethernet1;str-sonic:Ethernet6/14/1 + + + ARISTA47T1:Ethernet2;str-sonic-lc06-ASIC00:Eth56 + + + EndItfKey + + Ethernet6/15/1#0:6:0:15#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA47T1:Ethernet2;str-sonic:Ethernet6/15/1 + + + ARISTA49T1:Ethernet1;str-sonic-lc06-ASIC00:Eth60 + + + EndItfKey + + Ethernet6/16/1#0:6:0:16#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA49T1:Ethernet1;str-sonic:Ethernet6/16/1 + + + ARISTA50T1:Ethernet1;str-sonic-lc06-ASIC00:Eth64 + + + EndItfKey + + Ethernet6/17/1#0:6:0:17#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA50T1:Ethernet1;str-sonic:Ethernet6/17/1 + + + ARISTA50T1:Ethernet2;str-sonic-lc06-ASIC00:Eth68 + + + EndItfKey + + Ethernet6/18/1#0:6:0:18#1 + + + StartItfKey + + Ethernet2#0:1:0:2#1 + + + ARISTA50T1:Ethernet2;str-sonic:Ethernet6/18/1 + + + ARISTA51T1:Ethernet1;str-sonic-lc06-ASIC00:Eth72 + + + EndItfKey + + Ethernet6/19/1#0:6:0:19#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA51T1:Ethernet1;str-sonic:Ethernet6/19/1 + + + ARISTA52T1:Ethernet1;str-sonic-lc06-ASIC00:Eth76 + + + EndItfKey + + Ethernet6/20/1#0:6:0:20#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA52T1:Ethernet1;str-sonic:Ethernet6/20/1 + + + ARISTA53T1:Ethernet1;str-sonic-lc06-ASIC00:Eth80 + + + EndItfKey + + Ethernet6/21/1#0:6:0:21#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA53T1:Ethernet1;str-sonic:Ethernet6/21/1 + + + ARISTA54T1:Ethernet1;str-sonic-lc06-ASIC00:Eth84 + + + EndItfKey + + Ethernet6/22/1#0:6:0:22#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA54T1:Ethernet1;str-sonic:Ethernet6/22/1 + + + ARISTA55T1:Ethernet1;str-sonic-lc06-ASIC00:Eth88 + + + EndItfKey + + Ethernet6/23/1#0:6:0:23#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA55T1:Ethernet1;str-sonic:Ethernet6/23/1 + + + ARISTA56T1:Ethernet1;str-sonic-lc06-ASIC00:Eth92 + + + EndItfKey + + Ethernet6/24/1#0:6:0:24#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA56T1:Ethernet1;str-sonic:Ethernet6/24/1 + + + ARISTA57T1:Ethernet1;str-sonic-lc06-ASIC00:Eth96 + + + EndItfKey + + Ethernet6/25/1#0:6:0:25#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA57T1:Ethernet1;str-sonic:Ethernet6/25/1 + + + ARISTA58T1:Ethernet1;str-sonic-lc06-ASIC00:Eth100 + + + EndItfKey + + Ethernet6/26/1#0:6:0:26#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA58T1:Ethernet1;str-sonic:Ethernet6/26/1 + + + ARISTA59T1:Ethernet1;str-sonic-lc06-ASIC00:Eth104 + + + EndItfKey + + Ethernet6/27/1#0:6:0:27#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA59T1:Ethernet1;str-sonic:Ethernet6/27/1 + + + ARISTA60T1:Ethernet1;str-sonic-lc06-ASIC00:Eth108 + + + EndItfKey + + Ethernet6/28/1#0:6:0:28#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA60T1:Ethernet1;str-sonic:Ethernet6/28/1 + + + ARISTA61T1:Ethernet1;str-sonic-lc06-ASIC00:Eth112 + + + EndItfKey + + Ethernet6/29/1#0:6:0:29#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA61T1:Ethernet1;str-sonic:Ethernet6/29/1 + + + ARISTA62T1:Ethernet1;str-sonic-lc06-ASIC00:Eth116 + + + EndItfKey + + Ethernet6/30/1#0:6:0:30#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA62T1:Ethernet1;str-sonic:Ethernet6/30/1 + + + ARISTA63T1:Ethernet1;str-sonic-lc06-ASIC00:Eth120 + + + EndItfKey + + Ethernet6/31/1#0:6:0:31#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA63T1:Ethernet1;str-sonic:Ethernet6/31/1 + + + ARISTA64T1:Ethernet1;str-sonic-lc06-ASIC00:Eth124 + + + EndItfKey + + Ethernet6/32/1#0:6:0:32#1 + + + StartItfKey + + Ethernet1#0:1:0:1#1 + + + ARISTA64T1:Ethernet1;str-sonic:Ethernet6/32/1 + + + + + + + + str-sonic-lc03 + + + FirmwareProfile + + SONiC-Sonic-400g-lc-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 3 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + True + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc03-ASIC00;str-sonic-lc03-ASIC01 + + + SiblingLineCards + + str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc04 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 4 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc04-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc05 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 5 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc05-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc07 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 7 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc07-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc08 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 8 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc08-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc09 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 9 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc09-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc10 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 10 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc10-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc06;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc06-ASIC00 + + + ForwardingMethod + + VoQ + + + SubRole + + FrontEnd + + + AsicSwitchId + + 20 + + + ProviderLineCard + + str-sonic-lc06 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-lc06 + + + FirmwareProfile + + SONiC-Sonic-lc-100g-sku-lc + + + ForwardingMethod + + VoQ + + + SlotIndex + + 6 + + + TotalCountOfVoQ + + 8 + + + MaxCountOfCores + + 64 + + + MacSecEnabled + + False + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-lc06-ASIC00 + + + SiblingLineCards + + str-sonic-lc03;str-sonic-lc04;str-sonic-lc05;str-sonic-lc07;str-sonic-lc08;str-sonic-lc09;str-sonic-lc10 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic + + + CloudType + + Public + + + ConfigDbAclFile + + SonicNativeAcl.liquid + + + ConfigTemplateFile + + Sonic.xml + + + DNSServers + + 10.64.5.5;10.64.6.6;10.64.6.7 + + + DcCode + + STR + + + DeploymentId + + 3 + + + EnableStreamingTelemetry + + true + + + ErspanDestinationIpv4 + + 10.20.6.4 + + + FirmwareProfile + + sonic-T2-profile + + + Function + + LabTest + + + Group + + str:542907040 + + + InitConfigTemplateFile + + Sonic.init.xml + + + Location + + TBD + + + Loopback0Ipv4 + + 10.2.0.1/32;10.2.0.2/32;10.2.0.3/32;10.2.0.4/32 + + + Loopback0Ipv6 + + fc00:20::1/128;fc00:21::1/128;fc00:22::1/128;fc00:23::1/128 + + + Loopback4096Ipv4 + + 192.0.0.1/32;192.0.0.2/32;192.0.0.8/32;192.0.0.9/32 + + + Loopback4096Ipv6 + + 2603:10e2:400::1/128;2603:10e2:400::2/128;2603:10e2:400::8/128;2603:10e2:400::9/128 + + + MacSecEnabled + + True + + + MacSecProfile + usstagee.Sonic.MacSec + PrimaryKey="macsec-profile-two" FallbackKey="macsec-profile" MacsecPolicy="" + + + ManagementIpv4 + + 10.3.146.58/24;10.3.146.71/24;10.3.146.72/24;10.3.146.74/24;10.3.146.75/24;10.3.146.80/24;10.3.146.81/24;10.3.146.83/24 + + + ManagementIpv6 + + 2a01:111:e210:3000::a03:923a/64;2a01:111:e210:3000::a03:9247/64;2a01:111:e210:3000::a03:9248/64;2a01:111:e210:3000::a03:924a/64;2a01:111:e210:3000::a03:924b/64;2a01:111:e210:3000::a03:9250/64;2a01:111:e210:3000::a03:9251/64;2a01:111:e210:3000::a03:9253/64 + + + MaxCountOfCores + + 64 + + + NtpResources + Public.Ntp + 17.39.1.130;17.39.1.129 + + + QosProfile + + VerlaineLongHaul + + + RemoteAuthenticationProtocol + + Tacacs + + + SnmpResources + + 10.52.180.161;10.3.157.12 + + + SonicConfigTemplateFile + + Sonic.xml + + + SonicEnabled + + True + + + SyslogResources + + 10.52.180.161;10.3.157.12 + + + SyslogServer + + 10.20.4.167;10.20.7.33;10.20.6.16;10.20.6.84 + + + TacacsKey + + $Secrets.TacacsKey + + + TacacsSecurityLevel + + 7 + + + TacacsServer + + 123.46.98.21 + + + TotalCountOfVoQ + + 8 + + + Region + + test + + + ChassisEnabled + + true + + + + + + + + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth168 + true + str-sonic-lc06-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth170 + true + str-sonic-lc06-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth170 + true + str-sonic-lc06-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth168 + true + str-sonic-lc06-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth495 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth0 + true + ARISTA33T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth4 + true + ARISTA33T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth8 + true + ARISTA35T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth12 + true + ARISTA35T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth16 + true + ARISTA37T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth20 + true + ARISTA37T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth24 + true + ARISTA39T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth28 + true + ARISTA39T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth32 + true + ARISTA41T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth36 + true + ARISTA41T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth40 + true + ARISTA43T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth44 + true + ARISTA43T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth48 + true + ARISTA45T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth52 + true + ARISTA47T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth56 + true + ARISTA47T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth60 + true + ARISTA49T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth64 + true + ARISTA50T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth68 + true + ARISTA50T1 + Ethernet2 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth72 + true + ARISTA51T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth76 + true + ARISTA52T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth80 + true + ARISTA53T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth84 + true + ARISTA54T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth88 + true + ARISTA55T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth92 + true + ARISTA56T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth96 + true + ARISTA57T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth100 + true + ARISTA58T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth104 + true + ARISTA59T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth108 + true + ARISTA60T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth112 + true + ARISTA61T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth116 + true + ARISTA62T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth120 + true + ARISTA63T1 + Ethernet1 + true + + + DeviceInterfaceLink + 100000 + true + str-sonic-lc06-ASIC00 + Eth124 + true + ARISTA64T1 + Ethernet1 + true + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical6 + true + str-sonic-lc06 + logical + true + 6 + + + + + LinecardAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc06-ASIC00 + Broadcom-Jericho2 +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC08 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC02 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC09 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC03 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC10 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC04 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC07 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC06 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC05 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC11 + Broadcom-Ramon +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.58/17 + + + ::/0 + + + + ARISTA33T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.59/17 + + + ::/0 + + + + ARISTA35T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.60/17 + + + ::/0 + + + + ARISTA37T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.61/17 + + + ::/0 + + + + ARISTA39T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.62/17 + + + ::/0 + + + + ARISTA41T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.63/17 + + + ::/0 + + + + ARISTA43T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.64/17 + + + ::/0 + + + + ARISTA45T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.65/17 + + + ::/0 + + + + ARISTA47T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.66/17 + + + ::/0 + + + + ARISTA49T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.67/17 + + + ::/0 + + + + ARISTA50T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.68/17 + + + ::/0 + + + + ARISTA51T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.69/17 + + + ::/0 + + + + ARISTA52T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.70/17 + + + ::/0 + + + + ARISTA53T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.71/17 + + + ::/0 + + + + ARISTA54T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.72/17 + + + ::/0 + + + + ARISTA55T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.73/17 + + + ::/0 + + + + ARISTA56T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.74/17 + + + ::/0 + + + + ARISTA57T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.75/17 + + + ::/0 + + + + ARISTA58T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.76/17 + + + ::/0 + + + + ARISTA59T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.77/17 + + + ::/0 + + + + ARISTA60T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.78/17 + + + ::/0 + + + + ARISTA61T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.79/17 + + + ::/0 + + + + ARISTA62T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.80/17 + + + ::/0 + + + + ARISTA63T1 + Sonic-T1-sku +
+ + LeafRouter +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 172.16.191.81/17 + + + ::/0 + + + + ARISTA64T1 + Sonic-T1-sku +
+ + Linecard +
+ 10.2.0.4/32 +
+ + fc00:23::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.74/24 + + + 2a01:111:e210:3000::a03:924a/64 + + + + str-sonic-lc06 + Sonic-lc-100g-sku +
+ + Supervisor +
+ 10.152.0.46/32 +
+ + 2a01:111:e210:5e::/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.111/24 + + + 2a01:111:e210:3000::a03:926f/64 + + + + str-sonic-sup00 + Sonic-sup-sku +
+ + SpineRouter +
+ 10.152.0.46/32 +
+ + 2a01:111:e210:5e::/128 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.111/24 + + + 2a01:111:e210:3000::a03:926f/64 + + + + str-sonic + Sonic-Chassis-sku + 0 +
+
+
+ str-sonic-lc06 + Sonic-lc-100g-sku + 1.0.1388.35294 + +
diff --git a/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_sup.xml b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_sup.xml new file mode 100644 index 000000000000..1b4599924374 --- /dev/null +++ b/src/sonic-config-engine/tests/chassis_data/voq_chassis_data/voq_chassis_sup.xml @@ -0,0 +1,52726 @@ + + + + + + + + + + + + + + + DeviceInterface + + true + 1 + cpu3/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 2 + cpu3/1 + false + + cpu1 + 10000 + + + + + DeviceInterface + + true + 3 + Recirc3/0/0 + false + + Ethernet-Rec0 + 10000 + + + + + DeviceInterface + + true + 4 + Recirc3/1/0 + false + + Ethernet-Rec1 + 10000 + + + + + DeviceInterface + + true + 5 + Recirc3/0/1 + false + + Ethernet-IB0 + 10000 + + + + + DeviceInterface + + true + 6 + Recirc3/1/1 + false + + Ethernet-IB1 + 10000 + + + + + DeviceInterface + + true + 7 + cpu4/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 8 + Recirc4/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 9 + Recirc4/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 10 + cpu5/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 11 + Recirc5/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 12 + Recirc5/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 13 + cpu6/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 14 + Recirc6/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 15 + Recirc6/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 16 + cpu7/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 17 + Recirc7/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 18 + Recirc7/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 19 + cpu8/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 20 + Recirc8/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 21 + Recirc8/0/1 + false + + Ethernet-IB0 + 400000 + + + + + DeviceInterface + + true + 22 + cpu10/0 + false + + cpu0 + 10000 + + + + + DeviceInterface + + true + 23 + Recirc10/0/0 + false + + Ethernet-Rec0 + 400000 + + + + + DeviceInterface + + true + 24 + Recirc10/0/1 + false + + Ethernet-IB0 + 400000 + + + + + Sonic-T2-Base-sku + + + + DeviceInterface + 100000 + true + 1 + Ethernet3/1/1 + false + + Ethernet0 + 400000 + + + DeviceInterface + 100000 + true + 2 + Ethernet3/2/1 + false + + Ethernet8 + 400000 + + + DeviceInterface + 100000 + true + 3 + Ethernet3/3/1 + false + + Ethernet16 + 400000 + + + DeviceInterface + 100000 + true + 4 + Ethernet3/4/1 + false + + Ethernet24 + 400000 + + + DeviceInterface + 100000 + true + 5 + Ethernet3/5/1 + false + + Ethernet32 + 400000 + + + DeviceInterface + 100000 + true + 6 + Ethernet3/6/1 + false + + Ethernet40 + 400000 + + + DeviceInterface + 100000 + true + 7 + Ethernet3/7/1 + false + + Ethernet48 + 400000 + + + DeviceInterface + 100000 + true + 8 + Ethernet3/8/1 + false + + Ethernet56 + 400000 + + + DeviceInterface + 100000 + true + 9 + Ethernet3/9/1 + false + + Ethernet64 + 400000 + + + DeviceInterface + 100000 + true + 10 + Ethernet3/10/1 + false + + Ethernet72 + 400000 + + + DeviceInterface + 100000 + true + 11 + Ethernet3/11/1 + false + + Ethernet80 + 400000 + + + DeviceInterface + 100000 + true + 12 + Ethernet3/12/1 + false + + Ethernet88 + 400000 + + + DeviceInterface + 100000 + true + 13 + Ethernet3/13/1 + false + + Ethernet96 + 400000 + + + DeviceInterface + 100000 + true + 14 + Ethernet3/14/1 + false + + Ethernet104 + 400000 + + + DeviceInterface + 100000 + true + 15 + Ethernet3/15/1 + false + + Ethernet112 + 400000 + + + DeviceInterface + 100000 + true + 16 + Ethernet3/16/1 + false + + Ethernet120 + 400000 + + + DeviceInterface + 100000 + true + 17 + Ethernet3/17/1 + false + + Ethernet128 + 400000 + + + DeviceInterface + 100000 + true + 18 + Ethernet3/18/1 + false + + Ethernet136 + 400000 + + + DeviceInterface + 100000 + true + 19 + Ethernet3/19/1 + false + + Ethernet144 + 400000 + + + DeviceInterface + 100000 + true + 20 + Ethernet3/20/1 + false + + Ethernet152 + 400000 + + + DeviceInterface + 100000 + true + 21 + Ethernet3/21/1 + false + + Ethernet160 + 400000 + + + DeviceInterface + 100000 + true + 22 + Ethernet3/22/1 + false + + Ethernet168 + 400000 + + + DeviceInterface + 100000 + true + 23 + Ethernet3/23/1 + false + + Ethernet176 + 400000 + + + DeviceInterface + 100000 + true + 24 + Ethernet3/24/1 + false + + Ethernet184 + 400000 + + + DeviceInterface + 100000 + true + 25 + Ethernet3/25/1 + false + + Ethernet192 + 400000 + + + DeviceInterface + 100000 + true + 26 + Ethernet3/26/1 + false + + Ethernet200 + 400000 + + + DeviceInterface + 100000 + true + 27 + Ethernet3/27/1 + false + + Ethernet208 + 400000 + + + DeviceInterface + 100000 + true + 28 + Ethernet3/28/1 + false + + Ethernet216 + 400000 + + + DeviceInterface + 100000 + true + 29 + Ethernet3/29/1 + false + + Ethernet224 + 400000 + + + DeviceInterface + 100000 + true + 30 + Ethernet3/30/1 + false + + Ethernet232 + 400000 + + + DeviceInterface + 100000 + true + 31 + Ethernet3/31/1 + false + + Ethernet240 + 400000 + + + DeviceInterface + 100000 + true + 32 + Ethernet3/32/1 + false + + Ethernet248 + 400000 + + + DeviceInterface + 100000 + true + 33 + Ethernet3/33/1 + false + + Ethernet256 + 400000 + + + DeviceInterface + 100000 + true + 34 + Ethernet3/34/1 + false + + Ethernet264 + 400000 + + + DeviceInterface + 100000 + true + 35 + Ethernet3/35/1 + false + + Ethernet272 + 400000 + + + DeviceInterface + 100000 + true + 36 + Ethernet3/36/1 + false + + Ethernet280 + 400000 + + + DeviceInterface + 40000 + true + 37 + Ethernet4/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 38 + Ethernet4/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 39 + Ethernet4/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 40 + Ethernet4/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 41 + Ethernet4/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 42 + Ethernet4/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 43 + Ethernet4/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 44 + Ethernet4/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 45 + Ethernet4/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 46 + Ethernet4/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 47 + Ethernet4/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 48 + Ethernet4/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 49 + Ethernet4/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 50 + Ethernet4/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 51 + Ethernet4/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 52 + Ethernet4/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 53 + Ethernet4/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 54 + Ethernet4/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 55 + Ethernet4/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 56 + Ethernet4/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 57 + Ethernet4/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 58 + Ethernet4/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 59 + Ethernet4/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 60 + Ethernet4/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 61 + Ethernet4/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 62 + Ethernet4/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 63 + Ethernet4/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 64 + Ethernet4/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 65 + Ethernet4/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 66 + Ethernet4/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 67 + Ethernet4/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 68 + Ethernet4/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 69 + Ethernet4/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 70 + Ethernet4/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 71 + Ethernet4/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 72 + Ethernet4/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 73 + Ethernet4/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 74 + Ethernet4/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 75 + Ethernet4/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 76 + Ethernet4/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 77 + Ethernet4/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 78 + Ethernet4/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 79 + Ethernet4/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 80 + Ethernet4/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 81 + Ethernet4/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 82 + Ethernet4/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 83 + Ethernet4/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 84 + Ethernet4/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 85 + Ethernet5/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 86 + Ethernet5/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 87 + Ethernet5/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 88 + Ethernet5/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 89 + Ethernet5/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 90 + Ethernet5/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 91 + Ethernet5/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 92 + Ethernet5/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 93 + Ethernet5/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 94 + Ethernet5/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 95 + Ethernet5/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 96 + Ethernet5/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 97 + Ethernet5/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 98 + Ethernet5/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 99 + Ethernet5/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 100 + Ethernet5/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 101 + Ethernet5/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 102 + Ethernet5/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 103 + Ethernet5/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 104 + Ethernet5/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 105 + Ethernet5/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 106 + Ethernet5/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 107 + Ethernet5/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 108 + Ethernet5/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 109 + Ethernet5/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 110 + Ethernet5/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 111 + Ethernet5/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 112 + Ethernet5/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 113 + Ethernet5/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 114 + Ethernet5/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 115 + Ethernet5/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 116 + Ethernet5/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 117 + Ethernet5/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 118 + Ethernet5/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 119 + Ethernet5/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 120 + Ethernet5/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 121 + Ethernet5/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 122 + Ethernet5/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 123 + Ethernet5/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 124 + Ethernet5/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 125 + Ethernet5/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 126 + Ethernet5/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 127 + Ethernet5/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 128 + Ethernet5/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 129 + Ethernet5/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 130 + Ethernet5/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 131 + Ethernet5/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 132 + Ethernet5/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 133 + Ethernet6/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 134 + Ethernet6/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 135 + Ethernet6/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 136 + Ethernet6/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 137 + Ethernet6/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 138 + Ethernet6/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 139 + Ethernet6/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 140 + Ethernet6/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 141 + Ethernet6/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 142 + Ethernet6/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 143 + Ethernet6/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 144 + Ethernet6/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 145 + Ethernet6/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 146 + Ethernet6/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 147 + Ethernet6/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 148 + Ethernet6/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 149 + Ethernet6/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 150 + Ethernet6/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 151 + Ethernet6/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 152 + Ethernet6/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 153 + Ethernet6/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 154 + Ethernet6/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 155 + Ethernet6/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 156 + Ethernet6/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 157 + Ethernet6/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 158 + Ethernet6/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 159 + Ethernet6/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 160 + Ethernet6/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 161 + Ethernet6/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 162 + Ethernet6/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 163 + Ethernet6/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 164 + Ethernet6/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 165 + Ethernet6/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 166 + Ethernet6/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 167 + Ethernet6/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 168 + Ethernet6/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 169 + Ethernet6/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 170 + Ethernet6/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 171 + Ethernet6/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 172 + Ethernet6/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 173 + Ethernet6/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 174 + Ethernet6/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 175 + Ethernet6/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 176 + Ethernet6/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 177 + Ethernet6/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 178 + Ethernet6/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 179 + Ethernet6/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 180 + Ethernet6/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 181 + Ethernet7/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 182 + Ethernet7/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 183 + Ethernet7/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 184 + Ethernet7/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 185 + Ethernet7/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 186 + Ethernet7/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 187 + Ethernet7/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 188 + Ethernet7/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 189 + Ethernet7/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 190 + Ethernet7/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 191 + Ethernet7/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 192 + Ethernet7/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 193 + Ethernet7/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 194 + Ethernet7/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 195 + Ethernet7/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 196 + Ethernet7/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 197 + Ethernet7/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 198 + Ethernet7/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 199 + Ethernet7/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 200 + Ethernet7/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 201 + Ethernet7/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 202 + Ethernet7/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 203 + Ethernet7/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 204 + Ethernet7/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 205 + Ethernet7/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 206 + Ethernet7/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 207 + Ethernet7/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 208 + Ethernet7/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 209 + Ethernet7/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 210 + Ethernet7/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 211 + Ethernet7/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 212 + Ethernet7/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 213 + Ethernet7/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 214 + Ethernet7/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 215 + Ethernet7/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 216 + Ethernet7/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 217 + Ethernet7/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 218 + Ethernet7/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 219 + Ethernet7/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 220 + Ethernet7/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 221 + Ethernet7/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 222 + Ethernet7/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 223 + Ethernet7/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 224 + Ethernet7/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 225 + Ethernet7/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 226 + Ethernet7/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 227 + Ethernet7/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 228 + Ethernet7/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 229 + Ethernet8/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 230 + Ethernet8/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 231 + Ethernet8/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 232 + Ethernet8/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 233 + Ethernet8/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 234 + Ethernet8/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 235 + Ethernet8/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 236 + Ethernet8/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 237 + Ethernet8/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 238 + Ethernet8/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 239 + Ethernet8/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 240 + Ethernet8/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 241 + Ethernet8/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 242 + Ethernet8/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 243 + Ethernet8/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 244 + Ethernet8/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 245 + Ethernet8/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 246 + Ethernet8/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 247 + Ethernet8/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 248 + Ethernet8/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 249 + Ethernet8/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 250 + Ethernet8/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 251 + Ethernet8/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 252 + Ethernet8/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 253 + Ethernet8/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 254 + Ethernet8/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 255 + Ethernet8/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 256 + Ethernet8/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 257 + Ethernet8/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 258 + Ethernet8/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 259 + Ethernet8/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 260 + Ethernet8/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 261 + Ethernet8/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 262 + Ethernet8/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 263 + Ethernet8/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 264 + Ethernet8/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 265 + Ethernet8/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 266 + Ethernet8/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 267 + Ethernet8/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 268 + Ethernet8/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 269 + Ethernet8/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 270 + Ethernet8/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 271 + Ethernet8/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 272 + Ethernet8/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 273 + Ethernet8/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 274 + Ethernet8/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 275 + Ethernet8/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 276 + Ethernet8/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 277 + Ethernet9/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 278 + Ethernet9/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 279 + Ethernet9/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 280 + Ethernet9/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 281 + Ethernet9/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 282 + Ethernet9/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 283 + Ethernet9/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 284 + Ethernet9/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 285 + Ethernet9/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 286 + Ethernet9/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 287 + Ethernet9/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 288 + Ethernet9/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 289 + Ethernet9/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 290 + Ethernet9/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 291 + Ethernet9/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 292 + Ethernet9/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 293 + Ethernet9/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 294 + Ethernet9/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 295 + Ethernet9/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 296 + Ethernet9/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 297 + Ethernet9/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 298 + Ethernet9/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 299 + Ethernet9/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 300 + Ethernet9/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 301 + Ethernet9/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 302 + Ethernet9/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 303 + Ethernet9/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 304 + Ethernet9/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 305 + Ethernet9/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 306 + Ethernet9/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 307 + Ethernet9/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 308 + Ethernet9/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 309 + Ethernet9/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 310 + Ethernet9/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 311 + Ethernet9/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 312 + Ethernet9/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 313 + Ethernet9/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 314 + Ethernet9/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 315 + Ethernet9/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 316 + Ethernet9/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 317 + Ethernet9/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 318 + Ethernet9/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 319 + Ethernet9/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 320 + Ethernet9/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 321 + Ethernet9/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 322 + Ethernet9/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 323 + Ethernet9/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 324 + Ethernet9/48/1 + false + + Ethernet188 + 100000 + + + DeviceInterface + 40000 + true + 325 + Ethernet10/1/1 + false + + Ethernet0 + 100000 + + + DeviceInterface + 40000 + true + 326 + Ethernet10/2/1 + false + + Ethernet4 + 100000 + + + DeviceInterface + 40000 + true + 327 + Ethernet10/3/1 + false + + Ethernet8 + 100000 + + + DeviceInterface + 40000 + true + 328 + Ethernet10/4/1 + false + + Ethernet12 + 100000 + + + DeviceInterface + 40000 + true + 329 + Ethernet10/5/1 + false + + Ethernet16 + 100000 + + + DeviceInterface + 40000 + true + 330 + Ethernet10/6/1 + false + + Ethernet20 + 100000 + + + DeviceInterface + 40000 + true + 331 + Ethernet10/7/1 + false + + Ethernet24 + 100000 + + + DeviceInterface + 40000 + true + 332 + Ethernet10/8/1 + false + + Ethernet28 + 100000 + + + DeviceInterface + 40000 + true + 333 + Ethernet10/9/1 + false + + Ethernet32 + 100000 + + + DeviceInterface + 40000 + true + 334 + Ethernet10/10/1 + false + + Ethernet36 + 100000 + + + DeviceInterface + 40000 + true + 335 + Ethernet10/11/1 + false + + Ethernet40 + 100000 + + + DeviceInterface + 40000 + true + 336 + Ethernet10/12/1 + false + + Ethernet44 + 100000 + + + DeviceInterface + 40000 + true + 337 + Ethernet10/13/1 + false + + Ethernet48 + 100000 + + + DeviceInterface + 40000 + true + 338 + Ethernet10/14/1 + false + + Ethernet52 + 100000 + + + DeviceInterface + 40000 + true + 339 + Ethernet10/15/1 + false + + Ethernet56 + 100000 + + + DeviceInterface + 40000 + true + 340 + Ethernet10/16/1 + false + + Ethernet60 + 100000 + + + DeviceInterface + 40000 + true + 341 + Ethernet10/17/1 + false + + Ethernet64 + 100000 + + + DeviceInterface + 40000 + true + 342 + Ethernet10/18/1 + false + + Ethernet68 + 100000 + + + DeviceInterface + 40000 + true + 343 + Ethernet10/19/1 + false + + Ethernet72 + 100000 + + + DeviceInterface + 40000 + true + 344 + Ethernet10/20/1 + false + + Ethernet76 + 100000 + + + DeviceInterface + 40000 + true + 345 + Ethernet10/21/1 + false + + Ethernet80 + 100000 + + + DeviceInterface + 40000 + true + 346 + Ethernet10/22/1 + false + + Ethernet84 + 100000 + + + DeviceInterface + 40000 + true + 347 + Ethernet10/23/1 + false + + Ethernet88 + 100000 + + + DeviceInterface + 40000 + true + 348 + Ethernet10/24/1 + false + + Ethernet92 + 100000 + + + DeviceInterface + 40000 + true + 349 + Ethernet10/25/1 + false + + Ethernet96 + 100000 + + + DeviceInterface + 40000 + true + 350 + Ethernet10/26/1 + false + + Ethernet100 + 100000 + + + DeviceInterface + 40000 + true + 351 + Ethernet10/27/1 + false + + Ethernet104 + 100000 + + + DeviceInterface + 40000 + true + 352 + Ethernet10/28/1 + false + + Ethernet108 + 100000 + + + DeviceInterface + 40000 + true + 353 + Ethernet10/29/1 + false + + Ethernet112 + 100000 + + + DeviceInterface + 40000 + true + 354 + Ethernet10/30/1 + false + + Ethernet116 + 100000 + + + DeviceInterface + 40000 + true + 355 + Ethernet10/31/1 + false + + Ethernet120 + 100000 + + + DeviceInterface + 40000 + true + 356 + Ethernet10/32/1 + false + + Ethernet124 + 100000 + + + DeviceInterface + 40000 + true + 357 + Ethernet10/33/1 + false + + Ethernet128 + 100000 + + + DeviceInterface + 40000 + true + 358 + Ethernet10/34/1 + false + + Ethernet132 + 100000 + + + DeviceInterface + 40000 + true + 359 + Ethernet10/35/1 + false + + Ethernet136 + 100000 + + + DeviceInterface + 40000 + true + 360 + Ethernet10/36/1 + false + + Ethernet140 + 100000 + + + DeviceInterface + 40000 + true + 361 + Ethernet10/37/1 + false + + Ethernet144 + 100000 + + + DeviceInterface + 40000 + true + 362 + Ethernet10/38/1 + false + + Ethernet148 + 100000 + + + DeviceInterface + 40000 + true + 363 + Ethernet10/39/1 + false + + Ethernet152 + 100000 + + + DeviceInterface + 40000 + true + 364 + Ethernet10/40/1 + false + + Ethernet156 + 100000 + + + DeviceInterface + 40000 + true + 365 + Ethernet10/41/1 + false + + Ethernet160 + 100000 + + + DeviceInterface + 40000 + true + 366 + Ethernet10/42/1 + false + + Ethernet164 + 100000 + + + DeviceInterface + 40000 + true + 367 + Ethernet10/43/1 + false + + Ethernet168 + 100000 + + + DeviceInterface + 40000 + true + 368 + Ethernet10/44/1 + false + + Ethernet172 + 100000 + + + DeviceInterface + 40000 + true + 369 + Ethernet10/45/1 + false + + Ethernet176 + 100000 + + + DeviceInterface + 40000 + true + 370 + Ethernet10/46/1 + false + + Ethernet180 + 100000 + + + DeviceInterface + 40000 + true + 371 + Ethernet10/47/1 + false + + Ethernet184 + 100000 + + + DeviceInterface + 40000 + true + 372 + Ethernet10/48/1 + false + + Ethernet188 + 100000 + + + true + 0 + Sonic-T2-sku + + + + Ethernet3/1/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:3:0:1 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + Ethernet3/2/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:3:0:2 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + Ethernet3/3/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:3:0:3 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + Ethernet3/4/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:3:0:4 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + Ethernet3/5/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:3:0:5 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + Ethernet3/6/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:3:0:6 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + Ethernet3/7/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:3:0:7 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + Ethernet3/8/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:3:0:8 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + Ethernet3/9/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:3:0:9 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + Ethernet3/10/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:3:0:10 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet3/11/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:3:0:11 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet3/12/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:3:0:12 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet3/13/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:3:0:13 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet3/14/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:3:0:14 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet3/15/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:3:0:15 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet3/16/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:3:0:16 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet3/17/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:3:0:17 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet3/18/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:3:0:18 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet3/19/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:3:0:19 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 1 + + + CoreId + 1 + + + + + Ethernet3/20/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:3:0:20 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 2 + + + CoreId + 1 + + + + + Ethernet3/21/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:3:0:21 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 3 + + + CoreId + 1 + + + + + Ethernet3/22/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:3:0:22 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 4 + + + CoreId + 1 + + + + + Ethernet3/23/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:3:0:23 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 5 + + + CoreId + 1 + + + + + Ethernet3/24/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:3:0:24 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 6 + + + CoreId + 1 + + + + + Ethernet3/25/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:3:0:25 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 7 + + + CoreId + 1 + + + + + Ethernet3/26/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:3:0:26 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 8 + + + CoreId + 1 + + + + + Ethernet3/27/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:3:0:27 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 9 + + + CoreId + 1 + + + + + Ethernet3/28/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:3:0:28 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet3/29/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:3:0:29 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet3/30/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:3:0:30 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet3/31/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:3:0:31 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet3/32/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:3:0:32 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet3/33/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:3:0:33 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet3/34/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:3:0:34 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet3/35/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:3:0:35 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet3/36/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:3:0:36 + + + InterfaceSubGroupIndex + 1 + + + MacSecEnabled + True + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + cpu3/0 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:3:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + cpu3/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:3:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Recirc3/0/0 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:3:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Recirc3/1/0 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:3:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 8 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Recirc3/0/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:3:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + Recirc3/1/1 + + + LineCardSku + Sonic-400G-sku + + + SlotIndex + 3 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:3:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC1 + + + AsicSwitchId + 9 + + + AsicInterfaceIndex + 19 + + + CoreId + 1 + + + + + Ethernet4/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:4:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet4/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:4:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet4/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:4:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet4/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:4:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet4/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:4:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet4/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:4:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet4/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:4:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet4/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:4:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet4/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:4:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet4/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:4:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet4/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:4:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet4/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:4:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet4/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:4:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet4/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:4:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet4/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:4:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet4/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:4:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet4/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:4:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet4/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:4:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet4/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:4:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet4/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:4:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet4/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:4:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet4/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:4:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet4/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:4:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet4/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:4:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet4/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:4:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet4/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:4:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet4/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:4:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet4/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:4:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet4/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:4:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet4/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:4:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet4/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:4:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet4/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:4:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet4/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:4:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet4/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:4:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet4/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:4:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet4/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:4:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet4/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:4:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet4/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:4:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet4/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:4:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet4/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:4:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet4/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:4:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet4/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:4:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet4/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:4:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet4/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:4:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet4/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:4:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet4/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:4:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet4/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:4:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet4/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:4:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu4/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:4:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc4/0/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:4:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc4/0/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 4 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:4:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 12 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet5/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:5:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet5/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:5:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet5/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:5:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet5/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:5:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet5/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:5:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet5/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:5:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet5/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:5:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet5/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:5:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet5/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:5:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet5/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:5:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet5/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:5:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet5/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:5:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet5/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:5:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet5/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:5:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet5/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:5:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet5/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:5:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet5/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:5:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet5/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:5:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet5/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:5:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet5/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:5:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet5/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:5:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet5/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:5:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet5/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:5:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet5/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:5:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet5/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:5:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet5/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:5:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet5/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:5:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet5/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:5:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet5/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:5:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet5/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:5:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet5/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:5:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet5/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:5:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet5/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:5:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet5/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:5:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet5/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:5:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet5/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:5:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet5/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:5:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet5/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:5:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet5/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:5:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet5/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:5:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet5/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:5:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet5/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:5:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet5/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:5:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet5/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:5:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet5/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:5:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet5/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:5:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet5/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:5:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet5/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:5:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu5/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:5:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc5/0/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:5:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc5/0/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 5 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:5:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 16 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet6/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:6:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet6/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:6:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet6/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:6:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet6/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:6:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet6/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:6:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet6/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:6:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet6/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:6:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet6/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:6:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet6/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:6:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet6/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:6:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet6/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:6:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet6/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:6:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet6/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:6:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet6/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:6:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet6/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:6:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet6/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:6:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet6/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:6:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet6/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:6:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet6/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:6:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet6/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:6:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet6/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:6:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet6/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:6:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet6/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:6:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet6/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:6:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet6/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:6:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet6/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:6:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet6/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:6:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet6/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:6:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet6/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:6:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet6/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:6:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet6/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:6:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet6/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:6:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet6/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:6:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet6/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:6:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet6/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:6:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet6/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:6:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet6/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:6:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet6/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:6:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet6/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:6:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet6/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:6:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet6/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:6:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet6/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:6:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet6/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:6:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet6/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:6:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet6/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:6:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet6/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:6:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet6/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:6:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet6/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:6:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu6/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:6:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc6/0/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:6:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc6/0/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 6 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:6:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 20 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet7/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:7:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet7/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:7:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet7/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:7:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet7/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:7:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet7/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:7:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet7/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:7:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet7/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:7:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet7/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:7:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet7/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:7:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet7/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:7:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet7/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:7:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet7/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:7:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet7/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:7:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet7/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:7:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet7/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:7:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet7/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:7:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet7/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:7:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet7/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:7:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet7/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:7:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet7/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:7:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet7/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:7:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet7/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:7:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet7/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:7:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet7/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:7:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet7/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:7:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet7/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:7:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet7/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:7:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet7/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:7:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet7/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:7:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet7/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:7:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet7/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:7:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet7/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:7:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet7/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:7:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet7/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:7:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet7/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:7:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet7/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:7:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet7/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:7:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet7/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:7:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet7/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:7:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet7/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:7:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet7/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:7:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet7/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:7:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet7/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:7:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet7/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:7:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet7/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:7:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet7/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:7:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet7/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:7:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet7/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:7:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu7/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:7:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc7/0/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:7:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc7/0/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 7 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:7:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 24 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet8/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:8:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet8/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:8:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet8/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:8:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet8/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:8:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet8/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:8:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet8/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:8:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet8/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:8:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet8/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:8:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet8/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:8:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet8/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:8:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet8/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:8:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet8/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:8:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet8/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:8:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet8/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:8:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet8/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:8:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet8/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:8:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet8/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:8:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet8/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:8:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet8/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:8:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet8/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:8:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet8/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:8:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet8/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:8:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet8/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:8:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet8/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:8:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet8/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:8:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet8/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:8:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet8/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:8:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet8/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:8:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet8/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:8:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet8/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:8:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet8/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:8:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet8/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:8:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet8/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:8:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet8/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:8:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet8/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:8:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet8/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:8:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet8/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:8:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet8/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:8:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet8/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:8:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet8/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:8:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet8/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:8:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet8/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:8:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet8/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:8:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet8/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:8:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet8/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:8:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet8/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:8:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet8/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:8:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet8/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:8:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu8/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:8:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc8/0/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:8:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc8/0/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 8 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:8:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 28 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + Ethernet9/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:9:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet9/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:9:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet9/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:9:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet9/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:9:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet9/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:9:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet9/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:9:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet9/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:9:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet9/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:9:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet9/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:9:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet9/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:9:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet9/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:9:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet9/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:9:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet9/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:9:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet9/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:9:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet9/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:9:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet9/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:9:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet9/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:9:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet9/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:9:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet9/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:9:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet9/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:9:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet9/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:9:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet9/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:9:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet9/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:9:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet9/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:9:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet9/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:9:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet9/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:9:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet9/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:9:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet9/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:9:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet9/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:9:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet9/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:9:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet9/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:9:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet9/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:9:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet9/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:9:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet9/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:9:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet9/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:9:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet9/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:9:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet9/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:9:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet9/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:9:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet9/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:9:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet9/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:9:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet9/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:9:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet9/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:9:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet9/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:9:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet9/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:9:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet9/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:9:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet9/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:9:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet9/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:9:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet9/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 9 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:9:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 32 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + Ethernet10/1/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 1 + + + InterfaceGroupIndex + 0:10:0:1 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 1 + + + CoreId + 0 + + + + + Ethernet10/2/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 2 + + + InterfaceGroupIndex + 0:10:0:2 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 2 + + + CoreId + 0 + + + + + Ethernet10/3/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 3 + + + InterfaceGroupIndex + 0:10:0:3 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 3 + + + CoreId + 0 + + + + + Ethernet10/4/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 4 + + + InterfaceGroupIndex + 0:10:0:4 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 4 + + + CoreId + 0 + + + + + Ethernet10/5/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 5 + + + InterfaceGroupIndex + 0:10:0:5 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 5 + + + CoreId + 0 + + + + + Ethernet10/6/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 6 + + + InterfaceGroupIndex + 0:10:0:6 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 6 + + + CoreId + 0 + + + + + Ethernet10/7/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 7 + + + InterfaceGroupIndex + 0:10:0:7 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 7 + + + CoreId + 0 + + + + + Ethernet10/8/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 8 + + + InterfaceGroupIndex + 0:10:0:8 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 8 + + + CoreId + 0 + + + + + Ethernet10/9/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 9 + + + InterfaceGroupIndex + 0:10:0:9 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 9 + + + CoreId + 0 + + + + + Ethernet10/10/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 10 + + + InterfaceGroupIndex + 0:10:0:10 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 10 + + + CoreId + 0 + + + + + Ethernet10/11/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 11 + + + InterfaceGroupIndex + 0:10:0:11 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 11 + + + CoreId + 0 + + + + + Ethernet10/12/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 12 + + + InterfaceGroupIndex + 0:10:0:12 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 12 + + + CoreId + 0 + + + + + Ethernet10/13/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 13 + + + InterfaceGroupIndex + 0:10:0:13 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 13 + + + CoreId + 0 + + + + + Ethernet10/14/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 14 + + + InterfaceGroupIndex + 0:10:0:14 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 14 + + + CoreId + 0 + + + + + Ethernet10/15/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 15 + + + InterfaceGroupIndex + 0:10:0:15 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 15 + + + CoreId + 0 + + + + + Ethernet10/16/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 16 + + + InterfaceGroupIndex + 0:10:0:16 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 16 + + + CoreId + 0 + + + + + Ethernet10/17/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 17 + + + InterfaceGroupIndex + 0:10:0:17 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 17 + + + CoreId + 0 + + + + + Ethernet10/18/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 18 + + + InterfaceGroupIndex + 0:10:0:18 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 18 + + + CoreId + 0 + + + + + Ethernet10/19/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 19 + + + InterfaceGroupIndex + 0:10:0:19 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 19 + + + CoreId + 0 + + + + + Ethernet10/20/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 20 + + + InterfaceGroupIndex + 0:10:0:20 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 20 + + + CoreId + 0 + + + + + Ethernet10/21/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 21 + + + InterfaceGroupIndex + 0:10:0:21 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 21 + + + CoreId + 0 + + + + + Ethernet10/22/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 22 + + + InterfaceGroupIndex + 0:10:0:22 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 22 + + + CoreId + 0 + + + + + Ethernet10/23/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 23 + + + InterfaceGroupIndex + 0:10:0:23 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 23 + + + CoreId + 0 + + + + + Ethernet10/24/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 24 + + + InterfaceGroupIndex + 0:10:0:24 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 24 + + + CoreId + 0 + + + + + Ethernet10/25/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 25 + + + InterfaceGroupIndex + 0:10:0:25 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 25 + + + CoreId + 1 + + + + + Ethernet10/26/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 26 + + + InterfaceGroupIndex + 0:10:0:26 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 26 + + + CoreId + 1 + + + + + Ethernet10/27/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 27 + + + InterfaceGroupIndex + 0:10:0:27 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 27 + + + CoreId + 1 + + + + + Ethernet10/28/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 28 + + + InterfaceGroupIndex + 0:10:0:28 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 28 + + + CoreId + 1 + + + + + Ethernet10/29/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 29 + + + InterfaceGroupIndex + 0:10:0:29 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 29 + + + CoreId + 1 + + + + + Ethernet10/30/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 30 + + + InterfaceGroupIndex + 0:10:0:30 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 30 + + + CoreId + 1 + + + + + Ethernet10/31/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 31 + + + InterfaceGroupIndex + 0:10:0:31 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 31 + + + CoreId + 1 + + + + + Ethernet10/32/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 32 + + + InterfaceGroupIndex + 0:10:0:32 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 32 + + + CoreId + 1 + + + + + Ethernet10/33/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 33 + + + InterfaceGroupIndex + 0:10:0:33 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 33 + + + CoreId + 1 + + + + + Ethernet10/34/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 34 + + + InterfaceGroupIndex + 0:10:0:34 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 34 + + + CoreId + 1 + + + + + Ethernet10/35/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 35 + + + InterfaceGroupIndex + 0:10:0:35 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 35 + + + CoreId + 1 + + + + + Ethernet10/36/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 36 + + + InterfaceGroupIndex + 0:10:0:36 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 36 + + + CoreId + 1 + + + + + Ethernet10/37/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 37 + + + InterfaceGroupIndex + 0:10:0:37 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 37 + + + CoreId + 1 + + + + + Ethernet10/38/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 38 + + + InterfaceGroupIndex + 0:10:0:38 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 38 + + + CoreId + 1 + + + + + Ethernet10/39/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 39 + + + InterfaceGroupIndex + 0:10:0:39 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 39 + + + CoreId + 1 + + + + + Ethernet10/40/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 40 + + + InterfaceGroupIndex + 0:10:0:40 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 40 + + + CoreId + 1 + + + + + Ethernet10/41/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 41 + + + InterfaceGroupIndex + 0:10:0:41 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 41 + + + CoreId + 1 + + + + + Ethernet10/42/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 42 + + + InterfaceGroupIndex + 0:10:0:42 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 42 + + + CoreId + 1 + + + + + Ethernet10/43/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 43 + + + InterfaceGroupIndex + 0:10:0:43 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 43 + + + CoreId + 1 + + + + + Ethernet10/44/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 44 + + + InterfaceGroupIndex + 0:10:0:44 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 44 + + + CoreId + 1 + + + + + Ethernet10/45/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 45 + + + InterfaceGroupIndex + 0:10:0:45 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 45 + + + CoreId + 1 + + + + + Ethernet10/46/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 46 + + + InterfaceGroupIndex + 0:10:0:46 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 46 + + + CoreId + 1 + + + + + Ethernet10/47/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 47 + + + InterfaceGroupIndex + 0:10:0:47 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 47 + + + CoreId + 1 + + + + + Ethernet10/48/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 48 + + + InterfaceGroupIndex + 0:10:0:48 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 48 + + + CoreId + 1 + + + + + cpu10/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 49 + + + InterfaceGroupIndex + 0:10:0:49 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 49 + + + CoreId + 0 + + + + + Recirc10/0/0 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 50 + + + InterfaceGroupIndex + 0:10:0:50 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 50 + + + CoreId + 0 + + + + + Recirc10/0/1 + + + LineCardSku + Sonic-100G-sku + + + SlotIndex + 10 + + + ChassisIndex + 0 + + + PortIndex + 51 + + + InterfaceGroupIndex + 0:10:0:51 + + + InterfaceSubGroupIndex + 1 + + + ProviderChipName + ASIC0 + + + AsicSwitchId + 36 + + + AsicInterfaceIndex + 51 + + + CoreId + 0 + + + + + + + DeviceInterface + + true + 1 + Management1/1 + false + + + 1000 + + + + + DeviceInterface + + true + 1 + Ethernet3/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 2 + Ethernet3/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 3 + Ethernet3/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 4 + Ethernet3/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 5 + Ethernet3/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 6 + Ethernet3/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 7 + Ethernet3/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 8 + Ethernet3/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 9 + Ethernet3/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 10 + Ethernet3/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 11 + Ethernet3/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 12 + Ethernet3/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 13 + Ethernet3/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 14 + Ethernet3/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 15 + Ethernet3/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 16 + Ethernet3/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 17 + Ethernet3/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 18 + Ethernet3/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 19 + Ethernet3/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 20 + Ethernet3/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 21 + Ethernet3/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 22 + Ethernet3/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 23 + Ethernet3/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 24 + Ethernet3/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 25 + Ethernet3/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 26 + Ethernet3/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 27 + Ethernet3/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 28 + Ethernet3/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 29 + Ethernet3/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 30 + Ethernet3/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 31 + Ethernet3/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 32 + Ethernet3/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 33 + Ethernet3/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 34 + Ethernet3/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 35 + Ethernet3/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 36 + Ethernet3/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 37 + Ethernet3/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 38 + Ethernet3/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 39 + Ethernet3/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 40 + Ethernet3/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 41 + Ethernet3/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 42 + Ethernet3/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 43 + Ethernet3/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 44 + Ethernet3/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 45 + Ethernet3/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 46 + Ethernet3/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 47 + Ethernet3/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 48 + Ethernet3/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 49 + Ethernet3/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 50 + Ethernet3/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 51 + Ethernet3/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 52 + Ethernet3/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 53 + Ethernet3/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 54 + Ethernet3/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 55 + Ethernet3/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 56 + Ethernet3/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 57 + Ethernet3/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 58 + Ethernet3/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 59 + Ethernet3/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 60 + Ethernet3/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 61 + Ethernet3/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 62 + Ethernet3/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 63 + Ethernet3/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 64 + Ethernet3/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 65 + Ethernet3/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 66 + Ethernet3/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 67 + Ethernet3/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 68 + Ethernet3/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 69 + Ethernet3/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 70 + Ethernet3/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 71 + Ethernet3/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 72 + Ethernet3/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 73 + Ethernet3/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 74 + Ethernet3/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 75 + Ethernet3/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 76 + Ethernet3/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 77 + Ethernet3/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 78 + Ethernet3/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 79 + Ethernet3/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 80 + Ethernet3/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 81 + Ethernet3/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 82 + Ethernet3/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 83 + Ethernet3/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 84 + Ethernet3/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 85 + Ethernet3/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 86 + Ethernet3/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 87 + Ethernet3/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 88 + Ethernet3/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 89 + Ethernet3/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 90 + Ethernet3/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 91 + Ethernet3/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 92 + Ethernet3/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 93 + Ethernet3/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 94 + Ethernet3/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 95 + Ethernet3/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 96 + Ethernet3/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 97 + Ethernet3/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 98 + Ethernet3/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 99 + Ethernet3/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 100 + Ethernet3/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 101 + Ethernet3/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 102 + Ethernet3/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 103 + Ethernet3/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 104 + Ethernet3/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 105 + Ethernet3/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 106 + Ethernet3/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 107 + Ethernet3/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 108 + Ethernet3/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 109 + Ethernet4/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 110 + Ethernet4/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 111 + Ethernet4/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 112 + Ethernet4/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 113 + Ethernet4/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 114 + Ethernet4/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 115 + Ethernet4/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 116 + Ethernet4/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 117 + Ethernet4/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 118 + Ethernet4/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 119 + Ethernet4/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 120 + Ethernet4/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 121 + Ethernet4/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 122 + Ethernet4/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 123 + Ethernet4/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 124 + Ethernet4/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 125 + Ethernet4/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 126 + Ethernet4/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 127 + Ethernet4/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 128 + Ethernet4/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 129 + Ethernet4/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 130 + Ethernet4/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 131 + Ethernet4/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 132 + Ethernet4/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 133 + Ethernet4/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 134 + Ethernet4/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 135 + Ethernet4/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 136 + Ethernet4/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 137 + Ethernet4/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 138 + Ethernet4/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 139 + Ethernet4/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 140 + Ethernet4/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 141 + Ethernet4/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 142 + Ethernet4/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 143 + Ethernet4/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 144 + Ethernet4/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 145 + Ethernet4/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 146 + Ethernet4/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 147 + Ethernet4/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 148 + Ethernet4/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 149 + Ethernet4/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 150 + Ethernet4/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 151 + Ethernet4/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 152 + Ethernet4/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 153 + Ethernet4/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 154 + Ethernet4/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 155 + Ethernet4/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 156 + Ethernet4/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 157 + Ethernet4/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 158 + Ethernet4/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 159 + Ethernet4/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 160 + Ethernet4/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 161 + Ethernet4/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 162 + Ethernet4/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 163 + Ethernet4/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 164 + Ethernet4/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 165 + Ethernet4/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 166 + Ethernet4/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 167 + Ethernet4/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 168 + Ethernet4/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 169 + Ethernet4/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 170 + Ethernet4/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 171 + Ethernet4/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 172 + Ethernet4/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 173 + Ethernet4/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 174 + Ethernet4/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 175 + Ethernet4/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 176 + Ethernet4/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 177 + Ethernet4/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 178 + Ethernet4/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 179 + Ethernet4/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 180 + Ethernet4/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 181 + Ethernet4/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 182 + Ethernet4/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 183 + Ethernet4/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 184 + Ethernet4/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 185 + Ethernet4/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 186 + Ethernet4/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 187 + Ethernet4/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 188 + Ethernet4/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 189 + Ethernet4/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 190 + Ethernet4/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 191 + Ethernet4/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 192 + Ethernet4/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 193 + Ethernet4/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 194 + Ethernet4/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 195 + Ethernet4/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 196 + Ethernet4/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 197 + Ethernet4/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 198 + Ethernet4/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 199 + Ethernet4/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 200 + Ethernet4/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 201 + Ethernet4/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 202 + Ethernet4/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 203 + Ethernet4/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 204 + Ethernet4/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 205 + Ethernet4/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 206 + Ethernet4/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 207 + Ethernet4/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 208 + Ethernet4/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 209 + Ethernet4/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 210 + Ethernet4/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 211 + Ethernet4/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 212 + Ethernet4/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 213 + Ethernet4/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 214 + Ethernet4/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 215 + Ethernet4/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 216 + Ethernet4/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 217 + Ethernet4/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 218 + Ethernet4/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 219 + Ethernet4/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 220 + Ethernet4/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 221 + Ethernet4/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 222 + Ethernet4/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 223 + Ethernet4/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 224 + Ethernet4/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 225 + Ethernet4/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 226 + Ethernet4/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 227 + Ethernet4/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 228 + Ethernet4/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 229 + Ethernet4/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 230 + Ethernet4/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 231 + Ethernet4/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 232 + Ethernet4/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 233 + Ethernet4/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 234 + Ethernet4/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 235 + Ethernet4/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 236 + Ethernet4/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 237 + Ethernet4/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 238 + Ethernet4/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 239 + Ethernet4/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 240 + Ethernet4/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 241 + Ethernet4/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 242 + Ethernet4/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 243 + Ethernet4/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 244 + Ethernet4/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 245 + Ethernet4/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 246 + Ethernet4/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 247 + Ethernet4/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 248 + Ethernet4/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 249 + Ethernet4/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 250 + Ethernet4/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 251 + Ethernet4/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 252 + Ethernet4/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 253 + Ethernet5/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 254 + Ethernet5/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 255 + Ethernet5/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 256 + Ethernet5/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 257 + Ethernet5/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 258 + Ethernet5/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 259 + Ethernet5/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 260 + Ethernet5/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 261 + Ethernet5/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 262 + Ethernet5/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 263 + Ethernet5/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 264 + Ethernet5/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 265 + Ethernet5/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 266 + Ethernet5/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 267 + Ethernet5/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 268 + Ethernet5/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 269 + Ethernet5/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 270 + Ethernet5/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 271 + Ethernet5/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 272 + Ethernet5/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 273 + Ethernet5/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 274 + Ethernet5/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 275 + Ethernet5/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 276 + Ethernet5/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 277 + Ethernet5/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 278 + Ethernet5/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 279 + Ethernet5/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 280 + Ethernet5/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 281 + Ethernet5/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 282 + Ethernet5/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 283 + Ethernet5/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 284 + Ethernet5/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 285 + Ethernet5/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 286 + Ethernet5/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 287 + Ethernet5/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 288 + Ethernet5/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 289 + Ethernet5/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 290 + Ethernet5/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 291 + Ethernet5/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 292 + Ethernet5/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 293 + Ethernet5/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 294 + Ethernet5/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 295 + Ethernet5/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 296 + Ethernet5/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 297 + Ethernet5/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 298 + Ethernet5/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 299 + Ethernet5/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 300 + Ethernet5/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 301 + Ethernet5/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 302 + Ethernet5/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 303 + Ethernet5/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 304 + Ethernet5/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 305 + Ethernet5/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 306 + Ethernet5/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 307 + Ethernet5/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 308 + Ethernet5/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 309 + Ethernet5/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 310 + Ethernet5/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 311 + Ethernet5/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 312 + Ethernet5/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 313 + Ethernet5/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 314 + Ethernet5/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 315 + Ethernet5/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 316 + Ethernet5/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 317 + Ethernet5/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 318 + Ethernet5/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 319 + Ethernet5/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 320 + Ethernet5/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 321 + Ethernet5/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 322 + Ethernet5/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 323 + Ethernet5/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 324 + Ethernet5/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 325 + Ethernet5/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 326 + Ethernet5/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 327 + Ethernet5/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 328 + Ethernet5/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 329 + Ethernet5/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 330 + Ethernet5/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 331 + Ethernet5/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 332 + Ethernet5/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 333 + Ethernet5/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 334 + Ethernet5/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 335 + Ethernet5/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 336 + Ethernet5/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 337 + Ethernet5/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 338 + Ethernet5/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 339 + Ethernet5/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 340 + Ethernet5/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 341 + Ethernet5/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 342 + Ethernet5/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 343 + Ethernet5/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 344 + Ethernet5/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 345 + Ethernet5/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 346 + Ethernet5/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 347 + Ethernet5/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 348 + Ethernet5/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 349 + Ethernet5/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 350 + Ethernet5/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 351 + Ethernet5/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 352 + Ethernet5/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 353 + Ethernet5/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 354 + Ethernet5/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 355 + Ethernet5/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 356 + Ethernet5/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 357 + Ethernet5/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 358 + Ethernet5/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 359 + Ethernet5/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 360 + Ethernet5/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 361 + Ethernet5/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 362 + Ethernet5/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 363 + Ethernet5/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 364 + Ethernet5/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 365 + Ethernet5/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 366 + Ethernet5/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 367 + Ethernet5/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 368 + Ethernet5/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 369 + Ethernet5/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 370 + Ethernet5/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 371 + Ethernet5/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 372 + Ethernet5/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 373 + Ethernet5/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 374 + Ethernet5/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 375 + Ethernet5/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 376 + Ethernet5/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 377 + Ethernet5/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 378 + Ethernet5/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 379 + Ethernet5/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 380 + Ethernet5/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 381 + Ethernet5/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 382 + Ethernet5/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 383 + Ethernet5/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 384 + Ethernet5/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 385 + Ethernet5/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 386 + Ethernet5/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 387 + Ethernet5/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 388 + Ethernet5/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 389 + Ethernet5/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 390 + Ethernet5/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 391 + Ethernet5/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 392 + Ethernet5/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 393 + Ethernet5/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 394 + Ethernet5/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 395 + Ethernet5/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 396 + Ethernet5/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 397 + Ethernet6/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 398 + Ethernet6/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 399 + Ethernet6/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 400 + Ethernet6/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 401 + Ethernet6/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 402 + Ethernet6/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 403 + Ethernet6/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 404 + Ethernet6/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 405 + Ethernet6/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 406 + Ethernet6/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 407 + Ethernet6/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 408 + Ethernet6/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 409 + Ethernet6/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 410 + Ethernet6/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 411 + Ethernet6/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 412 + Ethernet6/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 413 + Ethernet6/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 414 + Ethernet6/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 415 + Ethernet6/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 416 + Ethernet6/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 417 + Ethernet6/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 418 + Ethernet6/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 419 + Ethernet6/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 420 + Ethernet6/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 421 + Ethernet6/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 422 + Ethernet6/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 423 + Ethernet6/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 424 + Ethernet6/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 425 + Ethernet6/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 426 + Ethernet6/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 427 + Ethernet6/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 428 + Ethernet6/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 429 + Ethernet6/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 430 + Ethernet6/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 431 + Ethernet6/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 432 + Ethernet6/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 433 + Ethernet6/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 434 + Ethernet6/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 435 + Ethernet6/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 436 + Ethernet6/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 437 + Ethernet6/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 438 + Ethernet6/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 439 + Ethernet6/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 440 + Ethernet6/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 441 + Ethernet6/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 442 + Ethernet6/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 443 + Ethernet6/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 444 + Ethernet6/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 445 + Ethernet6/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 446 + Ethernet6/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 447 + Ethernet6/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 448 + Ethernet6/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 449 + Ethernet6/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 450 + Ethernet6/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 451 + Ethernet6/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 452 + Ethernet6/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 453 + Ethernet6/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 454 + Ethernet6/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 455 + Ethernet6/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 456 + Ethernet6/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 457 + Ethernet6/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 458 + Ethernet6/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 459 + Ethernet6/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 460 + Ethernet6/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 461 + Ethernet6/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 462 + Ethernet6/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 463 + Ethernet6/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 464 + Ethernet6/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 465 + Ethernet6/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 466 + Ethernet6/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 467 + Ethernet6/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 468 + Ethernet6/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 469 + Ethernet6/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 470 + Ethernet6/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 471 + Ethernet6/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 472 + Ethernet6/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 473 + Ethernet6/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 474 + Ethernet6/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 475 + Ethernet6/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 476 + Ethernet6/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 477 + Ethernet6/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 478 + Ethernet6/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 479 + Ethernet6/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 480 + Ethernet6/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 481 + Ethernet6/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 482 + Ethernet6/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 483 + Ethernet6/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 484 + Ethernet6/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 485 + Ethernet6/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 486 + Ethernet6/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 487 + Ethernet6/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 488 + Ethernet6/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 489 + Ethernet6/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 490 + Ethernet6/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 491 + Ethernet6/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 492 + Ethernet6/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 493 + Ethernet6/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 494 + Ethernet6/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 495 + Ethernet6/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 496 + Ethernet6/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 497 + Ethernet6/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 498 + Ethernet6/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 499 + Ethernet6/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 500 + Ethernet6/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 501 + Ethernet6/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 502 + Ethernet6/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 503 + Ethernet6/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 504 + Ethernet6/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 505 + Ethernet6/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 506 + Ethernet6/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 507 + Ethernet6/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 508 + Ethernet6/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 509 + Ethernet6/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 510 + Ethernet6/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 511 + Ethernet6/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 512 + Ethernet6/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 513 + Ethernet6/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 514 + Ethernet6/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 515 + Ethernet6/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 516 + Ethernet6/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 517 + Ethernet6/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 518 + Ethernet6/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 519 + Ethernet6/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 520 + Ethernet6/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 521 + Ethernet6/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 522 + Ethernet6/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 523 + Ethernet6/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 524 + Ethernet6/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 525 + Ethernet6/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 526 + Ethernet6/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 527 + Ethernet6/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 528 + Ethernet6/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 529 + Ethernet6/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 530 + Ethernet6/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 531 + Ethernet6/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 532 + Ethernet6/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 533 + Ethernet6/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 534 + Ethernet6/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 535 + Ethernet6/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 536 + Ethernet6/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 537 + Ethernet6/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 538 + Ethernet6/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 539 + Ethernet6/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 540 + Ethernet6/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 541 + Ethernet7/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 542 + Ethernet7/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 543 + Ethernet7/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 544 + Ethernet7/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 545 + Ethernet7/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 546 + Ethernet7/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 547 + Ethernet7/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 548 + Ethernet7/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 549 + Ethernet7/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 550 + Ethernet7/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 551 + Ethernet7/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 552 + Ethernet7/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 553 + Ethernet7/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 554 + Ethernet7/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 555 + Ethernet7/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 556 + Ethernet7/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 557 + Ethernet7/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 558 + Ethernet7/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 559 + Ethernet7/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 560 + Ethernet7/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 561 + Ethernet7/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 562 + Ethernet7/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 563 + Ethernet7/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 564 + Ethernet7/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 565 + Ethernet7/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 566 + Ethernet7/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 567 + Ethernet7/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 568 + Ethernet7/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 569 + Ethernet7/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 570 + Ethernet7/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 571 + Ethernet7/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 572 + Ethernet7/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 573 + Ethernet7/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 574 + Ethernet7/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 575 + Ethernet7/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 576 + Ethernet7/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 577 + Ethernet7/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 578 + Ethernet7/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 579 + Ethernet7/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 580 + Ethernet7/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 581 + Ethernet7/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 582 + Ethernet7/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 583 + Ethernet7/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 584 + Ethernet7/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 585 + Ethernet7/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 586 + Ethernet7/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 587 + Ethernet7/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 588 + Ethernet7/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 589 + Ethernet7/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 590 + Ethernet7/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 591 + Ethernet7/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 592 + Ethernet7/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 593 + Ethernet7/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 594 + Ethernet7/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 595 + Ethernet7/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 596 + Ethernet7/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 597 + Ethernet7/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 598 + Ethernet7/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 599 + Ethernet7/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 600 + Ethernet7/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 601 + Ethernet7/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 602 + Ethernet7/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 603 + Ethernet7/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 604 + Ethernet7/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 605 + Ethernet7/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 606 + Ethernet7/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 607 + Ethernet7/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 608 + Ethernet7/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 609 + Ethernet7/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 610 + Ethernet7/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 611 + Ethernet7/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 612 + Ethernet7/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 613 + Ethernet7/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 614 + Ethernet7/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 615 + Ethernet7/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 616 + Ethernet7/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 617 + Ethernet7/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 618 + Ethernet7/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 619 + Ethernet7/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 620 + Ethernet7/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 621 + Ethernet7/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 622 + Ethernet7/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 623 + Ethernet7/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 624 + Ethernet7/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 625 + Ethernet7/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 626 + Ethernet7/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 627 + Ethernet7/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 628 + Ethernet7/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 629 + Ethernet7/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 630 + Ethernet7/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 631 + Ethernet7/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 632 + Ethernet7/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 633 + Ethernet7/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 634 + Ethernet7/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 635 + Ethernet7/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 636 + Ethernet7/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 637 + Ethernet7/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 638 + Ethernet7/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 639 + Ethernet7/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 640 + Ethernet7/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 641 + Ethernet7/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 642 + Ethernet7/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 643 + Ethernet7/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 644 + Ethernet7/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 645 + Ethernet7/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 646 + Ethernet7/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 647 + Ethernet7/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 648 + Ethernet7/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 649 + Ethernet7/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 650 + Ethernet7/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 651 + Ethernet7/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 652 + Ethernet7/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 653 + Ethernet7/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 654 + Ethernet7/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 655 + Ethernet7/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 656 + Ethernet7/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 657 + Ethernet7/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 658 + Ethernet7/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 659 + Ethernet7/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 660 + Ethernet7/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 661 + Ethernet7/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 662 + Ethernet7/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 663 + Ethernet7/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 664 + Ethernet7/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 665 + Ethernet7/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 666 + Ethernet7/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 667 + Ethernet7/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 668 + Ethernet7/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 669 + Ethernet7/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 670 + Ethernet7/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 671 + Ethernet7/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 672 + Ethernet7/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 673 + Ethernet7/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 674 + Ethernet7/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 675 + Ethernet7/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 676 + Ethernet7/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 677 + Ethernet7/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 678 + Ethernet7/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 679 + Ethernet7/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 680 + Ethernet7/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 681 + Ethernet7/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 682 + Ethernet7/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 683 + Ethernet7/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 684 + Ethernet7/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 685 + Ethernet8/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 686 + Ethernet8/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 687 + Ethernet8/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 688 + Ethernet8/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 689 + Ethernet8/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 690 + Ethernet8/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 691 + Ethernet8/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 692 + Ethernet8/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 693 + Ethernet8/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 694 + Ethernet8/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 695 + Ethernet8/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 696 + Ethernet8/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 697 + Ethernet8/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 698 + Ethernet8/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 699 + Ethernet8/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 700 + Ethernet8/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 701 + Ethernet8/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 702 + Ethernet8/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 703 + Ethernet8/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 704 + Ethernet8/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 705 + Ethernet8/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 706 + Ethernet8/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 707 + Ethernet8/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 708 + Ethernet8/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 709 + Ethernet8/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 710 + Ethernet8/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 711 + Ethernet8/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 712 + Ethernet8/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 713 + Ethernet8/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 714 + Ethernet8/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 715 + Ethernet8/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 716 + Ethernet8/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 717 + Ethernet8/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 718 + Ethernet8/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 719 + Ethernet8/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 720 + Ethernet8/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 721 + Ethernet8/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 722 + Ethernet8/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 723 + Ethernet8/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 724 + Ethernet8/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 725 + Ethernet8/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 726 + Ethernet8/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 727 + Ethernet8/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 728 + Ethernet8/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 729 + Ethernet8/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 730 + Ethernet8/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 731 + Ethernet8/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 732 + Ethernet8/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 733 + Ethernet8/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 734 + Ethernet8/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 735 + Ethernet8/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 736 + Ethernet8/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 737 + Ethernet8/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 738 + Ethernet8/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 739 + Ethernet8/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 740 + Ethernet8/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 741 + Ethernet8/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 742 + Ethernet8/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 743 + Ethernet8/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 744 + Ethernet8/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 745 + Ethernet8/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 746 + Ethernet8/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 747 + Ethernet8/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 748 + Ethernet8/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 749 + Ethernet8/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 750 + Ethernet8/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 751 + Ethernet8/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 752 + Ethernet8/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 753 + Ethernet8/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 754 + Ethernet8/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 755 + Ethernet8/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 756 + Ethernet8/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 757 + Ethernet8/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 758 + Ethernet8/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 759 + Ethernet8/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 760 + Ethernet8/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 761 + Ethernet8/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 762 + Ethernet8/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 763 + Ethernet8/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 764 + Ethernet8/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 765 + Ethernet8/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 766 + Ethernet8/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 767 + Ethernet8/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 768 + Ethernet8/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 769 + Ethernet8/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 770 + Ethernet8/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 771 + Ethernet8/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 772 + Ethernet8/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 773 + Ethernet8/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 774 + Ethernet8/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 775 + Ethernet8/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 776 + Ethernet8/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 777 + Ethernet8/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 778 + Ethernet8/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 779 + Ethernet8/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 780 + Ethernet8/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 781 + Ethernet8/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 782 + Ethernet8/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 783 + Ethernet8/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 784 + Ethernet8/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 785 + Ethernet8/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 786 + Ethernet8/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 787 + Ethernet8/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 788 + Ethernet8/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 789 + Ethernet8/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 790 + Ethernet8/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 791 + Ethernet8/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 792 + Ethernet8/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 793 + Ethernet8/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 794 + Ethernet8/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 795 + Ethernet8/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 796 + Ethernet8/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 797 + Ethernet8/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 798 + Ethernet8/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 799 + Ethernet8/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 800 + Ethernet8/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 801 + Ethernet8/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 802 + Ethernet8/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 803 + Ethernet8/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 804 + Ethernet8/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 805 + Ethernet8/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 806 + Ethernet8/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 807 + Ethernet8/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 808 + Ethernet8/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 809 + Ethernet8/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 810 + Ethernet8/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 811 + Ethernet8/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 812 + Ethernet8/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 813 + Ethernet8/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 814 + Ethernet8/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 815 + Ethernet8/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 816 + Ethernet8/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 817 + Ethernet8/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 818 + Ethernet8/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 819 + Ethernet8/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 820 + Ethernet8/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 821 + Ethernet8/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 822 + Ethernet8/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 823 + Ethernet8/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 824 + Ethernet8/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 825 + Ethernet8/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 826 + Ethernet8/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 827 + Ethernet8/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 828 + Ethernet8/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 829 + Ethernet9/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 830 + Ethernet9/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 831 + Ethernet9/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 832 + Ethernet9/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 833 + Ethernet9/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 834 + Ethernet9/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 835 + Ethernet9/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 836 + Ethernet9/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 837 + Ethernet9/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 838 + Ethernet9/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 839 + Ethernet9/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 840 + Ethernet9/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 841 + Ethernet9/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 842 + Ethernet9/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 843 + Ethernet9/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 844 + Ethernet9/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 845 + Ethernet9/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 846 + Ethernet9/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 847 + Ethernet9/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 848 + Ethernet9/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 849 + Ethernet9/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 850 + Ethernet9/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 851 + Ethernet9/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 852 + Ethernet9/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 853 + Ethernet9/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 854 + Ethernet9/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 855 + Ethernet9/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 856 + Ethernet9/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 857 + Ethernet9/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 858 + Ethernet9/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 859 + Ethernet9/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 860 + Ethernet9/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 861 + Ethernet9/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 862 + Ethernet9/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 863 + Ethernet9/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 864 + Ethernet9/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 865 + Ethernet9/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 866 + Ethernet9/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 867 + Ethernet9/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 868 + Ethernet9/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 869 + Ethernet9/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 870 + Ethernet9/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 871 + Ethernet9/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 872 + Ethernet9/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 873 + Ethernet9/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 874 + Ethernet9/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 875 + Ethernet9/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 876 + Ethernet9/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 877 + Ethernet9/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 878 + Ethernet9/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 879 + Ethernet9/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 880 + Ethernet9/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 881 + Ethernet9/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 882 + Ethernet9/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 883 + Ethernet9/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 884 + Ethernet9/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 885 + Ethernet9/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 886 + Ethernet9/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 887 + Ethernet9/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 888 + Ethernet9/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 889 + Ethernet9/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 890 + Ethernet9/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 891 + Ethernet9/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 892 + Ethernet9/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 893 + Ethernet9/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 894 + Ethernet9/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 895 + Ethernet9/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 896 + Ethernet9/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 897 + Ethernet9/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 898 + Ethernet9/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 899 + Ethernet9/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 900 + Ethernet9/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 901 + Ethernet9/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 902 + Ethernet9/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 903 + Ethernet9/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 904 + Ethernet9/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 905 + Ethernet9/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 906 + Ethernet9/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 907 + Ethernet9/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 908 + Ethernet9/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 909 + Ethernet9/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 910 + Ethernet9/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 911 + Ethernet9/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 912 + Ethernet9/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 913 + Ethernet9/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 914 + Ethernet9/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 915 + Ethernet9/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 916 + Ethernet9/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 917 + Ethernet9/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 918 + Ethernet9/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 919 + Ethernet9/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 920 + Ethernet9/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 921 + Ethernet9/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 922 + Ethernet9/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 923 + Ethernet9/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 924 + Ethernet9/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 925 + Ethernet9/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 926 + Ethernet9/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 927 + Ethernet9/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 928 + Ethernet9/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 929 + Ethernet9/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 930 + Ethernet9/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 931 + Ethernet9/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 932 + Ethernet9/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 933 + Ethernet9/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 934 + Ethernet9/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 935 + Ethernet9/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 936 + Ethernet9/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 937 + Ethernet9/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 938 + Ethernet9/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 939 + Ethernet9/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 940 + Ethernet9/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 941 + Ethernet9/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 942 + Ethernet9/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 943 + Ethernet9/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 944 + Ethernet9/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 945 + Ethernet9/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 946 + Ethernet9/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 947 + Ethernet9/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 948 + Ethernet9/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 949 + Ethernet9/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 950 + Ethernet9/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 951 + Ethernet9/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 952 + Ethernet9/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 953 + Ethernet9/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 954 + Ethernet9/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 955 + Ethernet9/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 956 + Ethernet9/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 957 + Ethernet9/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 958 + Ethernet9/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 959 + Ethernet9/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 960 + Ethernet9/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 961 + Ethernet9/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 962 + Ethernet9/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 963 + Ethernet9/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 964 + Ethernet9/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 965 + Ethernet9/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 966 + Ethernet9/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 967 + Ethernet9/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 968 + Ethernet9/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 969 + Ethernet9/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 970 + Ethernet9/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 971 + Ethernet9/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 972 + Ethernet9/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 973 + Ethernet10/1/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 974 + Ethernet10/1/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 975 + Ethernet10/1/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 976 + Ethernet10/2/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 977 + Ethernet10/2/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 978 + Ethernet10/2/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 979 + Ethernet10/3/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 980 + Ethernet10/3/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 981 + Ethernet10/3/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 982 + Ethernet10/4/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 983 + Ethernet10/4/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 984 + Ethernet10/4/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 985 + Ethernet10/5/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 986 + Ethernet10/5/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 987 + Ethernet10/5/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 988 + Ethernet10/6/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 989 + Ethernet10/6/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 990 + Ethernet10/6/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 991 + Ethernet10/7/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 992 + Ethernet10/7/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 993 + Ethernet10/7/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 994 + Ethernet10/8/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 995 + Ethernet10/8/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 996 + Ethernet10/8/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 997 + Ethernet10/9/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 998 + Ethernet10/9/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 999 + Ethernet10/9/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1000 + Ethernet10/10/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1001 + Ethernet10/10/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1002 + Ethernet10/10/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1003 + Ethernet10/11/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1004 + Ethernet10/11/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1005 + Ethernet10/11/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1006 + Ethernet10/12/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1007 + Ethernet10/12/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1008 + Ethernet10/12/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1009 + Ethernet10/13/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1010 + Ethernet10/13/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1011 + Ethernet10/13/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1012 + Ethernet10/14/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1013 + Ethernet10/14/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1014 + Ethernet10/14/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1015 + Ethernet10/15/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1016 + Ethernet10/15/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1017 + Ethernet10/15/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1018 + Ethernet10/16/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1019 + Ethernet10/16/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1020 + Ethernet10/16/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1021 + Ethernet10/17/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1022 + Ethernet10/17/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1023 + Ethernet10/17/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1024 + Ethernet10/18/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1025 + Ethernet10/18/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1026 + Ethernet10/18/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1027 + Ethernet10/19/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1028 + Ethernet10/19/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1029 + Ethernet10/19/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1030 + Ethernet10/20/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1031 + Ethernet10/20/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1032 + Ethernet10/20/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1033 + Ethernet10/21/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1034 + Ethernet10/21/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1035 + Ethernet10/21/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1036 + Ethernet10/22/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1037 + Ethernet10/22/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1038 + Ethernet10/22/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1039 + Ethernet10/23/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1040 + Ethernet10/23/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1041 + Ethernet10/23/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1042 + Ethernet10/24/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1043 + Ethernet10/24/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1044 + Ethernet10/24/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1045 + Ethernet10/25/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1046 + Ethernet10/25/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1047 + Ethernet10/25/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1048 + Ethernet10/26/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1049 + Ethernet10/26/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1050 + Ethernet10/26/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1051 + Ethernet10/27/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1052 + Ethernet10/27/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1053 + Ethernet10/27/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1054 + Ethernet10/28/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1055 + Ethernet10/28/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1056 + Ethernet10/28/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1057 + Ethernet10/29/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1058 + Ethernet10/29/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1059 + Ethernet10/29/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1060 + Ethernet10/30/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1061 + Ethernet10/30/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1062 + Ethernet10/30/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1063 + Ethernet10/31/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1064 + Ethernet10/31/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1065 + Ethernet10/31/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1066 + Ethernet10/32/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1067 + Ethernet10/32/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1068 + Ethernet10/32/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1069 + Ethernet10/33/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1070 + Ethernet10/33/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1071 + Ethernet10/33/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1072 + Ethernet10/34/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1073 + Ethernet10/34/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1074 + Ethernet10/34/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1075 + Ethernet10/35/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1076 + Ethernet10/35/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1077 + Ethernet10/35/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1078 + Ethernet10/36/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1079 + Ethernet10/36/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1080 + Ethernet10/36/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1081 + Ethernet10/37/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1082 + Ethernet10/37/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1083 + Ethernet10/37/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1084 + Ethernet10/38/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1085 + Ethernet10/38/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1086 + Ethernet10/38/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1087 + Ethernet10/39/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1088 + Ethernet10/39/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1089 + Ethernet10/39/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1090 + Ethernet10/40/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1091 + Ethernet10/40/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1092 + Ethernet10/40/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1093 + Ethernet10/41/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1094 + Ethernet10/41/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1095 + Ethernet10/41/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1096 + Ethernet10/42/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1097 + Ethernet10/42/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1098 + Ethernet10/42/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1099 + Ethernet10/43/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1100 + Ethernet10/43/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1101 + Ethernet10/43/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1102 + Ethernet10/44/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1103 + Ethernet10/44/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1104 + Ethernet10/44/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1105 + Ethernet10/45/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1106 + Ethernet10/45/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1107 + Ethernet10/45/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1108 + Ethernet10/46/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1109 + Ethernet10/46/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1110 + Ethernet10/46/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1111 + Ethernet10/47/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1112 + Ethernet10/47/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1113 + Ethernet10/47/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + DeviceInterface + + true + 1114 + Ethernet10/48/1 + false + + + 0 + egress + none + 0 + + 0 + + + DeviceInterface + + true + 1115 + Ethernet10/48/1 + false + + + 0 + ingress + none + 0 + + 0 + + + DeviceInterface + + true + 1116 + Ethernet10/48/1 + false + + + 0 + Bidirectional + none + 0 + + 0 + + + + + DeviceInterface + + true + 1 + power1/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 2 + power1/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 3 + power2/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 4 + power2/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 5 + power3/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 6 + power3/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 7 + power4/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 8 + power4/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 9 + power7/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 10 + power7/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 11 + power8/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 12 + power8/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 13 + power9/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 14 + power9/1 + false + + + 0 + + C19 + C19 + true + + + DeviceInterface + + true + 15 + power10/0 + false + + + 0 + + C19 + C19 + false + + + DeviceInterface + + true + 16 + power10/1 + false + + + 0 + + C19 + C19 + true + + + + + + DeviceInterface + + true + 1 + console + false + console + + 9600 + false + + + + DeviceInterface + + false + 2 + logical1 + false + logical1 + + 9600 + true + 1 + + + DeviceInterface + + false + 3 + logical2 + false + logical2 + + 9600 + true + 2 + + + DeviceInterface + + false + 4 + logical3 + false + logical3 + + 9600 + true + 3 + + + DeviceInterface + + false + 5 + logical4 + false + logical4 + + 9600 + true + 4 + + + DeviceInterface + + false + 6 + logical5 + false + logical5 + + 9600 + true + 5 + + + DeviceInterface + + false + 7 + logical6 + false + logical6 + + 9600 + true + 6 + + + DeviceInterface + + false + 8 + logical7 + false + logical7 + + 9600 + true + 7 + + + DeviceInterface + + false + 9 + logical8 + false + logical8 + + 9600 + true + 8 + + + DeviceInterface + + false + 10 + logical9 + false + logical9 + + 9600 + true + 9 + + + DeviceInterface + + false + 11 + logical10 + false + logical10 + + 9600 + true + 10 + + + DeviceInterface + + false + 12 + logical11 + false + logical11 + + 9600 + true + 11 + + + DeviceInterface + + false + 13 + logical12 + false + logical12 + + 9600 + true + 12 + + + + Sonic + + + + + + + + LoopbackInterface + HostIP + Loopback0 + + 10.152.0.46/32 + + 10.152.0.46/32 + + + LoopbackInterface + HostIP1 + Loopback0 + + 2a01:111:e210:5e::/128 + + 2a01:111:e210:5e::/128 + + + + + ManagementInterface + ManagementIP + Management1/1 + + 10.3.146.111/24 + + 10.3.146.111/24 + + + + ManagementInterface + v6ManagementIP + Management1/1 + + 2a01:111:e210:3000::a03:926f/64 + + 2a01:111:e210:3000::a03:926f/64 + + + + + + + + str-sonic-sup00 + + + + + + + + + + + + + + + str-sonic-sup00:console;str-console-197:port 10 + + + FlowControl + + False + + + str-sonic:console;str-console-197:port 10 + + + + + + + + str-sonic-sup00-ASIC00 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + ProviderLineCard + + str-sonic-fc00 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC01 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + ProviderLineCard + + str-sonic-fc00 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC02 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 2 + + + ProviderLineCard + + str-sonic-fc01 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC03 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 3 + + + ProviderLineCard + + str-sonic-fc01 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC04 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 8 + + + ProviderLineCard + + str-sonic-fc02 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC05 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 9 + + + ProviderLineCard + + str-sonic-fc02 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC06 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 14 + + + ProviderLineCard + + str-sonic-fc03 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC07 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 15 + + + ProviderLineCard + + str-sonic-fc03 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC08 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 20 + + + ProviderLineCard + + str-sonic-fc04 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC09 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 21 + + + ProviderLineCard + + str-sonic-fc04 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC10 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 26 + + + ProviderLineCard + + str-sonic-fc05 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00-ASIC11 + + + ForwardingMethod + + VoQ + + + ParentHardwareFabricSkuName + + Sonic-supvisor-sku + + + SubRole + + Fabric + + + AsicSwitchId + + 27 + + + ProviderLineCard + + str-sonic-fc05 + + + ParentRouter + + str-sonic-sup00 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic-sup00 + + + FirmwareProfile + + SONiC-Sonic-supvisor-sku-sup + + + ForwardingMethod + + VoQ + + + OsVersion + + SONiC.20220532.60 + + + ParentRouter + + str-sonic + + + SubDevices + + str-sonic-sup00-ASIC00;str-sonic-sup00-ASIC01;str-sonic-sup00-ASIC02;str-sonic-sup00-ASIC03;str-sonic-sup00-ASIC04;str-sonic-sup00-ASIC05;str-sonic-sup00-ASIC06;str-sonic-sup00-ASIC07;str-sonic-sup00-ASIC08;str-sonic-sup00-ASIC09;str-sonic-sup00-ASIC10;str-sonic-sup00-ASIC11 + + + Group + + str-sonic + + + DcCode + + STR + + + CloudType + + Public + + + Location + + TBD + + + Function + + LabTest + + + DeploymentId + + 3 + + + SonicEnabled + + True + + + Region + + test + + + + + str-sonic + + + CloudType + + Public + + + ConfigDbAclFile + + SonicNativeAcl.liquid + + + ConfigTemplateFile + + Sonic.xml + + + DNSServers + + 10.64.5.5;10.64.6.6;10.64.6.7 + + + DcCode + + STR + + + DeploymentId + + 3 + + + EnableStreamingTelemetry + + true + + + ErspanDestinationIpv4 + + 10.20.6.4 + + + Function + + LabTest + + + Group + + str:542907040 + + + InitConfigTemplateFile + + Sonic.init.xml + + + Location + + TBD + + + Loopback0Ipv4 + + 10.2.0.1/32;10.2.0.2/32;10.2.0.3/32;10.2.0.4/32 + + + Loopback0Ipv6 + + fc00:20::1/128;fc00:21::1/128;fc00:22::1/128;fc00:23::1/128 + + + Loopback4096Ipv4 + + 192.0.0.1/32;192.0.0.2/32;192.0.0.8/32;192.0.0.9/32 + + + Loopback4096Ipv6 + + 2603:10e2:400::1/128;2603:10e2:400::2/128;2603:10e2:400::8/128;2603:10e2:400::9/128 + + + MacSecEnabled + + True + + + MacSecProfile + usstagee.Sonic.MacSec + PrimaryKey="macsec-profile-two" FallbackKey="macsec-profile" MacsecPolicy="" + + + ManagementIpv4 + + 10.3.146.58/24;10.3.146.71/24;10.3.146.72/24;10.3.146.74/24;10.3.146.75/24;10.3.146.80/24;10.3.146.81/24;10.3.146.83/24 + + + ManagementIpv6 + + 2a01:111:e210:3000::a03:923a/64;2a01:111:e210:3000::a03:9247/64;2a01:111:e210:3000::a03:9248/64;2a01:111:e210:3000::a03:924a/64;2a01:111:e210:3000::a03:924b/64;2a01:111:e210:3000::a03:9250/64;2a01:111:e210:3000::a03:9251/64;2a01:111:e210:3000::a03:9253/64 + + + MaxCountOfCores + + 64 + + + NtpResources + Public.Ntp + 17.39.1.129;17.39.1.130 + + + QosProfile + + VerlaineLongHaul + + + RemoteAuthenticationProtocol + + Tacacs + + + SnmpResources + + 10.52.180.161;10.3.157.12 + + + SonicConfigTemplateFile + + Sonic.xml + + + SonicEnabled + + True + + + SyslogResources + + 10.52.180.161;10.3.157.12 + + + SyslogServer + + 10.20.4.167;10.20.7.33;10.20.6.16;10.20.6.84 + + + TacacsKey + + $Secrets.TacacsKey + + + TacacsSecurityLevel + + 7 + + + TacacsServer + + 123.46.98.21 + + + TotalCountOfVoQ + + 8 + + + Region + + test + + + ChassisEnabled + + true + + + + + + + + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth0 + true + str-sonic-lc05-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth2 + true + str-sonic-lc05-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth5 + true + str-sonic-lc05-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth12 + true + str-sonic-lc04-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth14 + true + str-sonic-lc04-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth18 + true + str-sonic-lc04-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth26 + true + str-sonic-lc04-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth29 + true + str-sonic-lc04-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth33 + true + str-sonic-lc10-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth34 + true + str-sonic-lc10-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth37 + true + str-sonic-lc04-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth50 + true + str-sonic-lc08-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth52 + true + str-sonic-lc09-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth54 + true + str-sonic-lc08-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth55 + true + str-sonic-lc09-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth57 + true + str-sonic-lc09-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth64 + true + str-sonic-lc10-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth65 + true + str-sonic-lc10-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth66 + true + str-sonic-lc10-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth74 + true + str-sonic-lc10-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth75 + true + str-sonic-lc10-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth80 + true + str-sonic-lc09-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth84 + true + str-sonic-lc10-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth86 + true + str-sonic-lc10-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth92 + true + str-sonic-lc09-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth96 + true + str-sonic-lc09-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth98 + true + str-sonic-lc09-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth103 + true + str-sonic-lc09-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth108 + true + str-sonic-lc08-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth109 + true + str-sonic-lc08-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth114 + true + str-sonic-lc08-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth115 + true + str-sonic-lc08-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth121 + true + str-sonic-lc08-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth126 + true + str-sonic-lc08-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth127 + true + str-sonic-lc07-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth131 + true + str-sonic-lc07-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth132 + true + str-sonic-lc07-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth136 + true + str-sonic-lc07-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth138 + true + str-sonic-lc07-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth141 + true + str-sonic-lc07-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth147 + true + str-sonic-lc05-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth148 + true + str-sonic-lc05-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth153 + true + str-sonic-lc04-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth154 + true + str-sonic-lc04-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth156 + true + str-sonic-lc05-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth157 + true + str-sonic-lc05-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth161 + true + str-sonic-lc05-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth170 + true + str-sonic-lc06-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth171 + true + str-sonic-lc05-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC02 + Eth190 + true + str-sonic-lc07-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth3 + true + str-sonic-lc04-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth6 + true + str-sonic-lc04-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth7 + true + str-sonic-lc04-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth9 + true + str-sonic-lc04-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth19 + true + str-sonic-lc04-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth22 + true + str-sonic-lc04-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth397 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth388 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth399 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth396 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth390 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth407 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth50 + true + str-sonic-lc09-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth54 + true + str-sonic-lc09-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth61 + true + str-sonic-lc09-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth67 + true + str-sonic-lc09-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth68 + true + str-sonic-lc09-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth71 + true + str-sonic-lc09-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth73 + true + str-sonic-lc10-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth77 + true + str-sonic-lc10-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth81 + true + str-sonic-lc10-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth87 + true + str-sonic-lc10-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth88 + true + str-sonic-lc10-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth90 + true + str-sonic-lc10-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth94 + true + str-sonic-lc10-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth98 + true + str-sonic-lc08-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth100 + true + str-sonic-lc08-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth101 + true + str-sonic-lc08-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth107 + true + str-sonic-lc08-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth111 + true + str-sonic-lc08-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth112 + true + str-sonic-lc08-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth123 + true + str-sonic-lc07-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth124 + true + str-sonic-lc07-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth134 + true + str-sonic-lc07-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth140 + true + str-sonic-lc07-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth144 + true + str-sonic-lc05-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth149 + true + str-sonic-lc05-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth154 + true + str-sonic-lc05-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth158 + true + str-sonic-lc05-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth163 + true + str-sonic-lc05-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth164 + true + str-sonic-lc05-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth167 + true + str-sonic-lc05-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth412 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth414 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth413 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth404 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC03 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth415 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth0 + true + str-sonic-lc05-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth2 + true + str-sonic-lc05-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth5 + true + str-sonic-lc05-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth12 + true + str-sonic-lc04-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth14 + true + str-sonic-lc04-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth15 + true + str-sonic-lc05-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth18 + true + str-sonic-lc04-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth462 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth541 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth458 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth26 + true + str-sonic-lc04-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth29 + true + str-sonic-lc04-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth33 + true + str-sonic-lc10-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth34 + true + str-sonic-lc10-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth37 + true + str-sonic-lc04-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth38 + true + str-sonic-lc04-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth420 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth468 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth422 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth470 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth536 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth538 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth50 + true + str-sonic-lc08-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth52 + true + str-sonic-lc09-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth54 + true + str-sonic-lc08-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth55 + true + str-sonic-lc09-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth57 + true + str-sonic-lc09-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth58 + true + str-sonic-lc10-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth64 + true + str-sonic-lc10-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth65 + true + str-sonic-lc10-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth66 + true + str-sonic-lc10-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth74 + true + str-sonic-lc10-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth75 + true + str-sonic-lc10-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth80 + true + str-sonic-lc09-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth556 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth84 + true + str-sonic-lc10-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth86 + true + str-sonic-lc10-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth456 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth562 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth559 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth92 + true + str-sonic-lc09-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth459 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth553 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth96 + true + str-sonic-lc09-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth98 + true + str-sonic-lc09-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth100 + true + str-sonic-lc09-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth103 + true + str-sonic-lc09-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth108 + true + str-sonic-lc08-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth109 + true + str-sonic-lc08-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth114 + true + str-sonic-lc08-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth115 + true + str-sonic-lc08-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth121 + true + str-sonic-lc08-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth126 + true + str-sonic-lc08-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth127 + true + str-sonic-lc07-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth131 + true + str-sonic-lc07-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth132 + true + str-sonic-lc07-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth135 + true + str-sonic-lc08-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth136 + true + str-sonic-lc07-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth138 + true + str-sonic-lc07-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth141 + true + str-sonic-lc07-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth147 + true + str-sonic-lc05-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth148 + true + str-sonic-lc05-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth153 + true + str-sonic-lc04-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth154 + true + str-sonic-lc04-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth156 + true + str-sonic-lc05-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth157 + true + str-sonic-lc05-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth161 + true + str-sonic-lc05-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth170 + true + str-sonic-lc06-ASIC00 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth171 + true + str-sonic-lc05-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth488 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth187 + true + str-sonic-lc07-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC04 + Eth190 + true + str-sonic-lc07-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth3 + true + str-sonic-lc04-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth6 + true + str-sonic-lc04-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth7 + true + str-sonic-lc04-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth9 + true + str-sonic-lc04-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth19 + true + str-sonic-lc04-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth22 + true + str-sonic-lc04-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth461 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth457 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth469 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth463 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth460 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth570 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth565 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth574 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth568 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth50 + true + str-sonic-lc09-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth54 + true + str-sonic-lc09-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth61 + true + str-sonic-lc09-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth67 + true + str-sonic-lc09-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth68 + true + str-sonic-lc09-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth71 + true + str-sonic-lc09-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth73 + true + str-sonic-lc10-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth77 + true + str-sonic-lc10-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth81 + true + str-sonic-lc10-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth87 + true + str-sonic-lc10-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth88 + true + str-sonic-lc10-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth90 + true + str-sonic-lc10-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth94 + true + str-sonic-lc10-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth98 + true + str-sonic-lc08-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth100 + true + str-sonic-lc08-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth101 + true + str-sonic-lc08-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth107 + true + str-sonic-lc08-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth111 + true + str-sonic-lc08-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth112 + true + str-sonic-lc08-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth123 + true + str-sonic-lc07-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth124 + true + str-sonic-lc07-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth134 + true + str-sonic-lc07-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth140 + true + str-sonic-lc07-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth144 + true + str-sonic-lc05-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth149 + true + str-sonic-lc05-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth154 + true + str-sonic-lc05-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth158 + true + str-sonic-lc05-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth163 + true + str-sonic-lc05-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth164 + true + str-sonic-lc05-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth167 + true + str-sonic-lc05-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth491 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth490 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth489 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth480 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth481 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC05 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth483 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth0 + true + str-sonic-lc05-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth1 + true + str-sonic-lc05-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth5 + true + str-sonic-lc05-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth12 + true + str-sonic-lc04-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth14 + true + str-sonic-lc04-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth15 + true + str-sonic-lc05-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth18 + true + str-sonic-lc04-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth555 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth558 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth575 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth482 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth557 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth27 + true + str-sonic-lc04-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth29 + true + str-sonic-lc04-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth33 + true + str-sonic-lc10-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth34 + true + str-sonic-lc10-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth37 + true + str-sonic-lc04-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth38 + true + str-sonic-lc04-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth439 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth471 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth542 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth437 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth50 + true + str-sonic-lc08-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth51 + true + str-sonic-lc09-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth52 + true + str-sonic-lc09-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth54 + true + str-sonic-lc08-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth55 + true + str-sonic-lc09-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth57 + true + str-sonic-lc09-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth58 + true + str-sonic-lc10-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth64 + true + str-sonic-lc10-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth66 + true + str-sonic-lc10-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth69 + true + str-sonic-lc10-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth74 + true + str-sonic-lc10-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth75 + true + str-sonic-lc10-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth80 + true + str-sonic-lc09-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth566 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth552 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth502 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth84 + true + str-sonic-lc10-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth86 + true + str-sonic-lc10-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth563 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth560 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth507 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth496 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth92 + true + str-sonic-lc09-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth554 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth501 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth96 + true + str-sonic-lc09-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth100 + true + str-sonic-lc09-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth103 + true + str-sonic-lc09-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth108 + true + str-sonic-lc08-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth109 + true + str-sonic-lc08-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth114 + true + str-sonic-lc08-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth115 + true + str-sonic-lc08-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth118 + true + str-sonic-lc08-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth121 + true + str-sonic-lc08-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth126 + true + str-sonic-lc08-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth127 + true + str-sonic-lc07-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth132 + true + str-sonic-lc07-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth135 + true + str-sonic-lc08-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth136 + true + str-sonic-lc07-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth138 + true + str-sonic-lc07-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth141 + true + str-sonic-lc07-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth147 + true + str-sonic-lc05-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth148 + true + str-sonic-lc05-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth153 + true + str-sonic-lc04-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth154 + true + str-sonic-lc04-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth156 + true + str-sonic-lc05-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth157 + true + str-sonic-lc05-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth161 + true + str-sonic-lc05-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth168 + true + str-sonic-lc06-ASIC00 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth171 + true + str-sonic-lc05-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth448 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth451 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth474 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth187 + true + str-sonic-lc07-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC06 + Eth190 + true + str-sonic-lc07-ASIC00 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth3 + true + str-sonic-lc04-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth6 + true + str-sonic-lc04-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth7 + true + str-sonic-lc04-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth9 + true + str-sonic-lc04-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth19 + true + str-sonic-lc04-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth22 + true + str-sonic-lc04-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth473 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth438 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth524 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth478 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth475 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth429 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth532 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth430 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth570 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth573 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth527 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth477 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth528 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth529 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth574 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth517 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth508 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth564 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth514 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth569 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth567 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth561 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth519 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth50 + true + str-sonic-lc09-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth54 + true + str-sonic-lc09-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth61 + true + str-sonic-lc09-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth67 + true + str-sonic-lc09-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth68 + true + str-sonic-lc09-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth71 + true + str-sonic-lc09-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth73 + true + str-sonic-lc10-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth77 + true + str-sonic-lc10-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth81 + true + str-sonic-lc10-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth87 + true + str-sonic-lc10-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth88 + true + str-sonic-lc10-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth90 + true + str-sonic-lc10-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth94 + true + str-sonic-lc10-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth98 + true + str-sonic-lc08-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth100 + true + str-sonic-lc08-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth101 + true + str-sonic-lc08-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth107 + true + str-sonic-lc08-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth111 + true + str-sonic-lc08-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth112 + true + str-sonic-lc08-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth123 + true + str-sonic-lc07-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth124 + true + str-sonic-lc07-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth134 + true + str-sonic-lc07-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth140 + true + str-sonic-lc07-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth144 + true + str-sonic-lc05-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth149 + true + str-sonic-lc05-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth154 + true + str-sonic-lc05-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth158 + true + str-sonic-lc05-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth163 + true + str-sonic-lc05-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth164 + true + str-sonic-lc05-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth167 + true + str-sonic-lc05-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth444 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth443 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC07 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth441 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth0 + true + str-sonic-lc05-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth1 + true + str-sonic-lc05-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth5 + true + str-sonic-lc05-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth12 + true + str-sonic-lc04-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth14 + true + str-sonic-lc04-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth15 + true + str-sonic-lc05-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth18 + true + str-sonic-lc04-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth530 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth465 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth531 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth27 + true + str-sonic-lc04-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth29 + true + str-sonic-lc04-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth33 + true + str-sonic-lc10-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth34 + true + str-sonic-lc10-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth567 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth37 + true + str-sonic-lc04-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth38 + true + str-sonic-lc04-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth571 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth540 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth533 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth572 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth436 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth471 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth468 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth450 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth458 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth50 + true + str-sonic-lc08-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth51 + true + str-sonic-lc09-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth52 + true + str-sonic-lc09-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth54 + true + str-sonic-lc08-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth55 + true + str-sonic-lc09-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth57 + true + str-sonic-lc09-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth58 + true + str-sonic-lc10-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth64 + true + str-sonic-lc10-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth66 + true + str-sonic-lc10-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth69 + true + str-sonic-lc10-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth74 + true + str-sonic-lc10-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth75 + true + str-sonic-lc10-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth80 + true + str-sonic-lc09-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth423 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth421 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth470 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth84 + true + str-sonic-lc10-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth86 + true + str-sonic-lc10-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth431 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth459 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth467 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth92 + true + str-sonic-lc09-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth428 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth462 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth96 + true + str-sonic-lc09-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth100 + true + str-sonic-lc09-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth103 + true + str-sonic-lc09-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth108 + true + str-sonic-lc08-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth109 + true + str-sonic-lc08-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth114 + true + str-sonic-lc08-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth115 + true + str-sonic-lc08-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth118 + true + str-sonic-lc08-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth121 + true + str-sonic-lc08-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth126 + true + str-sonic-lc08-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth127 + true + str-sonic-lc07-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth132 + true + str-sonic-lc07-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth135 + true + str-sonic-lc08-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth136 + true + str-sonic-lc07-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth138 + true + str-sonic-lc07-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth141 + true + str-sonic-lc07-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth147 + true + str-sonic-lc05-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth148 + true + str-sonic-lc05-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth153 + true + str-sonic-lc04-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth154 + true + str-sonic-lc04-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth156 + true + str-sonic-lc05-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth157 + true + str-sonic-lc05-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth403 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth161 + true + str-sonic-lc05-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth168 + true + str-sonic-lc06-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth393 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth171 + true + str-sonic-lc05-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth385 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth394 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth401 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth384 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth387 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth187 + true + str-sonic-lc07-ASIC00 + Eth392 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC08 + Eth190 + true + str-sonic-lc07-ASIC00 + Eth402 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth3 + true + str-sonic-lc04-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth6 + true + str-sonic-lc04-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth7 + true + str-sonic-lc04-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth9 + true + str-sonic-lc04-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth19 + true + str-sonic-lc04-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth22 + true + str-sonic-lc04-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth543 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth575 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth453 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth395 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth535 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth447 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth573 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth539 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth449 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth391 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth537 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth452 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth398 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth455 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth446 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth534 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth454 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth464 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth386 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth461 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth406 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth389 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth405 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth456 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth50 + true + str-sonic-lc09-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth54 + true + str-sonic-lc09-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth61 + true + str-sonic-lc09-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth67 + true + str-sonic-lc09-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth68 + true + str-sonic-lc09-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth71 + true + str-sonic-lc09-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth73 + true + str-sonic-lc10-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth77 + true + str-sonic-lc10-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth81 + true + str-sonic-lc10-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth87 + true + str-sonic-lc10-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth88 + true + str-sonic-lc10-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth90 + true + str-sonic-lc10-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth94 + true + str-sonic-lc10-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth98 + true + str-sonic-lc08-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth100 + true + str-sonic-lc08-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth101 + true + str-sonic-lc08-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth107 + true + str-sonic-lc08-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth111 + true + str-sonic-lc08-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth112 + true + str-sonic-lc08-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth123 + true + str-sonic-lc07-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth124 + true + str-sonic-lc07-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth134 + true + str-sonic-lc07-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth140 + true + str-sonic-lc07-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth144 + true + str-sonic-lc05-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth149 + true + str-sonic-lc05-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth154 + true + str-sonic-lc05-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth158 + true + str-sonic-lc05-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth163 + true + str-sonic-lc05-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth164 + true + str-sonic-lc05-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth167 + true + str-sonic-lc05-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth400 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth411 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth409 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth408 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth410 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth418 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth417 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC09 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth419 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth0 + true + str-sonic-lc05-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth5 + true + str-sonic-lc05-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth12 + true + str-sonic-lc04-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth14 + true + str-sonic-lc04-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth15 + true + str-sonic-lc05-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth18 + true + str-sonic-lc04-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth20 + true + str-sonic-lc03-ASIC00 + Eth562 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth21 + true + str-sonic-lc03-ASIC00 + Eth559 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth22 + true + str-sonic-lc03-ASIC00 + Eth518 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth23 + true + str-sonic-lc04-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth24 + true + str-sonic-lc03-ASIC01 + Eth540 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth25 + true + str-sonic-lc03-ASIC00 + Eth497 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth29 + true + str-sonic-lc04-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth33 + true + str-sonic-lc10-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth34 + true + str-sonic-lc10-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth523 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth37 + true + str-sonic-lc04-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth38 + true + str-sonic-lc04-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth39 + true + str-sonic-lc03-ASIC01 + Eth520 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth40 + true + str-sonic-lc03-ASIC00 + Eth440 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth41 + true + str-sonic-lc03-ASIC00 + Eth556 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth42 + true + str-sonic-lc03-ASIC01 + Eth521 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth43 + true + str-sonic-lc03-ASIC00 + Eth553 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth44 + true + str-sonic-lc03-ASIC01 + Eth534 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth45 + true + str-sonic-lc03-ASIC01 + Eth535 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth46 + true + str-sonic-lc03-ASIC01 + Eth531 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth530 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth50 + true + str-sonic-lc08-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth52 + true + str-sonic-lc09-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth54 + true + str-sonic-lc08-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth55 + true + str-sonic-lc09-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth57 + true + str-sonic-lc09-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth58 + true + str-sonic-lc10-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth64 + true + str-sonic-lc10-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth66 + true + str-sonic-lc10-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth74 + true + str-sonic-lc10-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth75 + true + str-sonic-lc10-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth80 + true + str-sonic-lc09-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth81 + true + str-sonic-lc03-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth82 + true + str-sonic-lc03-ASIC00 + Eth572 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth83 + true + str-sonic-lc03-ASIC01 + Eth533 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth84 + true + str-sonic-lc10-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth86 + true + str-sonic-lc10-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth87 + true + str-sonic-lc09-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth88 + true + str-sonic-lc03-ASIC00 + Eth571 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth89 + true + str-sonic-lc03-ASIC00 + Eth568 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth90 + true + str-sonic-lc03-ASIC01 + Eth554 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth91 + true + str-sonic-lc03-ASIC01 + Eth537 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth92 + true + str-sonic-lc09-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth93 + true + str-sonic-lc10-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth94 + true + str-sonic-lc03-ASIC00 + Eth565 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth95 + true + str-sonic-lc03-ASIC01 + Eth543 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth96 + true + str-sonic-lc09-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth100 + true + str-sonic-lc09-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth103 + true + str-sonic-lc09-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth105 + true + str-sonic-lc08-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth108 + true + str-sonic-lc08-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth109 + true + str-sonic-lc08-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth114 + true + str-sonic-lc08-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth115 + true + str-sonic-lc08-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth121 + true + str-sonic-lc08-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth126 + true + str-sonic-lc08-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth127 + true + str-sonic-lc07-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth132 + true + str-sonic-lc07-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth135 + true + str-sonic-lc08-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth136 + true + str-sonic-lc07-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth138 + true + str-sonic-lc07-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth141 + true + str-sonic-lc07-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth147 + true + str-sonic-lc05-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth148 + true + str-sonic-lc05-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth151 + true + str-sonic-lc06-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth153 + true + str-sonic-lc04-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth154 + true + str-sonic-lc04-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth155 + true + str-sonic-lc05-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth156 + true + str-sonic-lc05-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth157 + true + str-sonic-lc05-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth160 + true + str-sonic-lc06-ASIC00 + Eth434 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth161 + true + str-sonic-lc05-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth164 + true + str-sonic-lc06-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth427 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth171 + true + str-sonic-lc05-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth426 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth178 + true + str-sonic-lc06-ASIC00 + Eth416 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth179 + true + str-sonic-lc06-ASIC00 + Eth433 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth181 + true + str-sonic-lc06-ASIC00 + Eth495 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth424 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth185 + true + str-sonic-lc07-ASIC00 + Eth432 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth186 + true + str-sonic-lc06-ASIC00 + Eth425 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth187 + true + str-sonic-lc07-ASIC00 + Eth435 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC10 + Eth190 + true + str-sonic-lc07-ASIC00 + Eth493 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth3 + true + str-sonic-lc04-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth6 + true + str-sonic-lc04-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth7 + true + str-sonic-lc04-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth9 + true + str-sonic-lc04-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth13 + true + str-sonic-lc04-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth17 + true + str-sonic-lc04-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth19 + true + str-sonic-lc04-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth22 + true + str-sonic-lc04-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth24 + true + str-sonic-lc03-ASIC00 + Eth442 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth25 + true + str-sonic-lc03-ASIC01 + Eth564 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth26 + true + str-sonic-lc03-ASIC01 + Eth555 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth27 + true + str-sonic-lc03-ASIC00 + Eth445 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth28 + true + str-sonic-lc03-ASIC00 + Eth513 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth29 + true + str-sonic-lc03-ASIC01 + Eth561 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth30 + true + str-sonic-lc03-ASIC01 + Eth569 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth31 + true + str-sonic-lc03-ASIC00 + Eth512 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth32 + true + str-sonic-lc03-ASIC01 + Eth552 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth33 + true + str-sonic-lc03-ASIC00 + Eth460 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth34 + true + str-sonic-lc03-ASIC00 + Eth516 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth35 + true + str-sonic-lc03-ASIC01 + Eth563 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth36 + true + str-sonic-lc03-ASIC00 + Eth457 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth37 + true + str-sonic-lc03-ASIC01 + Eth566 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth38 + true + str-sonic-lc03-ASIC01 + Eth558 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth39 + true + str-sonic-lc03-ASIC00 + Eth515 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth40 + true + str-sonic-lc03-ASIC01 + Eth542 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth41 + true + str-sonic-lc03-ASIC01 + Eth557 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth42 + true + str-sonic-lc03-ASIC00 + Eth466 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth43 + true + str-sonic-lc03-ASIC01 + Eth560 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth44 + true + str-sonic-lc03-ASIC00 + Eth472 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth45 + true + str-sonic-lc03-ASIC00 + Eth463 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth46 + true + str-sonic-lc03-ASIC00 + Eth469 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth47 + true + str-sonic-lc03-ASIC01 + Eth539 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth49 + true + str-sonic-lc09-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth50 + true + str-sonic-lc09-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth54 + true + str-sonic-lc09-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth59 + true + str-sonic-lc09-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth61 + true + str-sonic-lc09-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth67 + true + str-sonic-lc09-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth68 + true + str-sonic-lc09-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth71 + true + str-sonic-lc09-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth72 + true + str-sonic-lc10-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth73 + true + str-sonic-lc10-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth77 + true + str-sonic-lc10-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth81 + true + str-sonic-lc10-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth87 + true + str-sonic-lc10-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth88 + true + str-sonic-lc10-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth90 + true + str-sonic-lc10-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth94 + true + str-sonic-lc10-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth98 + true + str-sonic-lc08-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth100 + true + str-sonic-lc08-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth101 + true + str-sonic-lc08-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth107 + true + str-sonic-lc08-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth111 + true + str-sonic-lc08-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth112 + true + str-sonic-lc08-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth113 + true + str-sonic-lc08-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth116 + true + str-sonic-lc08-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth123 + true + str-sonic-lc07-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth124 + true + str-sonic-lc07-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth125 + true + str-sonic-lc07-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth129 + true + str-sonic-lc07-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth134 + true + str-sonic-lc07-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth139 + true + str-sonic-lc07-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth140 + true + str-sonic-lc07-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth143 + true + str-sonic-lc07-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth144 + true + str-sonic-lc05-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth145 + true + str-sonic-lc05-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth149 + true + str-sonic-lc05-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth154 + true + str-sonic-lc05-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth158 + true + str-sonic-lc05-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth163 + true + str-sonic-lc05-ASIC00 + Eth484 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth164 + true + str-sonic-lc05-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth167 + true + str-sonic-lc05-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth169 + true + str-sonic-lc06-ASIC00 + Eth494 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth172 + true + str-sonic-lc06-ASIC00 + Eth492 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth173 + true + str-sonic-lc06-ASIC00 + Eth487 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth177 + true + str-sonic-lc06-ASIC00 + Eth485 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth182 + true + str-sonic-lc06-ASIC00 + Eth486 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth184 + true + str-sonic-lc06-ASIC00 + Eth479 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth187 + true + str-sonic-lc06-ASIC00 + Eth476 + true + + + BackendFabricLink + 50000 + false + str-sonic-sup00-ASIC11 + Eth188 + true + str-sonic-lc06-ASIC00 + Eth484 + true + + + DeviceSerialLink + 9600 + true + str-console-197 + port 10 + true + str-sonic-sup00 + console + true + 10 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical3 + true + str-sonic-lc03 + logical + true + 3 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical4 + true + str-sonic-lc04 + logical + true + 4 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical5 + true + str-sonic-lc05 + logical + true + 5 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical6 + true + str-sonic-lc06 + logical + true + 6 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical7 + true + str-sonic-lc07 + logical + true + 7 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical8 + true + str-sonic-lc08 + logical + true + 8 + + + DeviceSerialLink + 9600 + true + str-sonic-sup00 + logical10 + true + str-sonic-lc10 + logical + true + 10 + + + + + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC00 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC01 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC02 + Broadcom-Ramon +
+ + LinecardAsic +
+ 10.2.0.3/32 +
+ + fc00:22::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc05-ASIC00 + Broadcom-Jericho2 +
+ + LinecardAsic +
+ 10.2.0.2/32 +
+ + fc00:21::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc04-ASIC00 + Broadcom-Jericho2 +
+ + LinecardAsic +
+ 10.2.0.1/32 +
+ + fc00:20::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC00 + Broadcom-Jericho2cplus +
+ + LinecardAsic +
+ 10.2.0.1/32 +
+ + fc00:20::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc03-ASIC01 + Broadcom-Jericho2cplus +
+ + LinecardAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc10-ASIC00 + Broadcom-Jericho2 +
+ + LinecardAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc09-ASIC00 + Broadcom-Jericho2 +
+ + LinecardAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc08-ASIC00 + Broadcom-Jericho2 +
+ + LinecardAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc07-ASIC00 + Broadcom-Jericho2 +
+ + LinecardAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc06-ASIC00 + Broadcom-Jericho2 +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC03 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC04 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC05 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC06 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC07 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC08 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC09 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC10 + Broadcom-Ramon +
+ + FabricAsic +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-sup00-ASIC11 + Broadcom-Ramon +
+ + Supervisor +
+ 10.152.0.46/32 +
+ + 2a01:111:e210:5e::/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.111/24 + + + 2a01:111:e210:3000::a03:926f/64 + + + + str-sonic-sup00 + Sonic-supvisor-sku +
+ + ConsoleServer +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-console-197 + Digi-CM48 +
+ + Linecard +
+ 10.2.0.1/32 +
+ + fc00:20::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.58/24 + + + 2a01:111:e210:3000::a03:923a/64 + + + + str-sonic-lc03 + Sonic-400G-sku +
+ + Linecard +
+ 10.2.0.2/32 +
+ + fc00:21::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.71/24 + + + 2a01:111:e210:3000::a03:9247/64 + + + + str-sonic-lc04 + Sonic-100G-sku +
+ + Linecard +
+ 10.2.0.3/32 +
+ + fc00:22::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.72/24 + + + 2a01:111:e210:3000::a03:9248/64 + + + + str-sonic-lc05 + Sonic-100G-sku +
+ + Linecard +
+ 10.2.0.4/32 +
+ + fc00:23::1/128 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.74/24 + + + 2a01:111:e210:3000::a03:924a/64 + + + + str-sonic-lc06 + Sonic-100G-sku +
+ + Linecard +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc07 + Sonic-100G-sku +
+ + Linecard +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc08 + Sonic-100G-sku +
+ + Linecard +
+ 0.0.0.0/0 +
+ + ::/0 + + TestbedForstr-sonic + TestbedForstr-sonic + + + TestbedForstr-sonic + 3 + + STARLab + + 0.0.0.0/0 + + + ::/0 + + + + str-sonic-lc10 + Sonic-100G-sku +
+ + SpineRouter +
+ 10.152.0.46/32 +
+ + 2a01:111:e210:5e::/128 + + TestbedForstr-sonic + TestbedForstr-sonic + None + + TestbedForstr-sonic + 3 + + STARLab + + 10.3.146.111/24 + + + 2a01:111:e210:3000::a03:926f/64 + + + + str-sonic + Sonic-T2-sku + 0 +
+
+
+ str-sonic-sup00 + Sonic-supvisor-sku + 1.0.1388.35297 + +
diff --git a/src/sonic-config-engine/tests/test_chassis_cfggen.py b/src/sonic-config-engine/tests/test_chassis_cfggen.py new file mode 100644 index 000000000000..b4cd571bd577 --- /dev/null +++ b/src/sonic-config-engine/tests/test_chassis_cfggen.py @@ -0,0 +1,1159 @@ +import json +import os +import subprocess +import yaml +import tests.common_utils as utils + +from unittest import TestCase +from sonic_py_common.general import getstatusoutput_noshell + + +class TestChassis(TestCase): + + def setUp(self): + self.yang = utils.YangWrapper() + self.test_dir = os.path.dirname(os.path.realpath(__file__)) + self.script_file = [utils.PYTHON_INTERPRETTER, + os.path.join(self.test_dir, '..', 'sonic-cfggen')] + self.output_file = os.path.join(self.test_dir, 'output') + self.macsec_profile = os.path.join( + self.test_dir, 'macsec_profile.json') + + def run_script(self, argument, check_stderr=True, output_file=None, validateYang=True, ignore_warning=False): + print('\n Running sonic-cfggen ' + ' '.join(argument)) + # if validateYang: + # self.assertTrue(self.yang.validate(argument)) + if check_stderr: + output = subprocess.check_output( + self.script_file + argument, stderr=subprocess.STDOUT) + else: + output = subprocess.check_output(self.script_file + argument) + + if utils.PY3x: + output = output.decode() + if output_file: + with open(output_file, 'w') as f: + f.write(output) + + if ignore_warning: + output_without_warning = [] + for line in output.split('\n'): + if line.startswith("Warning"): + continue + output_without_warning.append(line) + output = '\n'.join(output_without_warning) + + linecount = output.strip().count('\n') + if linecount <= 0: + print(' Output: ' + output.strip()) + else: + print(' Output: ({0} lines, {1} bytes)'.format( + linecount + 1, len(output))) + + return output + + def run_diff(self, file1, file2): + _, output = getstatusoutput_noshell(['diff', '-u', file1, file2]) + return output + + +class TestVoqChassisSingleAsic(TestChassis): + def setUp(self): + super().setUp() + self.test_data_dir = os.path.join( + self.test_dir, 'chassis_data/voq_chassis_data') + self.sample_graph = os.path.join( + self.test_data_dir, 'voq_chassis_lc_single_asic.xml') + self.sample_port_config = os.path.join( + self.test_data_dir, 'voq-sample-port-config-1.ini') + os.environ['CFGGEN_UNIT_TESTING'] = '2' + + def test_dummy_run(self): + argument = [] + output = self.run_script(argument) + self.assertEqual(output, '') + + def test_print_data(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--print-data'] + output = self.run_script(argument) + self.assertGreater(len(output.strip()), 0) + + def test_read_yaml(self): + argument = ['-v', 'yml_item', '-y', + os.path.join(self.test_dir, 'test.yml')] + output = yaml.safe_load(self.run_script(argument)) + self.assertListEqual(output, ['value1', 'value2']) + + def test_render_template(self): + argument = ['-y', os.path.join(self.test_dir, 'test.yml'), + '-t', os.path.join(self.test_dir, 'test.j2')] + output = self.run_script(argument) + self.assertEqual(output.strip(), 'value1\nvalue2') + + def test_tacacs(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'TACPLUS_SERVER'] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'123.46.98.21': {'priority': '1', 'tcp_port': '49'}}) + # TACPLUS_SERVER not present in the asic configuration. + argument = ['-m', self.sample_graph, '--var-json', 'TACPLUS_SERVER'] + + def test_ntp(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'NTP_SERVER'] + output = json.loads(self.run_script(argument)) + self.assertDictEqual(output, {'17.39.1.130': {}, '17.39.1.129': {}}) + # NTP data is present only in the host config + argument = ['-m', self.sample_graph, '--var-json', 'NTP_SERVER'] + + def test_mgmt_port(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'MGMT_PORT'] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'eth0': {'alias': 'Management1/1', 'admin_status': 'up'}}) + + def test_device_metadata(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'DEVICE_METADATA'] + output = json.loads(self.run_script(argument)) + print(output['localhost']) + self.assertDictEqual(output['localhost'], { + 'bgp_asn': '65100', + 'region': 'test', + 'cloudtype': None, + 'docker_routing_config_mode': 'separated', + 'hostname': 'str-sonic-lc06', + 'hwsku': 'Sonic-lc-100g-sku', + 'type': 'SpineRouter', + 'synchronous_mode': 'enable', + 'yang_config_validation': 'disable', + 'chassis_hostname': 'str-sonic', + 'deployment_id': '3', + 'cluster': 'TestbedForstr-sonic', + 'asic_name': 'Asic0', + 'sub_role': 'FrontEnd', + 'switch_type': 'voq', + 'switch_id': 20, + 'max_cores': 64}) + + def test_port(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', "PORT[\'Ethernet0\']"] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'lanes': '6,7',\ + 'alias': 'Ethernet6/1/1',\ + 'index': '1',\ + 'role': 'Ext',\ + 'speed': '100000', \ + 'asic_port_name': 'Eth0',\ + 'core_id': '0', \ + 'core_port_id': '1',\ + 'num_voq': '8', \ + 'fec': 'rs', \ + 'description': 'ARISTA33T1:Ethernet1',\ + 'mtu': '9100',\ + 'tpid': '0x8100',\ + 'pfc_asym': 'off',\ + 'admin_status': 'up'\ + }") + ) + + def test_voq_inband_intf(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'VOQ_INBAND_INTERFACE'] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'Ethernet-IB0': {'inband_type': 'Port'},\ + 'Ethernet-IB0|10.241.88.4/32': {},\ + 'Ethernet-IB0|2a01:111:e210:5e:0:a:f158:400/128': {}}")) + + def test_system_port(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'SYSTEM_PORT'] + expected_output_file = os.path.join( + self.test_data_dir, 'system_ports.json') + self.run_script(argument, output_file=self.output_file) + self.assertTrue(self.run_diff(expected_output_file, self.output_file)) + if os.path.exists(self.output_file): + os.remove(self.output_file) + + def test_device_neighbor(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'DEVICE_NEIGHBOR'] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'Ethernet0': {'name': 'ARISTA33T1', 'port':'Ethernet1'},\ + 'Ethernet4': {'name': 'ARISTA33T1', 'port':'Ethernet2'},\ + 'Ethernet8': {'name': 'ARISTA35T1', 'port':'Ethernet1'},\ + 'Ethernet12': {'name': 'ARISTA35T1', 'port':'Ethernet2'},\ + 'Ethernet16': {'name': 'ARISTA37T1', 'port':'Ethernet1'},\ + 'Ethernet20': {'name': 'ARISTA37T1', 'port':'Ethernet2'},\ + 'Ethernet24': {'name': 'ARISTA39T1', 'port':'Ethernet1'},\ + 'Ethernet28': {'name': 'ARISTA39T1', 'port':'Ethernet2'},\ + 'Ethernet32': {'name': 'ARISTA41T1', 'port':'Ethernet1'},\ + 'Ethernet36': {'name': 'ARISTA41T1', 'port':'Ethernet2'},\ + 'Ethernet40': {'name': 'ARISTA43T1', 'port':'Ethernet1'},\ + 'Ethernet44': {'name': 'ARISTA43T1', 'port':'Ethernet2'},\ + 'Ethernet48': {'name': 'ARISTA45T1', 'port':'Ethernet1'},\ + 'Ethernet52': {'name': 'ARISTA47T1', 'port':'Ethernet1'},\ + 'Ethernet56': {'name': 'ARISTA47T1', 'port':'Ethernet2'},\ + 'Ethernet60': {'name': 'ARISTA49T1', 'port':'Ethernet1'},\ + 'Ethernet64': {'name': 'ARISTA50T1', 'port':'Ethernet1'},\ + 'Ethernet68': {'name': 'ARISTA50T1', 'port':'Ethernet2'},\ + 'Ethernet72': {'name': 'ARISTA51T1', 'port':'Ethernet1'},\ + 'Ethernet76': {'name': 'ARISTA52T1', 'port':'Ethernet1'},\ + 'Ethernet80': {'name': 'ARISTA53T1', 'port':'Ethernet1'},\ + 'Ethernet84': {'name': 'ARISTA54T1', 'port':'Ethernet1'},\ + 'Ethernet88': {'name': 'ARISTA55T1', 'port':'Ethernet1'},\ + 'Ethernet92': {'name': 'ARISTA56T1', 'port':'Ethernet1'},\ + 'Ethernet96': {'name': 'ARISTA57T1', 'port':'Ethernet1'},\ + 'Ethernet100': {'name': 'ARISTA58T1', 'port':'Ethernet1'},\ + 'Ethernet104': {'name': 'ARISTA59T1', 'port':'Ethernet1'},\ + 'Ethernet108': {'name': 'ARISTA60T1', 'port':'Ethernet1'},\ + 'Ethernet112': {'name': 'ARISTA61T1', 'port':'Ethernet1'},\ + 'Ethernet116': {'name': 'ARISTA62T1', 'port':'Ethernet1'},\ + 'Ethernet120': {'name': 'ARISTA63T1', 'port':'Ethernet1'},\ + 'Ethernet124': {'name': 'ARISTA64T1', 'port': 'Ethernet1'}}")) + + def test_device_neighbor_metadata(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', "DEVICE_NEIGHBOR_METADATA[\'ARISTA33T1\']"] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'hwsku': 'Sonic-T1-sku',\ + 'cluster': 'TestbedForstr-sonic',\ + 'deployment_id': '3',\ + 'lo_addr': '0.0.0.0/0',\ + 'lo_addr_v6': '::/0',\ + 'mgmt_addr': '172.16.191.58/17',\ + 'mgmt_addr_v6': '::/0',\ + 'type': 'LeafRouter'}")) + + def test_bgp_neighbors(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', 'BGP_NEIGHBOR'] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'10.0.0.129': {'name': 'ARISTA33T1', 'local_addr': '10.0.0.128', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65338'},\ + 'fc00::102': {'name': 'ARISTA33T1', 'local_addr': 'fc00::101', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65338'},\ + '10.0.0.133': {'name': 'ARISTA35T1', 'local_addr': '10.0.0.132', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65339'},\ + 'fc00::10a': {'name': 'ARISTA35T1', 'local_addr': 'fc00::109', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65339'},\ + '10.0.0.137': {'name': 'ARISTA37T1', 'local_addr': '10.0.0.136', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65340'},\ + 'fc00::112': {'name': 'ARISTA37T1', 'local_addr': 'fc00::111', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65340'},\ + '10.0.0.141': {'name': 'ARISTA39T1', 'local_addr': '10.0.0.140', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65341'},\ + 'fc00::11a': {'name': 'ARISTA39T1', 'local_addr': 'fc00::119', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65341'},\ + '10.0.0.145': {'name': 'ARISTA41T1', 'local_addr': '10.0.0.144', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65342'},\ + 'fc00::122': {'name': 'ARISTA41T1', 'local_addr': 'fc00::121', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65342'},\ + '10.0.0.149': {'name': 'ARISTA43T1', 'local_addr': '10.0.0.148', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65343'},\ + 'fc00::12a': {'name': 'ARISTA43T1', 'local_addr': 'fc00::129', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65343'},\ + '10.0.0.153': {'name': 'ARISTA47T1', 'local_addr': '10.0.0.152', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65345'},\ + 'fc00::132': {'name': 'ARISTA47T1', 'local_addr': 'fc00::131', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65345'},\ + '10.0.0.157': {'name': 'ARISTA50T1', 'local_addr': '10.0.0.156', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65347'},\ + 'fc00::13a': {'name': 'ARISTA50T1', 'local_addr': 'fc00::139', 'rrclient': 0, 'holdtime': '10', 'keepalive': '3', 'nhopself': 0, 'asn': '65347'}}")) + + def test_voq_bgp_neighbors(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', 'BGP_VOQ_CHASSIS_NEIGHBOR'] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict( + "{'10.241.88.5': {'name': 'str-sonic-lc07-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:500': {'name': 'str-sonic-lc07-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.6': {'name': 'str-sonic-lc08-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:600': {'name': 'str-sonic-lc08-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.7': {'name': 'str-sonic-lc09-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:700': {'name': 'str-sonic-lc09-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.8': {'name': 'str-sonic-lc10-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:800': {'name': 'str-sonic-lc10-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.0': {'name': 'str-sonic-lc03-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:0': {'name': 'str-sonic-lc03-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.1': {'name': 'str-sonic-lc03-ASIC01', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:100': {'name': 'str-sonic-lc03-ASIC01', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.2': {'name': 'str-sonic-lc04-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:200': {'name': 'str-sonic-lc04-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'10.241.88.3': {'name': 'str-sonic-lc05-ASIC00', 'local_addr': '10.241.88.4', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}, " + "'2a01:111:e210:5e:0:a:f158:300': {'name': 'str-sonic-lc05-ASIC00', 'local_addr': '2a01:111:e210:5e:0:a:f158:400', 'rrclient': 0, 'holdtime': '0', 'keepalive': '0', 'nhopself': 0, 'admin_status': 'up', 'asn': '65100'}}") + ) + + def test_port_channel(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', "PORTCHANNEL[\'PortChannel1058\']"] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'min_links': '2', 'lacp_key': 'auto', 'mtu': '9100', 'tpid': '0x8100', 'admin_status': 'up'}")) + + def test_port_channel_member(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', "PORTCHANNEL_MEMBER.keys()|list"] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.liststr_to_dict(output.strip()), + utils.liststr_to_dict("[('PortChannel1049', 'Ethernet0'),\ + ('PortChannel1049', 'Ethernet4'),\ + ('PortChannel1050', 'Ethernet8'),\ + ('PortChannel1050', 'Ethernet12'),\ + ('PortChannel1051', 'Ethernet16'),\ + ('PortChannel1051', 'Ethernet20'),\ + ('PortChannel1052', 'Ethernet24'),\ + ('PortChannel1052', 'Ethernet28'),\ + ('PortChannel1053', 'Ethernet36'),\ + ('PortChannel1053', 'Ethernet32'),\ + ('PortChannel1054', 'Ethernet40'),\ + ('PortChannel1054', 'Ethernet44'),\ + ('PortChannel1056', 'Ethernet52'),\ + ('PortChannel1056', 'Ethernet56'),\ + ('PortChannel1058', 'Ethernet64'),\ + ('PortChannel1058', 'Ethernet68')]") + ) + + def test_port_channel_interface(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '-v', "PORTCHANNEL_INTERFACE.keys()|list"] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.liststr_to_dict(output.strip()), + utils.liststr_to_dict("\ + [('PortChannel1049', '10.0.0.128/31'),\ + 'PortChannel1049',\ + ('PortChannel1049', 'fc00::101/126'),\ + ('PortChannel1050', '10.0.0.132/31'),\ + 'PortChannel1050',\ + ('PortChannel1050', 'fc00::109/126'),\ + ('PortChannel1051', '10.0.0.136/31'),\ + 'PortChannel1051',\ + ('PortChannel1051', 'fc00::111/126'),\ + ('PortChannel1052', '10.0.0.140/31'),\ + 'PortChannel1052',\ + ('PortChannel1052', 'fc00::119/126'),\ + ('PortChannel1053', '10.0.0.144/31'),\ + 'PortChannel1053',\ + ('PortChannel1053', 'fc00::121/126'),\ + ('PortChannel1054', '10.0.0.148/31'),\ + 'PortChannel1054',\ + ('PortChannel1054', 'fc00::129/126'),\ + ('PortChannel1056', '10.0.0.152/31'),\ + 'PortChannel1056',\ + ('PortChannel1056', 'fc00::131/126'),\ + ('PortChannel1058', '10.0.0.156/31'),\ + 'PortChannel1058',\ + ('PortChannel1058', 'fc00::139/126')\ + ]") + ) + + def tearDown(self): + os.environ['CFGGEN_UNIT_TESTING'] = '' + if os.path.exists(self.output_file): + os.remove(self.output_file) + + +class TestVoqChassisMultiAsic(TestChassis): + + def setUp(self): + super().setUp() + self.test_data_dir = os.path.join( + self.test_dir, 'chassis_data/voq_chassis_data') + self.sample_graph = os.path.join( + self.test_data_dir, 'voq_chassis_lc_multi_asic.xml') + self.sample_port_config = os.path.join( + self.test_data_dir, 'voq-sample-port-config-2.ini') + os.environ['CFGGEN_UNIT_TESTING'] = '2' + os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + + def test_dummy_run(self): + argument = [] + output = self.run_script(argument) + self.assertEqual(output, '') + + def test_print_data(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--print-data'] + output = self.run_script(argument) + self.assertGreater(len(output.strip()), 0) + + def test_read_yaml(self): + argument = ['-v', 'yml_item', '-y', + os.path.join(self.test_dir, 'test.yml')] + output = yaml.safe_load(self.run_script(argument)) + self.assertListEqual(output, ['value1', 'value2']) + + def test_render_template(self): + argument = ['-y', os.path.join(self.test_dir, 'test.yml'), + '-t', os.path.join(self.test_dir, 'test.j2')] + output = self.run_script(argument) + self.assertEqual(output.strip(), 'value1\nvalue2') + + def test_tacacs(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'TACPLUS_SERVER'] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'123.46.98.21': {'priority': '1', 'tcp_port': '49'}}) + # TACPLUS_SERVER not present in the asic configuration. + argument = ['-m', self.sample_graph, '--var-json', 'TACPLUS_SERVER'] + + def test_ntp(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'NTP_SERVER'] + output = json.loads(self.run_script(argument)) + self.assertDictEqual(output, {'17.39.1.130': {}, '17.39.1.129': {}}) + # NTP data is present only in the host config + argument = ['-m', self.sample_graph, '--var-json', 'NTP_SERVER'] + + def test_mgmt_port(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'MGMT_PORT'] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'eth0': {'alias': 'Management1/1', 'admin_status': 'up'}}) + + def test_device_metadata(self): + argument = ['-m', self.sample_graph, '-p', + self.sample_port_config, '--var-json', 'DEVICE_METADATA'] + output = json.loads(self.run_script(argument)) + print(output['localhost']) + self.assertDictEqual(output['localhost'], { + 'bgp_asn': None, + 'region': 'test', + 'cloudtype': 'Public', + 'docker_routing_config_mode': 'separated', + 'hostname': 'str-sonic-lc03', + 'hwsku': 'Sonic-400g-lc-sku', + 'type': 'SpineRouter', + 'synchronous_mode': 'enable', + 'yang_config_validation': 'disable', + 'chassis_hostname': 'str-sonic', + 'deployment_id': '3', + 'cluster': 'TestbedForstr-sonic', + 'switch_type': 'voq', + 'max_cores': 64}) + + def test_device_metadata_for_namespace(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '--var-json', 'DEVICE_METADATA' + ] + output = json.loads(self.run_script(argument)) + print(output['localhost']) + self.assertDictEqual(output['localhost'], { + 'bgp_asn': '65100', + 'region': 'test', + 'cloudtype': None, + 'docker_routing_config_mode': 'separated', + 'hostname': 'str-sonic-lc03', + 'hwsku': 'Sonic-400g-lc-sku', + 'type': 'SpineRouter', + 'synchronous_mode': 'enable', + 'yang_config_validation': 'disable', + 'chassis_hostname': 'str-sonic', + 'deployment_id': '3', 'cluster': + 'TestbedForstr-sonic', + 'sub_role': 'FrontEnd', + 'asic_name': 'asic0', + 'switch_type': 'voq', + 'switch_id': 8, + 'max_cores': 64}) + + def test_system_port(self): + argument = ['-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '--var-json', 'DEVICE_METADATA'] + expected_output_file = os.path.join( + self.test_data_dir, 'system_ports.json') + self.run_script(argument, output_file=self.output_file) + self.assertTrue(self.run_diff(expected_output_file, self.output_file)) + if os.path.exists(self.output_file): + os.remove(self.output_file) + + def test_port(self): + argument = [ + '-j', self.macsec_profile, + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORT[\'Ethernet8\']" + ] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{" + "'lanes': '80,81,82,83', " + "'alias': 'Ethernet3/2/1', " + "'index': '2', " + "'role': 'Ext', " + "'speed': '100000', " + "'asic_port_name': 'Eth8', " + "'core_id': '1', " + "'core_port_id': '2', " + "'num_voq': '8', " + "'fec': 'rs', " + "'macsec': 'macsec-profile-two', " + "'tx_power': '-10', " + "'laser_freq': 196025, " + "'description': 'ARISTA91T3:Ethernet2', " + "'mtu': '9100', " + "'tpid': '0x8100', " + "'pfc_asym': 'off', " + "'admin_status': 'up'" + "}" + ) + ) + + def test_voq_inband_intf(self): + argument = [ + '-j', self.macsec_profile, + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic1', + '--var-json', 'VOQ_INBAND_INTERFACE' + ] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'Ethernet-IB1': {'inband_type': 'Port'},\ + 'Ethernet-IB1|10.241.88.1/32': {},\ + 'Ethernet-IB1|2a01:111:e210:5e:0:a:f158:100/128': {}}")) + + def test_voq_bgp_neighbors(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '--var-json', 'BGP_VOQ_CHASSIS_NEIGHBOR' + ] + output = json.loads(self.run_script(argument)) + print(output) + self.assertDictEqual(output, + { + "10.241.88.1": { + "name": "str-sonic-lc03-ASIC01", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:100": { + "name": "str-sonic-lc03-ASIC01", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.2": { + "name": "str-sonic-lc04-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:200": { + "name": "str-sonic-lc04-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.3": { + "name": "str-sonic-lc05-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:300": { + "name": "str-sonic-lc05-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.4": { + "name": "str-sonic-lc06-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:400": { + "name": "str-sonic-lc06-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.5": { + "name": "str-sonic-lc07-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:500": { + "name": "str-sonic-lc07-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.6": { + "name": "str-sonic-lc08-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:600": { + "name": "str-sonic-lc08-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.7": { + "name": "str-sonic-lc09-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:700": { + "name": "str-sonic-lc09-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "10.241.88.8": { + "name": "str-sonic-lc10-ASIC00", + "local_addr": "10.241.88.0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + }, + "2a01:111:e210:5e:0:a:f158:800": { + "name": "str-sonic-lc10-ASIC00", + "local_addr": "2a01:111:e210:5e:0:a:f158:0", + "rrclient": 0, + "holdtime": "0", + "keepalive": "0", + "nhopself": 0, + "admin_status": "up", + "asn": "65100" + } + }) + + + def test_device_neighbor(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "DEVICE_NEIGHBOR[\'Ethernet0\']"] + + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'name': 'ARISTA91T3', 'port': 'Ethernet1'}")) + + def test_device_neighbor_metadata(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "DEVICE_NEIGHBOR_METADATA['ARISTA91T3']" + ] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict( + "{'hwsku': 'Sonic-T3-sku', 'cluster': 'TestbedForstr-sonic', " + "'deployment_id': '3', 'lo_addr': '0.0.0.0/0', " + "'lo_addr_v6': '::/0', 'mgmt_addr': '172.16.191.10/17', " + "'mgmt_addr_v6': '::/0', 'type': 'RegionalHub'}" + ) + ) + + def test_port_channel(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORTCHANNEL[\'PortChannel102\']" + ] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.to_dict(output.strip()), + utils.to_dict("{'min_links': '2', 'lacp_key': 'auto', 'mtu': '9100', 'tpid': '0x8100', 'admin_status': 'up'}")) + + def test_port_channel_member(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORTCHANNEL_MEMBER.keys()|list" + ] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.liststr_to_dict(output.strip()), + utils.liststr_to_dict("[('PortChannel102', 'Ethernet0'),\ + ('PortChannel102', 'Ethernet8'),\ + ('PortChannel104', 'Ethernet16'),\ + ('PortChannel104', 'Ethernet24'),\ + ('PortChannel106', 'Ethernet32'),\ + ('PortChannel106', 'Ethernet40'),\ + ('PortChannel108', 'Ethernet48'),\ + ('PortChannel108', 'Ethernet56'),\ + ('PortChannel1010', 'Ethernet72'),\ + ('PortChannel1010', 'Ethernet64'),\ + ('PortChannel1012', 'Ethernet80'),\ + ('PortChannel1012', 'Ethernet88'),\ + ('PortChannel1016', 'Ethernet104'),\ + ('PortChannel1016', 'Ethernet112'),\ + ('PortChannel1020', 'Ethernet128'),\ + ('PortChannel1020', 'Ethernet136')]") + ) + + def test_port_channel_interface(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORTCHANNEL_INTERFACE.keys()|list" + ] + output = self.run_script(argument) + print(output) + self.assertEqual( + utils.liststr_to_dict(output.strip()), + utils.liststr_to_dict("[('PortChannel102', '10.0.0.0/31'),\ + 'PortChannel102',\ + ('PortChannel102', 'fc00::1/126'),\ + ('PortChannel104', '10.0.0.4/31'),\ + 'PortChannel104',\ + ('PortChannel104', 'fc00::9/126'),\ + ('PortChannel106', '10.0.0.8/31'),\ + 'PortChannel106',\ + ('PortChannel106','fc00::11/126'),\ + ('PortChannel108', '10.0.0.12/31'),\ + 'PortChannel108',\ + ('PortChannel108', 'fc00::19/126'),\ + ('PortChannel1010', '10.0.0.16/31'),\ + 'PortChannel1010',\ + ('PortChannel1010', 'fc00::21/126'),\ + ('PortChannel1012', '10.0.0.20/31'),\ + 'PortChannel1012',\ + ('PortChannel1012', 'fc00::29/126'),\ + ('PortChannel1016', '10.0.0.28/31'),\ + 'PortChannel1016', \ + ('PortChannel1016', 'fc00::39/126'),\ + ('PortChannel1020', '10.0.0.24/31'),\ + 'PortChannel1020',\ + ('PortChannel1020', 'fc00::31/126')]") + ) + def tearDown(self): + os.environ['CFGGEN_UNIT_TESTING'] = '' + os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] = "" + if os.path.exists(self.output_file): + os.remove(self.output_file) + + +class TestVoqChassisSup(TestChassis): + + def setUp(self): + super().setUp() + self.test_data_dir = os.path.join( + self.test_dir, 'chassis_data/voq_chassis_data') + self.sample_graph = os.path.join( + self.test_data_dir, 'voq_chassis_sup.xml') + self.sample_port_config = "" + os.environ['CFGGEN_UNIT_TESTING'] = '2' + os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + + def test_dummy_run(self): + argument = [] + output = self.run_script(argument) + self.assertEqual(output, '') + + def test_print_data(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--print-data' + ] + output = self.run_script(argument) + self.assertGreater(len(output.strip()), 0) + + def test_read_yaml(self): + argument = ['-v', 'yml_item', '-y', + os.path.join(self.test_dir, 'test.yml')] + output = yaml.safe_load(self.run_script(argument)) + self.assertListEqual(output, ['value1', 'value2']) + + def test_render_template(self): + argument = ['-y', os.path.join(self.test_dir, 'test.yml'), + '-t', os.path.join(self.test_dir, 'test.j2')] + output = self.run_script(argument) + self.assertEqual(output.strip(), 'value1\nvalue2') + + def test_tacacs(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'TACPLUS_SERVER' + ] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'123.46.98.21': {'priority': '1', 'tcp_port': '49'}}) + + def test_ntp(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'NTP_SERVER' + ] + output = json.loads(self.run_script(argument)) + self.assertDictEqual(output, {'17.39.1.130': {}, '17.39.1.129': {}}) + + + def test_mgmt_port(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'MGMT_PORT' + ] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'eth0': {'alias': 'Management1/1', 'admin_status': 'up'}}) + + def test_device_metadata(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'DEVICE_METADATA' + ] + out =(self.run_script(argument)) + print(out) + output = json.loads(out) + print(output['localhost']) + self.assertDictEqual(output['localhost'], + { + "bgp_asn": None, + "region": "test", + "cloudtype": "Public", + "docker_routing_config_mode": "separated", + "hostname": "str-sonic-sup00", + "hwsku": "Sonic-supvisor-sku", + "type": "SpineRouter", + "synchronous_mode": "enable", + "yang_config_validation": "disable", + "chassis_hostname": "str-sonic", + "deployment_id": "3", + "cluster": "TestbedForstr-sonic", + "switch_type": "fabric", + "sub_role": "fabric", + "max_cores": 64 + } + ) + + def test_device_metadata_for_namespace(self): + argument = [ + '-m', self.sample_graph, + '-n', 'asic0', + '--var-json', 'DEVICE_METADATA' + ] + output = json.loads(self.run_script(argument)) + print(output['localhost']) + self.assertDictEqual(output['localhost'], + { + "bgp_asn": None, + "region": "test", + "cloudtype": None, + "docker_routing_config_mode": "separated", + "hostname": "str-sonic-sup00", + "hwsku": "Sonic-supvisor-sku", + "type": "SpineRouter", + "synchronous_mode": "enable", + "yang_config_validation": "disable", + "chassis_hostname": "str-sonic", + "deployment_id": "3", + "cluster": "TestbedForstr-sonic", + "sub_role": "Fabric", + "asic_name": "asic0", + "switch_type": "fabric", + "max_cores": 64 + } + ) + + + def tearDown(self): + os.environ['CFGGEN_UNIT_TESTING'] = '' + os.environ['CFGGEN_UNIT_TESTING_TOPOLOGY'] = '' + if os.path.exists(self.output_file): + os.remove(self.output_file) + + +class TestPacketChassisSup(TestChassis): + + def setUp(self): + super().setUp() + self.test_data_dir = os.path.join( + self.test_dir, 'chassis_data/packet_chassis_data') + self.sample_graph = os.path.join( + self.test_data_dir, 'packet_chassis_sup.xml') + self.sample_port_config = os.path.join( + self.test_data_dir, 'packet-chassis-port-config-1.ini') + os.environ['CFGGEN_UNIT_TESTING'] = '2' + os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + + def test_dummy_run(self): + argument = [] + output = self.run_script(argument) + self.assertEqual(output, '') + + def test_print_data(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--print-data'] + output = self.run_script(argument) + self.assertGreater(len(output.strip()), 0) + + def test_read_yaml(self): + argument = ['-v', 'yml_item', '-y', + os.path.join(self.test_dir, 'test.yml')] + output = yaml.safe_load(self.run_script(argument)) + self.assertListEqual(output, ['value1', 'value2']) + + def test_render_template(self): + argument = ['-y', os.path.join(self.test_dir, 'test.yml'), + '-t', os.path.join(self.test_dir, 'test.j2')] + output = self.run_script(argument) + self.assertEqual(output.strip(), 'value1\nvalue2') + + def test_tacacs(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'TACPLUS_SERVER' + ] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'123.46.98.21': {'priority': '1', 'tcp_port': '49'}}) + # TACPLUS_SERVER not present in the asic configuration. + argument = ['-m', self.sample_graph, '--var-json', 'TACPLUS_SERVER'] + + def test_ntp(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'NTP_SERVER' + ] + output = json.loads(self.run_script(argument)) + self.assertDictEqual(output, {'17.39.1.130': {}, '17.39.1.129': {}}) + # NTP data is present only in the host config + argument = ['-m', self.sample_graph, '--var-json', 'NTP_SERVER'] + + def test_mgmt_port(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'MGMT_PORT' + ] + output = json.loads(self.run_script(argument)) + self.assertDictEqual( + output, {'eth0': {'alias': 'Management1/1', 'admin_status': 'up'}}) + + def test_device_metadata(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '--var-json', 'DEVICE_METADATA' + ] + output = json.loads(self.run_script(argument)) + print(output['localhost']) + self.assertDictEqual(output['localhost'], + { + "bgp_asn": None, + "region": "test", + "cloudtype": "Public", + "docker_routing_config_mode": "separated", + "hostname": "str-sonic-sup00", + "hwsku": "sonic-sup-sku", + "type": "SpineRouter", + "synchronous_mode": "enable", + "yang_config_validation": "disable", + "chassis_hostname": "str-sonic", + "deployment_id": "3", + "cluster": "TestbedForstr-sonic", + "switch_type": "chassis-packet", + "sub_role": "BackEnd", + "max_cores": 64 + } + ) + + def test_device_metadata_for_namespace(self): + argument = [ + '-m', self.sample_graph, + '-n', 'asic0', + '--var-json', 'DEVICE_METADATA' + ] + output = json.loads(self.run_script(argument)) + print(output['localhost']) + self.assertDictEqual(output['localhost'], + { + "bgp_asn": None, + "region": "test", + "cloudtype": None, + "docker_routing_config_mode": "separated", + "hostname": "str-sonic-sup00", + "hwsku": "sonic-sup-sku", + "type": "SpineRouter", + "synchronous_mode": "enable", + "yang_config_validation": "disable", + "chassis_hostname": "str-sonic", + "deployment_id": "3", + "cluster": "TestbedForstr-sonic", + "sub_role": "BackEnd", + "asic_name": "asic0", + "switch_type": "chassis-packet", + "max_cores": 64 + } + ) + + def test_port(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORT[\'Ethernet-BP244\']" + ] + output = self.run_script(argument, ignore_warning=True) + print(output) + self.assertEqual( + output.strip(), + "{'lanes': '2828,2829', 'alias': 'Eth244-ASIC0', 'index': '122', 'speed': '100000', 'asic_port_name': 'Eth244-ASIC0', 'role': 'Int', 'fec': 'rs', 'description': 'Eth244-ASIC0', 'mtu': '9100', 'tpid': '0x8100', 'pfc_asym': 'off', 'admin_status': 'up'}" + ) + + def test_port_channel(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORTCHANNEL[\'PortChannel5004\']" + ] + output = self.run_script(argument, ignore_warning=True) + print(output) + self.assertEqual( + output.strip(), + """{'min_links': '2', 'lacp_key': 'auto', 'mtu': '9100', 'tpid': '0x8100', 'admin_status': 'up'}""") + + def test_port_channel_member(self): + argument = [ + '-m', self.sample_graph, + '-p', self.sample_port_config, + '-n', 'asic0', + '-v', "PORTCHANNEL_MEMBER.keys()|list" + ] + output = self.run_script(argument, ignore_warning=True) + print(output) + self.assertEqual( + utils.liststr_to_dict(output.strip()), + utils.liststr_to_dict( + "[('PortChannel5004', 'Ethernet-BP128'), " + "('PortChannel5004', 'Ethernet-BP132'), " + "('PortChannel5005', 'Ethernet-BP136'), " + "('PortChannel5005', 'Ethernet-BP140'), " + "('PortChannel5006', 'Ethernet-BP154'), " + "('PortChannel5006', 'Ethernet-BP168'), " + "('PortChannel5006', 'Ethernet-BP178'), " + "('PortChannel5007', 'Ethernet-BP156'), " + "('PortChannel5007', 'Ethernet-BP170'), " + "('PortChannel5007', 'Ethernet-BP180'), " + "('PortChannel5008', 'Ethernet-BP160'), " + "('PortChannel5008', 'Ethernet-BP164'), " + "('PortChannel5009', 'Ethernet-BP184'), " + "('PortChannel5009', 'Ethernet-BP194'), " + "('PortChannel5009', 'Ethernet-BP220'), " + "('PortChannel5010', 'Ethernet-BP190'), " + "('PortChannel5010', 'Ethernet-BP192'), " + "('PortChannel5010', 'Ethernet-BP218')]" + ) + ) + + def tearDown(self): + os.environ['CFGGEN_UNIT_TESTING'] = '' + os.environ['CFGGEN_UNIT_TESTING_TOPOLOGY'] = '' + if os.path.exists(self.output_file): + os.remove(self.output_file) \ No newline at end of file diff --git a/src/sonic-config-engine/tests/test_multinpu_cfggen.py b/src/sonic-config-engine/tests/test_multinpu_cfggen.py index bc4227f85d52..03b31348e6cd 100644 --- a/src/sonic-config-engine/tests/test_multinpu_cfggen.py +++ b/src/sonic-config-engine/tests/test_multinpu_cfggen.py @@ -6,11 +6,13 @@ import unittest import yaml import tests.common_utils as utils +from unittest import mock from unittest import TestCase from sonic_py_common.general import getstatusoutput_noshell + SKU = 'multi-npu-01' ASIC_SKU = 'multi-npu-asic' NUM_ASIC = 4 @@ -33,6 +35,7 @@ def setUp(self): self.sample_no_asic_port_config = os.path.join(self.test_data_dir, 'sample_port_config-4.ini') self.output_file = os.path.join(self.test_dir, 'output') os.environ["CFGGEN_UNIT_TESTING"] = "2" + os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] = "multi_asic" def run_script(self, argument, check_stderr=True, output_file=None, validateYang=True): print('\n Running sonic-cfggen ' + ' '.join(argument)) @@ -136,8 +139,8 @@ def test_metadata_tacacs(self): #TACPLUS_SERVER not present in the asic configuration. argument = ['-m', self.sample_graph, '--var-json', "TACPLUS_SERVER"] for asic in range(NUM_ASIC): - output = json.loads(self.run_script_for_asic(argument, asic, self.port_config[asic])) - self.assertDictEqual(output, {}) + output = self.run_script_for_asic(argument, asic, self.port_config[asic]) + self.assertEqual(output.strip(), '') def test_metadata_ntp(self): argument = ['-m', self.sample_graph, '-p', self.sample_port_config, '--var-json', "NTP_SERVER"] @@ -146,9 +149,9 @@ def test_metadata_ntp(self): #NTP data is present only in the host config argument = ['-m', self.sample_graph, '--var-json', "NTP_SERVER"] for asic in range(NUM_ASIC): - output = json.loads(self.run_script_for_asic(argument, asic, self.port_config[asic])) - print("Log:asic{} sku {}".format(asic,output)) - self.assertDictEqual(output, {}) + output = self.run_script_for_asic(argument, asic, self.port_config[asic]) + self.assertEqual(output.strip(), '') + def test_mgmt_port(self): argument = ['-m', self.sample_graph, '-p', self.sample_port_config, '--var-json', "MGMT_PORT"] @@ -168,12 +171,14 @@ def test_frontend_asic_portchannels(self): 'PortChannel4002': {'admin_status': 'up', 'min_links': '2', 'mtu': '9100', 'tpid': '0x8100', 'lacp_key': 'auto'}}) def test_backend_asic_portchannels(self): + argument = ["-m", self.sample_graph, "-p", self.port_config[3], "-n", "asic3", "--var-json", "PORTCHANNEL"] output = json.loads(self.run_script(argument)) self.assertDictEqual(output, \ {'PortChannel4013': {'admin_status': 'up', 'min_links': '2', 'mtu': '9100', 'tpid': '0x8100', 'lacp_key': 'auto'}, - 'PortChannel4014': {'admin_status': 'up', 'min_links': '2', 'mtu': '9100', 'tpid': '0x8100', 'lacp_key': 'auto'}}) + 'PortChannel4014': {'admin_status': 'up', 'min_links': '2', 'mtu': '9100', 'tpid': '0x8100', 'lacp_key': 'auto'}}) + def test_frontend_asic_portchannel_mem(self): argument = ["-m", self.sample_graph, "-p", self.port_config[0], "-n", "asic0", "-v", "PORTCHANNEL_MEMBER.keys()|list"] output = self.run_script(argument) @@ -269,6 +274,8 @@ def test_backend_asic_device_neigh(self): 'Ethernet-BP392': {'name': 'ASIC1', 'port': 'Eth6-ASIC1'}, 'Ethernet-BP388': {'name': 'ASIC0', 'port': 'Eth7-ASIC0'}}) + + #@mock.patch("sonic_py_common.multi_asic.is_multi_asic", mock.MagicMock(return_value=True)) def test_backend_device_neigh_metadata(self): argument = ["-m", self.sample_graph, "-p", self.port_config[3], "-n", "asic3", "--var-json", "DEVICE_NEIGHBOR_METADATA"] output = json.loads(self.run_script(argument)) @@ -551,3 +558,4 @@ def test_no_asic_in_graph(self): def tearDown(self): os.environ["CFGGEN_UNIT_TESTING"] = "" + os.environ["CFGGEN_UNIT_TESTING_TOPOLOGY"] = ""