diff --git a/LibreNMS/Data/Source/SnmpResponse.php b/LibreNMS/Data/Source/SnmpResponse.php index c4d5f9f5d5..8a227b6681 100644 --- a/LibreNMS/Data/Source/SnmpResponse.php +++ b/LibreNMS/Data/Source/SnmpResponse.php @@ -173,6 +173,26 @@ class SnmpResponse return $this->values; } + /** + * Create a key to value pair for an OID + * Only works for single indexed tables + * You may omit $oid if there is only one $oid in the walk + */ + public function pluck(?string $oid = null): array + { + $output = []; + $oid = $oid ?? '[a-zA-Z0-9:.-]+'; + $regex = "/^{$oid}[[.](\d+)]?$/"; + + foreach ($this->values() as $key => $value) { + if (preg_match($regex, $key, $matches)) { + $output[$matches[1]] = $value; + } + } + + return $output; + } + public function valuesByIndex(array &$array = []): array { foreach ($this->values() as $oid => $value) { diff --git a/LibreNMS/Interfaces/Discovery/EntityPhysicalDiscovery.php b/LibreNMS/Interfaces/Discovery/EntityPhysicalDiscovery.php new file mode 100644 index 0000000000..9fe79443ce --- /dev/null +++ b/LibreNMS/Interfaces/Discovery/EntityPhysicalDiscovery.php @@ -0,0 +1,39 @@ +. + * + * @link https://www.librenms.org + * + * @copyright 2024 Tony Murray + * @author Tony Murray + */ + +namespace LibreNMS\Interfaces\Discovery; + +use Illuminate\Support\Collection; + +interface EntityPhysicalDiscovery +{ + /** + * Discover a Collection of IsIsAdjacency models. + * Will be keyed by ifIndex + * + * @return \Illuminate\Support\Collection<\App\Models\EntPhysical> + */ + public function discoverEntityPhysical(): Collection; +} diff --git a/LibreNMS/Modules/EntityPhysical.php b/LibreNMS/Modules/EntityPhysical.php new file mode 100644 index 0000000000..4996c247f8 --- /dev/null +++ b/LibreNMS/Modules/EntityPhysical.php @@ -0,0 +1,79 @@ +isEnabledAndDeviceUp($os->getDevice()); + } + + /** + * @inheritDoc + */ + public function shouldPoll(OS $os, ModuleStatus $status): bool + { + return $status->isEnabledAndDeviceUp($os->getDevice()); + } + + /** + * @inheritDoc + */ + public function discover(OS $os): void + { + $inventory = $os->discoverEntityPhysical(); + + ModuleModelObserver::observe(EntPhysical::class); + $this->syncModels($os->getDevice(), 'entityPhysical', $inventory); + } + + /** + * @inheritDoc + */ + public function poll(OS $os, DataStorageInterface $datastore): void + { + // no polling + } + + /** + * @inheritDoc + */ + public function cleanup(Device $device): void + { + $device->entityPhysical()->delete(); + } + + /** + * @inheritDoc + */ + public function dump(Device $device) + { + return [ + 'entPhysical' => $device->entityPhysical()->orderBy('entPhysicalIndex') + ->get()->map->makeHidden(['device_id', 'entPhysical_id']), + ]; + } +} diff --git a/LibreNMS/OS.php b/LibreNMS/OS.php index 8ed32cf6e1..0e4537a277 100644 --- a/LibreNMS/OS.php +++ b/LibreNMS/OS.php @@ -31,6 +31,7 @@ use DeviceCache; use Illuminate\Support\Str; use LibreNMS\Device\WirelessSensor; use LibreNMS\Device\YamlDiscovery; +use LibreNMS\Interfaces\Discovery\EntityPhysicalDiscovery; use LibreNMS\Interfaces\Discovery\MempoolsDiscovery; use LibreNMS\Interfaces\Discovery\OSDiscovery; use LibreNMS\Interfaces\Discovery\ProcessorDiscovery; @@ -46,6 +47,7 @@ use LibreNMS\Interfaces\Polling\StpInstancePolling; use LibreNMS\Interfaces\Polling\StpPortPolling; use LibreNMS\OS\Generic; use LibreNMS\OS\Traits\BridgeMib; +use LibreNMS\OS\Traits\EntityMib; use LibreNMS\OS\Traits\HostResources; use LibreNMS\OS\Traits\NetstatsPolling; use LibreNMS\OS\Traits\ResolvesPortIds; @@ -60,6 +62,7 @@ class OS implements MempoolsDiscovery, StpInstanceDiscovery, StpPortDiscovery, + EntityPhysicalDiscovery, IcmpNetstatsPolling, IpNetstatsPolling, IpForwardNetstatsPolling, @@ -82,6 +85,7 @@ class OS implements use NetstatsPolling; use ResolvesPortIds; use BridgeMib; + use EntityMib; /** * @var float|null @@ -92,6 +96,8 @@ class OS implements private $cache; // data cache private $pre_cache; // pre-fetch data cache + protected ?string $entityVendorTypeMib = null; + /** * OS constructor. Not allowed to be created directly. Use OS::make() */ diff --git a/LibreNMS/OS/Areca.php b/LibreNMS/OS/Areca.php index 223e557ae2..91361c5df8 100644 --- a/LibreNMS/OS/Areca.php +++ b/LibreNMS/OS/Areca.php @@ -28,6 +28,7 @@ namespace LibreNMS\OS; use App\Models\Device; use LibreNMS\Interfaces\Discovery\OSDiscovery; use LibreNMS\OS; +use LibreNMS\Util\StringHelpers; class Areca extends OS implements OSDiscovery { @@ -36,8 +37,8 @@ class Areca extends OS implements OSDiscovery parent::discoverOS($device); //yaml // Sometimes firmware outputs serial as hex-string - if (isHexString($device->serial)) { - $device->serial = snmp_hexstring($device->serial); + if (StringHelpers::isHex($device->serial)) { + $device->serial = StringHelpers::hexToAscii($device->serial, ' '); } } } diff --git a/LibreNMS/OS/ArubaInstant.php b/LibreNMS/OS/ArubaInstant.php index 7b794b20e6..6b798c00e6 100644 --- a/LibreNMS/OS/ArubaInstant.php +++ b/LibreNMS/OS/ArubaInstant.php @@ -27,6 +27,8 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; +use Illuminate\Support\Collection; use LibreNMS\Device\Processor; use LibreNMS\Device\WirelessSensor; use LibreNMS\Interfaces\Discovery\OSDiscovery; @@ -355,4 +357,43 @@ class ArubaInstant extends OS implements return $data; } + + public function discoverEntityPhysical(): Collection + { + $inventory = new Collection; + + $ai_ig_data = \SnmpQuery::walk('AI-AP-MIB::aiInfoGroup')->table(1); + $master_ip = $ai_ig_data[0]['AI-AP-MIB::aiMasterIPAddress'] ?? null; + if ($master_ip) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => $ai_ig_data[0]['AI-AP-MIB::aiVirtualControllerIPAddress'], + 'entPhysicalClass' => 'chassis', + 'entPhysicalName' => $ai_ig_data[0]['AI-AP-MIB::aiVirtualControllerName'], + 'entPhysicalModelName' => 'Instant Virtual Controller Cluster', + 'entPhysicalSerialNum' => $ai_ig_data[0]['AI-AP-MIB::aiVirtualControllerKey'], + 'entPhysicalMfgName' => 'Aruba', + ])); + } + + $index = 2; + $ap_data = \SnmpQuery::hideMib()->walk('AI-AP-MIB:aiAccessPointTable')->table(1); + foreach ($ap_data as $mac => $entry) { + $type = $master_ip == $entry['aiAPIPAddress'] ? 'Master' : 'Member'; + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $index++, + 'entPhysicalDescr' => $entry['aiAPMACAddress'], + 'entPhysicalName' => sprintf('%s %s Cluster %s', $entry['aiAPName'], $entry['aiAPIPAddress'], $type), + 'entPhysicalClass' => 'other', + 'entPhysicalContainedIn' => 1, + 'entPhysicalSerialNum' => $entry['aiAPSerialNum'], + 'entPhysicalModelName' => $entry['aiAPModel'], + 'entPhysicalMfgName' => 'Aruba', + 'entPhysicalVendorType' => 'accessPoint', + 'entPhysicalSoftwareRev' => $this->getDevice()->version, + ])); + } + + return $inventory; + } } diff --git a/LibreNMS/OS/ArubaosCx.php b/LibreNMS/OS/ArubaosCx.php index f0a5c77bf3..7ec793f52a 100644 --- a/LibreNMS/OS/ArubaosCx.php +++ b/LibreNMS/OS/ArubaosCx.php @@ -30,13 +30,15 @@ use SnmpQuery; class ArubaosCx extends \LibreNMS\OS implements NacPolling { + protected ?string $entityVendorTypeMib = 'ARUBAWIRED-NETWORKING-OID'; + public function pollNac() { $nac = new Collection(); $rowSet = []; $ifIndex_map = $this->getDevice()->ports()->pluck('port_id', 'ifName'); - $table = SnmpQuery::mibDir('arubaos-cx')->mibs(['ARUBAWIRED-PORT-ACCESS-MIB'])->hideMib()->enumStrings()->walk('arubaWiredPortAccessClientTable')->table(2); + $table = SnmpQuery::hideMib()->enumStrings()->walk('ARUBAWIRED-PORT-ACCESS-MIB::arubaWiredPortAccessClientTable')->table(2); foreach ($table as $ifIndex => $entry) { foreach ($entry as $macKey => $macEntry) { @@ -61,7 +63,6 @@ class ArubaosCx extends \LibreNMS\OS implements NacPolling } foreach ($rowSet as $row) { - var_dump($row); $nac->put($row['mac_address'], new PortsNac($row)); } diff --git a/LibreNMS/OS/Axos.php b/LibreNMS/OS/Axos.php index f43a3211e7..6fd34b4905 100644 --- a/LibreNMS/OS/Axos.php +++ b/LibreNMS/OS/Axos.php @@ -26,6 +26,8 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; +use Illuminate\Support\Collection; use LibreNMS\Interfaces\Discovery\OSDiscovery; use LibreNMS\OS; @@ -43,4 +45,55 @@ class Axos extends OS implements OSDiscovery return ($card_count[$card] > 1 ? $card_count[$card] . 'x ' : '') . $card; }, array_keys($card_count))); } + + public function discoverEntityPhysical(): Collection + { + $inventory = new Collection; + $physical_index = 1; + + $physical_name = \SnmpQuery::hideMib()->mibs(['CALIX-PRODUCT-MIB'])->translate($this->getDevice()->sysObjectID); + $serial_number = \SnmpQuery::get('Axos-System-MIB::axosSystemChassisSerialNumber.0')->value(); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $physical_index++, + 'entPhysicalDescr' => $physical_name, + 'entPhysicalContainedIn' => 0, + 'entPhysicalClass' => 'chassis', + 'entPhysicalName' => $physical_name, + 'entPhysicalSerialNum' => $serial_number, + 'entPhysicalMfgName' => 'Calix', + 'entPhysicalModelName' => $physical_name, + 'entPhysicalIsFRU' => 'false', + ])); + + $cards = \SnmpQuery::enumStrings()->walk('Axos-Card-MIB::axosCardTable')->table(2); + foreach ($cards as $shelf => $shelf_cards) { + $shelf_index = $shelf * 100; + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $shelf_index, + 'entPhysicalDescr' => "Shelf $shelf", + 'entPhysicalClass' => 'container', + // 'entPhysicalModelName' => '100-01449', // Not known, this is E7-2 part number + 'entPhysicalContainedIn' => 1, + 'entPhysicalParentRelPos' => $shelf, + 'entPhysicalIsFRU' => 'false', + ])); + foreach ($shelf_cards as $card_index => $card) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $shelf_index + $card_index, + 'entPhysicalMfgName' => 'Calix', + 'entPhysicalDescr' => $card['Axos-Card-MIB::axosCardActualType'], + 'entPhysicalName' => "$shelf-$card_index", + 'entPhysicalClass' => 'module', + 'entPhysicalModelName' => $card['Axos-Card-MIB::axosCardPartNumber'], + 'entPhysicalSerialNum' => $card['Axos-Card-MIB::axosCardSerialNumber'], + 'entPhysicalContainedIn' => $shelf_index, + 'entPhysicalParentRelPos' => $card['Axos-Card-MIB::axosCardSlot'], + 'entPhysicalSoftwareRev' => $card['Axos-Card-MIB::axosCardSoftwareVersion'], + 'entPhysicalIsFRU' => 'true', + ])); + } + } + + return $inventory; + } } diff --git a/LibreNMS/OS/CienaRls.php b/LibreNMS/OS/CienaRls.php new file mode 100644 index 0000000000..2b4bc71e14 --- /dev/null +++ b/LibreNMS/OS/CienaRls.php @@ -0,0 +1,28 @@ +enumStrings()->walk('CIENA-6500R-INVENTORY-MIB::rlsCircuitPackTable')->mapTable(function ($entry, $index) { + return new EntPhysical([ + 'entPhysicalIndex' => $index, //need to derive index from the oid + 'entPhysicalDescr' => $entry['rlsCircuitPackCtype'], + 'entPhysicalName' => $entry['rlsCircuitPackCtype'], + 'entPhysicalModelName' => $entry['rlsCircuitPackPec'], + 'entPhysicalSerialNum' => $entry['rlsCircuitPackSerialNumber'] ?? null, + 'entPhysicalParentRelPos' => $index, + 'entPhysicalMfgName' => 'Ciena', + 'entPhysicalAlias' => $entry['rlsCircuitPackCommonLanguageEquipmentIndentifier'] ?? null, + 'entPhysicalHardwareRev' => $entry['rlsCircuitPackHardwareRelease'] ?? null, + 'entPhysicalIsFRU' => 'true', + ]); + }); + } +} diff --git a/LibreNMS/OS/CienaSds.php b/LibreNMS/OS/CienaSds.php new file mode 100644 index 0000000000..52f0e10c52 --- /dev/null +++ b/LibreNMS/OS/CienaSds.php @@ -0,0 +1,206 @@ +values(); + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => $chassis_info['CIENA-CES-CHASSIS-MIB::cienaCesChassisPlatformDesc.0'] ?? null, + 'entPhysicalClass' => 'chassis', + 'entPhysicalName' => 'Chassis', + 'entPhysicalModelName' => $chassis_info['CIENA-CES-CHASSIS-MIB::cienaCesChassisPartNumber.0'] ?? null, + 'entPhysicalSerialNum' => $chassis_info['CIENA-CES-CHASSIS-MIB::cienaCesChassisSerialNumber.0'] ?? null, + 'entPhysicalMfgName' => 'Ciena', + 'entPhysicalHardwareRev' => $chassis_info['CIENA-CES-CHASSIS-MIB::cienaCesChassisIDPModelRevision.0'] ?? null, + 'entPhysicalIsFRU' => 'true', + ])); + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 401, + 'entPhysicalClass' => 'container', + 'entPhysicalName' => 'Modules', + 'entPhysicalContainedIn' => 1, + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 411, + 'entPhysicalClass' => 'container', + 'entPhysicalName' => 'Power Supplies', + 'entPhysicalContainedIn' => 1, + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 421, + 'entPhysicalClass' => 'container', + 'entPhysicalName' => 'Fans', + 'entPhysicalContainedIn' => 1, + ])); + + // PSU Stuff + $cienaCesChassisPowerTable = SnmpQuery::hideMib()->enumStrings()->walk('CIENA-CES-CHASSIS-MIB::cienaCesChassisPowerTable')->table(1); + foreach ($cienaCesChassisPowerTable as $index => $contents) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "50$index", + 'entPhysicalDescr' => $contents['cienaCesChassisPowerSupplyManufacturer'] ?? null, + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $contents['cienaCesChassisPowerSupplySlotName'] ?? null, + 'entPhysicalModelName' => $contents['cienaCesChassisPowerSupplyPartNum'] ?? null, + 'entPhysicalSerialNum' => $contents['cienaCesChassisPowerSupplySerialNumber'] ?? null, + 'entPhysicalContainedIn' => '41' . ($contents['cienaCesChassisPowerSupplyChassisIndx'] ?? null), + 'entPhysicalMfgName' => 'Ciena', + 'entPhysicalParentRelPos' => $contents['cienaCesChassisPowerSupplySlotIndx'] ?? null, + 'entPhysicalHardwareRev' => $contents['cienaCesChassisPowerSupplyRevInfo'] ?? null, + 'entPhysicalIsFRU' => $contents['cienaCesChassisPowerSupplyFRU'] ?? null, + ])); + } + + // Fan Stuff + $trays = SnmpQuery::hideMib()->walk('CIENA-CES-CHASSIS-MIB::cienaCesChassisFanTrayTable')->table(1); + foreach ($trays as $tray_index => $tray_data) { + $typeString = match ($tray_data['cienaCesChassisFanTrayType']) { + 1 => 'Fixed fan tray, ', + 2 => 'Hot swappable fan tray, ', + 3 => 'Unequipped fan tray, ', + default => '', + }; + $modeString = match ($tray_data['cienaCesChassisFanTrayMode']) { + 1 => 'Invalid fan configuration!', + 2 => 'Fully populated', + 3 => 'Auto mode', + default => '', + }; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "53$tray_index", + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $tray_data['cienaCesChassisFanTrayName'], + 'entPhysicalModelName' => 'Fan Tray', + 'entPhysicalDescr' => "$typeString$modeString", + 'entPhysicalSerialNum' => $tray_data['cienaCesChassisFanTraySerialNumber'], + 'entPhysicalContainedIn' => '42' . $tray_data['cienaCesChassisFanTrayChassisIndx'], + 'entPhysicalMfgName' => 'Ciena', + 'entPhysicalParentRelPos' => $tray_data['cienaCesChassisFanTraySlotIndx'], + 'entPhysicalIsFRU' => $tray_data['cienaCesChassisFanTrayType'] == '2' ? 'true' : 'false', + ])); + } + + $fans = SnmpQuery::hideMib()->walk('CIENA-CES-CHASSIS-MIB::cienaCesChassisFanTable')->table(2); + foreach ($fans as $tray_index => $fans_data) { + foreach ($fans_data as $fan_index => $fan_data) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "51$fan_index", + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $fan_data['cienaCesChassisFanName'], + 'entPhysicalModelName' => 'Fan', + 'entPhysicalContainedIn' => isset($trays[$tray_index]) ? + "53$tray_index" : '42' . $fan_data['cienaCesChassisFanChassisIndx'], + 'entPhysicalMfgName' => 'Ciena', + 'entPhysicalParentRelPos' => $fan_index, + ])); + } + } + + $fanTemps = SnmpQuery::hideMib()->walk('CIENA-CES-CHASSIS-MIB::cienaCesChassisFanTempTable')->table(2); + foreach ($fanTemps as $tray_index => $temps_data) { + foreach ($temps_data as $temp_index => $temp_data) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "52$temp_index", + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $temp_data['cienaCesChassisFanTempName'], + 'entPhysicalModelName' => 'Temp Sensor', + 'entPhysicalContainedIn' => isset($trays[$tray_index]) ? + "53$tray_index" : '42' . $temp_data['cienaCesChassisFanTempChassisIndx'], + ])); + } + } + + // Module Stuff + $inventory = $inventory->merge(SnmpQuery::hideMib()->walk([ + 'CIENA-CES-MODULE-MIB::cienaCesModuleTable', + 'CIENA-CES-MODULE-MIB::cienaCesModuleDescriptionTable', + 'CIENA-CES-MODULE-MIB::cienaCesModuleSwTable', + ])->mapTable(function ($contents, $chassisIndex, $shelfIndex, $slotIndex) { + $descr = $contents['cienaCesModuleDescription']; + $release = $contents['cienaCesModuleSwRunningRelease'] ?? null; + if ($release) { + $descr .= ", $release"; + } + + return new EntPhysical([ + 'entPhysicalIndex' => "55$slotIndex", + 'entPhysicalDescr' => $descr, + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $contents['cienaCesModuleSlotName'] . ': ' . $contents['cienaCesModuleDescriptionBoardName'], + 'entPhysicalModelName' => $contents['cienaCesModuleDescriptionBoardPartNum'], + 'entPhysicalSerialNum' => $contents['cienaCesModuleDescriptionBoardSerialNum'], + 'entPhysicalContainedIn' => '40' . $chassisIndex, + 'entPhysicalMfgName' => 'Ciena', + 'entPhysicalParentRelPos' => $slotIndex, + 'entPhysicalFirmwareRev' => $release, + 'entPhysicalIsFRU' => 'true', + ]); + })); + + // Interface stuff + $interfaceIndexMapping = SnmpQuery::walk('BRIDGE-MIB::dot1dBasePortIfIndex')->table(1); + $transceivers = SnmpQuery::hideMib()->enumStrings()->walk([ + 'CIENA-CES-PORT-MIB::cienaCesEttpConfigTable', + 'CIENA-CES-PORT-XCVR-MIB::cienaCesPortXcvrTable', + ])->table(1); + + foreach ($transceivers as $index => $contents) { + $portIndex = $interfaceIndexMapping[$index]['BRIDGE-MIB::dot1dBasePortIfIndex']; + $nameArr = explode('/', $contents['cienaCesEttpConfigName']); + $slotIndex = isset($nameArr[1]) ? $nameArr[0] : 1; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "56$index", + 'entPhysicalDescr' => $contents['cienaCesEttpConfigEttpType'], + 'entPhysicalClass' => 'port', + 'entPhysicalName' => $contents['cienaCesEttpConfigName'], + 'entPhysicalContainedIn' => '55' . $slotIndex, + 'entPhysicalParentRelPos' => $index, + 'ifIndex' => $portIndex, + ])); + + if (isset($contents['cienaCesPortXcvrOperState']) && $contents['cienaCesPortXcvrOperState'] != 'notPresent') { + $wavelengthString = ($contents['cienaCesPortXcvrWaveLength'] != 0 ? + $contents['cienaCesPortXcvrWaveLength'] . ' nm ' : ''); + $mfgString = ($contents['cienaCesPortXcvrMfgDate'] != '' ? + 'manufactured ' . $contents['cienaCesPortXcvrMfgDate'] . ' ' : ''); + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $portIndex, + 'entPhysicalDescr' => $contents['cienaCesPortXcvrVendorName'] . ' ' . $wavelengthString . + $contents['cienaCesPortXcvrIdentiferType'] . ' transceiver ' . $mfgString, + 'entPhysicalClass' => 'sensor', + 'entPhysicalModelName' => $contents['cienaCesPortXcvrVendorPartNum'], + 'entPhysicalSerialNum' => $contents['cienaCesPortXcvrSerialNum'], + 'entPhysicalContainedIn' => "56$index", + 'entPhysicalMfgName' => $contents['cienaCesPortXcvrVendorName'], + 'entPhysicalParentRelPos' => -1, + 'entPhysicalHardwareRev' => $contents['cienaCesPortXcvrRevNum'], + 'entPhysicalIsFRU' => 'true', + ])); + } + } + + return $inventory; + } +} diff --git a/LibreNMS/OS/Ciscosb.php b/LibreNMS/OS/Ciscosb.php index eeead4feab..544b6b3558 100644 --- a/LibreNMS/OS/Ciscosb.php +++ b/LibreNMS/OS/Ciscosb.php @@ -31,6 +31,8 @@ use LibreNMS\OS; class Ciscosb extends OS implements OSDiscovery { + protected ?string $entityVendorTypeMib = 'CISCO-ENTITY-VENDORTYPE-OID-MIB'; + public function discoverOS(Device $device): void { parent::discoverOS($device); // yaml diff --git a/LibreNMS/OS/Edgeos.php b/LibreNMS/OS/Edgeos.php index 4d096adead..0b7f784db6 100644 --- a/LibreNMS/OS/Edgeos.php +++ b/LibreNMS/OS/Edgeos.php @@ -26,9 +26,16 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; +use LibreNMS\OS\Traits\EntityMib; +use LibreNMS\Util\StringHelpers; class Edgeos extends \LibreNMS\OS { + use EntityMib { + EntityMib::discoverEntityPhysical as discoverBaseEntityPhysical; + } + public function discoverOS(Device $device): void { parent::discoverOS($device); // yaml @@ -41,4 +48,14 @@ class Edgeos extends \LibreNMS\OS } } } + + public function discoverEntityPhysical(): \Illuminate\Support\Collection + { + return $this->discoverBaseEntityPhysical()->each(function (EntPhysical $entity) { + // clean garbage in fields "...............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00" + $entity->entPhysicalDescr = StringHelpers::trimHexGarbage($entity->entPhysicalDescr); + $entity->entPhysicalName = StringHelpers::trimHexGarbage($entity->entPhysicalName); + $entity->entPhysicalVendorType = StringHelpers::trimHexGarbage($entity->entPhysicalVendorType); + }); + } } diff --git a/LibreNMS/OS/EltexMes23xx.php b/LibreNMS/OS/EltexMes23xx.php index d2f4ccae53..0972096999 100644 --- a/LibreNMS/OS/EltexMes23xx.php +++ b/LibreNMS/OS/EltexMes23xx.php @@ -23,18 +23,52 @@ namespace LibreNMS\OS; -use LibreNMS\OS; +use App\Models\EntPhysical; +use Illuminate\Support\Collection; +use LibreNMS\OS\Shared\Radlan; +use LibreNMS\OS\Traits\EntityMib; +use LibreNMS\Util\StringHelpers; +use SnmpQuery; -class EltexMes23xx extends OS +class EltexMes23xx extends Radlan { + use EntityMib { + EntityMib::discoverEntityPhysical as discoverBaseEntityPhysical; + } + + public function discoverEntityPhysical(): Collection + { + $inventory = $this->discoverBaseEntityPhysical(); + + // add in transceivers + $trans = SnmpQuery::hideMib()->enumStrings()->walk('ELTEX-MES-PHYSICAL-DESCRIPTION-MIB::eltPhdTransceiverInfoTable')->table(1); + $ifIndexToEntIndexMap = array_flip($this->getIfIndexEntPhysicalMap()); + + foreach ($trans as $ifIndex => $data) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1000000 + $ifIndex, + 'entPhysicalDescr' => $data['eltPhdTransceiverInfoType'], + 'entPhysicalClass' => 'sfp-cage', + 'entPhysicalName' => strtoupper($data['eltPhdTransceiverInfoConnectorType']), + 'entPhysicalModelName' => $this->normData($data['eltPhdTransceiverInfoPartNumber']), + 'entPhysicalSerialNum' => $data['eltPhdTransceiverInfoSerialNumber'], + 'entPhysicalContainedIn' => $ifIndexToEntIndexMap[$ifIndex] ?? 0, + 'entPhysicalMfgName' => $data['eltPhdTransceiverInfoVendorName'], + 'entPhysicalHardwareRev' => $this->normData($data['eltPhdTransceiverInfoVendorRev']), + 'entPhysicalParentRelPos' => 0, + 'entPhysicalIsFRU' => 'true', + 'ifIndex' => $ifIndex, + ])); + } + + return $inventory; + } + /** * Specific HexToString for Eltex */ - public static function normData(string $par = ''): string + protected function normData(string $par = ''): string { - $tmp = str_replace([':', ' '], '', trim(strtoupper($par))); - $ret = preg_match('/^[0-9A-F]+$/', $tmp) ? hex2str($tmp) : $par; //if string is pure hex, convert to ascii - - return $ret; + return StringHelpers::isHex($par) ? StringHelpers::hexToAscii($par, ' ') : $par; } } diff --git a/LibreNMS/OS/EltexMes24xx.php b/LibreNMS/OS/EltexMes24xx.php new file mode 100644 index 0000000000..7f144b5e24 --- /dev/null +++ b/LibreNMS/OS/EltexMes24xx.php @@ -0,0 +1,43 @@ +discoverBaseEntityPhysical(); + + // add SFPs + $oidSfp = SnmpQuery::hideMib()->enumStrings()->walk('ELTEX-PHY-MIB::eltexPhyTransceiverInfoTable')->table(1); + $ifIndexToEntIndexMap = array_flip($this->getIfIndexEntPhysicalMap()); + + foreach ($oidSfp as $ifIndex => $data) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1000000 + $ifIndex, + 'entPhysicalSerialNum' => $data['eltexPhyTransceiverInfoSerialNumber'], + 'entPhysicalModelName' => $data['eltexPhyTransceiverInfoPartNumber'], + 'entPhysicalName' => $data['eltexPhyTransceiverInfoConnectorType'], + 'entPhysicalDescr' => $data['eltexPhyTransceiverInfoType'], + 'entPhysicalClass' => 'sfp-cage', + 'entPhysicalContainedIn' => $ifIndexToEntIndexMap[$ifIndex] ?? 0, + 'entPhysicalMfgName' => $data['eltexPhyTransceiverInfoVendorName'], + 'entPhysicalHardwareRev' => $data['eltexPhyTransceiverInfoVendorRevision'], + 'entPhysicalIsFRU' => 'true', + 'ifIndex' => $ifIndex, + ])); + } + + return $inventory; + } +} diff --git a/LibreNMS/OS/Eurostor.php b/LibreNMS/OS/Eurostor.php index 9201b16e76..fed6230d63 100644 --- a/LibreNMS/OS/Eurostor.php +++ b/LibreNMS/OS/Eurostor.php @@ -3,8 +3,12 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; +use Illuminate\Support\Collection; use LibreNMS\Interfaces\Discovery\OSDiscovery; use LibreNMS\OS; +use LibreNMS\Util\StringHelpers; +use SnmpQuery; class Eurostor extends OS implements OSDiscovery { @@ -25,8 +29,68 @@ class Eurostor extends OS implements OSDiscovery } // Sometimes firmware outputs serial as hex-string - if (isHexString($device->serial)) { - $device->serial = snmp_hexstring($device->serial); + if (StringHelpers::isHex($device->serial)) { + $device->serial = StringHelpers::hexToAscii($device->serial, ' '); } } + + public function discoverEntityPhysical(): Collection + { + $inventory = new Collection; + $id = 1; + + $chassis_array = SnmpQuery::hideMib()->walk('proware-SNMP-MIB::systeminformation')->table(1); + foreach ($chassis_array as $chassis_contents) { + // Discover the chassis + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $id++, + 'entPhysicalDescr' => "Eurostore {$chassis_contents['siModel']}", + 'entPhysicalClass' => 'chassis', + 'entPhysicalModelName' => $chassis_contents['siModel'], + 'entPhysicalSerialNum' => $chassis_contents['siSerial'], + 'entPhysicalContainedIn' => '0', + 'entPhysicalVendorType' => $chassis_contents['siVendor'], + 'entPhysicalHardwareRev' => $chassis_contents['siBootVer'], + 'entPhysicalFirmwareRev' => $chassis_contents['siFirmVer'], + ])); + } + + for ($i = 1; $i <= 8; $i++) { + $backplane_array = SnmpQuery::hideMib()->walk('proware-SNMP-MIB::hwEnclosure' . $i)->table(1); + + foreach ($backplane_array as $backplane_contents) { + if (empty($backplane_contents['hwEnclosure0' . $i . 'Installed']) || $backplane_contents['hwEnclosure0' . $i . 'Installed'] != 2) { + continue; + } + $backplane_id = $id++; + // Discover the chassis + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $backplane_id, + 'entPhysicalDescr' => $backplane_contents['hwEnclosure0' . $i . 'Description'], + 'entPhysicalClass' => 'backplane', + 'entPhysicalContainedIn' => '1', + 'entPhysicalParentRelPos' => $i, + ])); + + $hdd_array = SnmpQuery::hideMib()->walk('proware-SNMP-MIB::hddEnclosure0' . $i . 'InfoTable')->table(1); + foreach ($hdd_array as $hdd_contents) { + // Discover the chassis + $inventory->push(new EntPhysical([ + 'entPhysicalContainedIn' => $backplane_id, + 'entPhysicalIndex' => $id++, + 'entPhysicalDescr' => $hdd_contents['hddEnclosure0' . $i . 'Desc'], + 'entPhysicalClass' => 'container', + 'entPhysicalParentRelPos' => $hdd_contents['hddEnclosure0' . $i . 'Slots'], + 'entPhysicalName' => $hdd_contents['hddEnclosure0' . $i . 'Name'], + 'entPhysicalSerialNum' => $hdd_contents['hddEnclosure0' . $i . 'Serial'], + 'entPhysicalFirmwareRev' => $hdd_contents['hddEnclosure0' . $i . 'FirmVer'], + 'entPhysicalIsFRU' => 'true', + 'entPhysicalAlias' => $hdd_contents['hddEnclosure0' . $i . 'State'], + ])); + } + } + } + + return $inventory; + } } diff --git a/LibreNMS/OS/Junos.php b/LibreNMS/OS/Junos.php index b106c31aab..da877dacad 100644 --- a/LibreNMS/OS/Junos.php +++ b/LibreNMS/OS/Junos.php @@ -26,6 +26,7 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; use App\Models\Sla; use Carbon\Carbon; use Illuminate\Support\Collection; @@ -33,10 +34,16 @@ use LibreNMS\Interfaces\Data\DataStorageInterface; use LibreNMS\Interfaces\Discovery\SlaDiscovery; use LibreNMS\Interfaces\Polling\OSPolling; use LibreNMS\Interfaces\Polling\SlaPolling; +use LibreNMS\OS\Traits\EntityMib; use LibreNMS\RRD\RrdDefinition; +use SnmpQuery; class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling { + use EntityMib { + EntityMib::discoverEntityPhysical as discoverBaseEntityPhysical; + } + public function discoverOS(Device $device): void { $data = snmp_get_multi($this->getDeviceArray(), [ @@ -97,6 +104,69 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling return $slas; } + public function discoverEntityPhysical(): Collection + { + $entPhysical = $this->discoverBaseEntityPhysical(); + if ($entPhysical->isNotEmpty()) { + return $entPhysical; + } + + $chassisName = null; + + $containers = SnmpQuery::hideMib() + ->mibs(['JUNIPER-CHASSIS-DEFINES-MIB']) + ->walk('JUNIPER-MIB::jnxContainersTable') + ->mapTable(function ($entry, $index) use (&$chassisName) { + $modelName = $this->parseType($entry['jnxContainersType'] ?? null, $chassisName); + $chassisName ??= $modelName; + $descr = $entry['jnxContainersDescr'] ?? null; + $within = $entry['jnxContainersWithin'] ?? 0; + + return new EntPhysical([ + 'entPhysicalIndex' => $index, + 'entPhysicalClass' => $within == '0' ? 'chassis' : 'container', + 'entPhysicalDescr' => $descr, + 'entPhysicalModelName' => $modelName, + 'entPhysicalContainedIn' => $within, + ]); + }); + + if ($containers->isEmpty()) { + return $containers; + } + + return $containers->merge(SnmpQuery::hideMib()->enumStrings() + ->mibs(['JUNIPER-CHASSIS-DEFINES-MIB']) + ->walk('JUNIPER-MIB::jnxContentsTable') + ->mapTable(function ($entry, $container, $indexL1, $indexL2, $indexL3) use ($chassisName, $containers) { + // set serial for the chassis, but don't add another container + if ($container == 1 && $indexL1 == 1 && $indexL2 == 0 && $indexL3 == 0) { + $chassis = $containers->firstWhere('entPhysicalClass', 'chassis'); + if ($chassis) { + $chassis->entPhysicalSerialNum = $entry['jnxContentsSerialNo'] ?? null; + + return null; + } + } + + // Juniper's MIB doesn't have the same objects as the Entity MIB, so some values are made up here. + return new EntPhysical([ + 'entPhysicalIndex' => $container + $indexL1 * 1000000 + $indexL2 * 10000 + $indexL3 * 100, + 'entPhysicalDescr' => $entry['jnxContentsDescr'] ?? null, + 'entPhysicalContainedIn' => $container, + 'entPhysicalClass' => $this->parseClass($entry['jnxContentsType'] ?? null), + 'entPhysicalName' => $entry['jnxOperatingDescr'] ?? null, + 'entPhysicalSerialNum' => $entry['jnxContentsSerialNo'] ?? null, + 'entPhysicalModelName' => $entry['jnxContentsPartNo'] ?? null, + 'entPhysicalMfgName' => 'Juniper', + 'entPhysicalVendorType' => $this->parseType($entry['jnxContentsType'] ?? null, $chassisName), + 'entPhysicalParentRelPos' => -1, + 'entPhysicalHardwareRev' => $entry['jnxContentsRevision'] ?? null, + 'entPhysicalIsFRU' => isset($entry['jnxContentsSerialNo']) ? ($entry['jnxContentsSerialNo'] == 'BUILTIN' ? 'false' : 'true') : null, + ]); + }))->filter(); + } + public function pollSlas($slas): void { $device = $this->getDeviceArray(); @@ -184,4 +254,40 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling return str_replace('ping', '', $rtt_type); } } + + /** + * Parse type into a nicer name + * jnxChassisEX4300.0 > EX4300 + * jnxEX4300SlotPower.0 > Slot Power + * jnxEX4300MPSlotFan.0 > MP Slot Fan + * jnxEX4300MPSlotFPC.0 > MP Slot FPC + * jnxEX4300MediaCardSpacePIC.0 > Media Card Space PIC + * jnxEX4300MPRE0.0 > MPRE0 + */ + public function parseType(?string $type, ?string $chassisName): ?string + { + if ($type === null) { + return $type; + } + + if (preg_match('/jnxChassis([^.]+).*/', $type, $matches)) { + return $matches[1]; + } + + // $chassisName is known + $name = preg_replace("/jnx($chassisName)?([^.]+).*/", '$2', $type); + $words = preg_split('/(^[^A-Z]+|[A-Z][^A-Z0-9]+)/', $name, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); + + return implode(' ', $words); + } + + public function parseClass($type): ?string + { + return match ($type) { + 'jnxFan' => 'fan', + 'jnxPower' => 'powerSupply', + + default => null, + }; + } } diff --git a/LibreNMS/OS/Linux.php b/LibreNMS/OS/Linux.php index cd726c098d..8121c6e701 100644 --- a/LibreNMS/OS/Linux.php +++ b/LibreNMS/OS/Linux.php @@ -25,10 +25,13 @@ namespace LibreNMS\OS; +use App\Models\EntPhysical; use Illuminate\Support\Collection; use LibreNMS\Interfaces\Discovery\VminfoDiscovery; use LibreNMS\OS\Traits\VminfoLibvirt; use LibreNMS\OS\Traits\VminfoVmware; +use LibreNMS\Util\StringHelpers; +use SnmpQuery; class Linux extends Shared\Unix implements VminfoDiscovery { @@ -51,4 +54,93 @@ class Linux extends Shared\Unix implements VminfoDiscovery return $this->discoverVmwareVminfo(); } + + public function discoverEntityPhysical(): Collection + { + return $this->discoverLsiMegaRaidInventory(); + } + + private function discoverLsiMegaRaidInventory(): Collection + { + $inventory = new Collection; + + $controller_array = SnmpQuery::hideMib()->walk('LSI-MegaRAID-SAS-MIB::adapterInfoTable')->table(1); + + if (empty($controller_array)) { + return $inventory; // no controllers, skip the rest. + } + + foreach ($controller_array as $controller) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 200 + $controller['adapterID-AIT'], + 'entPhysicalParentRelPos' => $controller['adapterID-AIT'] ?? -1, + 'entPhysicalDescr' => '/C' . $controller['adapterID-AIT'], + 'entPhysicalClass' => 'port', + 'entPhysicalModelName' => $controller['productName'], + 'entPhysicalSerialNum' => $controller['serialNo'], + 'entPhysicalContainedIn' => '0', + 'entPhysicalVendorType' => $controller['adapterVendorID'], + 'entPhysicalFirmwareRev' => $controller['firmwareVersion'], + ])); + } + + $bbus = SnmpQuery::hideMib()->walk('LSI-MegaRAID-SAS-MIB::bbuTable')->table(1); + foreach ($bbus as $bbu) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1000 + $bbu['pdIndex'], + 'entPhysicalClass' => 'charge', + 'entPhysicalModelName' => $bbu['deviceName'], + 'entPhysicalSerialNum' => $bbu['serialNumber'], + 'entPhysicalContainedIn' => 200 + $bbu['adpID'], + 'entPhysicalIsFRU' => 'true', + 'entPhysicalFirmwareRev' => $bbu['firmwareStatus'], + ])); + } + + $enclosures = SnmpQuery::hideMib()->walk('LSI-MegaRAID-SAS-MIB::enclosureTable')->table(1); + foreach ($enclosures as $enclosure) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 210 + $enclosure['deviceId'], + 'entPhysicalVendorType' => $enclosure['slotCount'], + 'entPhysicalParentRelPos' => $enclosure['deviceId'] ?? -1, + 'entPhysicalDescr' => '/C' . ($enclosure['adapterID-ET'] ?? '0') . '/E' . $enclosure['deviceId'], + 'entPhysicalClass' => 'chassis', + 'entPhysicalModelName' => $enclosure['productID'], + 'entPhysicalSerialNum' => $enclosure['enclSerialNumber'], + 'entPhysicalContainedIn' => 200 + $enclosure['adapterID-ET'], + 'entPhysicalMfgName' => $enclosure['vendorID'], + 'entPhysicalFirmwareRev' => $this->handleHex($enclosure['enclFirmwareVersion']), + ])); + } + + $drives = SnmpQuery::hideMib()->walk('LSI-MegaRAID-SAS-MIB::physicalDriveTable')->table(1); + foreach ($drives as $drive) { + $enclDeviceId = $drive['enclDeviceId'] ?? 0; + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 500 + $enclDeviceId * 100 + $drive['physDevID'], + 'entPhysicalParentRelPos' => $drive['slotNumber'] ?? -1, + 'entPhysicalDescr' => '/C' . ($drive['adpID-PDT'] ?? '0') . '/E' . $enclDeviceId . '/S' . ($drive['slotNumber'] ?? '0'), + 'entPhysicalClass' => 'drive', + 'entPhysicalModelName' => $drive['pdProductID'] ?? null, + 'entPhysicalSerialNum' => $drive['pdSerialNumber'] ?? null, + 'entPhysicalContainedIn' => 210 + $enclDeviceId, + 'entPhysicalIsFRU' => 'true', + 'entPhysicalFirmwareRev' => $drive['pdFwversion'] ?? null, // missing + ])); + } + + return $inventory; + } + + private function handleHex(string $string): string + { + $string = str_replace("\n", '', $string); + if (StringHelpers::isHex($string)) { + $ascii = StringHelpers::hexToAscii($string, ' '); + + return preg_split('/[^ -~]/', $ascii)[0] ?? $ascii; + } + + return $string; + } } diff --git a/LibreNMS/OS/MrvOd.php b/LibreNMS/OS/MrvOd.php new file mode 100644 index 0000000000..eb89d0e33b --- /dev/null +++ b/LibreNMS/OS/MrvOd.php @@ -0,0 +1,341 @@ +enumStrings()->walk('NBS-CMMC-MIB::nbsCmmcChassisTable')->table(1); + $slot_array = SnmpQuery::hideMib()->enumStrings()->walk('NBS-CMMC-MIB::nbsCmmcSlotTable')->table(2); + $port_array = SnmpQuery::hideMib()->enumStrings()->walk('NBS-CMMC-MIB::nbsCmmcPortTable')->table(3); + + // We use the last digit in the OID to define an entPhysicalIndex for Power Supply state sensors + $nbsCmmcChassisPSStatus_array = [ + 7 => 'nbsCmmcChassisPS1Status', + 8 => 'nbsCmmcChassisPS2Status', + 9 => 'nbsCmmcChassisPS3Status', + 10 => 'nbsCmmcChassisPS4Status', + ]; + + // We use the last digit in the OID to define an entPhysicalIndex for Fan state sensors + $nbsCmmcChassisFanStatus_array = [ + 11 => 'nbsCmmcChassisFan1Status', + 12 => 'nbsCmmcChassisFan2Status', + 13 => 'nbsCmmcChassisFan3Status', + 14 => 'nbsCmmcChassisFan4Status', + 36 => 'nbsCmmcChassisFan5Status', + 37 => 'nbsCmmcChassisFan6Status', + 38 => 'nbsCmmcChassisFan7Status', + 39 => 'nbsCmmcChassisFan8Status', + ]; + + // Define all the types of pluggable port form factors recognized by nbsCmmcPortType in NBS-CMMC-MIB, + // if nbsCmmcPortType returns a value that is not in this array, it should be a built-in port in the card. + $nbsCmmcPortType_array = [ + 125 => 'SFP', + 147 => 'GBIC', + 197 => 'XFP', + 219 => 'QSFP+', + 220 => 'CXP', + 221 => 'CFP', + 223 => 'QSFP28', + 224 => 'CFP2', + ]; + + $nbsCmmcPortSensor_array = [ + 30 => [ + 'objectType' => 'nbsCmmcPortTemperature', + 'skipValue' => '-2147483648', + 'entPhysicalName' => 'Port Temperature', + ], + 31 => [ + 'objectType' => 'nbsCmmcPortTxPower', + 'skipValue' => '-2147483648', + 'entPhysicalName' => 'Port Tx Power', + ], + 32 => [ + 'objectType' => 'nbsCmmcPortRxPower', + 'skipValue' => '-2147483648', + 'entPhysicalName' => 'Port Rx Power', + ], + 33 => [ + 'objectType' => 'nbsCmmcPortBiasAmps', + 'skipValue' => '-1', + 'entPhysicalName' => 'Port Tx Bias Current', + ], + 34 => [ + 'objectType' => 'nbsCmmcPortSupplyVolts', + 'skipValue' => '-1', + 'entPhysicalName' => 'Port Tx Supply Voltage', + ], + 38 => [ + 'objectType' => 'nbsCmmcPortDigitalDiags', + 'skipValue' => '1', + 'entPhysicalName' => 'Port Overall DigiDiags State', + ], + ]; + + foreach ($chassis_array as $nbsCmmcChassis => $chassis_contents) { + [$chassisHardwareRev, $chassisFirmwareRev] = explode(', ', $chassis_contents['nbsCmmcChassisHardwareRevision']); + // Discover the chassis + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . '00', + 'entPhysicalDescr' => "MRV OptiDriver {$chassis_contents['nbsCmmcChassisModel']}", + 'entPhysicalClass' => 'chassis', + 'entPhysicalName' => "Chassis $nbsCmmcChassis", + 'entPhysicalModelName' => $chassis_contents['nbsCmmcChassisModel'], + 'entPhysicalSerialNum' => $chassis_contents['nbsCmmcChassisSerialNum'], + 'entPhysicalContainedIn' => '0', + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => $chassis_contents['nbsCmmcChassisIndex'], + 'entPhysicalVendorType' => $chassis_contents['nbsCmmcChassisType'], + 'entPhysicalHardwareRev' => $chassisHardwareRev, + 'entPhysicalFirmwareRev' => $chassisFirmwareRev, + 'entPhysicalIsFRU' => 'true', + 'entPhysicalAlias' => $chassis_contents['nbsCmmcChassisName'], + ])); + + // Discover the chassis temperature sensor + if (isset($chassis_contents['nbsCmmcChassisTemperature']) && $chassis_contents['nbsCmmcChassisTemperature'] != '-2147483648') { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "{$chassis_contents['nbsCmmcChassisIfIndex']}15", + 'entPhysicalDescr' => 'Chassis Temperature Sensor', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Chassis Temperature', + 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalIsFRU' => 'false', + ])); + } + + // Discover the chassis power budget status sensor + if (isset($chassis_contents['nbsCmmcChassisPowerStatus']) && $chassis_contents['nbsCmmcChassisPowerStatus'] != 'notSupported') { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "{$chassis_contents['nbsCmmcChassisIfIndex']}51", + 'entPhysicalDescr' => 'Chassis Power Budget Status Sensor', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Chassis Power Budget Status', + 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalIsFRU' => 'false', + ])); + } + + // Discover the chassis power supplies and state sensors + foreach ($nbsCmmcChassisPSStatus_array as $index => $item) { + if (isset($chassis_contents[$item]) && $chassis_contents[$item] != 'notSupported') { + $position = substr($item, 16, 1); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . $position, + 'entPhysicalDescr' => 'Power Supply', + 'entPhysicalClass' => 'powerSupply', + 'entPhysicalName' => "Power Supply $position", + 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => $position, + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . $index, + 'entPhysicalDescr' => 'Power Supply State', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => "Power Supply $position", + 'entPhysicalContainedIn' => $chassis_contents['nbsCmmcChassisIfIndex'] . $position, + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalIsFRU' => 'true', + ])); + } + } + + // Discover the chassis fan trays and state sensors + foreach ($nbsCmmcChassisFanStatus_array as $index => $item) { + if (isset($chassis_contents[$item]) && $chassis_contents[$item] != 'notSupported') { + $position = substr($item, 17, 1); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "{$chassis_contents['nbsCmmcChassisIfIndex']}0$position", + 'entPhysicalDescr' => 'Fan Tray', + 'entPhysicalClass' => 'fan', + 'entPhysicalName' => "Fan Tray $position", + 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => $position, + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . $index, + 'entPhysicalDescr' => 'Fan State', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => "Fan $position", + 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}0$position", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalIsFRU' => 'true', + ])); + } + } + } + + foreach ($slot_array as $chassis_index => $chassis_contents) { + foreach ($chassis_contents as $nbsCmmcSlot => $slot_contents) { + // Obtain the nbsCmmcChassisIfIndex of the chassis which houses this slot + $nbsCmmcChassisIfIndex = $chassis_array[$chassis_index]['nbsCmmcChassisIfIndex']; + // Calculate the nbsCmmcSlotIfIndex since an empty slot has nbsCmmcSlotIfIndex == -1 + $nbsCmmcSlotIfIndex = $nbsCmmcChassisIfIndex + $slot_contents['nbsCmmcSlotIndex'] * 1000; + // Discover the slot + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $nbsCmmcSlotIfIndex . '00', + 'entPhysicalDescr' => 'MRV OptiDriver Slot', + 'entPhysicalClass' => 'container', + 'entPhysicalName' => "Card Slot $chassis_index.$nbsCmmcSlot", + 'entPhysicalContainedIn' => $nbsCmmcChassisIfIndex . '00', + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => $slot_contents['nbsCmmcSlotIndex'] ?? -1, + 'entPhysicalIsFRU' => 'false', + ])); + if (isset($slot_contents['nbsCmmcSlotIfIndex']) && $slot_contents['nbsCmmcSlotIfIndex'] != '-1') { + $cardHardwareRev = $slot_contents['nbsCmmcSlotHardwareRevision']; + $cardFirmwareRev = null; + $cardOtherRev = null; + $rev_explode = explode(', ', $cardHardwareRev); + if (isset($rev_explode[2])) { + [$cardHardwareRev, $cardFirmwareRev, $cardOtherRev] = $rev_explode; + } + // Discover the card + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $slot_contents['nbsCmmcSlotIfIndex'] . '01', + 'entPhysicalDescr' => 'MRV ' . ucfirst($slot_contents['nbsCmmcSlotOperationType']) . ' Card', + 'entPhysicalClass' => 'module', + 'entPhysicalName' => "Card $chassis_index.$nbsCmmcSlot", + 'entPhysicalModelName' => $slot_contents['nbsCmmcSlotModel'], + 'entPhysicalSerialNum' => $slot_contents['nbsCmmcSlotSerialNum'], + 'entPhysicalContainedIn' => "{$slot_contents['nbsCmmcSlotIfIndex']}00", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalVendorType' => $slot_contents['nbsCmmcSlotType'], + 'entPhysicalHardwareRev' => "$cardHardwareRev, $cardOtherRev", + 'entPhysicalFirmwareRev' => $cardFirmwareRev, + 'entPhysicalIsFRU' => 'true', + 'entPhysicalAlias' => $slot_contents['nbsCmmcSlotName'], + ])); + + // Discover the module temperature sensor + if (isset($slot_contents['nbsCmmcSlotTemperature']) && $slot_contents['nbsCmmcSlotTemperature'] != '-2147483648') { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "{$slot_contents['nbsCmmcSlotIfIndex']}34", + 'entPhysicalDescr' => 'Card Temperature Sensor', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Card Temperature', + 'entPhysicalContainedIn' => "{$slot_contents['nbsCmmcSlotIfIndex']}01", + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalIsFRU' => 'false', + ])); + } + } + } + } + + foreach ($port_array as $chassis_index => $chassis_contents) { + foreach ($chassis_contents as $slot_index => $slot_contents) { + foreach ($slot_contents as $nbsCmmcPort => $port_contents) { + // Obtain the nbsCmmcSlotIfIndex of the slot which houses this port + $nbsCmmcSlotIfIndex = $slot_array[$chassis_index][$slot_index]['nbsCmmcSlotIfIndex']; + + // We only need to discover a transceiver container if the port type is pluggable + if (array_key_exists($port_contents['nbsCmmcPortType'], $nbsCmmcPortType_array)) { + $nbsCmmcPortType = $nbsCmmcPortType_array[$port_contents['nbsCmmcPortType']]; + + // Discover the transceiver container + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $port_contents['nbsCmmcPortIfIndex'] . '00', + 'entPhysicalDescr' => "$nbsCmmcPortType Transceiver Container", + 'entPhysicalClass' => 'container', + 'entPhysicalName' => "Transceiver Container $chassis_index.$slot_index.$nbsCmmcPort", + 'entPhysicalContainedIn' => $nbsCmmcSlotIfIndex . '01', + 'entPhysicalMfgName' => 'MRV Communications', + 'entPhysicalParentRelPos' => $port_contents['nbsCmmcPortIndex'] ?? -1, + 'entPhysicalIsFRU' => 'false', + ])); + // Set a few variables for the port discovery + $nbsCmmcPortContainedIn = $port_contents['nbsCmmcPortIfIndex'] . '00'; + $nbsCmmcPortVendorInfo = $port_contents['nbsCmmcPortVendorInfo']; + $nbsCmmcPortIsFRU = 'true'; + $nbsCmmcPortParentRelPos = '-1'; + // If one runs a command like "show 1.1.1 | grep Part" on a port with a genuine pluggable transceiver, + // CLI output like "Part #/Rev: SFP-10GDWZR-22/0001" indicates / is considered to be the string delimiter. + // However, non-genuine pluggable transceivers may not adhere to this format. + [$nbsCmmcPortModelName, $nbsCmmcPortHardwareRev] = explode('/', $port_contents['nbsCmmcPortPartRev']); + } else { + $nbsCmmcPortType = 'Built-in'; + + // Set a few variables for the port discovery + $nbsCmmcPortContainedIn = $nbsCmmcSlotIfIndex . '01'; + $nbsCmmcPortVendorInfo = 'MRV Communications'; + $nbsCmmcPortIsFRU = 'false'; + $nbsCmmcPortParentRelPos = $port_contents['nbsCmmcPortIndex'] ?? -1; + $nbsCmmcPortModelName = null; + $nbsCmmcPortHardwareRev = null; + } + + if (isset($port_contents['nbsCmmcPortConnector']) && $port_contents['nbsCmmcPortConnector'] != 'removed') { + // Determine the correct entPhysicalDescr for the port + if (isset($port_contents['nbsCmmcPortWavelengthX']) && $port_contents['nbsCmmcPortWavelengthX'] != 'N/A') { + $portEntPhysicalDescr = "$nbsCmmcPortType Port, {$port_contents['nbsCmmcPortWavelengthX']}nm Tx Signal, {$port_contents['nbsCmmcPortConnector']} Connector"; + } elseif (! empty($port_contents['nbsCmmcPortDescription'])) { + $portEntPhysicalDescr = "$nbsCmmcPortType Port, {$port_contents['nbsCmmcPortDescription']}, {$port_contents['nbsCmmcPortConnector']} Connector"; + } else { + $portEntPhysicalDescr = "$nbsCmmcPortType Port, {$port_contents['nbsCmmcPortConnector']} Connector"; + } + + // Discover the port + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => "{$port_contents['nbsCmmcPortIfIndex']}01", + 'entPhysicalDescr' => $portEntPhysicalDescr, + 'entPhysicalClass' => 'port', + 'entPhysicalName' => "Port $chassis_index.$slot_index.$nbsCmmcPort", + 'entPhysicalModelName' => $nbsCmmcPortModelName, + 'entPhysicalSerialNum' => $port_contents['nbsCmmcPortSerialNumber'], + 'entPhysicalContainedIn' => $nbsCmmcPortContainedIn, + 'entPhysicalMfgName' => $nbsCmmcPortVendorInfo, + 'entPhysicalParentRelPos' => $nbsCmmcPortParentRelPos, + 'entPhysicalVendorType' => $port_contents['nbsCmmcPortType'], + 'entPhysicalHardwareRev' => $nbsCmmcPortHardwareRev, + 'entPhysicalIsFRU' => $nbsCmmcPortIsFRU, + 'entPhysicalAlias' => $port_contents['nbsCmmcPortName'], + 'ifIndex' => $port_contents['nbsCmmcPortIfIndex'], + ])); + + // Discover the port sensors + foreach ($nbsCmmcPortSensor_array as $index => $nbsCmmcPortSensor) { + if (isset($port_contents[$nbsCmmcPortSensor['objectType']]) && $port_contents[$nbsCmmcPortSensor['objectType']] != $nbsCmmcPortSensor['skipValue']) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $port_contents['nbsCmmcPortIfIndex'] . $index, + 'entPhysicalDescr' => "{$nbsCmmcPortSensor['entPhysicalName']} Sensor", + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $nbsCmmcPortSensor['entPhysicalName'], + 'entPhysicalContainedIn' => "{$port_contents['nbsCmmcPortIfIndex']}01", + 'entPhysicalMfgName' => $nbsCmmcPortVendorInfo, + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalIsFRU' => 'false', + ])); + } + } + } + } + } + } + + return $inventory; + } +} diff --git a/LibreNMS/OS/SafCfm.php b/LibreNMS/OS/SafCfm.php index e389aceda8..aa47d3231e 100644 --- a/LibreNMS/OS/SafCfm.php +++ b/LibreNMS/OS/SafCfm.php @@ -25,17 +25,93 @@ namespace LibreNMS\OS; +use App\Models\EntPhysical; +use Illuminate\Support\Collection; use LibreNMS\Device\WirelessSensor; use LibreNMS\Interfaces\Discovery\Sensors\WirelessErrorsDiscovery; use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery; use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery; use LibreNMS\OS; +use SnmpQuery; class SafCfm extends OS implements WirelessFrequencyDiscovery, WirelessPowerDiscovery, WirelessErrorsDiscovery { + public function discoverEntityPhysical(): Collection + { + $inventory = new Collection; + $response = SnmpQuery::hideMib()->walk('SAF-MPMUX-MIB::mpmux'); + + if (! $response->isValid()) { + return $inventory; + } + + // all scalar values, so remove the .0 + $data = $response->table(1)[0] ?? []; + $entIndex = 1; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => $data['termProduct'], + 'entPhysicalVendorType' => $data['termProduct'], + 'entPhysicalContainedIn' => '0', + 'entPhysicalClass' => 'chassis', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalName' => 'Chassis', + 'entPhysicalSerialNum' => $data['serialNumber'], + 'entPhysicalMfgName' => 'SAF', + 'entPhysicalModelName' => $data['serialNumber'], + 'entPhysicalIsFRU' => 'true', + ])); + + foreach ([1 => 'rf1Version', 2 => 'rf2Version'] as $index => $item) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 10 + $index, + 'entPhysicalDescr' => $data[$item], + 'entPhysicalVendorType' => 'radio', + 'entPhysicalContainedIn' => 1, + 'entPhysicalClass' => 'module', + 'entPhysicalParentRelPos' => $index, + 'entPhysicalName' => "Radio $index", + 'entPhysicalIsFRU' => 'true', + ])); + } + + if ($data['termProduct'] == 'SAF CFM-M4P-MUX') { + foreach (range(1, 4) as $index) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 20 + $index, + 'entPhysicalDescr' => 'Module Container', + 'entPhysicalVendorType' => 'containerSlot', + 'entPhysicalContainedIn' => 1, + 'entPhysicalClass' => 'container', + 'entPhysicalParentRelPos' => $index + 2, + 'entPhysicalName' => "Slot $index", + 'entPhysicalIsFRU' => 'false', + ])); + } + + foreach ([1 => 'm1Description', 2 => 'm2Description', 3 => 'm3Description', 4 => 'm4Description'] as $index => $item) { + if (! str_contains($data[$item], 'N/A')) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 30 + $index, + 'entPhysicalDescr' => $data[$item], + 'entPhysicalVendorType' => 'module', + 'entPhysicalContainedIn' => $index + 3, + 'entPhysicalClass' => 'module', + 'entPhysicalParentRelPos' => 1, + 'entPhysicalName' => "Module $index", + 'entPhysicalIsFRU' => 'true', + ])); + } + } + } + + return $inventory; + } + /** * Discover wireless frequency. This is in MHz. Type is frequency. * Returns an array of LibreNMS\Device\Sensor objects that have been discovered diff --git a/LibreNMS/OS/Schleifenbauer.php b/LibreNMS/OS/Schleifenbauer.php index 080e6674df..28a2b4109e 100644 --- a/LibreNMS/OS/Schleifenbauer.php +++ b/LibreNMS/OS/Schleifenbauer.php @@ -26,6 +26,9 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; +use Illuminate\Support\Collection; +use SnmpQuery; class Schleifenbauer extends \LibreNMS\OS { @@ -49,4 +52,258 @@ class Schleifenbauer extends \LibreNMS\OS $device->version = trim("$device->version ({$data[$oids['build']]})"); } } + + public function discoverEntityPhysical(): Collection + { + $inventory = new Collection; + + $sdbMgmtStsDevices = SnmpQuery::get('SCHLEIFENBAUER-DATABUS-MIB::sdbMgmtStsDevices.0')->value(); + + // Only spawn databus ring entities when the device is not stand-alone. + if ($sdbMgmtStsDevices > 1) { + $entPhysicalContainedIn = 1; + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => "Schleifenbauer databus ring ($sdbMgmtStsDevices units)", + 'entPhysicalClass' => 'stack', + 'entPhysicalName' => 'Schleifenbauer Databus', + 'entPhysicalContainedIn' => 0, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => 'Databus Ring State Sensor (0 = open, 1 = closed)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'State Sensor', + 'entPhysicalContainedIn' => 0, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => 'Duplicate Device Address Sensor (#)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'State Sensor', + 'entPhysicalContainedIn' => 0, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1, + 'entPhysicalDescr' => 'New Device Detection Sensor (#)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'State Sensor', + 'entPhysicalContainedIn' => 0, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + } else { + $entPhysicalContainedIn = 0; + } + + // Let's gather some data about the units.. + $sdbDevCfMaximumLoad = SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfMaximumLoad')->table(1); + $sdbDevCfOutletsTotal = SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfOutletsTotal')->table(1); + $sdbDevCfSensors = SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfSensors')->table(1); + + // In a large databus ring, snmpwalking this OID may crash the discovery half way through. + // So, we only discover and enumerate outlets if this is a stand-alone, non-databus unit. + $sdbOutputs = $sdbMgmtStsDevices == 1 ? SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevOutName')->table(2) : []; + + // Let's gather some data about the databus ring.. + $sdbDev = SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdTable')->table(1); + + // And let's gather some data about the inputs, outputs, and sensors on those units.. + $sdbDevInputs = SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevInName')->table(2); + $sdbSensors = SnmpQuery::walk('SCHLEIFENBAUER-DATABUS-MIB::sdbDevSnsTable')->table(2); + + foreach ($sdbDevInputs as $sdbDevIdIndex => $sdbDevInNames) { + $data = $sdbDev[$sdbDevIdIndex]; + $unitEntPhysicalIndex = $sdbDevIdIndex * 10; + + // We are determining the $entPhysicalAlias for this PDU based on a few optional user-customizable fields. + $entPhysicalAlias = $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdName'] ?: null; + if ($entPhysicalAlias && $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdLocation']) { + $entPhysicalAlias .= ' @ ' . $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdLocation']; + } + + $outletsTotal = $sdbDevCfOutletsTotal[$sdbDevIdIndex]['SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfOutletsTotal']; + $phasesTotal = count($sdbDevInNames); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $unitEntPhysicalIndex, + 'entPhysicalDescr' => "Schleifenbauer $phasesTotal-phase, $outletsTotal-outlet PDU", + 'entPhysicalClass' => 'chassis', + 'entPhysicalName' => 'Schleifenbauer PDU - SPDM v' . $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdFirmwareVersion'], + 'entPhysicalModelName' => $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdProductId'], + 'entPhysicalSerialNum' => $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdSerialNumber'], + 'entPhysicalContainedIn' => $entPhysicalContainedIn, + 'entPhysicalParentRelPos' => $sdbDevIdIndex, + 'entPhysicalHardwareRev' => 'SO# ' . $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdSalesOrderNumber'], + 'entPhysicalSoftwareRev' => $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdFirmwareVersion'], + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalAlias' => $entPhysicalAlias, + 'entPhysicalIsFRU' => 'true', + 'entPhysicalAssetID' => $data['SCHLEIFENBAUER-DATABUS-MIB::sdbDevIdVanityTag'], + ])); + + // Since a fully numerical entPhysicalIndex is only available for the actual PDU, we are calculating a fake entPhysicalIndex to avoid namespace collision. We have an Integer32 of space per IETF RFC6933 anyway. + // The maximum sdbMgmtCtrlDevUnitAddress is 255, but multiplying by 1 million for namespace size. Add +100k for every top-level index below a PDU. + foreach ($sdbDevInNames as $sdbDevInIndex => $sdbDevInName) { + $inputIndex = $sdbDevIdIndex * 1000000 + 100000 + $sdbDevInIndex * 1000; // +100k for the first top-level namespace. Add 1000 * sdbDevInIndex which goes up to 48. Leave 3 variable digits at the end. + $entPhysicalDescr = $sdbDevCfMaximumLoad[$sdbDevIdIndex]['SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfMaximumLoad'] . 'A input phase'; + $entPhysicalName = 'Input L' . $sdbDevInIndex; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $inputIndex, + 'entPhysicalDescr' => $entPhysicalDescr, + 'entPhysicalClass' => 'powerSupply', + 'entPhysicalName' => $entPhysicalName, + 'entPhysicalContainedIn' => $unitEntPhysicalIndex, + 'entPhysicalParentRelPos' => $sdbDevInIndex, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalAlias' => $sdbDevInName['SCHLEIFENBAUER-DATABUS-MIB::sdbDevInName'], + 'entPhysicalIsFRU' => 'false', + ])); + + // Enumerate sensors under the Input + $this->enumerateSensors($inventory, $inputIndex, $entPhysicalName); + } + + // Only enumerate outlets if this is a stand-alone, non-databus unit. + if ($sdbMgmtStsDevices == 1) { + // Check if we can find any outlets on this PDU.. + if (isset($sdbOutputs[$sdbDevIdIndex])) { + // We found outlets, so let's spawn an Outlet Backplane. + $outletBackplaneIndex = $sdbDevIdIndex * 1000000 + 200000; // +200k for the second top-level index namespace. + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $outletBackplaneIndex, + 'entPhysicalDescr' => $outletsTotal . ' outlets', + 'entPhysicalClass' => 'backplane', + 'entPhysicalName' => 'Outlets', + 'entPhysicalContainedIn' => $unitEntPhysicalIndex, + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + + foreach ($sdbOutputs[$sdbDevIdIndex] as $sdbDevOutIndex => $output) { + $outletIndex = $outletBackplaneIndex + $sdbDevOutIndex * 1000; // +200k for the second top-level index namespace. Add 1000 * sdbDevOutIndex which goes up to 48. Leave 3 variable digits at the end. + $entPhysicalName = 'Outlet #' . $sdbDevOutIndex; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $outletIndex, + 'entPhysicalDescr' => 'PDU outlet', + 'entPhysicalClass' => 'powerSupply', + 'entPhysicalName' => $entPhysicalName, + 'entPhysicalContainedIn' => $outletBackplaneIndex, + 'entPhysicalParentRelPos' => $sdbDevOutIndex, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalAlias' => $output['SCHLEIFENBAUER-DATABUS-MIB::sdbDevOutName'], + 'entPhysicalIsFRU' => 'false', + ])); + + // Enumerate sensors under the Outlet + $this->enumerateSensors($inventory, $outletIndex, $entPhysicalName); + } + } + } + + // Check if we can find any external sensor connections on this PDU.. + if (isset($sdbSensors[$sdbDevIdIndex])) { + // We found at least one sensor connection, so let's spawn a Sensor Container. + $sensorContainerIndex = $sdbDevIdIndex * 1000000 + 300000; // +300k for the third top-level index namespace. + $entPhysicalDescr = $sdbDevCfSensors[$sdbDevIdIndex]['SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfSensors'] == 1 ? '1 external sensor' : $sdbDevCfSensors[$sdbDevIdIndex]['SCHLEIFENBAUER-DATABUS-MIB::sdbDevCfSensors'] . ' external sensors'; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $sensorContainerIndex, + 'entPhysicalDescr' => $entPhysicalDescr, + 'entPhysicalClass' => 'container', + 'entPhysicalName' => 'Sensor Container', + 'entPhysicalContainedIn' => $unitEntPhysicalIndex, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + + foreach ($sdbSensors[$sdbDevIdIndex] as $sdbDevSnsIndex => $sensor) { + $sensorIndex = $sensorContainerIndex + $sdbDevSnsIndex * 1000; // +300k for the third top-level index namespace. Add 1000 * sdbDevSnsIndex which goes up to 16. Leave 3 variable digits at the end. + $entPhysicalName = 'External Sensor #' . $sdbDevSnsIndex; + $entPhysicalDescr = match ($sensor['SCHLEIFENBAUER-DATABUS-MIB::sdbDevSnsType']) { + 'T' => 'Temperature sensor (°C)', + 'H' => 'Humidity sensor (%)', + 'I' => 'Dry switch contact (binary)', + default => null, + }; + + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $sensorIndex, + 'entPhysicalDescr' => $entPhysicalDescr, + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => $entPhysicalName, + 'entPhysicalContainedIn' => $sensorContainerIndex, + 'entPhysicalParentRelPos' => $sdbDevSnsIndex, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalAlias' => $sensor['SCHLEIFENBAUER-DATABUS-MIB::sdbDevSnsName'], + 'entPhysicalIsFRU' => 'true', + ])); + } + } + } + + return $inventory; + } + + private function enumerateSensors(Collection $inventory, int $inputIndex, string $entPhysicalName): void + { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $inputIndex + 110, + 'entPhysicalDescr' => $entPhysicalName . ' voltage sensor (V)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Voltage Sensor', + 'entPhysicalContainedIn' => $inputIndex, + 'entPhysicalParentRelPos' => 1, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $inputIndex + 120, + 'entPhysicalDescr' => $entPhysicalName . ' RMS current sensor (A)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Current Sensor', + 'entPhysicalContainedIn' => $inputIndex, + 'entPhysicalParentRelPos' => 2, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $inputIndex + 130, + 'entPhysicalDescr' => $entPhysicalName . ' apparent power sensor (W)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Power Sensor', + 'entPhysicalContainedIn' => $inputIndex, + 'entPhysicalParentRelPos' => 3, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $inputIndex + 140, + 'entPhysicalDescr' => $entPhysicalName . ' lifetime power consumed sensor (kWh)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Power Consumed Sensor', + 'entPhysicalContainedIn' => $inputIndex, + 'entPhysicalParentRelPos' => 4, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $inputIndex + 150, + 'entPhysicalDescr' => $entPhysicalName . ' power factor sensor (ratio)', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Power Factor Sensor', + 'entPhysicalContainedIn' => $inputIndex, + 'entPhysicalParentRelPos' => 5, + 'entPhysicalMfgName' => 'Schleifenbauer Products B.V.', + 'entPhysicalIsFRU' => 'false', + ])); + } } diff --git a/LibreNMS/OS/Shared/Arris.php b/LibreNMS/OS/Shared/Arris.php new file mode 100644 index 0000000000..a11a412987 --- /dev/null +++ b/LibreNMS/OS/Shared/Arris.php @@ -0,0 +1,24 @@ +discoverBaseEntityPhysical()->each(function (EntPhysical $entity) { + // clean garbage in Rev fields "...............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00" + $entity->entPhysicalHardwareRev = StringHelpers::trimHexGarbage($entity->entPhysicalHardwareRev); + $entity->entPhysicalFirmwareRev = StringHelpers::trimHexGarbage($entity->entPhysicalFirmwareRev); + $entity->entPhysicalSoftwareRev = StringHelpers::trimHexGarbage($entity->entPhysicalSoftwareRev); + }); + } +} diff --git a/LibreNMS/OS/Shared/Cisco.php b/LibreNMS/OS/Shared/Cisco.php index dd16bf78dd..d6582dc03b 100755 --- a/LibreNMS/OS/Shared/Cisco.php +++ b/LibreNMS/OS/Shared/Cisco.php @@ -27,6 +27,7 @@ namespace LibreNMS\OS\Shared; use App\Models\Device; +use App\Models\EntPhysical; use App\Models\Mempool; use App\Models\PortsNac; use App\Models\Sla; @@ -57,6 +58,11 @@ class Cisco extends OS implements use YamlOSDiscovery { YamlOSDiscovery::discoverOS as discoverYamlOS; } + use OS\Traits\EntityMib { + OS\Traits\EntityMib::discoverEntityPhysical as discoverBaseEntityPhysical; + } + + protected ?string $entityVendorTypeMib = 'CISCO-ENTITY-VENDORTYPE-OID-MIB'; public function discoverOS(Device $device): void { @@ -213,6 +219,65 @@ class Cisco extends OS implements return $mempools; } + public function discoverEntityPhysical(): Collection + { + $inventory = $this->discoverBaseEntityPhysical(); + + $os = $this->getDevice()->os; + + // discover cellular device info + if ($os == 'ios' or $os == 'iosxe') { + $cellData = \SnmpQuery::hideMib()->walk('CISCO-WAN-3G-MIB::c3gGsmIdentityTable'); + $baseIndex = $inventory->max('entPhysicalIndex'); // maintain compatability with buggy old code + + foreach ($cellData->table(1) as $index => $entry) { + if (isset($entry['c3gImsi'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => ++$baseIndex, + 'entPhysicalDescr' => $entry['c3gImsi'], + 'entPhysicalVendorType' => 'sim', + 'entPhysicalContainedIn' => $index, + 'entPhysicalClass' => 'module', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalName' => 'sim', + 'entPhysicalModelName' => 'IMSI', + 'entPhysicalIsFRU' => 'true', + ])); + } + + if (isset($entry['c3gImei'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => ++$baseIndex, + 'entPhysicalDescr' => $entry['c3gImei'], + 'entPhysicalVendorType' => 'modem', + 'entPhysicalContainedIn' => $index, + 'entPhysicalClass' => 'module', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalName' => 'modem', + 'entPhysicalModelName' => 'IMEI', + 'entPhysicalIsFRU' => 'false', + ])); + } + + if (isset($entry['c3gIccId'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => ++$baseIndex, + 'entPhysicalDescr' => $entry['c3gIccId'], + 'entPhysicalVendorType' => 'sim', + 'entPhysicalContainedIn' => $index, + 'entPhysicalClass' => 'module', + 'entPhysicalParentRelPos' => '-1', + 'entPhysicalName' => 'sim', + 'entPhysicalModelName' => 'ICCID', + 'entPhysicalIsFRU' => 'true', + ])); + } + } + } + + return $inventory; + } + /** * Discover processors. * Returns an array of LibreNMS\Device\Processor objects that have been discovered diff --git a/LibreNMS/OS/Shared/Radlan.php b/LibreNMS/OS/Shared/Radlan.php new file mode 100644 index 0000000000..1a53d4bbf9 --- /dev/null +++ b/LibreNMS/OS/Shared/Radlan.php @@ -0,0 +1,9 @@ +discoverBaseEntityPhysical()->each(function (EntPhysical $entity) { + // clean garbage in Rev fields "...............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00" + $entity->entPhysicalDescr = StringHelpers::trimHexGarbage($entity->entPhysicalDescr); + $entity->entPhysicalName = StringHelpers::trimHexGarbage($entity->entPhysicalName); + $entity->entPhysicalHardwareRev = StringHelpers::trimHexGarbage($entity->entPhysicalHardwareRev); + $entity->entPhysicalFirmwareRev = StringHelpers::trimHexGarbage($entity->entPhysicalFirmwareRev); + $entity->entPhysicalSoftwareRev = StringHelpers::trimHexGarbage($entity->entPhysicalSoftwareRev); + $entity->entPhysicalAlias = StringHelpers::trimHexGarbage($entity->entPhysicalAlias); + $entity->entPhysicalSerialNum = StringHelpers::trimHexGarbage($entity->entPhysicalSerialNum); + $entity->entPhysicalMfgName = StringHelpers::trimHexGarbage($entity->entPhysicalMfgName); + }); + } +} diff --git a/LibreNMS/OS/TaitInfra93.php b/LibreNMS/OS/TaitInfra93.php new file mode 100644 index 0000000000..ebce2141e3 --- /dev/null +++ b/LibreNMS/OS/TaitInfra93.php @@ -0,0 +1,121 @@ +isValid()) { + return $inventory; + } + + $modules = $response->table(1); + + // Create a fake Chassis to host the modules we discover + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 10, + 'entPhysicalDescr' => 'Chassis', + 'entPhysicalClass' => 'chassis', + 'entPhysicalName' => 'Chassis', + 'entPhysicalModelName' => 'Infra93', + 'entPhysicalContainedIn' => 0, + 'entPhysicalParentRelPos' => 0, + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalIsFRU' => 'false', + ])); + + // Fill the different modules the "entPhysical" way to have a correct display. + // We suppose only one FrontPanel, PA, PMU and Reciter is returned. + if (isset($modules[0]['TAIT-INFRA93SERIES-MIB::fpInfoProductCode'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 11, + 'entPhysicalDescr' => 'Front Panel', + 'entPhysicalClass' => 'module', + 'entPhysicalName' => 'Front Panel', + 'entPhysicalModelName' => $modules[0]['TAIT-INFRA93SERIES-MIB::fpInfoProductCode'], + 'entPhysicalSerialNum' => $modules[0]['TAIT-INFRA93SERIES-MIB::fpInfoSerialNumber'], + 'entPhysicalContainedIn' => 10, + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalHardwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::fpInfoHardwareVersion'], + 'entPhysicalFirmwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::fpInfoFirmwareVersion'], + 'entPhysicalIsFRU' => 'true', + ])); + } + + if (isset($modules[0]['TAIT-INFRA93SERIES-MIB::rctInfoProductCode'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 120, + 'entPhysicalDescr' => 'Reciter', + 'entPhysicalClass' => 'module', + 'entPhysicalName' => 'Reciter', + 'entPhysicalModelName' => $modules[0]['TAIT-INFRA93SERIES-MIB::rctInfoProductCode'], + 'entPhysicalSerialNum' => $modules[0]['TAIT-INFRA93SERIES-MIB::rctInfoSerialNumber'], + 'entPhysicalContainedIn' => 10, + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalHardwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::rctInfoHardwareVersion'], + 'entPhysicalFirmwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::rctInfoFirmwareVersion'], + 'entPhysicalIsFRU' => 'true', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1200, + 'entPhysicalDescr' => 'Reciter Temperature Sensor', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Reciter Temperature', + 'entPhysicalContainedIn' => '120', + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalIsFRU' => 'false', + ])); + } + + if (isset($modules[0]['TAIT-INFRA93SERIES-MIB::paInfoProductCode'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 130, + 'entPhysicalDescr' => 'Power Amplifier', + 'entPhysicalClass' => 'module', + 'entPhysicalName' => 'Power Amplifier', + 'entPhysicalModelName' => $modules[0]['TAIT-INFRA93SERIES-MIB::paInfoProductCode'], + 'entPhysicalSerialNum' => $modules[0]['TAIT-INFRA93SERIES-MIB::paInfoSerialNumber'], + 'entPhysicalContainedIn' => 10, + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalHardwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::paInfoHardwareVersion'], + 'entPhysicalFirmwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::paInfoFirmwareVersion'], + 'entPhysicalIsFRU' => 'true', + ])); + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 1300, + 'entPhysicalDescr' => 'Amplifier Power Sensor', + 'entPhysicalClass' => 'sensor', + 'entPhysicalName' => 'Output Power', + 'entPhysicalContainedIn' => 130, + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalIsFRU' => 'false', + ])); + } + + if (isset($modules[0]['TAIT-INFRA93SERIES-MIB::pmuInfoProductCode'])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => 140, + 'entPhysicalDescr' => 'PMU', + 'entPhysicalClass' => 'module', + 'entPhysicalName' => 'PMU', + 'entPhysicalModelName' => $modules[0]['TAIT-INFRA93SERIES-MIB::pmuInfoProductCode'], + 'entPhysicalSerialNum' => $modules[0]['TAIT-INFRA93SERIES-MIB::pmuInfoSerialNumber'], + 'entPhysicalContainedIn' => 10, + 'entPhysicalMfgName' => 'TAIT', + 'entPhysicalHardwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::pmuInfoHardwareVersion'], + 'entPhysicalFirmwareRev' => $modules[0]['TAIT-INFRA93SERIES-MIB::pmuInfoFirmwareVersion'], + 'entPhysicalIsFRU' => 'true', + ])); + } + + return $inventory; + } +} diff --git a/LibreNMS/OS/Timos.php b/LibreNMS/OS/Timos.php index 17c16690f5..f8974290d9 100644 --- a/LibreNMS/OS/Timos.php +++ b/LibreNMS/OS/Timos.php @@ -28,6 +28,7 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\EntPhysical; use App\Models\MplsLsp; use App\Models\MplsLspPath; use App\Models\MplsSap; @@ -968,5 +969,49 @@ class Timos extends OS implements MplsDiscovery, MplsPolling, WirelessPowerDisco return $sensors; } - // End Class Timos + + public function discoverEntityPhysical(): Collection + { + $inventory = new Collection; + + $chassis = \SnmpQuery::walk('TIMETRA-CHASSIS-MIB::tmnxChassisType')->pluck(); + $chassisTypes = \SnmpQuery::walk('TIMETRA-CHASSIS-MIB::tmnxChassisTypeTable')->table(1); + $hardware = \SnmpQuery::enumStrings()->walk('TIMETRA-CHASSIS-MIB::tmnxHwTable'); + + foreach ($hardware->table(2) as $tmnxChassisIndex => $chassisContents) { + $type = $chassis[$tmnxChassisIndex]; + + if (isset($chassisTypes[$type])) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $tmnxChassisIndex, + 'entPhysicalDescr' => $chassisTypes[$type]['TIMETRA-CHASSIS-MIB::tmnxChassisTypeDescription'] ?? null, + 'entPhysicalClass' => 'chassis', + 'entPhysicalContainedIn' => 0, + 'entPhysicalName' => $chassisTypes[$type]['TIMETRA-CHASSIS-MIB::tmnxChassisTypeName'] ?? null, + ])); + } + + foreach ($chassisContents as $tmnxHwIndex => $entry) { + $inventory->push(new EntPhysical([ + 'entPhysicalIndex' => $tmnxHwIndex, + 'entPhysicalClass' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwClass'], + // 'entPhysicalDescr' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwID'], + 'entPhysicalName' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwName'], + 'entPhysicalModelName' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwMfgBoardNumber'], + 'entPhysicalSerialNum' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwSerialNumber'], + 'entPhysicalContainedIn' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwContainedIn'], + 'entPhysicalMfgName' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwMfgBoardNumber'], + 'entPhysicalParentRelPos' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwParentRelPos'], + 'entPhysicalHardwareRev' => '1.0', + 'entPhysicalFirmwareRev' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwBootCodeVersion'], + 'entPhysicalSoftwareRev' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwBootCodeVersion'], + 'entPhysicalIsFRU' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwIsFRU'], + 'entPhysicalAlias' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwAlias'], + 'entPhysicalAssetID' => $entry['TIMETRA-CHASSIS-MIB::tmnxHwAssetID'], + ])); + } + } + + return $inventory; + } } diff --git a/LibreNMS/OS/Traits/EntityMib.php b/LibreNMS/OS/Traits/EntityMib.php new file mode 100644 index 0000000000..48435968d8 --- /dev/null +++ b/LibreNMS/OS/Traits/EntityMib.php @@ -0,0 +1,73 @@ +. + * + * @link https://www.librenms.org + * + * @copyright 2024 Tony Murray + * @author Tony Murray + */ + +namespace LibreNMS\OS\Traits; + +use App\Models\EntPhysical; +use Illuminate\Support\Collection; + +trait EntityMib +{ + public function discoverEntityPhysical(): Collection + { + $snmpQuery = \SnmpQuery::hideMib()->enumStrings(); + if (isset($this->entityVendorTypeMib)) { + $snmpQuery = $snmpQuery->mibs([$this->entityVendorTypeMib]); + } + $data = $snmpQuery->walk('ENTITY-MIB::entPhysicalTable'); + + if (! $data->isValid()) { + return new Collection; + } + + $entPhysicalToIfIndexMap = $this->getIfIndexEntPhysicalMap(); + + return $data->mapTable(function ($data, $entityPhysicalIndex) use ($entPhysicalToIfIndexMap) { + $entityPhysical = new EntPhysical($data); + $entityPhysical->entPhysicalIndex = $entityPhysicalIndex; + $entityPhysical->ifIndex = $entPhysicalToIfIndexMap[$entityPhysicalIndex] ?? null; + + return $entityPhysical; + }); + } + + /** + * @return array + */ + protected function getIfIndexEntPhysicalMap(): array + { + $mapping = \SnmpQuery::cache()->walk('ENTITY-MIB::entAliasMappingIdentifier')->table(2); + $map = []; + + foreach ($mapping as $entityPhysicalIndex => $data) { + $id = $data[0]['ENTITY-MIB::entAliasMappingIdentifier'] ?? $data[1]['ENTITY-MIB::entAliasMappingIdentifier'] ?? null; + if ($id && preg_match('/ifIndex[\[.](\d+)/', $id, $matches)) { + $map[(int) $entityPhysicalIndex] = (int) $matches[1]; + } + } + + return $map; + } +} diff --git a/LibreNMS/OS/Vrp.php b/LibreNMS/OS/Vrp.php index 22e1739f2a..3e6ccc220e 100644 --- a/LibreNMS/OS/Vrp.php +++ b/LibreNMS/OS/Vrp.php @@ -27,6 +27,7 @@ namespace LibreNMS\OS; use App\Models\AccessPoint; use App\Models\Device; +use App\Models\EntPhysical; use App\Models\Mempool; use App\Models\PortsNac; use App\Models\Sla; @@ -49,6 +50,7 @@ use LibreNMS\Interfaces\Polling\NacPolling; use LibreNMS\Interfaces\Polling\OSPolling; use LibreNMS\Interfaces\Polling\SlaPolling; use LibreNMS\OS; +use LibreNMS\OS\Traits\EntityMib; use LibreNMS\RRD\RrdDefinition; class Vrp extends OS implements @@ -63,6 +65,35 @@ class Vrp extends OS implements OSDiscovery { use SyncsModels; + use EntityMib { + EntityMib::discoverEntityPhysical as discoverBaseEntityPhysical; + } + + public function discoverEntityPhysical(): Collection + { + // normal ENTITY-MIB collection + $inventory = $this->discoverBaseEntityPhysical(); + + // add additional data from Huawei MIBs + $extra = \SnmpQuery::walk([ + 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityBoardType', + 'HUAWEI-ENTITY-EXTENT-MIB::hwEntityBomEnDesc', + ])->table(1); + + $inventory->each(function (EntPhysical $entry) use ($extra) { + if (isset($entry->entPhysicalIndex)) { + if (! empty($extra[$entry->entPhysicalIndex]['HUAWEI-ENTITY-EXTENT-MIB::hwEntityBomEnDesc'])) { + $entry->entPhysicalDescr = $extra[$entry->entPhysicalIndex]['HUAWEI-ENTITY-EXTENT-MIB::hwEntityBomEnDesc']; + } + + if (! empty($extra[$entry->entPhysicalIndex]['HUAWEI-ENTITY-EXTENT-MIB::hwEntityBoardType'])) { + $entry->entPhysicalModelName = $extra[$entry->entPhysicalIndex]['HUAWEI-ENTITY-EXTENT-MIB::hwEntityBoardType']; + } + } + }); + + return $inventory; + } public function discoverMempools() { diff --git a/LibreNMS/Util/StringHelpers.php b/LibreNMS/Util/StringHelpers.php index a827a75556..78c8f685d7 100644 --- a/LibreNMS/Util/StringHelpers.php +++ b/LibreNMS/Util/StringHelpers.php @@ -174,4 +174,33 @@ class StringHelpers return implode($seperator, $hex); } + + public static function hexToAscii(string $hex, string $seperator = ''): string + { + if ($seperator) { + $escaped_seperator = preg_quote($seperator); + $no_nulls = preg_replace("/(00$escaped_seperator(00)?|{$escaped_seperator}00)/", '', $hex); + $hex = str_replace($seperator, '', $no_nulls); + } + + $string = ''; + + for ($i = 0; $i < strlen($hex) - 1; $i += 2) { + $string .= chr(hexdec(substr($hex, $i, 2))); + } + + return $string; + } + + public static function trimHexGarbage(string $string): string + { + $regex = '/((\.{2,}.{1,2})?\.+)?([0-9a-f]{2} )*([0-9a-f]{2})?$/'; + + return preg_replace($regex, '', str_replace("\n", '', $string)); + } + + public static function isHex(string $string): bool + { + return (bool) preg_match('/^[a-f0-9][a-f0-9]( [a-f0-9][a-f0-9])*$/is', trim($string)); + } } diff --git a/app/Models/EntPhysical.php b/app/Models/EntPhysical.php index 4e524bc834..b99e5123d7 100644 --- a/app/Models/EntPhysical.php +++ b/app/Models/EntPhysical.php @@ -2,9 +2,35 @@ namespace App\Models; -class EntPhysical extends DeviceRelatedModel +use LibreNMS\Interfaces\Models\Keyable; + +class EntPhysical extends DeviceRelatedModel implements Keyable { protected $table = 'entPhysical'; - protected $primaryKey = 'entPhysical_id'; + public $timestamps = false; + protected $fillable = [ + 'entPhysicalIndex', + 'entPhysicalDescr', + 'entPhysicalContainedIn', + 'entPhysicalClass', + 'entPhysicalName', + 'entPhysicalSerialNum', + 'entPhysicalModelName', + 'entPhysicalMfgName', + 'entPhysicalVendorType', + 'entPhysicalParentRelPos', + 'entPhysicalHardwareRev', + 'entPhysicalFirmwareRev', + 'entPhysicalSoftwareRev', + 'entPhysicalIsFRU', + 'entPhysicalAlias', + 'entPhysicalAssetID', + 'ifIndex', + ]; + + public function getCompositeKey() + { + return $this->entPhysicalIndex; + } } diff --git a/database/migrations/2024_07_28_162410_ent_physical_table_ifindex_unsigned.php b/database/migrations/2024_07_28_162410_ent_physical_table_ifindex_unsigned.php new file mode 100644 index 0000000000..7a7e1efce3 --- /dev/null +++ b/database/migrations/2024_07_28_162410_ent_physical_table_ifindex_unsigned.php @@ -0,0 +1,28 @@ +unsignedInteger('ifIndex')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('entPhysical', function (Blueprint $table) { + $table->integer('ifIndex')->nullable()->change(); + }); + } +}; diff --git a/database/migrations/2024_08_12_232009_ent_physical_table_rev_length.php b/database/migrations/2024_08_12_232009_ent_physical_table_rev_length.php new file mode 100644 index 0000000000..e96f7f25a4 --- /dev/null +++ b/database/migrations/2024_08_12_232009_ent_physical_table_rev_length.php @@ -0,0 +1,32 @@ +string('entPhysicalHardwareRev', 96)->nullable()->change(); + $table->string('entPhysicalFirmwareRev', 96)->nullable()->change(); + $table->string('entPhysicalSoftwareRev', 96)->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('entPhysical', function (Blueprint $table) { + $table->string('entPhysicalHardwareRev', 64)->nullable()->change(); + $table->string('entPhysicalFirmwareRev', 64)->nullable()->change(); + $table->string('entPhysicalSoftwareRev', 64)->nullable()->change(); + }); + } +}; diff --git a/includes/common.php b/includes/common.php index bbd921e867..e8844aea26 100644 --- a/includes/common.php +++ b/includes/common.php @@ -168,22 +168,6 @@ function get_port_by_ifIndex($device_id, $ifIndex) return dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `ifIndex` = ?', [$device_id, $ifIndex]); } -function get_entity_by_id_cache($type, $id) -{ - global $entity_cache; - - $table = $type == 'storage' ? $type : $type . 's'; - - if (is_array($entity_cache[$type][$id])) { - $entity = $entity_cache[$type][$id]; - } else { - $entity = dbFetchRow('SELECT * FROM `' . $table . '` WHERE `' . $type . '_id` = ?', [$id]); - $entity_cache[$type][$id] = $entity; - } - - return $entity; -} - function get_port_by_id($port_id) { if (is_numeric($port_id)) { @@ -299,17 +283,6 @@ function get_dev_attribs($device_id) return DeviceCache::get((int) $device_id)->getAttribs(); } -function get_dev_entity_state($device) -{ - $state = []; - foreach (dbFetchRows('SELECT * FROM entPhysical_state WHERE `device_id` = ?', [$device]) as $entity) { - $state['group'][$entity['group']][$entity['entPhysicalIndex']][$entity['subindex']][$entity['key']] = $entity['value']; - $state['index'][$entity['entPhysicalIndex']][$entity['subindex']][$entity['group']][$entity['key']] = $entity['value']; - } - - return $state; -} - function get_dev_attrib($device, $attrib_type) { return DeviceCache::get((int) $device['device_id'])->getAttrib($attrib_type); diff --git a/includes/discovery/entity-physical.inc.php b/includes/discovery/entity-physical.inc.php index 43177d9821..d1c8225d6b 100644 --- a/includes/discovery/entity-physical.inc.php +++ b/includes/discovery/entity-physical.inc.php @@ -1,29 +1,9 @@ discover($os); diff --git a/includes/discovery/entity-physical/axos.inc.php b/includes/discovery/entity-physical/axos.inc.php deleted file mode 100644 index 4e85e37ab2..0000000000 --- a/includes/discovery/entity-physical/axos.inc.php +++ /dev/null @@ -1,67 +0,0 @@ - $physical_index, - 'entPhysicalDescr' => $physical_name[0]['sysObjectID'], - 'entPhysicalVendorType' => 'Calix', - 'entPhysicalContainedIn' => '0', - 'entPhysicalClass' => 'chassis', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalName' => $physical_name[0]['sysObjectID'], - 'entPhysicalSerialNum' => $serial_number[0]['axosSystemChassisSerialNumber'], - 'entPhysicalMfgName' => 'Calix', - 'entPhysicalModelName' => $physical_name[0]['sysObjectID'], -]; - -$card_array = snmpwalk_cache_multi_oid($device, 'axosCardTable', $card_array, 'Axos-Card-MIB'); -foreach ($card_array as $card) { - $physical_index++; -// Discover the card - $entity_array[] = [ - 'entPhysicalIndex' => $physical_index, - 'entPhysicalDescr' => "Calix {$card['axosCardActualType']}", - 'entPhysicalClass' => 'container', - 'entPhysicalModelName' => $card['axosCardPartNumber'], - 'entPhysicalSerialNum' => $card['axosCardSerialNumber'], - 'entPhysicalContainedIn' => 1, - 'entPhysicalParentRelPos' => $card['axosCardSlot'], - 'entPhysicalSoftwareRev' => $card['axosCardSoftwareVersion'], - 'entPhysicalIsFRU' => true, - ]; -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : ''; - $entPhysicalDescr = array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : ''; - $entPhysicalClass = array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : ''; - $entPhysicalName = array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : ''; - $entPhysicalModelName = array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : ''; - $entPhysicalSerialNum = array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : ''; - $entPhysicalContainedIn = array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : ''; - $entPhysicalMfgName = array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : ''; - $entPhysicalParentRelPos = array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : ''; - $entPhysicalVendorType = array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : ''; - $entPhysicalHardwareRev = array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : ''; - $entPhysicalFirmwareRev = array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : ''; - $entPhysicalSoftwareRev = array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : ''; - $entPhysicalIsFRU = array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : ''; - $entPhysicalAlias = array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : ''; - $entPhysicalAssetID = array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : ''; - $ifIndex = array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : ''; - - discover_entity_physical($valid, $device, $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex); -}//end foreach - -echo "\n"; -unset( - $physical_name, - $serial_number, - $card_array, - $card, - $entry, - $entity_array, - $id -); diff --git a/includes/discovery/entity-physical/ciena-rls.inc.php b/includes/discovery/entity-physical/ciena-rls.inc.php deleted file mode 100644 index ed21dc7349..0000000000 --- a/includes/discovery/entity-physical/ciena-rls.inc.php +++ /dev/null @@ -1,77 +0,0 @@ -. - * - * Traps when Adva objects are created. This includes Remote User Login object, - * Flow Creation object, and LAG Creation object. - * - * @link https://www.librenms.org - * - * @copyright 2024 KanREN, Inc - * @author Heath Barnhart - */ -$entity_array = []; - -$inventory = snmpwalk_cache_multi_oid($device, 'rlsCircuitPackTable', [], 'CIENA-6500R-INVENTORY-MIB'); - -foreach ($inventory as $inventory => $inventoryItems) { - $entity_array[] = [ - 'entPhysicalIndex' => $inventory, //need to derive index from the oid - 'entPhysicalDescr' => $inventoryItems['rlsCircuitPackCtype'], - 'entPhysicalName' => $inventoryItems['rlsCircuitPackCtype'], - 'entPhysicalModelName' => $inventoryItems['rlsCircuitPackPec'], - 'entPhysicalSerialNum' => $inventoryItems['rlsCircuitPackSerialNumber'], - 'entPhysicalParentRelPos' => $inventory, - 'entPhysicalMfgName' => 'Ciena', - 'entPhysicalAlias' => $inventoryItems['rlsCircuitPackCommonLanguageEquipmentIndentifier'], - 'entPhysicalHardwareRev' => $inventoryItems['rlsCircuitPackHardwareRelease'], - 'entPhysicalIsFRU' => 'true', - ]; -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - discover_entity_physical( - $valid, - $device, - array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : '', - array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : '', - array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : '', - array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : '', - array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : '', - array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : '', - array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : '', - array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : '', - array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : '', - array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : '', - array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : '', - array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : '', - array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : '', - array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : '', - array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : '', - array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : '', - array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : '' - ); -} - -echo "\n"; -unset( - $inventory, - $entity_array -); diff --git a/includes/discovery/entity-physical/ciena-sds.inc.php b/includes/discovery/entity-physical/ciena-sds.inc.php deleted file mode 100644 index 39433c0b1d..0000000000 --- a/includes/discovery/entity-physical/ciena-sds.inc.php +++ /dev/null @@ -1,336 +0,0 @@ - $chassis_contents) { - // as far as I know, there can only be 1 chassis, but iterate just in case - $chassisIndex = $cienaCesChassis + 1; - $entity_array[] = [ - 'entPhysicalIndex' => $chassisIndex, - 'entPhysicalDescr' => $chassis_contents['cienaCesChassisPlatformDesc'], - 'entPhysicalClass' => 'chassis', - 'entPhysicalName' => 'Chassis', - 'entPhysicalModelName' => $chassis_contents['cienaCesChassisPartNumber'], - 'entPhysicalSerialNum' => $chassis_contents['cienaCesChassisSerialNumber'], - 'entPhysicalContainedIn' => '0', - 'entPhysicalMfgName' => 'Ciena', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalHardwareRev' => $chassis_contents['cienaCesChassisIDPModelRevision'], - 'entPhysicalIsFRU' => 'true', - ]; - $entity_array[] = [ - 'entPhysicalIndex' => "40$chassisIndex", - 'entPhysicalClass' => 'container', - 'entPhysicalName' => 'Modules', - 'entPhysicalContainedIn' => $chassisIndex, - 'entPhysicalParentRelPos' => -1, - ]; - $entity_array[] = [ - 'entPhysicalIndex' => "41$chassisIndex", - 'entPhysicalClass' => 'container', - 'entPhysicalName' => 'Power Supplies', - 'entPhysicalContainedIn' => $chassisIndex, - 'entPhysicalParentRelPos' => -1, - ]; - $entity_array[] = [ - 'entPhysicalIndex' => "42$chassisIndex", - 'entPhysicalClass' => 'container', - 'entPhysicalName' => 'Fans', - 'entPhysicalContainedIn' => $chassisIndex, - 'entPhysicalParentRelPos' => -1, - ]; -} - -foreach ($cienaCesChassisPowerModule as $index => $contents) { - $entity_array[] = [ - 'entPhysicalIndex' => "50$index", - 'entPhysicalDescr' => $contents['cienaCesChassisPowerSupplyManufacturer'], - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => $contents['cienaCesChassisPowerSupplySlotName'], - 'entPhysicalModelName' => $contents['cienaCesChassisPowerSupplyPartNum'], - 'entPhysicalSerialNum' => $contents['cienaCesChassisPowerSupplySerialNumber'], - 'entPhysicalContainedIn' => '41' . $contents['cienaCesChassisPowerSupplyChassisIndx'], - 'entPhysicalMfgName' => 'Ciena', - 'entPhysicalParentRelPos' => $contents['cienaCesChassisPowerSupplySlotIndx'], - 'entPhysicalHardwareRev' => $contents['cienaCesChassisPowerSupplyRevInfo'], - 'entPhysicalIsFRU' => $contents['cienaCesChassisPowerSupplyFRU'], - 'ifIndex' => null, - ]; -} - -foreach ($cienaCesChassisFanTrayEntry as $index => $contents) { - switch ($contents['cienaCesChassisFanTrayType']) { - case 1: - $typeString = 'Fixed fan tray, '; - break; - case 2: - $typeString = 'Hot swappable fan tray, '; - break; - case 3: - $typeString = 'Unequipped fan tray, '; - break; - default: - $typeString = ''; - } - switch ($contents['cienaCesChassisFanTrayMode']) { - case 1: - $modeString = 'Invalid fan configuration!'; - break; - case 2: - $modeString = 'Fully populated'; - break; - case 3: - $modeString = 'Auto mode'; - break; - default: - $modeString = ''; - } - - $entity_array[] = [ - 'entPhysicalIndex' => "53$index", - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => $contents['cienaCesChassisFanTrayName'], - 'entPhysicalModelName' => 'Fan Tray', - 'entPhysicalDescr' => "$typeString$modeString", - 'entPhysicalSerialNum' => $contents['cienaCesChassisFanTraySerialNumber'], - 'entPhysicalContainedIn' => '42' . $contents['cienaCesChassisFanTrayChassisIndx'], - 'entPhysicalMfgName' => 'Ciena', - 'entPhysicalParentRelPos' => $contents['cienaCesChassisFanTraySlotIndx'], - 'entPhysicalIsFRU' => ($contents['cienaCesChassisFanTrayType'] = '2') ? 'true' : 'false', - ]; -} - -foreach ($cienaCesChassisFanEntry as $index => $contents) { - // index = fanTray.fanIndex - $indexArr = explode('.', $index); - $fanTray = $indexArr[0]; - $fanIndex = $indexArr[1]; - - $entity_array[] = [ - 'entPhysicalIndex' => "51$fanIndex", - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => $contents['cienaCesChassisFanName'], - 'entPhysicalModelName' => 'Fan', - 'entPhysicalContainedIn' => (isset($cienaCesChassisFanTrayEntry[$fanTray])) ? - "53$fanTray" : '42' . $contents['cienaCesChassisFanChassisIndx'], - 'entPhysicalMfgName' => 'Ciena', - 'entPhysicalParentRelPos' => $fanIndex, - ]; -} - -foreach ($cienaCesChassisFanTempEntry as $index => $contents) { - // index = fanTray.sensorIndex - $indexArr = explode('.', $index); - $fanTray = $indexArr[0]; - $sensorIndex = $indexArr[1]; - - $entity_array[] = [ - 'entPhysicalIndex' => "52$sensorIndex", - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => $contents['cienaCesChassisFanTempName'], - 'entPhysicalModelName' => 'Temp Sensor', - 'entPhysicalContainedIn' => (isset($cienaCesChassisFanTrayEntry[$fanTray])) ? - "53$fanTray" : '42' . $contents['cienaCesChassisFanTempChassisIndx'], - 'entPhysicalParentRelPos' => -1, - ]; -} - -foreach ($module_array as $index => $contents) { - // index = chassisIndex.shelfIndex.slotIndex - $indexArr = explode('.', $index); - $chassisIndex = $indexArr[0]; - $shelfIndex = $indexArr[1]; - $slotIndex = $indexArr[2]; - - $entity_array[] = [ - 'entPhysicalIndex' => "55$slotIndex", - 'entPhysicalDescr' => $contents['cienaCesModuleDescription'] . ', ' . $contents['cienaCesModuleSwRunningRelease'], - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => $contents['cienaCesModuleSlotName'] . ': ' . $contents['cienaCesModuleDescriptionBoardName'], - 'entPhysicalModelName' => $contents['cienaCesModuleDescriptionBoardPartNum'], - 'entPhysicalSerialNum' => $contents['cienaCesModuleDescriptionBoardSerialNum'], - 'entPhysicalContainedIn' => '40' . $chassisIndex, - 'entPhysicalMfgName' => 'Ciena', - 'entPhysicalParentRelPos' => $slotIndex, - 'entPhysicalFirmwareRev' => $contents['cienaCesModuleSwRunningRelease'], - 'entPhysicalIsFRU' => 'true', - ]; -} - -foreach ($cienaCesEttpConfigEntry as $index => $contents) { - $portIndex = $interfaceIndexMapping[$index]['dot1dBasePortIfIndex']; - $nameArr = explode('/', $contents['cienaCesEttpConfigName']); - $slotIndex = ((isset($nameArr[1])) ? $nameArr[0] : 1); - - $entity_array[] = [ - 'entPhysicalIndex' => "56$index", - 'entPhysicalDescr' => $contents['cienaCesEttpConfigEttpType'], - 'entPhysicalClass' => 'port', - 'entPhysicalName' => $contents['cienaCesEttpConfigName'], - 'entPhysicalContainedIn' => '55' . $slotIndex, - 'entPhysicalParentRelPos' => $index, - 'ifIndex' => $portIndex, - ]; - if (isset($cienaCesPortXcvrEntry[$index])) { - if ($cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrOperState'] != 'notPresent') { - $wavelengthString = ($cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrWaveLength'] != 0 ? - $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrWaveLength'] . ' nm ' : ''); - $mfgString = ($cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrMfgDate'] != '' ? - 'manufactured ' . $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrMfgDate'] . ' ' : ''); - $entity_array[] = [ - 'entPhysicalIndex' => $portIndex, - 'entPhysicalDescr' => $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrVendorName'] . ' ' . $wavelengthString . - $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrIdentiferType'] . ' transceiver ' . $mfgString, - 'entPhysicalClass' => 'sensor', - 'entPhysicalModelName' => $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrVendorPartNum'], - 'entPhysicalSerialNum' => $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrSerialNum'], - 'entPhysicalContainedIn' => "56$index", - 'entPhysicalMfgName' => $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrVendorName'], - 'entPhysicalParentRelPos' => -1, - 'entPhysicalHardwareRev' => $cienaCesPortXcvrEntry[$index]['cienaCesPortXcvrRevNum'], - 'entPhysicalIsFRU' => 'true', - ]; - } - } -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - discover_entity_physical( - $valid, - $device, - array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : '', - array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : '', - array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : '', - array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : '', - array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : '', - array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : '', - array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : '', - array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : '', - array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : '', - array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : '', - array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : '', - array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : '', - array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : '', - array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : '', - array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : '', - array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : '', - array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : '' - ); -} - -echo "\n"; -unset( - $chassis_array, - $cienaCesChassisPowerModule, - $cienaCesChassisFanTrayEntry, - $cienaCesChassisFanEntry, - $cienaCesChassisFanTempEntry, - $interfaceIndexMapping, - $cienaCesEttpConfigEntry, - $cienaCesPortXcvrEntry, - $module_array, - $entry, - $entity_array -); diff --git a/includes/discovery/entity-physical/cimc.inc.php b/includes/discovery/entity-physical/cimc.inc.php deleted file mode 100644 index f4260cc18d..0000000000 --- a/includes/discovery/entity-physical/cimc.inc.php +++ /dev/null @@ -1,598 +0,0 @@ - - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. Please see LICENSE.txt at the top level of - * the source code distribution for details. - */ - -$comp_module = 'Cisco-CIMC'; -$component = new LibreNMS\Component(); -$components = $component->getComponents($device['device_id'], ['type' => $comp_module]); - -// We only care about our device id. -$components = $components[$device['device_id']]; - -// Begin our master array, all other values will be processed into this array. -$tblCIMC = []; - -// Let's gather some data.. -$tblUCSObjects = snmpwalk_array_num($device, '.1.3.6.1.4.1.9.9.719.1', 2); - -/* - * False == no object found - this is not an error, there is no QOS configured - * null == timeout or something else that caused an error, the OID's may be present but we couldn't get them. - */ -if (is_null($tblUCSObjects)) { - // We have to error here or we will end up deleting all our components. -} else { - // No Error, lets process things. - echo 'CIMC Hardware Found: '; - - // Make sure we have an array before we try to iterate over it - if (is_array($tblUCSObjects)) { - // Gather entPhysical data - $entmax = 0; - $entphysical = []; - $dbentphysical = $entries = dbFetchRows('SELECT * FROM entPhysical WHERE device_id=?', [$device['device_id']]); - foreach ($dbentphysical as $array) { - $entphysical[$array['entPhysicalVendorType']] = $array; - if ($array['entPhysicalIndex'] > $entmax) { - $entmax = $array['entPhysicalIndex']; - } - } - - // Let's extract any active faults, we will use them later. - $faults = []; - foreach ($tblUCSObjects['1.3.6.1.4.1.9.9.719.1.1.1.1'][5] as $fid => $fobj) { - $fobj = preg_replace('/^\/?sys\//', '', $fobj); - $faults[$fobj] = $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.1.1.1'][3][$fid] . ' - ' . $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.1.1.1'][11][$fid]; - } - - // Unset the faults and stats array so it isn't reported as an error later. - unset( - $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.1.1.1'], - $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.9.14.1'], - $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.9.44.1'], - $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.30.12.1'], - $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.41.2.1'], - $tblUCSObjects['1.3.6.1.4.1.9.9.719.1.45.36.1'] - ); - - foreach ($tblUCSObjects as $tbl => $array) { - // Remove the leading /sys/ - foreach ($array[2] as &$label) { - $label = preg_replace('/^\/?sys\//', '', $label); - } - - // Lets Set some defaults. - $entPhysicalData = [ - 'entPhysicalHardwareRev' => '', - 'entPhysicalFirmwareRev' => '', - 'entPhysicalSoftwareRev' => '', - 'entPhysicalIsFRU' => 'FALSE', - ]; - - switch ($tbl) { - // Chassis - rack-unit-1 - case '1.3.6.1.4.1.9.9.719.1.9.35.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'chassis'; - $result['id'] = $array[27][$key]; - $result['label'] = $array[2][$key]; - $result['serial'] = $array[47][$key]; - $result['string'] = $array[32][$key] . ' - ' . ($array[49][$key] / 1024) . 'G Mem, ' . $array[36][$key] . ' CPU, ' . $array[35][$key] . ' core'; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.9.35.1.43.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[43][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[43][$key] . "\n"; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // See if there are any errors on this chassis. - foreach ($faults as $id => $value) { - if (strpos($id, $result['label']) !== false) { - // The fault is on this chassis. - $result['status'] = 2; - $result['error'] .= $value . "\n"; - } - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'chassis'; - $entPhysicalData['entPhysicalModelName'] = $array[32][$key]; - $entPhysicalData['entPhysicalName'] = 'Chassis'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[47][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('Chassis (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // System Board - rack-unit-1/board - case '1.3.6.1.4.1.9.9.719.1.9.6.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'board'; - $result['id'] = $array[5][$key]; - $result['label'] = $array[2][$key]; - $result['serial'] = $array[14][$key]; - $result['string'] = $array[6][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.9.6.1.9.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[9][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[9][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'backplane'; - $entPhysicalData['entPhysicalName'] = 'System Board'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[14][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('System Board (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // Memory Modules - rack-unit-1/board/memarray-1/mem-0 - case '1.3.6.1.4.1.9.9.719.1.30.11.1': - foreach ($array[3] as $key => $item) { - $result = []; - // If there is no memory module present, continue. - if ($array[17][$key] != 10) { - continue; - } - - $result['hwtype'] = 'memory'; - $result['id'] = substr($array[3][$key], 4); - $result['label'] = $array[2][$key]; - $result['serial'] = $array[19][$key]; - $result['string'] = $array[11][$key] . ' - ' . ($array[6][$key] / 1024) . 'G, ' . $array[27][$key] . ' Bit, ' . $array[7][$key] . ' Mhz, ' . $array[21][$key] . ' MT/s'; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.30.11.1.14.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[14][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[14][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'module'; - $entPhysicalData['entPhysicalModelName'] = $array[11][$key]; - $entPhysicalData['entPhysicalName'] = 'Memory'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[19][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('Memory (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // CPU's - rack-unit-1/board/cpu-1 - case '1.3.6.1.4.1.9.9.719.1.41.9.1': - foreach ($array[3] as $key => $item) { - $result = []; - // If there is no cpu present, continue. - if ($array[13][$key] != 10) { - continue; - } - - $result['hwtype'] = 'cpu'; - $result['id'] = substr($array[3][$key], 4); - $result['label'] = $array[2][$key]; - $result['serial'] = $array[15][$key]; - $result['string'] = $array[8][$key] . ' - ' . $array[5][$key] . ' Cores, ' . $array[20][$key] . ' Threads'; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.41.9.1.10.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[10][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[10][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'cpu'; - $entPhysicalData['entPhysicalModelName'] = $array[8][$key]; - $entPhysicalData['entPhysicalName'] = 'Processor'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[15][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('CPU (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // SAS Storage Module - rack-unit-1/board/storage-SAS-2 - case '1.3.6.1.4.1.9.9.719.1.45.1.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'sas-controller'; - $result['id'] = substr($array[3][$key], 12); - $result['label'] = $array[2][$key]; - $result['serial'] = $array[14][$key]; - $result['string'] = $array[5][$key] . ' - Rev: ' . $array[13][$key] . ', ' . $array[9][$key] . ', RAID Types: ' . $array[19][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.45.1.1.7.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[7][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[7][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'module'; - $entPhysicalData['entPhysicalModelName'] = $array[5][$key]; - $entPhysicalData['entPhysicalName'] = 'Storage Module'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[14][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('SAS Module (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // SAS Disks - rack-unit-1/board/storage-SAS-2/disk-1 - case '1.3.6.1.4.1.9.9.719.1.45.4.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'sas-disk'; - $result['id'] = substr($array[3][$key], 5); - $result['label'] = $array[2][$key]; - $result['serial'] = $array[12][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.45.4.1.9.' . $key; - - // Old Firmware returns 4294967296 as 1 MB. - // The if below assumes we will never have < 1 Gb on old firmware or > 4 Pb on new firmware - if ($array[13][$key] > 4294967296000) { - // Old Firmware - $result['string'] = $array[14][$key] . ' ' . $array[7][$key] . ', Rev: ' . $array[11][$key] . ', Size: ' . round($array[13][$key] / 4294967296000, 2) . ' GB'; - d_echo('Disk: ' . $array[2][$key] . ', Raw Size: ' . $array[13][$key] . ', converted (old FW): ' . round($array[13][$key] / 4294967296000, 2) . "GB\n"); - } else { - // New Firmware - $result['string'] = $array[14][$key] . ' ' . $array[7][$key] . ', Rev: ' . $array[11][$key] . ', Size: ' . round($array[13][$key] / 1000, 2) . ' GB'; - d_echo('Disk: ' . $array[2][$key] . ', Raw Size: ' . $array[13][$key] . ', converted (New FW): ' . round($array[13][$key] / 1000, 2) . "GB\n"); - } - - // What is the Operability, 1 is good, everything else is bad. - if ($array[9][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[9][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'module'; - $entPhysicalData['entPhysicalModelName'] = $array[14][$key]; - $entPhysicalData['entPhysicalName'] = 'Disk'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[12][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('SAS Disk (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // LUN's - rack-unit-1/board/storage-SAS-2/lun-0 - case '1.3.6.1.4.1.9.9.719.1.45.8.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'lun'; - $result['id'] = substr($array[3][$key], 4); - $result['label'] = $array[2][$key]; - $result['serial'] = 'N/A'; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.45.8.1.9.' . $key; - - // Old Firmware returns 4294967296 as 1 MB. - // The if below assumes we will never have < 1 Gb on old firmware or > 4 Pb on new firmware - if ($array[13][$key] > 4294967296000) { - // Old Firmware - $result['string'] = $array[3][$key] . ', Size: ' . round($array[13][$key] / 4294967296000, 2) . ' GB'; - d_echo('LUN: ' . $array[2][$key] . ', Raw Size: ' . $array[13][$key] . ', converted (Old FW): ' . round($array[13][$key] / 4294967296000, 2) . "GB\n"); - } else { - // New Firmware - $result['string'] = $array[3][$key] . ', Size: ' . round($array[13][$key] / 1000, 2) . ' GB'; - d_echo('LUN: ' . $array[2][$key] . ', Raw Size: ' . $array[13][$key] . ', converted (New FW): ' . round($array[13][$key] / 1000, 2) . "GB\n"); - } - - // What is the Operability, 1 is good, everything else is bad. - if ($array[9][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[9][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'module'; - $entPhysicalData['entPhysicalModelName'] = $array[3][$key]; - $entPhysicalData['entPhysicalName'] = 'LUN'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = ''; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('LUN (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // RAID Battery - rack-unit-1/board/storage-SAS-2/raid-battery - case '1.3.6.1.4.1.9.9.719.1.45.11.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'raid-battery'; - $result['id'] = $array[3][$key]; - $result['label'] = $array[2][$key]; - $result['serial'] = 'N/A'; - $result['string'] = $array[3][$key] . ' - ' . $array[7][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.45.11.1.9.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[9][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[9][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'module'; - $entPhysicalData['entPhysicalModelName'] = $array[3][$key]; - $entPhysicalData['entPhysicalName'] = 'RAID Battery'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = ''; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('RAID Battery (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // Fan's - rack-unit-1/fan-module-1-1/fan-1 - case '1.3.6.1.4.1.9.9.719.1.15.12.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'fan'; - $result['id'] = $array[8][$key] . '-' . substr($array[3][$key], 4); - $result['label'] = $array[2][$key]; - $result['serial'] = 'N/A'; - $result['string'] = $array[7][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.15.12.1.10.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[10][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[10][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'fan'; - $entPhysicalData['entPhysicalModelName'] = $array[7][$key]; - $entPhysicalData['entPhysicalName'] = 'FAN'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = ''; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('Fan (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // PSU's - rack-unit-1/psu-1 - case '1.3.6.1.4.1.9.9.719.1.15.56.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'psu'; - $result['id'] = substr($array[3][$key], 4); - $result['label'] = $array[2][$key]; - $result['serial'] = $array[13][$key]; - $result['string'] = $array[6][$key] . ' - Rev: ' . $array[12][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.15.56.1.8.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[8][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[8][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'powerSupply'; - $entPhysicalData['entPhysicalModelName'] = $array[6][$key]; - $entPhysicalData['entPhysicalName'] = 'PSU'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[13][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('PSU (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // Adaptors - rack-unit-1/adaptor-1 - case '1.3.6.1.4.1.9.9.719.1.3.85.1': - foreach ($array[3] as $key => $item) { - $result = []; - $result['hwtype'] = 'adaptor'; - $result['id'] = substr($array[3][$key], 8); - $result['label'] = $array[2][$key]; - $result['serial'] = $array[21][$key]; - $result['string'] = $array[11][$key] . ' - Rev: ' . $array[20][$key] . ' - Part-No: ' . $array[26][$key]; - $result['statusoid'] = '1.3.6.1.4.1.9.9.719.1.3.85.1.13.' . $key; - - // What is the Operability, 1 is good, everything else is bad. - if ($array[13][$key] != 1) { - // Yes, report an error - $result['status'] = 2; - $result['error'] = 'Error Operability Code: ' . $array[13][$key]; - } else { - // No, unset any errors that may exist. - $result['status'] = 0; - $result['error'] = ''; - } - - // Add the ent Physical entry - $entPhysicalData['entPhysicalClass'] = 'module'; - $entPhysicalData['entPhysicalModelName'] = $array[11][$key]; - $entPhysicalData['entPhysicalName'] = 'Adaptor'; - $entPhysicalData['entPhysicalDescr'] = $result['string']; - $entPhysicalData['entPhysicalSerialNum'] = $array[21][$key]; - [$result['entPhysical'],$entPhysicalData['entPhysicalIndex']] = setCIMCentPhysical($result['label'], $entPhysicalData, $entphysical, $entmax); - $valid[$entPhysicalData['entPhysicalIndex']] = 1; - - // Add the result to the array. - d_echo('Adaptor (' . $tbl . '): ' . print_r($result, true) . "\n"); - $tblCIMC[] = $result; - } - break; - - // Unknown Table, ask the user to log an issue so this can be identified. - default: - d_echo("Cisco-CIMC Error...\n"); - d_echo("Please log an issue on github with the following information:\n"); - d_echo("-----------------------------------------------\n"); - d_echo('Subject: CIMC Unknown Table: ' . $tbl . "\n"); - d_echo("Description: The entity-physical module discovered an unknown CIMC table.\nA dump of its contents is below:\n"); - d_echo($array); - d_echo("-----------------------------------------------\n\n"); - break; - } // End Switch - } // End foreach tblUCSObjects - } // End is_array - - /* - * Ok, we have our 2 array's (Components and SNMP) now we need - * to compare and see what needs to be added/updated. - * - * Let's loop over the SNMP data to see if we need to ADD or UPDATE any components. - */ - foreach ($tblCIMC as $key => $array) { - $component_key = false; - - // Loop over our components to determine if the component exists, or we need to add it. - foreach ($components as $compid => $child) { - if ($child['label'] === $array['label']) { - $component_key = $compid; - } - } - - if (! $component_key) { - // The component doesn't exist, we need to ADD it - ADD. - $new_component = $component->createComponent($device['device_id'], $comp_module); - $component_key = key($new_component); - $components[$component_key] = array_merge($new_component[$component_key], $array); - echo '+'; - } else { - // The component does exist, merge the details in - UPDATE. - $components[$component_key] = array_merge($components[$component_key], $array); - echo '.'; - } - } - - /* - * Loop over the Component data to see if we need to DELETE any components. - */ - foreach ($components as $key => $array) { - // Guilty until proven innocent - $found = false; - - foreach ($tblCIMC as $k => $v) { - if ($array['label'] == $v['label']) { - // Yay, we found it... - $found = true; - } - } - - if ($found === false) { - // The component has not been found. we should delete it and it's entPhysical entry - echo '-'; - dbDelete('entPhysical', '`entPhysical_id` = ?', [$array['entPhysical']]); - $component->deleteComponent($key); - } - } - if (is_array($components)) { - // Write the Components back to the DB. - $component->setComponentPrefs($device['device_id'], $components); - echo "\n"; - } -} // End if not error diff --git a/includes/discovery/entity-physical/eltex-mes23xx.inc.php b/includes/discovery/entity-physical/eltex-mes23xx.inc.php deleted file mode 100644 index 07a0b890cf..0000000000 --- a/includes/discovery/entity-physical/eltex-mes23xx.inc.php +++ /dev/null @@ -1,104 +0,0 @@ -. - * - * @package LibreNMS - * @link https://www.librenms.org - * - * @copyright 2022 Peca Nesovanovic - * @author Peca Nesovanovic - */ -echo "\nCaching OIDs:"; - -$entity_array = []; -echo ' ELTEX-MES23xx'; -$trans = snmpwalk_cache_multi_oid($device, 'eltPhdTransceiverInfoEntry', [], 'ELTEX-MES-PHYSICAL-DESCRIPTION-MIB'); -echo ' entAliasMappingIdentifier'; -$mapping = snmpwalk_cache_multi_oid($device, 'entAliasMappingIdentifier', [], 'ENTITY-MIB:IF-MIB'); - -foreach ($trans as $index => $data) { - unset($connectedto); - foreach ($mapping as $ekey => $edata) { - if ($edata['entAliasMappingIdentifier'] == 'ifIndex.' . $index) { - $connectedto = explode('.', $ekey)[0]; - } - } - if ($connectedto) { - $entity_array[] = [ - 'entPhysicalIndex' => $index, - 'entPhysicalDescr' => $data['eltPhdTransceiverInfoType'], - 'entPhysicalClass' => 'sfp-cage', - 'entPhysicalName' => strtoupper($data['eltPhdTransceiverInfoConnectorType']), - 'entPhysicalModelName' => \LibreNMS\OS\EltexMes23xx::normData($data['eltPhdTransceiverInfoPartNumber']), - 'entPhysicalSerialNum' => $data['eltPhdTransceiverInfoSerialNumber'], - 'entPhysicalContainedIn' => $connectedto, - 'entPhysicalMfgName' => $data['eltPhdTransceiverInfoVendorName'], - 'entPhysicalHardwareRev' => \LibreNMS\OS\EltexMes23xx::normData($data['eltPhdTransceiverInfoVendorRev']), - 'entPhysicalIsFRU' => 'true', - ]; - } -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = $entry['entPhysicalIndex'] ?? ''; - $entPhysicalDescr = $entry['entPhysicalDescr'] ?? ''; - $entPhysicalClass = $entry['entPhysicalClass'] ?? ''; - $entPhysicalName = $entry['entPhysicalName'] ?? ''; - $entPhysicalModelName = $entry['entPhysicalModelName'] ?? ''; - $entPhysicalSerialNum = $entry['entPhysicalSerialNum'] ?? ''; - $entPhysicalContainedIn = $entry['entPhysicalContainedIn'] ?? ''; - $entPhysicalMfgName = $entry['entPhysicalMfgName'] ?? ''; - $entPhysicalParentRelPos = $entry['entPhysicalParentRelPos'] ?? ''; - $entPhysicalVendorType = $entry['entPhysicalVendorType'] ?? ''; - $entPhysicalHardwareRev = $entry['entPhysicalHardwareRev'] ?? ''; - $entPhysicalFirmwareRev = $entry['entPhysicalFirmwareRev'] ?? ''; - $entPhysicalSoftwareRev = $entry['entPhysicalSoftwareRev'] ?? ''; - $entPhysicalIsFRU = $entry['entPhysicalIsFRU'] ?? ''; - $entPhysicalAlias = $entry['entPhysicalAlias'] ?? ''; - $entPhysicalAssetID = $entry['entPhysicalAssetID'] ?? ''; - $ifIndex = $entry['ifIndex'] ?? ''; - - discover_entity_physical( - $valid, - $device, - $entPhysicalIndex, - $entPhysicalDescr, - $entPhysicalClass, - $entPhysicalName, - $entPhysicalModelName, - $entPhysicalSerialNum, - $entPhysicalContainedIn, - $entPhysicalMfgName, - $entPhysicalParentRelPos, - $entPhysicalVendorType, - $entPhysicalHardwareRev, - $entPhysicalFirmwareRev, - $entPhysicalSoftwareRev, - $entPhysicalIsFRU, - $entPhysicalAlias, - $entPhysicalAssetID, - $ifIndex - ); -}//end foreach - -echo "\n"; -unset( - $modules_array, - $entry, - $entity_array, - $trans, - $mapping -); diff --git a/includes/discovery/entity-physical/eltex-mes24xx.inc.php b/includes/discovery/entity-physical/eltex-mes24xx.inc.php deleted file mode 100644 index e80c79e537..0000000000 --- a/includes/discovery/entity-physical/eltex-mes24xx.inc.php +++ /dev/null @@ -1,105 +0,0 @@ -. - * - * @package LibreNMS - * @link https://www.librenms.org - * - * @copyright 2024 Peca Nesovanovic - * @author Peca Nesovanovic - */ - -echo ' ELTEX-MES24xx' . PHP_EOL; -$oidSfp = SnmpQuery::cache()->hideMib()->walk('ELTEX-PHY-MIB::eltexPhyTransceiverInfoTable')->table(1); -$oidEnt = SnmpQuery::cache()->hideMib()->walk('ENTITY-MIB::entPhysicalParentRelPos')->table(1); - -if (! empty($oidSfp) && ! empty($oidEnt)) { - d_echo('ELTEX 24xx Inventory: Discovering ...' . PHP_EOL); - $entity_array = []; - $infoType = [0 => 'unknown', 1 => 'gbic', 2 => 'sff', 3 => 'sfp-sfpplus', 255 => 'vendorspecific']; - $connType = [0 => 'unknown', 1 => 'SC', 7 => 'LC', 11 => 'optical-pigtail', 255 => 'vendorspecific']; - - foreach ($oidSfp as $index => $data) { - foreach ($oidEnt as $entIndex => $entData) { - if ($entData['entPhysicalParentRelPos'] == $index) { - $entity_array[] = [ - 'entPhysicalIndex' => $index, - 'entPhysicalSerialNum' => $data['eltexPhyTransceiverInfoSerialNumber'], - 'entPhysicalModelName' => $data['eltexPhyTransceiverInfoPartNumber'], - 'entPhysicalName' => $connType[$data['eltexPhyTransceiverInfoConnectorType']], - 'entPhysicalDescr' => $infoType[$data['eltexPhyTransceiverInfoType']], - 'entPhysicalClass' => 'sfp-cage', - 'entPhysicalContainedIn' => $entIndex, - 'entPhysicalMfgName' => $data['eltexPhyTransceiverInfoVendorName'], - 'entPhysicalHardwareRev' => $data['eltexPhyTransceiverInfoVendorRevision'], - 'entPhysicalIsFRU' => 'true', - ]; - break; - } - } - } -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = $entry['entPhysicalIndex'] ?? ''; - $entPhysicalDescr = $entry['entPhysicalDescr'] ?? ''; - $entPhysicalClass = $entry['entPhysicalClass'] ?? ''; - $entPhysicalName = $entry['entPhysicalName'] ?? ''; - $entPhysicalModelName = $entry['entPhysicalModelName'] ?? ''; - $entPhysicalSerialNum = $entry['entPhysicalSerialNum'] ?? ''; - $entPhysicalContainedIn = $entry['entPhysicalContainedIn'] ?? ''; - $entPhysicalMfgName = $entry['entPhysicalMfgName'] ?? ''; - $entPhysicalParentRelPos = $entry['entPhysicalParentRelPos'] ?? ''; - $entPhysicalVendorType = $entry['entPhysicalVendorType'] ?? ''; - $entPhysicalHardwareRev = $entry['entPhysicalHardwareRev'] ?? ''; - $entPhysicalFirmwareRev = $entry['entPhysicalFirmwareRev'] ?? ''; - $entPhysicalSoftwareRev = $entry['entPhysicalSoftwareRev'] ?? ''; - $entPhysicalIsFRU = $entry['entPhysicalIsFRU'] ?? ''; - $entPhysicalAlias = $entry['entPhysicalAlias'] ?? ''; - $entPhysicalAssetID = $entry['entPhysicalAssetID'] ?? ''; - $ifIndex = $entry['ifIndex'] ?? ''; - - discover_entity_physical( - $valid, - $device, - $entPhysicalIndex, - $entPhysicalDescr, - $entPhysicalClass, - $entPhysicalName, - $entPhysicalModelName, - $entPhysicalSerialNum, - $entPhysicalContainedIn, - $entPhysicalMfgName, - $entPhysicalParentRelPos, - $entPhysicalVendorType, - $entPhysicalHardwareRev, - $entPhysicalFirmwareRev, - $entPhysicalSoftwareRev, - $entPhysicalIsFRU, - $entPhysicalAlias, - $entPhysicalAssetID, - $ifIndex - ); -}//end foreach - -echo "\n"; -unset( - $modules_array, - $entry, - $entity_array, - $trans, - $mapping -); diff --git a/includes/discovery/entity-physical/entity-physical.inc.php b/includes/discovery/entity-physical/entity-physical.inc.php deleted file mode 100644 index 8a5a5451c9..0000000000 --- a/includes/discovery/entity-physical/entity-physical.inc.php +++ /dev/null @@ -1,304 +0,0 @@ - $device_array['termProduct'], - 'entPhysicalVendorType' => $device_array['termProduct'], - 'entPhysicalContainedIn' => '0', - 'entPhysicalClass' => 'chassis', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalName' => 'Chassis', - 'entPhysicalSerialNum' => $device_array['serialNumber'], - 'entPhysicalMfgName' => 'SAF', - 'entPhysicalModelName' => $device_array['serialNumber'], - 'entPhysicalIsFRU' => 'true', - ]; - - foreach ([1 => 'rf1Version', 2 => 'rf2Version'] as $index => $item) { - $entity_array[] = [ - 'entPhysicalDescr' => $device_array[$item], - 'entPhysicalVendorType' => 'radio', - 'entPhysicalContainedIn' => 1, - 'entPhysicalClass' => 'module', - 'entPhysicalParentRelPos' => $index, - 'entPhysicalName' => "Radio $index", - 'entPhysicalIsFRU' => 'true', - ]; - } - - if ($device_array['termProduct'] == 'SAF CFM-M4P-MUX') { - foreach (range(1, 4) as $index) { - $entity_array[] = [ - 'entPhysicalDescr' => 'Module Container', - 'entPhysicalVendorType' => 'containerSlot', - 'entPhysicalContainedIn' => 1, - 'entPhysicalClass' => 'container', - 'entPhysicalParentRelPos' => $index + 2, - 'entPhysicalName' => "Slot $index", - 'entPhysicalIsFRU' => 'false', - ]; - } - - foreach ([1 => 'm1Description', 2 => 'm2Description', 3 => 'm3Description', 4 => 'm4Description'] as $index => $item) { - if (! Str::contains($device_array[$item], 'N/A')) { - $entity_array[] = [ - 'entPhysicalDescr' => $device_array[$item], - 'entPhysicalVendorType' => 'module', - 'entPhysicalContainedIn' => $index + 3, - 'entPhysicalClass' => 'module', - 'entPhysicalParentRelPos' => 1, - 'entPhysicalName' => "Module $index", - 'entPhysicalIsFRU' => 'true', - ]; - } - } - } -} - -if ($device['os'] == 'ios' or $device['os'] == 'iosxe') { - $tables = [ - ['num_oid' => '.1.3.6.1.4.1.9.9.661.1.3.1.1.1.', 'oid' => 'c3gImsi', 'state_name' => 'c3gImsi', 'mib' => 'CISCO-WAN-3G-MIB', 'descr' => 'IMSI', 'entPhysicalIndex' => '9999'], - ['num_oid' => '.1.3.6.1.4.1.9.9.661.1.3.1.1.2.', 'oid' => 'c3gImei', 'state_name' => 'c3gImei', 'mib' => 'CISCO-WAN-3G-MIB', 'descr' => 'IMEI', 'entPhysicalIndex' => '9999'], - ['num_oid' => '.1.3.6.1.4.1.9.9.661.1.3.1.1.3.', 'oid' => 'c3gIccId', 'state_name' => 'c3gIccId', 'mib' => 'CISCO-WAN-3G-MIB', 'descr' => 'ICCID', 'entPhysicalIndex' => '9999'], - ]; - - foreach ($tables as $tablevalue) { - $temp = snmpwalk_cache_multi_oid($device, $tablevalue['oid'], [], $tablevalue['mib']); - $cur_oid = $tablevalue['num_oid']; - $state_name = $tablevalue['state_name']; - foreach ($temp as $index => $entry) { - if ($state_name == 'c3gImei') { - $FRU = 'false'; - $vendor_type = 'modem'; - } else { - $FRU = 'true'; - $vendor_type = 'sim'; - } - $entity_array[] = [ - 'entPhysicalIndex' => $tablevalue['entPhysicalIndex'] . $index, - 'entPhysicalDescr' => $entry[$state_name], - 'entPhysicalVendorType' => $vendor_type, - 'entPhysicalContainedIn' => $index, - 'entPhysicalClass' => 'module', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalName' => $vendor_type, - 'entPhysicalModelName' => $tablevalue['descr'], - 'entPhysicalIsFRU' => $FRU, - ]; - } - } -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $ifIndex = 0; - if ($device['os'] == 'junos') { - // Juniper's MIB doesn't have the same objects as the Entity MIB, so some values - // are made up here. - $entPhysicalDescr = $entry['jnxContentsDescr']; - $entPhysicalContainedIn = $entry['jnxContainersWithin']; - $entPhysicalClass = $entry['jnxBoxClass']; - $entPhysicalName = $entry['jnxOperatingDescr']; - $entPhysicalSerialNum = $entry['jnxContentsSerialNo']; - $entPhysicalModelName = $entry['jnxContentsPartNo']; - $entPhysicalMfgName = 'Juniper'; - $entPhysicalVendorType = 'Juniper'; - $entPhysicalParentRelPos = -1; - $entPhysicalHardwareRev = $entry['jnxContentsRevision']; - $entPhysicalFirmwareRev = $entry['entPhysicalFirmwareRev']; - $entPhysicalSoftwareRev = $entry['entPhysicalSoftwareRev']; - $entPhysicalIsFRU = $entry['jnxFruType']; - $entPhysicalAlias = $entry['entPhysicalAlias']; - $entPhysicalAssetID = $entry['entPhysicalAssetID']; - // fix for issue 1865, $entPhysicalIndex, as it contains a quad dotted number on newer Junipers - // using str_replace to remove all dots should fix this even if it changes in future - $entPhysicalIndex = str_replace('.', '', $entPhysicalIndex); - } elseif ($device['os'] == 'aruba-instant') { - $entPhysicalDescr = $entry['aiAPMACAddress']; - $entPhysicalClass = ''; - $entPhysicalContainedIn = 1; - $entPhysicalSerialNum = $entry['aiAPSerialNum']; - $entPhysicalModelName = $entry['aiAPModel']; - $entPhysicalMfgName = 'Aruba'; - $entPhysicalVendorType = 'Aruba'; - $entPhysicalParentRelPos = -1; - $entPhysicalSoftwareRev = $device['version']; - $entPhysicalIndex = $instant_index; - - if ($entry['aiAPIPAddress'] == $ai_ig_data['aiMasterIPAddress.0']) { - $entPhysicalName = sprintf('%s %s Cluster Master', $entry['aiAPName'], $entry['aiAPIPAddress']); - } else { - $entPhysicalName = sprintf('%s %s Cluster Member', $entry['aiAPName'], $entry['aiAPIPAddress']); - } - - $instant_index += 1; - } elseif ($device['os'] == 'timos') { - $entPhysicalDescr = $entry['tmnxCardTypeDescription']; - $entPhysicalContainedIn = $entry['tmnxHwContainedIn']; - $entPhysicalClass = $entry['tmnxHwClass']; - $entPhysicalName = $entry['tmnxCardTypeName']; - $entPhysicalSerialNum = $entry['tmnxHwSerialNumber']; - $entPhysicalModelName = $entry['tmnxHwMfgBoardNumber']; - $entPhysicalMfgName = $entry['tmnxHwMfgBoardNumber']; - $entPhysicalVendorType = $entry['tmnxCardTypeName']; - $entPhysicalParentRelPos = $entry['tmnxHwParentRelPos']; - $entPhysicalHardwareRev = '1.0'; - $entPhysicalFirmwareRev = $entry['tmnxHwBootCodeVersion']; - $entPhysicalSoftwareRev = $entry['tmnxHwBootCodeVersion']; - $entPhysicalIsFRU = $entry['tmnxHwIsFRU']; - $entPhysicalAlias = $entry['tmnxHwAlias']; - $entPhysicalAssetID = $entry['tmnxHwAssetID']; - $entPhysicalIndex = str_replace('.', '', $entPhysicalIndex); - } elseif ($device['os'] == 'vrp') { - //Add some details collected in the VRP Entity Mib - $entPhysicalDescr = $entry['hwEntityBomEnDesc']; - $entPhysicalContainedIn = $entry['entPhysicalContainedIn']; - $entPhysicalClass = $entry['entPhysicalClass']; - $entPhysicalName = $entry['entPhysicalName']; - $entPhysicalSerialNum = $entry['entPhysicalSerialNum']; - $entPhysicalModelName = $entry['hwEntityBoardType']; - $entPhysicalMfgName = $entry['entPhysicalMfgName']; - $entPhysicalVendorType = $entry['entPhysicalVendorType']; - $entPhysicalParentRelPos = $entry['entPhysicalParentRelPos']; - $entPhysicalHardwareRev = $entry['entPhysicalHardwareRev']; - $entPhysicalFirmwareRev = $entry['entPhysicalFirmwareRev']; - $entPhysicalSoftwareRev = $entry['entPhysicalSoftwareRev']; - $entPhysicalIsFRU = $entry['entPhysicalIsFRU']; - $entPhysicalAlias = $entry['entPhysicalAlias']; - $entPhysicalAssetID = $entry['entPhysicalAssetID']; - - //VRP devices seems to use LogicalEntity '1' instead of '0' like the default code checks. - //Standard code is still run after anyway. - if (isset($entry['1']['entAliasMappingIdentifier'])) { - $ifIndex = preg_replace('/ifIndex\.(\d+).*/', '$1', $entry['1']['entAliasMappingIdentifier']); - } - } else { - $entPhysicalDescr = array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : ''; - $entPhysicalContainedIn = array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : ''; - $entPhysicalClass = array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : ''; - $entPhysicalName = array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : ''; - $entPhysicalSerialNum = array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : ''; - $entPhysicalModelName = array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : ''; - $entPhysicalMfgName = array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : ''; - $entPhysicalVendorType = array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : ''; - $entPhysicalParentRelPos = array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : ''; - $entPhysicalHardwareRev = array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : ''; - $entPhysicalFirmwareRev = array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : ''; - $entPhysicalSoftwareRev = array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : ''; - $entPhysicalIsFRU = array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : ''; - $entPhysicalAlias = array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : ''; - $entPhysicalAssetID = array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : ''; - }//end if - - if ($device['os'] == 'dnos' && $entPhysicalSerialNum == 'NA' && preg_match('/Unit/', $entPhysicalName)) { - $entPhysicalSerialNum = snmp_get($device, '.1.3.6.1.4.1.674.10895.3000.1.2.100.8.1.4.' . preg_replace('/Unit (\d+)/', '$1', $entPhysicalName), '-Oqv', ''); - } - - if (isset($entity_array[$entPhysicalIndex]['0']['entAliasMappingIdentifier'])) { - $ifIndex = $entity_array[$entPhysicalIndex]['0']['entAliasMappingIdentifier']; - if (! strpos($ifIndex, 'fIndex') || $ifIndex == '') { - unset($ifIndex); - } else { - $ifIndex_array = explode('.', $ifIndex); - $ifIndex = $ifIndex_array[1]; - unset($ifIndex_array); - } - } - - // List of real names for cisco entities - $entPhysicalVendorTypes = [ - 'cevC7xxxIo1feTxIsl' => 'C7200-IO-FE-MII', - 'cevChassis7140Dualfe' => 'C7140-2FE', - 'cevChassis7204' => 'C7204', - 'cevChassis7204Vxr' => 'C7204VXR', - 'cevChassis7206' => 'C7206', - 'cevChassis7206Vxr' => 'C7206VXR', - 'cevCpu7200Npe200' => 'NPE-200', - 'cevCpu7200Npe225' => 'NPE-225', - 'cevCpu7200Npe300' => 'NPE-300', - 'cevCpu7200Npe400' => 'NPE-400', - 'cevCpu7200Npeg1' => 'NPE-G1', - 'cevCpu7200Npeg2' => 'NPE-G2', - 'cevPa1feTxIsl' => 'PA-FE-TX-ISL', - 'cevPa2feTxI82543' => 'PA-2FE-TX', - 'cevPa8e' => 'PA-8E', - 'cevPaA8tX21' => 'PA-8T-X21', - 'cevMGBIC1000BaseLX' => '1000BaseLX GBIC', - 'cevPort10GigBaseLR' => '10GigBaseLR', - ]; - - if (! empty($entPhysicalVendorTypes[$entPhysicalVendorType]) && ! $entPhysicalModelName) { - $entPhysicalModelName = $entPhysicalVendorTypes[$entPhysicalVendorType]; - } - - discover_entity_physical($valid, $device, $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex); -}//end foreach -echo "\n"; -unset( - $update_data, - $insert_data, - $entry, - $entity_array -); diff --git a/includes/discovery/entity-physical/eurostor.inc.php b/includes/discovery/entity-physical/eurostor.inc.php deleted file mode 100644 index 1315c0169d..0000000000 --- a/includes/discovery/entity-physical/eurostor.inc.php +++ /dev/null @@ -1,85 +0,0 @@ - $id++, - 'entPhysicalDescr' => "Eurostore {$chassis_contents['siModel']}", - 'entPhysicalClass' => 'chassis', - 'entPhysicalModelName' => $chassis_contents['siModel'], - 'entPhysicalSerialNum' => $chassis_contents['siSerial'], - 'entPhysicalContainedIn' => '0', - 'entPhysicalVendorType' => $chassis_contents['siVendor'], - 'entPhysicalHardwareRev' => $chassis_contents['siBootVer'], - 'entPhysicalFirmwareRev' => $chassis_contents['siFirmVer'], - ]; -} - -for ($i = 1; $i <= 8; $i++) { - $backplane_array = snmpwalk_cache_multi_oid($device, 'hwEnclosure' . $i, $backplane_array, 'proware-SNMP-MIB'); - - foreach ($backplane_array as $backplane_contents) { - if ($backplane_contents['hwEnclosure0' . $i . 'Installed'] != 2) { - continue; - } - $backplane_id = $id++; - // Discover the chassis - $entity_array[] = [ - 'entPhysicalIndex' => $backplane_id, - 'entPhysicalDescr' => $backplane_contents['hwEnclosure0' . $i . 'Description'], - 'entPhysicalClass' => 'backplane', - 'entPhysicalContainedIn' => '1', - 'entPhysicalParentRelPos' => $i, - ]; - - $hdd_array = snmpwalk_cache_multi_oid($device, 'hddEnclosure0' . $i . 'InfoTable', $hdd_array, 'proware-SNMP-MIB'); - var_dump($hdd_array); - foreach ($hdd_array as $hdd_contents) { - // Discover the chassis - $entity_array[] = [ - 'entPhysicalContainedIn' => $backplane_id, - 'entPhysicalIndex' => $id++, - 'entPhysicalDescr' => $hdd_contents['hddEnclosure0' . $i . 'Desc'], - 'entPhysicalClass' => 'container', - 'entPhysicalParentRelPos' => $hdd_contents['hddEnclosure0' . $i . 'Slots'], - 'entPhysicalName' => $hdd_contents['hddEnclosure0' . $i . 'Name'], - 'entPhysicalSerialNum' => $hdd_contents['hddEnclosure0' . $i . 'Serial'], - 'entPhysicalFirmwareRev' => $hdd_contents['hddEnclosure0' . $i . 'FrimVer'], - 'entPhysicalIsFRU' => 'true', - 'entPhysicalAlias' => $hdd_contents['hddEnclosure0' . $i . 'State'], - ]; - } - } -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : ''; - $entPhysicalDescr = array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : ''; - $entPhysicalClass = array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : ''; - $entPhysicalName = array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : ''; - $entPhysicalModelName = array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : ''; - $entPhysicalSerialNum = array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : ''; - $entPhysicalContainedIn = array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : ''; - $entPhysicalMfgName = array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : ''; - $entPhysicalParentRelPos = array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : ''; - $entPhysicalVendorType = array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : ''; - $entPhysicalHardwareRev = array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : ''; - $entPhysicalFirmwareRev = array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : ''; - $entPhysicalSoftwareRev = array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : ''; - $entPhysicalIsFRU = array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : ''; - $entPhysicalAlias = array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : ''; - $entPhysicalAssetID = array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : ''; - $ifIndex = array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : ''; - - discover_entity_physical($valid, $device, $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex); -}//end foreach - -echo "\n"; -unset( - $update_data, - $insert_data, - $entry, - $entity_array -); diff --git a/includes/discovery/entity-physical/linux.inc.php b/includes/discovery/entity-physical/linux.inc.php deleted file mode 100644 index 8dd8483038..0000000000 --- a/includes/discovery/entity-physical/linux.inc.php +++ /dev/null @@ -1,114 +0,0 @@ - 200 + $controller['adapterID-AIT'], - 'entPhysicalParentRelPos' => $controller['adapterID-AIT'], - 'entPhysicalDescr' => '/C' . $controller['adapterID-AIT'], - 'entPhysicalClass' => 'port', - 'entPhysicalModelName' => $controller['productName'], - 'entPhysicalSerialNum' => $controller['serialNo'], - 'entPhysicalContainedIn' => '0', - 'entPhysicalVendorType' => $controller['adapterVendorID'], - 'entPhysicalFirmwareRev' => $controller['firmwareVersion'], - ]; -} - -foreach ($bbus as $bbu) { - // Discover the chassis - $entity_array[] = [ - 'entPhysicalIndex' => 1000 + $bbu['pdIndex'], - 'entPhysicalClass' => 'charge', - 'entPhysicalModelName' => $bbu['deviceName'], - 'entPhysicalSerialNum' => $bbu['serialNumber'], - 'entPhysicalContainedIn' => 200 + $bbu['adpID'], - 'entPhysicalIsFRU' => 'true', - 'entPhysicalFirmwareRev' => $bbu['firmwareStatus'], - ]; -} - -foreach ($enclosures as $enclosure) { - // Discover the chassis - $entity_array[] = [ - 'entPhysicalIndex' => 210 + $enclosure['deviceId'], - 'entPhysicalMfgName' => $enclosure['slotCount'], - 'entPhysicalParentRelPos' => $enclosure['deviceId'], - 'entPhysicalDescr' => '/C' . $enclosure['adapterID-CDIT'] . '/E' . $enclosure['deviceId'], - 'entPhysicalClass' => 'chassis', - 'entPhysicalModelName' => $enclosure['productID'], - 'entPhysicalSerialNum' => $enclosure['enclSerialNumber'], - 'entPhysicalContainedIn' => 200 + $enclosure['adapterID-CDIT'], - 'entPhysicalVendorType' => $enclosure['adapterVendorID'], - 'entPhysicalFirmwareRev' => $enclosure['firmwareVersion'], - ]; -} - -foreach ($drives as $drive) { - // Discover the chassis - $entity_array[] = [ - 'entPhysicalIndex' => 500 + $drive['enclDeviceId'] * 100 + $drive['physDevID'], - 'entPhysicalParentRelPos' => $drive['slotNumber'], - 'entPhysicalDescr' => '/C' . $drive['adpID-PDT'] . '/E' . $drive['enclDeviceId'] . '/S' . $drive['slotNumber'], - 'entPhysicalClass' => 'drive', - 'entPhysicalModelName' => $drive['pdProductID'], - 'entPhysicalSerialNum' => $drive['pdSerialNumber'], - 'entPhysicalContainedIn' => 210 + $drive['enclDeviceId'], - 'entPhysicalIsFRU' => 'true', - 'entPhysicalFirmwareRev' => $drive['pdFwversion'], - ]; -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : ''; - $entPhysicalDescr = array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : ''; - $entPhysicalClass = array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : ''; - $entPhysicalName = array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : ''; - $entPhysicalModelName = array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : ''; - $entPhysicalSerialNum = array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : ''; - $entPhysicalContainedIn = array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : ''; - $entPhysicalMfgName = array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : ''; - $entPhysicalParentRelPos = array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : ''; - $entPhysicalVendorType = array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : ''; - $entPhysicalHardwareRev = array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : ''; - $entPhysicalFirmwareRev = array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : ''; - $entPhysicalSoftwareRev = array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : ''; - $entPhysicalIsFRU = array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : ''; - $entPhysicalAlias = array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : ''; - $entPhysicalAssetID = array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : ''; - $ifIndex = array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : ''; - - discover_entity_physical($valid, - $device, - $entPhysicalIndex, - $entPhysicalDescr, - $entPhysicalClass, - $entPhysicalName, - $entPhysicalModelName, - $entPhysicalSerialNum, - $entPhysicalContainedIn, - $entPhysicalMfgName, - $entPhysicalParentRelPos, - $entPhysicalVendorType, - $entPhysicalHardwareRev, - $entPhysicalFirmwareRev, - $entPhysicalSoftwareRev, - $entPhysicalIsFRU, - $entPhysicalAlias, - $entPhysicalAssetID, - $ifIndex); -}//end foreach - -echo "\n"; -unset( - $update_data, - $insert_data, - $entry, - $entity_array -); diff --git a/includes/discovery/entity-physical/mrv-od.inc.php b/includes/discovery/entity-physical/mrv-od.inc.php deleted file mode 100644 index bf11164524..0000000000 --- a/includes/discovery/entity-physical/mrv-od.inc.php +++ /dev/null @@ -1,358 +0,0 @@ - - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. Please see LICENSE.txt at the top level of - * the source code distribution for details. - */ - -echo "\nCaching OIDs:"; - -$entity_array = []; -echo ' MRV OptiDriver'; -$chassis_array = snmpwalk_cache_multi_oid($device, 'nbsCmmcChassisTable', $chassis_array, 'NBS-CMMC-MIB'); -$slot_array = snmpwalk_cache_multi_oid($device, 'nbsCmmcSlotTable', $slot_array, 'NBS-CMMC-MIB'); -$port_array = snmpwalk_cache_multi_oid($device, 'nbsCmmcPortTable', $port_array, 'NBS-CMMC-MIB'); - -// We use the last digit in the OID to define an entPhysicalIndex for Power Supply state sensors -$nbsCmmcChassisPSStatus_array = [ - 7 => 'nbsCmmcChassisPS1Status', - 8 => 'nbsCmmcChassisPS2Status', - 9 => 'nbsCmmcChassisPS3Status', - 10 => 'nbsCmmcChassisPS4Status', -]; - -// We use the last digit in the OID to define an entPhysicalIndex for Fan state sensors -$nbsCmmcChassisFanStatus_array = [ - 11 => 'nbsCmmcChassisFan1Status', - 12 => 'nbsCmmcChassisFan2Status', - 13 => 'nbsCmmcChassisFan3Status', - 14 => 'nbsCmmcChassisFan4Status', - 36 => 'nbsCmmcChassisFan5Status', - 37 => 'nbsCmmcChassisFan6Status', - 38 => 'nbsCmmcChassisFan7Status', - 39 => 'nbsCmmcChassisFan8Status', -]; - -// Define all the types of pluggable port form factors recognized by nbsCmmcPortType in NBS-CMMC-MIB, -// if nbsCmmcPortType returns a value that is not in this array, it should be a built-in port in the card. -$nbsCmmcPortType_array = [ - 125 => 'SFP', - 147 => 'GBIC', - 197 => 'XFP', - 219 => 'QSFP+', - 220 => 'CXP', - 221 => 'CFP', - 223 => 'QSFP28', - 224 => 'CFP2', -]; - -$nbsCmmcPortSensor_array = [ - 30 => [ - 'objectType' => 'nbsCmmcPortTemperature', - 'skipValue' => '-2147483648', - 'entPhysicalName' => 'Port Temperature', - ], - 31 => [ - 'objectType' => 'nbsCmmcPortTxPower', - 'skipValue' => '-2147483648', - 'entPhysicalName' => 'Port Tx Power', - ], - 32 => [ - 'objectType' => 'nbsCmmcPortRxPower', - 'skipValue' => '-2147483648', - 'entPhysicalName' => 'Port Rx Power', - ], - 33 => [ - 'objectType' => 'nbsCmmcPortBiasAmps', - 'skipValue' => '-1', - 'entPhysicalName' => 'Port Tx Bias Current', - ], - 34 => [ - 'objectType' => 'nbsCmmcPortSupplyVolts', - 'skipValue' => '-1', - 'entPhysicalName' => 'Port Tx Supply Voltage', - ], - 38 => [ - 'objectType' => 'nbsCmmcPortDigitalDiags', - 'skipValue' => '1', - 'entPhysicalName' => 'Port Overall DigiDiags State', - ], -]; - -foreach ($chassis_array as $nbsCmmcChassis => $chassis_contents) { - [$chassisHardwareRev, $chassisFirmwareRev] = explode(', ', $chassis_contents['nbsCmmcChassisHardwareRevision']); - // Discover the chassis - $entity_array[] = [ - 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . '00', - 'entPhysicalDescr' => "MRV OptiDriver {$chassis_contents['nbsCmmcChassisModel']}", - 'entPhysicalClass' => 'chassis', - 'entPhysicalName' => "Chassis $nbsCmmcChassis", - 'entPhysicalModelName' => $chassis_contents['nbsCmmcChassisModel'], - 'entPhysicalSerialNum' => $chassis_contents['nbsCmmcChassisSerialNum'], - 'entPhysicalContainedIn' => '0', - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => $chassis_contents['nbsCmmcChassisIndex'], - 'entPhysicalVendorType' => $chassis_contents['nbsCmmcChassisType'], - 'entPhysicalHardwareRev' => $chassisHardwareRev, - 'entPhysicalFirmwareRev' => $chassisFirmwareRev, - 'entPhysicalIsFRU' => 'true', - 'entPhysicalAlias' => $chassis_contents['nbsCmmcChassisName'], - ]; - - // Discover the chassis temperature sensor - if (isset($chassis_contents['nbsCmmcChassisTemperature']) && $chassis_contents['nbsCmmcChassisTemperature'] != '-2147483648') { - $entity_array[] = [ - 'entPhysicalIndex' => "{$chassis_contents['nbsCmmcChassisIfIndex']}15", - 'entPhysicalDescr' => 'Chassis Temperature Sensor', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => 'Chassis Temperature', - 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'false', - ]; - } - - // Discover the chassis power budget status sensor - if (isset($chassis_contents['nbsCmmcChassisPowerStatus']) && $chassis_contents['nbsCmmcChassisPowerStatus'] != 'notSupported') { - $entity_array[] = [ - 'entPhysicalIndex' => "{$chassis_contents['nbsCmmcChassisIfIndex']}51", - 'entPhysicalDescr' => 'Chassis Power Budget Status Sensor', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => 'Chassis Power Budget Status', - 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'false', - ]; - } - - // Discover the chassis power supplies and state sensors - foreach ($nbsCmmcChassisPSStatus_array as $index => $item) { - if (isset($chassis_contents[$item]) && $chassis_contents[$item] != 'notSupported') { - $position = substr($item, 16, 1); - $entity_array[] = [ - 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . $position, - 'entPhysicalDescr' => 'Power Supply', - 'entPhysicalClass' => 'powerSupply', - 'entPhysicalName' => "Power Supply $position", - 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => $position, - 'entPhysicalIsFRU' => 'false', - ]; - $entity_array[] = [ - 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . $index, - 'entPhysicalDescr' => 'Power Supply State', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => "Power Supply $position", - 'entPhysicalContainedIn' => $chassis_contents['nbsCmmcChassisIfIndex'] . $position, - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'true', - ]; - } - } - - // Discover the chassis fan trays and state sensors - foreach ($nbsCmmcChassisFanStatus_array as $index => $item) { - if (isset($chassis_contents[$item]) && $chassis_contents[$item] != 'notSupported') { - $position = substr($item, 17, 1); - $entity_array[] = [ - 'entPhysicalIndex' => "{$chassis_contents['nbsCmmcChassisIfIndex']}0$position", - 'entPhysicalDescr' => 'Fan Tray', - 'entPhysicalClass' => 'fan', - 'entPhysicalName' => "Fan Tray $position", - 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}00", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => $position, - 'entPhysicalIsFRU' => 'false', - ]; - $entity_array[] = [ - 'entPhysicalIndex' => $chassis_contents['nbsCmmcChassisIfIndex'] . $index, - 'entPhysicalDescr' => 'Fan State', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => "Fan $position", - 'entPhysicalContainedIn' => "{$chassis_contents['nbsCmmcChassisIfIndex']}0$position", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'true', - ]; - } - } -} - -foreach ($slot_array as $nbsCmmcSlot => $slot_contents) { - // Obtain the nbsCmmcChassisIfIndex of the chassis which houses this slot - $nbsCmmcChassisIfIndex = $chassis_array[$slot_contents['nbsCmmcSlotChassisIndex']]['nbsCmmcChassisIfIndex']; - // Calculate the nbsCmmcSlotIfIndex since an empty slot has nbsCmmcSlotIfIndex == -1 - $nbsCmmcSlotIfIndex = $nbsCmmcChassisIfIndex + $slot_contents['nbsCmmcSlotIndex'] * 1000; - // Discover the slot - $entity_array[] = [ - 'entPhysicalIndex' => $nbsCmmcSlotIfIndex . '00', - 'entPhysicalDescr' => 'MRV OptiDriver Slot', - 'entPhysicalClass' => 'container', - 'entPhysicalName' => "Card Slot $nbsCmmcSlot", - 'entPhysicalContainedIn' => $nbsCmmcChassisIfIndex . '00', - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => $slot_contents['nbsCmmcSlotIndex'], - 'entPhysicalIsFRU' => 'false', - ]; - if (isset($slot_contents['nbsCmmcSlotIfIndex']) && $slot_contents['nbsCmmcSlotIfIndex'] != '-1') { - [$cardHardwareRev, $cardFirmwareRev, $cardOtherRev] = explode(', ', $slot_contents['nbsCmmcSlotHardwareRevision']); - // Discover the card - $entity_array[] = [ - 'entPhysicalIndex' => $slot_contents['nbsCmmcSlotIfIndex'] . '01', - 'entPhysicalDescr' => 'MRV ' . ucfirst($slot_contents['nbsCmmcSlotOperationType']) . ' Card', - 'entPhysicalClass' => 'module', - 'entPhysicalName' => "Card $nbsCmmcSlot", - 'entPhysicalModelName' => $slot_contents['nbsCmmcSlotModel'], - 'entPhysicalSerialNum' => $slot_contents['nbsCmmcSlotSerialNum'], - 'entPhysicalContainedIn' => "{$slot_contents['nbsCmmcSlotIfIndex']}00", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalVendorType' => $slot_contents['nbsCmmcSlotType'], - 'entPhysicalHardwareRev' => "$cardHardwareRev, $cardOtherRev", - 'entPhysicalFirmwareRev' => $cardFirmwareRev, - 'entPhysicalIsFRU' => 'true', - 'entPhysicalAlias' => $slot_contents['nbsCmmcSlotName'], - ]; - - // Discover the module temperature sensor - if (isset($slot_contents['nbsCmmcSlotTemperature']) && $slot_contents['nbsCmmcSlotTemperature'] != '-2147483648') { - $entity_array[] = [ - 'entPhysicalIndex' => "{$slot_contents['nbsCmmcSlotIfIndex']}34", - 'entPhysicalDescr' => 'Card Temperature Sensor', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => 'Card Temperature', - 'entPhysicalContainedIn' => "{$slot_contents['nbsCmmcSlotIfIndex']}01", - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'false', - ]; - } - } -} - -foreach ($port_array as $nbsCmmcPort => $port_contents) { - // Obtain the nbsCmmcSlotIfIndex of the slot which houses this port - $nbsCmmcSlot = $port_contents['nbsCmmcPortChassisIndex'] . '.' . $port_contents['nbsCmmcPortSlotIndex']; - $nbsCmmcSlotIfIndex = $slot_array[$nbsCmmcSlot]['nbsCmmcSlotIfIndex']; - - // We only need to discover a transceiver container if the port type is pluggable - if (array_key_exists($port_contents['nbsCmmcPortType'], $nbsCmmcPortType_array)) { - $nbsCmmcPortType = $nbsCmmcPortType_array[$port_contents['nbsCmmcPortType']]; - - // Discover the transceiver container - $entity_array[] = [ - 'entPhysicalIndex' => $port_contents['nbsCmmcPortIfIndex'] . '00', - 'entPhysicalDescr' => "$nbsCmmcPortType Transceiver Container", - 'entPhysicalClass' => 'container', - 'entPhysicalName' => "Transceiver Container $nbsCmmcPort", - 'entPhysicalContainedIn' => $nbsCmmcSlotIfIndex . '01', - 'entPhysicalMfgName' => 'MRV Communications', - 'entPhysicalParentRelPos' => $port_contents['nbsCmmcPortIndex'], - 'entPhysicalIsFRU' => 'false', - ]; - // Set a few variables for the port discovery - $nbsCmmcPortContainedIn = $port_contents['nbsCmmcPortIfIndex'] . '00'; - $nbsCmmcPortVendorInfo = $port_contents['nbsCmmcPortVendorInfo']; - $nbsCmmcPortIsFRU = 'true'; - $nbsCmmcPortParentRelPos = '-1'; - // If one runs a command like "show 1.1.1 | grep Part" on a port with a genuine pluggable transceiver, - // CLI output like "Part #/Rev: SFP-10GDWZR-22/0001" indicates / is considered to be the string delimiter. - // However, non-genuine pluggable transceivers may not adhere to this format. - [$nbsCmmcPortModelName, $nbsCmmcPortHardwareRev] = explode('/', $port_contents['nbsCmmcPortPartRev']); - } else { - $nbsCmmcPortType = 'Built-in'; - - // Set a few variables for the port discovery - $nbsCmmcPortContainedIn = $nbsCmmcSlotIfIndex . '01'; - $nbsCmmcPortVendorInfo = 'MRV Communications'; - $nbsCmmcPortIsFRU = 'false'; - $nbsCmmcPortParentRelPos = $port_contents['nbsCmmcPortIndex']; - $nbsCmmcPortModelName = ''; - $nbsCmmcPortHardwareRev = ''; - } - - if (isset($port_contents['nbsCmmcPortConnector']) && $port_contents['nbsCmmcPortConnector'] != 'removed') { - // Determine the correct entPhysicalDescr for the port - if (isset($port_contents['nbsCmmcPortWavelengthX']) && $port_contents['nbsCmmcPortWavelengthX'] != 'N/A') { - $portEntPhysicalDescr = "$nbsCmmcPortType Port, {$port_contents['nbsCmmcPortWavelengthX']}nm Tx Signal, {$port_contents['nbsCmmcPortConnector']} Connector"; - } elseif (! empty($port_contents['nbsCmmcPortDescription'])) { - $portEntPhysicalDescr = "$nbsCmmcPortType Port, {$port_contents['nbsCmmcPortDescription']}, {$port_contents['nbsCmmcPortConnector']} Connector"; - } else { - $portEntPhysicalDescr = "$nbsCmmcPortType Port, {$port_contents['nbsCmmcPortConnector']} Connector"; - } - - // Discover the port - $entity_array[] = [ - 'entPhysicalIndex' => "{$port_contents['nbsCmmcPortIfIndex']}01", - 'entPhysicalDescr' => $portEntPhysicalDescr, - 'entPhysicalClass' => 'port', - 'entPhysicalName' => "Port $nbsCmmcPort", - 'entPhysicalModelName' => $nbsCmmcPortModelName, - 'entPhysicalSerialNum' => $port_contents['nbsCmmcPortSerialNumber'], - 'entPhysicalContainedIn' => $nbsCmmcPortContainedIn, - 'entPhysicalMfgName' => $nbsCmmcPortVendorInfo, - 'entPhysicalParentRelPos' => $nbsCmmcPortParentRelPos, - 'entPhysicalVendorType' => $port_contents['nbsCmmcPortType'], - 'entPhysicalHardwareRev' => $nbsCmmcPortHardwareRev, - 'entPhysicalIsFRU' => $nbsCmmcPortIsFRU, - 'entPhysicalAlias' => $port_contents['nbsCmmcPortName'], - 'ifIndex' => $port_contents['nbsCmmcPortIfIndex'], - ]; - - // Discover the port sensors - foreach ($nbsCmmcPortSensor_array as $index => $nbsCmmcPortSensor) { - if (isset($port_contents[$nbsCmmcPortSensor['objectType']]) && $port_contents[$nbsCmmcPortSensor['objectType']] != $nbsCmmcPortSensor['skipValue']) { - $entity_array[] = [ - 'entPhysicalIndex' => $port_contents['nbsCmmcPortIfIndex'] . $index, - 'entPhysicalDescr' => "{$nbsCmmcPortSensor['entPhysicalName']} Sensor", - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => $nbsCmmcPortSensor['entPhysicalName'], - 'entPhysicalContainedIn' => "{$port_contents['nbsCmmcPortIfIndex']}01", - 'entPhysicalMfgName' => $nbsCmmcPortVendorInfo, - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'false', - ]; - } - } - } -} - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : ''; - $entPhysicalDescr = array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : ''; - $entPhysicalClass = array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : ''; - $entPhysicalName = array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : ''; - $entPhysicalModelName = array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : ''; - $entPhysicalSerialNum = array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : ''; - $entPhysicalContainedIn = array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : ''; - $entPhysicalMfgName = array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : ''; - $entPhysicalParentRelPos = array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : ''; - $entPhysicalVendorType = array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : ''; - $entPhysicalHardwareRev = array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : ''; - $entPhysicalFirmwareRev = array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : ''; - $entPhysicalSoftwareRev = array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : ''; - $entPhysicalIsFRU = array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : ''; - $entPhysicalAlias = array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : ''; - $entPhysicalAssetID = array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : ''; - $ifIndex = array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : ''; - - discover_entity_physical($valid, $device, $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex); -}//end foreach - -echo "\n"; -unset( - $update_data, - $insert_data, - $entry, - $entity_array -); diff --git a/includes/discovery/entity-physical/schleifenbauer.inc.php b/includes/discovery/entity-physical/schleifenbauer.inc.php deleted file mode 100644 index 617ffb4af0..0000000000 --- a/includes/discovery/entity-physical/schleifenbauer.inc.php +++ /dev/null @@ -1,135 +0,0 @@ - - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. Please see LICENSE.txt at the top level of - * the source code distribution for details. - */ - -// Let's gather some data about the databus ring.. -$sdbMgmtStsDevices = snmp_get($device, '.1.3.6.1.4.1.31034.12.1.1.1.1.1.0', '-Oqv', ''); -$sdbMgmtDatabusRingDescr = "Schleifenbauer databus ring ($sdbMgmtStsDevices units)"; - -// Let's gather some data about the units.. -$sdbMgmtCtrlDevUnitAddressArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.1.2.4.1.2', 1)); -$sdbDevIdNameArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.10', 1)); -$sdbDevIdLocationArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.11', 1)); -$sdbDevIdVanityTagArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.12', 1)); -$sdbDevIdSerialNumberArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.6', 1)); -$sdbDevIdFirmwareVersionArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.2', 1)); -$sdbDevIdProductIdArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.5', 1)); -$sdbDevIdSalesOrderNumberArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.1.1.1.4', 1)); -$sdbDevCfMaximumLoadArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.2.1.1.6', 1)); -$sdbDevCfOutletsTotalArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.2.1.1.2', 1)); -$sdbDevCfSensorsArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.2.1.1.5', 1)); - -// And let's gather some data about the inputs, outputs, and sensors on those units.. -$sdbDevInNameArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.6.1.1.13', 2)); -$sdbDevSnsTypeArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.8.2.1.2', 2)); -$sdbDevSnsNameArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.8.2.1.4', 2)); - -// In a large databus ring, snmpwalking this OID may crash the discovery half way through. -// So, we only discover and enumerate outlets if this is a stand-alone, non-databus unit. -if ($sdbMgmtStsDevices == 1) { - $sdbDevOutNameArray = current(snmpwalk_array_num($device, '.1.3.6.1.4.1.31034.12.1.1.2.7.1.1.2', 2)); -} - -// Only spawn databus ring entities when the device is not stand-alone. -if ($sdbMgmtStsDevices > 1) { - $entPhysicalContainedIn = 1; - discover_entity_physical($valid, $device, 1, $sdbMgmtDatabusRingDescr, 'stack', 'Schleifenbauer Databus', null, null, '0', 'Schleifenbauer Products B.V.', -1, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, 2, 'Databus Ring State Sensor (0 = open, 1 = closed)', 'sensor', 'State Sensor', null, null, '1', 'Schleifenbauer Products B.V.', -1, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, 3, 'Duplicate Device Address Sensor (#)', 'sensor', 'State Sensor', null, null, '1', 'Schleifenbauer Products B.V.', -1, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, 4, 'New Device Detection Sensor (#)', 'sensor', 'State Sensor', null, null, '1', 'Schleifenbauer Products B.V.', -1, null, null, null, null, 'false', null, null, null); -} else { - $entPhysicalContainedIn = 0; -} - -foreach ($sdbMgmtCtrlDevUnitAddressArray as $sdbMgmtCtrlDevUnitAddress => $sdbDevIdIndex) { - $entPhysicalDescr = 'Schleifenbauer ' . count($sdbDevInNameArray[$sdbDevIdIndex]) . '-phase, ' . $sdbDevCfOutletsTotalArray[$sdbDevIdIndex] . '-outlet PDU'; - $entPhysicalName = 'Schleifenbauer PDU - SPDM v' . $sdbDevIdFirmwareVersionArray[$sdbDevIdIndex]; - $entPhysicalHardwareRev = 'SO# ' . $sdbDevIdSalesOrderNumberArray[$sdbDevIdIndex]; - - // We are determining the $entPhysicalAlias for this PDU based on a few optional user-customizable fields. - $entPhysicalAlias = null; - if ($sdbDevIdNameArray[$sdbDevIdIndex] != '') { - $entPhysicalAlias = $sdbDevIdLocationArray[$sdbDevIdIndex] != '' ? $sdbDevIdNameArray[$sdbDevIdIndex] . ' @ ' . $sdbDevIdLocationArray[$sdbDevIdIndex] : $sdbDevIdNameArray[$sdbDevIdIndex]; - } // end of $entPhysicalAlias if-sequence - - discover_entity_physical($valid, $device, $sdbMgmtCtrlDevUnitAddress * 10, $entPhysicalDescr, 'chassis', $entPhysicalName, $sdbDevIdProductIdArray[$sdbDevIdIndex], $sdbDevIdSerialNumberArray[$sdbDevIdIndex], $entPhysicalContainedIn, 'Schleifenbauer Products B.V.', $sdbMgmtCtrlDevUnitAddress, null, $entPhysicalHardwareRev, null, $sdbDevIdFirmwareVersionArray[$sdbDevIdIndex], 'true', $entPhysicalAlias, $sdbDevIdVanityTagArray[$sdbDevIdIndex], null); - - // Since a fully numerical entPhysicalIndex is only available for the actual PDU, we are calculating a fake entPhysicalIndex to avoid namespace collision. We have an Integer32 of space per IETF RFC6933 anyway. - // The maximum sdbMgmtCtrlDevUnitAddress is 255, but multiplying by 1 million for namespace size. Add +100k for every top-level index below a PDU. - foreach ($sdbDevInNameArray[$sdbDevIdIndex] as $sdbDevInIndex => $sdbDevInName) { - $inputIndex = $sdbMgmtCtrlDevUnitAddress * 1000000 + 100000 + $sdbDevInIndex * 1000; // +100k for the first top-level namespace. Add 1000 * sdbDevInIndex which goes up to 48. Leave 3 variable digits at the end. - $entPhysicalDescr = $sdbDevCfMaximumLoadArray[$sdbDevIdIndex] . 'A input phase'; - $entPhysicalName = 'Input L' . $sdbDevInIndex; - - discover_entity_physical($valid, $device, $inputIndex, $entPhysicalDescr, 'powerSupply', $entPhysicalName, null, null, $sdbMgmtCtrlDevUnitAddress * 10, 'Schleifenbauer Products B.V.', $sdbDevInIndex, null, null, null, null, 'false', $sdbDevInName, null, null); - - // Enumerate sensors under the Input - discover_entity_physical($valid, $device, $inputIndex + 110, $entPhysicalName . ' voltage sensor (V)', 'sensor', 'Voltage Sensor', null, null, $inputIndex, 'Schleifenbauer Products B.V.', 1, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $inputIndex + 120, $entPhysicalName . ' RMS current sensor (A)', 'sensor', 'Current Sensor', null, null, $inputIndex, 'Schleifenbauer Products B.V.', 2, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $inputIndex + 130, $entPhysicalName . ' apparent power sensor (W)', 'sensor', 'Power Sensor', null, null, $inputIndex, 'Schleifenbauer Products B.V.', 3, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $inputIndex + 140, $entPhysicalName . ' lifetime power consumed sensor (kWh)', 'sensor', 'Power Consumed Sensor', null, null, $inputIndex, 'Schleifenbauer Products B.V.', 4, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $inputIndex + 150, $entPhysicalName . ' power factor sensor (ratio)', 'sensor', 'Power Factor Sensor', null, null, $inputIndex, 'Schleifenbauer Products B.V.', 5, null, null, null, null, 'false', null, null, null); - } // end Input discovery foreach sdbDevInNameArray - - // Only enumerate outlets if this is a stand-alone, non-databus unit. - if ($sdbMgmtStsDevices == 1) { - // Check if we can find any outlets on this PDU.. - if ($sdbDevOutNameArray[$sdbDevIdIndex] != '') { - // We found outlets, so let's spawn an Outlet Backplane. - $outletBackplaneIndex = $sdbMgmtCtrlDevUnitAddress * 1000000 + 200000; // +200k for the second top-level index namespace. - $entPhysicalDescr = $sdbDevCfOutletsTotalArray[$sdbDevIdIndex] . ' outlets'; - - discover_entity_physical($valid, $device, $outletBackplaneIndex, $entPhysicalDescr, 'backplane', 'Outlets', null, null, $sdbMgmtCtrlDevUnitAddress * 10, 'Schleifenbauer Products B.V.', '-1', null, null, null, null, 'false', null, null, null); - - foreach ($sdbDevOutNameArray[$sdbDevIdIndex] as $sdbDevOutIndex => $sdbDevOutName) { - $outletIndex = $sdbMgmtCtrlDevUnitAddress * 1000000 + 200000 + $sdbDevOutIndex * 1000; // +200k for the second top-level index namespace. Add 1000 * sdbDevOutIndex which goes up to 48. Leave 3 variable digits at the end. - $entPhysicalName = 'Outlet #' . $sdbDevOutIndex; - - discover_entity_physical($valid, $device, $outletIndex, 'PDU outlet', 'powerSupply', $entPhysicalName, null, null, $outletBackplaneIndex, 'Schleifenbauer Products B.V.', $sdbDevOutIndex, null, null, null, null, 'false', $sdbDevOutName, null, null); - - // Enumerate sensors under the Outlet - discover_entity_physical($valid, $device, $outletIndex + 110, $entPhysicalName . ' voltage sensor (V)', 'sensor', 'Voltage Sensor', null, null, $outletIndex, 'Schleifenbauer Products B.V.', 1, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $outletIndex + 120, $entPhysicalName . ' RMS current sensor (A)', 'sensor', 'Current Sensor', null, null, $outletIndex, 'Schleifenbauer Products B.V.', 2, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $outletIndex + 130, $entPhysicalName . ' apparent power sensor (W)', 'sensor', 'Power Sensor', null, null, $outletIndex, 'Schleifenbauer Products B.V.', 3, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $outletIndex + 140, $entPhysicalName . ' lifetime power consumed sensor (kWh)', 'sensor', 'Power Consumed Sensor', null, null, $outletIndex, 'Schleifenbauer Products B.V.', 4, null, null, null, null, 'false', null, null, null); - discover_entity_physical($valid, $device, $outletIndex + 150, $entPhysicalName . ' power factor sensor (ratio)', 'sensor', 'Power Factor Sensor', null, null, $outletIndex, 'Schleifenbauer Products B.V.', 5, null, null, null, null, 'false', null, null, null); - } // end Outlet discovery foreach sdbDevOutNameArray - } // end of Outlet Backplane detection - } - - // Check if we can find any external sensor connections on this PDU.. - if ($sdbDevSnsTypeArray[$sdbDevIdIndex] != '') { - // We found at least one sensor connection, so let's spawn a Sensor Container. - $sensorContainerIndex = $sdbMgmtCtrlDevUnitAddress * 1000000 + 300000; // +300k for the third top-level index namespace. - $entPhysicalDescr = $sdbDevCfSensorsArray[$sdbDevIdIndex] == 1 ? '1 external sensor' : $sdbDevCfSensorsArray[$sdbDevIdIndex] . ' external sensors'; - - discover_entity_physical($valid, $device, $sensorContainerIndex, $entPhysicalDescr, 'container', 'Sensor Container', null, null, $sdbMgmtCtrlDevUnitAddress * 10, 'Schleifenbauer Products B.V.', '-1', null, null, null, null, 'false', null, null, null); - - foreach ($sdbDevSnsNameArray[$sdbDevIdIndex] as $sdbDevSnsIndex => $sdbDevSnsName) { - $sensorIndex = $sdbMgmtCtrlDevUnitAddress * 1000000 + 300000 + $sdbDevSnsIndex * 1000; // +300k for the third top-level index namespace. Add 1000 * sdbDevSnsIndex which goes up to 16. Leave 3 variable digits at the end. - $entPhysicalName = 'External Sensor #' . $sdbDevSnsIndex; - switch ($sdbDevSnsTypeArray[$sdbDevIdIndex][$sdbDevSnsIndex]) { - case 'T': - $entPhysicalDescr = 'Temperature sensor (°C)'; - break; - case 'H': - $entPhysicalDescr = 'Humidity sensor (%)'; - break; - case 'I': - $entPhysicalDescr = 'Dry switch contact (binary)'; - break; - } - - discover_entity_physical($valid, $device, $sensorIndex, $entPhysicalDescr, 'sensor', $entPhysicalName, null, null, $sensorContainerIndex, 'Schleifenbauer Products B.V.', $sdbDevSnsIndex, null, null, null, null, 'true', $sdbDevSnsName, null, null); - } // end external Sensor discovery foreach sdbDevSnsNameArray - } // end of external Sensor Container detection -} // end PDU discovery foreach sdbDevIdNameArray diff --git a/includes/discovery/entity-physical/tait-infra93.inc.php b/includes/discovery/entity-physical/tait-infra93.inc.php deleted file mode 100644 index fda9274e6e..0000000000 --- a/includes/discovery/entity-physical/tait-infra93.inc.php +++ /dev/null @@ -1,148 +0,0 @@ - '10', - 'entPhysicalDescr' => 'Chassis', - 'entPhysicalClass' => 'chassis', - 'entPhysicalName' => 'Chassis', - 'entPhysicalModelName' => 'Infra93', - 'entPhysicalContainedIn' => '0', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalIsFRU' => 'false', -]; - -// Fill the different modules the "entPhysical" way to have a correct display. -// We suppose only one FrontPanel, PA, PMU and Reciter is returned. If more than one is, -// this code would need to be adapted with loops -if (isset($modules_array[0]) and isset($modules_array[0]['fpInfoProductCode'])) { - $entity_array[] = [ - 'entPhysicalIndex' => '11', - 'entPhysicalDescr' => 'Front Panel', - 'entPhysicalClass' => 'module', - 'entPhysicalName' => 'Front Panel', - 'entPhysicalModelName' => $modules_array[0]['fpInfoProductCode'], - 'entPhysicalSerialNum' => $modules_array[0]['fpInfoSerialNumber'], - 'entPhysicalContainedIn' => '10', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalHardwareRev' => $modules_array[0]['fpInfoHardwareVersion'], - 'entPhysicalFirmwareRev' => $modules_array[0]['fpInfoFirmwareVersion'], - 'entPhysicalIsFRU' => 'true', - ]; -} - -if (isset($modules_array[0]) and isset($modules_array[0]['rctInfoProductCode'])) { - $entity_array[] = [ - 'entPhysicalIndex' => '120', - 'entPhysicalDescr' => 'Reciter', - 'entPhysicalClass' => 'module', - 'entPhysicalName' => 'Reciter', - 'entPhysicalModelName' => $modules_array[0]['rctInfoProductCode'], - 'entPhysicalSerialNum' => $modules_array[0]['rctInfoSerialNumber'], - 'entPhysicalContainedIn' => '10', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalHardwareRev' => $modules_array[0]['rctInfoHardwareVersion'], - 'entPhysicalFirmwareRev' => $modules_array[0]['rctInfoFirmwareVersion'], - 'entPhysicalIsFRU' => 'true', - ]; - $entity_array[] = [ - 'entPhysicalIndex' => '1200', - 'entPhysicalDescr' => 'Reciter Temperature Sensor', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => 'Reciter Temperature', - 'entPhysicalContainedIn' => '120', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'false', - ]; -} - -if (isset($modules_array[0]) and isset($modules_array[0]['paInfoProductCode'])) { - $entity_array[] = [ - 'entPhysicalIndex' => '130', - 'entPhysicalDescr' => 'Power Amplifier', - 'entPhysicalClass' => 'module', - 'entPhysicalName' => 'Power Amplifier', - 'entPhysicalModelName' => $modules_array[0]['paInfoProductCode'], - 'entPhysicalSerialNum' => $modules_array[0]['paInfoSerialNumber'], - 'entPhysicalContainedIn' => '10', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalHardwareRev' => $modules_array[0]['paInfoHardwareVersion'], - 'entPhysicalFirmwareRev' => $modules_array[0]['paInfoFirmwareVersion'], - 'entPhysicalIsFRU' => 'true', - ]; - $entity_array[] = [ - 'entPhysicalIndex' => '1300', - 'entPhysicalDescr' => 'Amplifier Power Sensor', - 'entPhysicalClass' => 'sensor', - 'entPhysicalName' => 'Output Power', - 'entPhysicalContainedIn' => '130', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalParentRelPos' => '-1', - 'entPhysicalIsFRU' => 'false', - ]; -} - -$entity_array[] = [ - 'entPhysicalIndex' => '140', - 'entPhysicalDescr' => 'PMU', - 'entPhysicalClass' => 'module', - 'entPhysicalName' => 'PMU', - 'entPhysicalModelName' => $modules_array[0]['pmuInfoProductCode'], - 'entPhysicalSerialNum' => $modules_array[0]['pmuInfoSerialNumber'], - 'entPhysicalContainedIn' => '10', - 'entPhysicalMfgName' => 'TAIT', - 'entPhysicalParentRelPos' => '', - 'entPhysicalVendorType' => '', - 'entPhysicalHardwareRev' => $modules_array[0]['pmuInfoHardwareVersion'], - 'entPhysicalFirmwareRev' => $modules_array[0]['pmuInfoFirmwareVersion'], - 'entPhysicalIsFRU' => 'true', -]; - -foreach ($entity_array as $entPhysicalIndex => $entry) { - $entPhysicalIndex = array_key_exists('entPhysicalIndex', $entry) ? $entry['entPhysicalIndex'] : ''; - $entPhysicalDescr = array_key_exists('entPhysicalDescr', $entry) ? $entry['entPhysicalDescr'] : ''; - $entPhysicalClass = array_key_exists('entPhysicalClass', $entry) ? $entry['entPhysicalClass'] : ''; - $entPhysicalName = array_key_exists('entPhysicalName', $entry) ? $entry['entPhysicalName'] : ''; - $entPhysicalModelName = array_key_exists('entPhysicalModelName', $entry) ? $entry['entPhysicalModelName'] : ''; - $entPhysicalSerialNum = array_key_exists('entPhysicalSerialNum', $entry) ? $entry['entPhysicalSerialNum'] : ''; - $entPhysicalContainedIn = array_key_exists('entPhysicalContainedIn', $entry) ? $entry['entPhysicalContainedIn'] : ''; - $entPhysicalMfgName = array_key_exists('entPhysicalMfgName', $entry) ? $entry['entPhysicalMfgName'] : ''; - $entPhysicalParentRelPos = array_key_exists('entPhysicalParentRelPos', $entry) ? $entry['entPhysicalParentRelPos'] : ''; - $entPhysicalVendorType = array_key_exists('entPhysicalVendorType', $entry) ? $entry['entPhysicalVendorType'] : ''; - $entPhysicalHardwareRev = array_key_exists('entPhysicalHardwareRev', $entry) ? $entry['entPhysicalHardwareRev'] : ''; - $entPhysicalFirmwareRev = array_key_exists('entPhysicalFirmwareRev', $entry) ? $entry['entPhysicalFirmwareRev'] : ''; - $entPhysicalSoftwareRev = array_key_exists('entPhysicalSoftwareRev', $entry) ? $entry['entPhysicalSoftwareRev'] : ''; - $entPhysicalIsFRU = array_key_exists('entPhysicalIsFRU', $entry) ? $entry['entPhysicalIsFRU'] : ''; - $entPhysicalAlias = array_key_exists('entPhysicalAlias', $entry) ? $entry['entPhysicalAlias'] : ''; - $entPhysicalAssetID = array_key_exists('entPhysicalAssetID', $entry) ? $entry['entPhysicalAssetID'] : ''; - $ifIndex = array_key_exists('ifIndex', $entry) ? $entry['ifIndex'] : ''; - - discover_entity_physical($valid, $device, $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex); -}//end foreach - -echo "\n"; -unset( - $modules_array, - $entry, - $entity_array -); diff --git a/includes/discovery/functions.inc.php b/includes/discovery/functions.inc.php index f18fbe49c4..02082c32ed 100644 --- a/includes/discovery/functions.inc.php +++ b/includes/discovery/functions.inc.php @@ -593,67 +593,6 @@ function discover_storage(&$valid, $device, $index, $type, $mib, $descr, $size, }//end if } -function discover_entity_physical(&$valid, $device, $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex) -{ - d_echo("Discover Inventory Item: $entPhysicalIndex, $entPhysicalDescr, $entPhysicalClass, $entPhysicalName, $entPhysicalModelName, $entPhysicalSerialNum, $entPhysicalContainedIn, $entPhysicalMfgName, $entPhysicalParentRelPos, $entPhysicalVendorType, $entPhysicalHardwareRev, $entPhysicalFirmwareRev, $entPhysicalSoftwareRev, $entPhysicalIsFRU, $entPhysicalAlias, $entPhysicalAssetID, $ifIndex\n"); - - if ($entPhysicalDescr || $entPhysicalName) { - if (dbFetchCell('SELECT COUNT(entPhysical_id) FROM `entPhysical` WHERE `device_id` = ? AND `entPhysicalIndex` = ?', [$device['device_id'], $entPhysicalIndex]) == '0') { - $insert_data = [ - 'device_id' => $device['device_id'], - 'entPhysicalIndex' => $entPhysicalIndex, - 'entPhysicalDescr' => $entPhysicalDescr, - 'entPhysicalClass' => $entPhysicalClass, - 'entPhysicalName' => $entPhysicalName, - 'entPhysicalModelName' => $entPhysicalModelName, - 'entPhysicalSerialNum' => $entPhysicalSerialNum, - 'entPhysicalContainedIn' => $entPhysicalContainedIn, - 'entPhysicalMfgName' => $entPhysicalMfgName, - 'entPhysicalParentRelPos' => $entPhysicalParentRelPos, - 'entPhysicalVendorType' => $entPhysicalVendorType, - 'entPhysicalHardwareRev' => $entPhysicalHardwareRev, - 'entPhysicalFirmwareRev' => $entPhysicalFirmwareRev, - 'entPhysicalSoftwareRev' => $entPhysicalSoftwareRev, - 'entPhysicalIsFRU' => $entPhysicalIsFRU, - 'entPhysicalAlias' => $entPhysicalAlias, - 'entPhysicalAssetID' => $entPhysicalAssetID, - ]; - if (! empty($ifIndex)) { - $insert_data['ifIndex'] = $ifIndex; - } - - $inserted = dbInsert($insert_data, 'entPhysical'); - echo '+'; - log_event('Inventory Item added: index ' . $entPhysicalIndex . ' descr ' . $entPhysicalDescr, $device, 'entity-physical', 3, $inserted); - } else { - echo '.'; - $update_data = [ - 'entPhysicalIndex' => $entPhysicalIndex, - 'entPhysicalDescr' => $entPhysicalDescr, - 'entPhysicalClass' => $entPhysicalClass, - 'entPhysicalName' => $entPhysicalName, - 'entPhysicalModelName' => $entPhysicalModelName, - 'entPhysicalSerialNum' => $entPhysicalSerialNum, - 'entPhysicalContainedIn' => $entPhysicalContainedIn, - 'entPhysicalMfgName' => $entPhysicalMfgName, - 'entPhysicalParentRelPos' => $entPhysicalParentRelPos, - 'entPhysicalVendorType' => $entPhysicalVendorType, - 'entPhysicalHardwareRev' => $entPhysicalHardwareRev, - 'entPhysicalFirmwareRev' => $entPhysicalFirmwareRev, - 'entPhysicalSoftwareRev' => $entPhysicalSoftwareRev, - 'entPhysicalIsFRU' => $entPhysicalIsFRU, - 'entPhysicalAlias' => $entPhysicalAlias, - 'entPhysicalAssetID' => $entPhysicalAssetID, - 'ifIndex' => $ifIndex, - ]; - dbUpdate($update_data, 'entPhysical', '`device_id`=? AND `entPhysicalIndex`=?', [$device['device_id'], $entPhysicalIndex]); - }//end if - $valid[$entPhysicalIndex] = 1; - }//end if -} - -//end discover_entity_physical() - function discover_process_ipv6(&$valid, $ifIndex, $ipv6_address, $ipv6_prefixlen, $ipv6_origin, $context_name = '') { global $device; diff --git a/includes/functions.php b/includes/functions.php index 0aeb9265d6..a424fa113e 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -252,12 +252,6 @@ function snmp_hexstring($hex) return hex2str(str_replace(' ', '', str_replace(' 00', '', $hex))); } -// Check if the supplied string is an SNMP hex string -function isHexString($str) -{ - return (bool) preg_match('/^[a-f0-9][a-f0-9]( [a-f0-9][a-f0-9])*$/is', trim($str)); -} - /** * Check if port is valid to poll. * Settings: empty_ifdescr, good_if, bad_if, bad_if_regexp, bad_ifname_regexp, bad_ifalias_regexp, bad_iftype, bad_ifoperstatus diff --git a/includes/html/functions.inc.php b/includes/html/functions.inc.php index 947b87f4b2..75df38f93c 100644 --- a/includes/html/functions.inc.php +++ b/includes/html/functions.inc.php @@ -259,34 +259,6 @@ function print_percentage_bar($width, $height, $percent, $left_text, $left_colou ]); } -function generate_entity_link($type, $entity, $text = null, $graph_type = null) -{ - global $entity_cache; - - if (is_numeric($entity)) { - $entity = get_entity_by_id_cache($type, $entity); - } - - switch ($type) { - case 'port': - $link = generate_port_link($entity, $text, $graph_type); - break; - - case 'storage': - if (empty($text)) { - $text = $entity['storage_descr']; - } - - $link = generate_link($text, ['page' => 'device', 'device' => $entity['device_id'], 'tab' => 'health', 'metric' => 'storage']); - break; - - default: - $link = $entity[$type . '_id']; - } - - return $link; -}//end generate_entity_link() - /** * Extract type and subtype from a complex graph type, also makes sure variables are file name safe. * diff --git a/includes/html/pages/device/entphysical.inc.php b/includes/html/pages/device/entphysical.inc.php index 8a4f9e1bef..015517e1df 100644 --- a/includes/html/pages/device/entphysical.inc.php +++ b/includes/html/pages/device/entphysical.inc.php @@ -55,6 +55,8 @@ function printEntPhysical($device, $ent, $level, $class) echo '' . $display_entPhysicalName . ''; } elseif ($ent['entPhysicalDescr']) { echo '' . $ent['entPhysicalDescr'] . ''; + } elseif ($ent['entPhysicalClass']) { + echo '' . $ent['entPhysicalClass'] . ''; } // Display matching sensor value (without descr, as we have only one) diff --git a/includes/html/pages/device/overview.inc.php b/includes/html/pages/device/overview.inc.php index 56979d1b4e..007ca306f8 100644 --- a/includes/html/pages/device/overview.inc.php +++ b/includes/html/pages/device/overview.inc.php @@ -42,11 +42,6 @@ echo ' require 'overview/processors.inc.php'; require 'overview/mempools.inc.php'; require 'overview/storage.inc.php'; - -if (! isset($entity_state)) { - $entity_state = get_dev_entity_state($device['device_id']); -} - require 'overview/toner.inc.php'; require 'overview/sensors/charge.inc.php'; require 'overview/sensors/temperature.inc.php'; diff --git a/includes/polling/entity-physical.inc.php b/includes/polling/entity-physical.inc.php deleted file mode 100644 index d514b8df86..0000000000 --- a/includes/polling/entity-physical.inc.php +++ /dev/null @@ -1,21 +0,0 @@ - $entPhysical_state[$entity['entPhysicalIndex']][$entity['subindex']][$entity['group']][$entity['key']]], - 'entPhysical_state', - '`device_id` = ? AND `entPhysicalIndex` = ? AND `subindex` = ? AND `group` = ? AND `key` = ?', - [ - $device['device_id'], - $entity['entPhysicalIndex'], - $entity['subindex'], - $entity['group'], - $entity['key'], - ] - ); - } - - unset($entPhysical_state[$entity['entPhysicalIndex']][$entity['subindex']][$entity['group']][$entity['key']]); - } -}//end foreach - -// End Set Entity Attrivs -// Delete Entity state -foreach ((array) $entPhysical_state as $epi => $entity) { - foreach ($entity as $subindex => $si) { - foreach ($si as $group => $ti) { - foreach ($ti as $key => $value) { - dbInsert(['device_id' => $device['device_id'], 'entPhysicalIndex' => $epi, 'subindex' => $subindex, 'group' => $group, 'key' => $key, 'value' => $value], 'entPhysical_state'); - } - } - } -} // End Delete Entity state diff --git a/mibs/calix/Axos-Card-MIB b/mibs/calix/Axos-Card-MIB index 876609562c..578788e917 100644 --- a/mibs/calix/Axos-Card-MIB +++ b/mibs/calix/Axos-Card-MIB @@ -115,7 +115,9 @@ axosCardProvType OBJECT-TYPE ce201(17), e3_2_xgs(18), frwy(19), - xg3201(21) + xg3201(21), + asm5001(22), + xg1601(23) } MAX-ACCESS read-only STATUS current @@ -144,7 +146,9 @@ axosCardActualType OBJECT-TYPE ce201(17), e3_2_xgs(18), frwy(19), - xg3201(21) + xg3201(21), + asm5001(22), + xg1601(23) } MAX-ACCESS read-only STATUS current diff --git a/mibs/cisco/CISCO-ENTITY-VENDORTYPE-OID-MIB b/mibs/cisco/CISCO-ENTITY-VENDORTYPE-OID-MIB index e04e7b2981..d282d79351 100644 --- a/mibs/cisco/CISCO-ENTITY-VENDORTYPE-OID-MIB +++ b/mibs/cisco/CISCO-ENTITY-VENDORTYPE-OID-MIB @@ -7,7 +7,7 @@ -- -- August 1997, Ramanathan R. Kavasseri -- --- Copyright (c) 1997-2019 by cisco Systems, Inc. +-- Copyright (c) 1997-2024 by cisco Systems, Inc. -- All rights reserved. -- ***************************************************************** -- $Log$ @@ -111,7 +111,7 @@ cevMIBObjects OBJECT IDENTIFIER ::= { ciscoEntityVendortypeOIDMIB 1 } -- module(9), e.g. plug-in card or daughter-card -- port(10), -- stack(11), --- midplane(12) +-- midplane(12) -- } -- @@ -137,6 +137,7 @@ cevAcceleratorAsa5506H OBJECT IDENTIFIER ::= { cevOther 15 } -- Accelerator f cevAcceleratorAsa5516 OBJECT IDENTIFIER ::= { cevOther 16 } -- Accelerator for 5516 Adaptive Security Appliance cevAcceleratorFPR1xxx OBJECT IDENTIFIER ::= { cevOther 17 } -- Crypto Accelerator for FPR 1xxx series + cevUnknown OBJECT IDENTIFIER ::= { cevMIBObjects 2 } cevChassis OBJECT IDENTIFIER ::= { cevMIBObjects 3 } @@ -195,13 +196,13 @@ cevChassisAs5800DS OBJECT IDENTIFIER ::= { cevChassis 50 } -- AS5800 Dial She cevChassis7202 OBJECT IDENTIFIER ::= { cevChassis 51 } -- Modular two slot router in the cisco7200 family cevChassisRpm OBJECT IDENTIFIER ::= { cevChassis 52 } -- Router Processor Module cevChassis1710 OBJECT IDENTIFIER ::= { cevChassis 53 } -- VPN(Virtual Private Network) Security Router with 1 FastEthernet and 1 Ethernet interface onboard -cevChassis1720 OBJECT IDENTIFIER ::= { cevChassis 54 } +cevChassis1720 OBJECT IDENTIFIER ::= { cevChassis 54 } cevChassisCat8540Msr OBJECT IDENTIFIER ::= { cevChassis 55 } -- Catalyst 8540 Multiservice Switching Router -cevChassisCat8540Csr OBJECT IDENTIFIER ::= { cevChassis 56 } -- Catalyst 8540 Campus Switching Router +cevChassisCat8540Csr OBJECT IDENTIFIER ::= { cevChassis 56 } -- Catalyst 8540 Campus Switching Router cevChassisUbr7246 OBJECT IDENTIFIER ::= { cevChassis 57 } -- Universal Broadband Router cevChassis7576 OBJECT IDENTIFIER ::= { cevChassis 58 } -- Dual Independent RSP platform, 13 slots cevChassis3660 OBJECT IDENTIFIER ::= { cevChassis 59 } -- Six slot MARs router -cevChassis1401 OBJECT IDENTIFIER ::= { cevChassis 60 } -- Router with 1 ethernet and 1 ATM25 interface +cevChassis1401 OBJECT IDENTIFIER ::= { cevChassis 60 } -- Router with 1 ethernet and 1 ATM25 interface cevChassis2613 OBJECT IDENTIFIER ::= { cevChassis 61 } -- c2600 chassis with 1 integrated token ring interface cevChassis2610 OBJECT IDENTIFIER ::= { cevChassis 62 } -- c2600 chassis with 1 integrated ethernet interface cevChassis2612 OBJECT IDENTIFIER ::= { cevChassis 63 } -- c2600 chassis with an integrated token ring and ethernet interface @@ -209,12 +210,12 @@ cevChassis2611 OBJECT IDENTIFIER ::= { cevChassis 64 } -- c2600 chassis with cevChassis2620 OBJECT IDENTIFIER ::= { cevChassis 65 } -- c2600 chassis with 1 integrated fast ethernet interface cevChassis2621 OBJECT IDENTIFIER ::= { cevChassis 66 } -- c2600 chassis with 2 integrated fast ethernet interfaces cevChassisCat8510Csr OBJECT IDENTIFIER ::= { cevChassis 67 } -- Catalyst 8510 Campus Switching Router -cevChassisUbr7223 OBJECT IDENTIFIER ::= { cevChassis 68 } -- Universal Broadband Router +cevChassisUbr7223 OBJECT IDENTIFIER ::= { cevChassis 68 } -- Universal Broadband Router cevChassis6400Nrp OBJECT IDENTIFIER ::= { cevChassis 69 } -- Cisco 6400 Network Routing Processor -cevChassis801 OBJECT IDENTIFIER ::= { cevChassis 70 } -- Cisco 800 platform with 1 ethernet and 1 BRI S/T -cevChassis802 OBJECT IDENTIFIER ::= { cevChassis 71 } -- Cisco 800 platform with 1 ethernet and 1 BRI U -cevChassis803 OBJECT IDENTIFIER ::= { cevChassis 72 } -- Cisco 800 platform with 1 ethernet 4-port HUB, 1 BRI S/T, and 2 POTs -cevChassis804 OBJECT IDENTIFIER ::= { cevChassis 73 } -- Cisco 800 platform with 1 ethernet 4-port HUB, 1 BRI U, and 2 POTs +cevChassis801 OBJECT IDENTIFIER ::= { cevChassis 70 } -- Cisco 800 platform with 1 ethernet and 1 BRI S/T +cevChassis802 OBJECT IDENTIFIER ::= { cevChassis 71 } -- Cisco 800 platform with 1 ethernet and 1 BRI U +cevChassis803 OBJECT IDENTIFIER ::= { cevChassis 72 } -- Cisco 800 platform with 1 ethernet 4-port HUB, 1 BRI S/T, and 2 POTs +cevChassis804 OBJECT IDENTIFIER ::= { cevChassis 73 } -- Cisco 800 platform with 1 ethernet 4-port HUB, 1 BRI U, and 2 POTs cevChassis7206Vxr OBJECT IDENTIFIER ::= { cevChassis 74 } -- Cisco 7200 platform, VXR series chassis with 6 slots cevChassis7204Vxr OBJECT IDENTIFIER ::= { cevChassis 75 } -- Cisco 7200 platform, VXR series chassis with 4 slots cevChassis1750 OBJECT IDENTIFIER ::= { cevChassis 76 } -- VoIP (Voice over IP) capable Cisco 1700 platform with 2 WIC/VIC slots and 1 VIC-only slot @@ -225,13 +226,13 @@ cevChassisCat2924MXL OBJECT IDENTIFIER ::= { cevChassis 80 } -- Catalyst 2924 cevChassisCat2912MfXL OBJECT IDENTIFIER ::= { cevChassis 81 } -- Catalyst 2912MF-XL switch with 12 100BaseFX autosensing switch ports and 2 uplink slots. Switch can run only enterprise edition software. cevChassis1538M OBJECT IDENTIFIER ::= { cevChassis 82 } -- Cisco Network Office 8-port 10/100 Stackable Repeater cevChassis1548M OBJECT IDENTIFIER ::= { cevChassis 83 } -- Cisco Network Office 10/100 Stackable Switch -cevChassisFasthub100 OBJECT IDENTIFIER ::= { cevChassis 84 } -- Cisco Fast Hub 100 Series 10/100 Stackable Repeater +cevChassisFasthub100 OBJECT IDENTIFIER ::= { cevChassis 84 } -- Cisco Fast Hub 100 Series 10/100 Stackable Repeater cevChassisPIXFirewall OBJECT IDENTIFIER ::= { cevChassis 85 } -- Cisco PIX Firewall -cevChassisMGX8850 OBJECT IDENTIFIER ::= { cevChassis 86 } -- Cisco Multiservice Gigabit Switch with 32 half height slots +cevChassisMGX8850 OBJECT IDENTIFIER ::= { cevChassis 86 } -- Cisco Multiservice Gigabit Switch with 32 half height slots cevChassisMGX8820 OBJECT IDENTIFIER ::= { cevChassis 87 } -- Cisco Multiservice Gigabit Switch with 7 slots cevChassisCat8510Msr OBJECT IDENTIFIER ::= { cevChassis 88 } -- Catalyst ATM 8510 Multiservice Switching Router cevChassisCat8515Msr OBJECT IDENTIFIER ::= { cevChassis 89 } -- Catalyst ATM 8515 Multiservice Switching Router -cevChassisIGX8410 OBJECT IDENTIFIER ::= { cevChassis 90 } -- Cisco IGX8400 (Integrated Gigabit eXchange) series wide-area switch with 8 slots +cevChassisIGX8410 OBJECT IDENTIFIER ::= { cevChassis 90 } -- Cisco IGX8400 (Integrated Gigabit eXchange) series wide-area switch with 8 slots cevChassisIGX8420 OBJECT IDENTIFIER ::= { cevChassis 91 } -- Cisco IGX8400 (Integrated Gigabit eXchange) series wide-area switch with 16 slots cevChassisIGX8430 OBJECT IDENTIFIER ::= { cevChassis 92 } -- Cisco IGX8400 (Integrated Gigabit eXchange) series wide-area switch with 32 slots cevChassisIGX8450 OBJECT IDENTIFIER ::= { cevChassis 93 } -- Cisco IGX8400 (Integrated Gigabit eXchange) series wide-area switch with integrated MGX feeder @@ -239,34 +240,34 @@ cevChassisBPX8620 OBJECT IDENTIFIER ::= { cevChassis 95 } -- Cisco BPX cevChassisBPX8650 OBJECT IDENTIFIER ::= { cevChassis 96 } -- Cisco BPX8600 (Broadband Packet eXchange) series wide-area switch with integrated tag switching controller and 15 slots cevChassisBPX8680 OBJECT IDENTIFIER ::= { cevChassis 97 } -- Cisco BPX8600 (Broadband Packet eXchange) series wide-area switch with integrated MGX feeder and 15 slots cevChassisCacheEngine OBJECT IDENTIFIER ::= { cevChassis 98 } -- Cisco Cache Engine -cevChassisCat6000 OBJECT IDENTIFIER ::= { cevChassis 99 } -- Cisco Catalyst 6000 +cevChassisCat6000 OBJECT IDENTIFIER ::= { cevChassis 99 } -- Cisco Catalyst 6000 cevChassisMC3810 OBJECT IDENTIFIER ::= { cevChassis 100 } -- Cisco Multiservice Access Concentrator 3800 series cevChassisIGXSes OBJECT IDENTIFIER ::= { cevChassis 102 } -- Cisco IGX (Integrated Gigabit eXchange) Service Expansion Slot controller/feeder, used in IGX8410/IGX8420/IGX8430 switches. cevChassisLocalDirector OBJECT IDENTIFIER ::= { cevChassis 103 } -- Cisco Local Director -cevChassis805 OBJECT IDENTIFIER ::= { cevChassis 104 } -- Cisco 800 platform with 1 ethernet and 1 serial WIC -cevChassisCat3508GXL OBJECT IDENTIFIER ::= { cevChassis 105 } -- Cisco Catalyst 3508G-XL 8 GBIC Gigabit Port Switch, can run Standard or Enterprise edition software. -cevChassisCat3512XL OBJECT IDENTIFIER ::= { cevChassis 106 } -- Cisco Catalyst 3512XL switch with 12 10/100BaseTX and 2 GBIC Gigabit ports, can run Standard or Enterprise edition software. +cevChassis805 OBJECT IDENTIFIER ::= { cevChassis 104 } -- Cisco 800 platform with 1 ethernet and 1 serial WIC +cevChassisCat3508GXL OBJECT IDENTIFIER ::= { cevChassis 105 } -- Cisco Catalyst 3508G-XL 8 GBIC Gigabit Port Switch, can run Standard or Enterprise edition software. +cevChassisCat3512XL OBJECT IDENTIFIER ::= { cevChassis 106 } -- Cisco Catalyst 3512XL switch with 12 10/100BaseTX and 2 GBIC Gigabit ports, can run Standard or Enterprise edition software. cevChassisCat3524XL OBJECT IDENTIFIER ::= { cevChassis 107 } -- Cisco Catalyst 3524XL switch with 24 10/100BaseTX and 2 GBIC Gigabit ports, can run Standard or Enterprise edition software. cevChassisCat2908XL OBJECT IDENTIFIER ::= { cevChassis 108 } -- Cisco Catalyst 2900XL series 8 port 10/100BaseTX switch cevChassisCat2916MXL OBJECT IDENTIFIER ::= { cevChassis 109 } -- Cisco Catalyst 2916M-XL 16 port 10/100BaseTX switch with 2 uplink slots -cevChassis1417 OBJECT IDENTIFIER ::= { cevChassis 111 } -- Cisco 1400 series router with 1 Ethernet and 1 ADSL interface, with 1417 chipset -cevChassisOpticalRegenerator OBJECT IDENTIFIER ::= { cevChassis 112 } -- Cisco Optical Regenerator +cevChassis1417 OBJECT IDENTIFIER ::= { cevChassis 111 } -- Cisco 1400 series router with 1 Ethernet and 1 ADSL interface, with 1417 chipset +cevChassisOpticalRegenerator OBJECT IDENTIFIER ::= { cevChassis 112 } -- Cisco Optical Regenerator cevChassis6100 OBJECT IDENTIFIER ::= { cevChassis 113 } -- Cisco 6100 DSLAM Chassis cevChassis6130 OBJECT IDENTIFIER ::= { cevChassis 114 } -- Cisco 6130 DSLAM Chassis cevChassis6260 OBJECT IDENTIFIER ::= { cevChassis 115 } -- Cisco 6260 DSLAM Chassis cevChassisCat2924XL OBJECT IDENTIFIER ::= { cevChassis 116 } -- Cisco Catalyst 2924XL with 24 10/100BaseTX switch ports; does not support port-based VLANs. cevChassisCat2924CXL OBJECT IDENTIFIER ::= { cevChassis 117 } -- Cisco Catalyst 2924C-XL; does not support port-based VLANs. -cevChassisUbr924 OBJECT IDENTIFIER ::= { cevChassis 118 } -- Cisco UBR Cable Modem which is a UBR904 with 2 FXS Voice ports +cevChassisUbr924 OBJECT IDENTIFIER ::= { cevChassis 118 } -- Cisco UBR Cable Modem which is a UBR904 with 2 FXS Voice ports cevChassisWsX6302Msm OBJECT IDENTIFIER ::= { cevChassis 119 } -- Catalyst 6000 or 6500 Series Multilayer Switch Module WS-X6302-MSM that directly interfaces to the switch's backplane to provide layer 3 switching. -cevChassisCat5kRsfc OBJECT IDENTIFIER ::= { cevChassis 120 } -- Catalyst 5000 Routing Switching Feature Card that is treated as a standalone system by the NMS -cevChassis7120Quadt1 OBJECT IDENTIFIER ::= { cevChassis 122 } -- 7120 Series chassis with 2 10/100 FE interfaces, 4 T1/E1 interfaces -cevChassis7120T3 OBJECT IDENTIFIER ::= { cevChassis 123 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 T3 interface +cevChassisCat5kRsfc OBJECT IDENTIFIER ::= { cevChassis 120 } -- Catalyst 5000 Routing Switching Feature Card that is treated as a standalone system by the NMS +cevChassis7120Quadt1 OBJECT IDENTIFIER ::= { cevChassis 122 } -- 7120 Series chassis with 2 10/100 FE interfaces, 4 T1/E1 interfaces +cevChassis7120T3 OBJECT IDENTIFIER ::= { cevChassis 123 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 T3 interface cevChassis7120E3 OBJECT IDENTIFIER ::= { cevChassis 124 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 E3 interface cevChassis7120At3 OBJECT IDENTIFIER ::= { cevChassis 125 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 T3 ATM interface -cevChassis7120Ae3 OBJECT IDENTIFIER ::= { cevChassis 126 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 E3 ATM interface +cevChassis7120Ae3 OBJECT IDENTIFIER ::= { cevChassis 126 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 E3 ATM interface cevChassis7120Smi3 OBJECT IDENTIFIER ::= { cevChassis 127 } -- 7120 Series chassis with 2 10/100 FE interfaces, 1 OC3SMI ATM interface cevChassis7140Dualt3 OBJECT IDENTIFIER ::= { cevChassis 128 } -- 7140 Series chassis with 2 10/100 FE interfaces, 2 T3 interfaces -cevChassis7140Duale3 OBJECT IDENTIFIER ::= { cevChassis 129 } -- 7140 Series chassis with 2 10/100 FE interfaces, 2 E3 interfaces +cevChassis7140Duale3 OBJECT IDENTIFIER ::= { cevChassis 129 } -- 7140 Series chassis with 2 10/100 FE interfaces, 2 E3 interfaces cevChassis7140Dualat3 OBJECT IDENTIFIER ::= { cevChassis 130 } -- 7140 Series chassis with 2 10/100 FE interfaces, 2 T3 ATM interfaces cevChassis7140Dualae3 OBJECT IDENTIFIER ::= { cevChassis 131 } -- 7140 Series chassis with 2 10/100 FE interfaces, 2 E3 ATM interfaces cevChassis7140Dualmm3 OBJECT IDENTIFIER ::= { cevChassis 132 } -- 7140 Series chassis with 2 10/100 FE interfaces, 2 OC3MM ATM interfaces @@ -277,10 +278,10 @@ cevChassisAs5400 OBJECT IDENTIFIER ::= { cevChassis 137 } -- Cisco AS5400 cevChassis7140Octt1 OBJECT IDENTIFIER ::= { cevChassis 138 } -- 7140 Series chassis with 8 integrated T1/E1 serial ports cevChassis7140Dualfe OBJECT IDENTIFIER ::= { cevChassis 139 } -- 7140 Series chassis with 2 integrated 10/100 FE interfaces cevChassisCat3548XL OBJECT IDENTIFIER ::= { cevChassis 140 } -- Catalyst 3548XL switch (WS-C3548-XL) -cevChassisCat6006 OBJECT IDENTIFIER ::= { cevChassis 141 } -- Catalyst 6000 with 6 slots -cevChassisCat6009 OBJECT IDENTIFIER ::= { cevChassis 142 } -- Catalyst 6000 with 9 slots -cevChassisCat6506 OBJECT IDENTIFIER ::= { cevChassis 143 } -- Catalyst 6000 Plus with 6 slots -cevChassisCat6509 OBJECT IDENTIFIER ::= { cevChassis 144 } -- Catalyst 6000 Plus with 9 slots +cevChassisCat6006 OBJECT IDENTIFIER ::= { cevChassis 141 } -- Catalyst 6000 with 6 slots +cevChassisCat6009 OBJECT IDENTIFIER ::= { cevChassis 142 } -- Catalyst 6000 with 9 slots +cevChassisCat6506 OBJECT IDENTIFIER ::= { cevChassis 143 } -- Catalyst 6000 Plus with 6 slots +cevChassisCat6509 OBJECT IDENTIFIER ::= { cevChassis 144 } -- Catalyst 6000 Plus with 9 slots cevChassis827 OBJECT IDENTIFIER ::= { cevChassis 145 } -- Cisco 800 platform with 1 ethernet, 1 ADSL DMT issue 2 cevChassisAS5200 OBJECT IDENTIFIER ::= { cevChassis 146 } -- Cisco AS5200 cevChassis12008 OBJECT IDENTIFIER ::= { cevChassis 147 } -- Cisco GSR 12008 @@ -301,13 +302,13 @@ cevChassisCVA122 OBJECT IDENTIFIER ::= { cevChassis 171 } -- Cisco CVA122 Cabl cevChassisCVA124 OBJECT IDENTIFIER ::= { cevChassis 172 } -- Cisco CVA124 Cable Voice Adapter (Residential Cable Modem with four voice ports) cevChassisAs5850 OBJECT IDENTIFIER ::= { cevChassis 173 } -- High End Dial Access Server cevChassisMGX8240 OBJECT IDENTIFIER ::= { cevChassis 176 } -- High Density Circuit Emulation Service Gateway chassis with two shelf controller slots and fifteen Service Modulesfor Private Line Service -cevChassisAs5350 OBJECT IDENTIFIER ::= { cevChassis 178 } -- Cisco low end Access server platform +cevChassisAs5350 OBJECT IDENTIFIER ::= { cevChassis 178 } -- Cisco low end Access server platform cevChassisMGX8950 OBJECT IDENTIFIER ::= { cevChassis 181 } -- Cisco Multiservice Gigabit Switch(180Gb) Chassis with 32 half height slots cevChassisUbr925 OBJECT IDENTIFIER ::= { cevChassis 182 } -- Cisco UBR925 Cable Modem/Router with VOIP and hardware accelerated IPSEC cevChassisUbr10012 OBJECT IDENTIFIER ::= { cevChassis 183 } -- Cisco uBR10000 platform with 8 broadband slots and 4 WAN slots cevChassisCat4kGateway OBJECT IDENTIFIER ::= { cevChassis 184 } -- Catalyst 4000 Access Gateway line card supporting voice and WAN (Wide Area Network) interfaces as well as conferencing and transcoding services for operation with the Cisco Call Manager cevChassis120168r OBJECT IDENTIFIER ::= { cevChassis 185 } -- Teracore ready 8 rail chassis for Cisco 12000 platform -cevChassis2650 OBJECT IDENTIFIER ::= { cevChassis 186 } -- c2650 platform with 1 integrated fast ethernet interface +cevChassis2650 OBJECT IDENTIFIER ::= { cevChassis 186 } -- c2650 platform with 1 integrated fast ethernet interface cevChassis2651 OBJECT IDENTIFIER ::= { cevChassis 187 } -- c2650 platform with 2 integrated fast ethernet interfaces cevChassis826 OBJECT IDENTIFIER ::= { cevChassis 189 } -- Cisco 800 platform with 1 ethernet, 1 ADSL over ISDN cevChassisCat295012 OBJECT IDENTIFIER ::= { cevChassis 190 } -- Cisco Catalyst c2950 switch with 12 10/100BaseTX ports (WS-c2950-12) @@ -345,7 +346,7 @@ cevChassisContentEngine OBJECT IDENTIFIER ::= { cevChassis 228 } -- Cisco Conte cevChassisIAD2420 OBJECT IDENTIFIER ::= { cevChassis 229 } -- Integrated Access Device 2420 (IAD2420) chassis with Analog (8/16) FXS ports with T1 or ADSL (Asymmetrical Digital Subscriber Line) Uplinks cevChassis677i OBJECT IDENTIFIER ::= { cevChassis 230 } -- Cisco 600 DSL CPE platform with ASDL, DMT issue 2 over ISDN, ethernet interface cevChassis674 OBJECT IDENTIFIER ::= { cevChassis 231 } -- Cisco 600 DSL CPE platform with G.SHDSL, ethernet interface -cevChassisDPA7630 OBJECT IDENTIFIER ::= { cevChassis 232 } -- The Cisco Digital PBX Adapter (DPA) enables the integration of Cisco Call Manager with Octel voice mail systems +cevChassisDPA7630 OBJECT IDENTIFIER ::= { cevChassis 232 } -- The Cisco Digital PBX Adapter (DPA) enables the integration of Cisco Call Manager with Octel voice mail systems cevChassisCat355024 OBJECT IDENTIFIER ::= { cevChassis 233 } -- Catalyst 3550 24 10/100 ports + 2 Gig uplinks fixed configuration Layer 2/Layer 3 Ethernet Switch cevChassisCat355048 OBJECT IDENTIFIER ::= { cevChassis 234 } -- Catalyst 3550 48 10/100 ports + 2 Gig uplinks fixed configuration Layer 2/Layer 3 Ethernet Switch cevChassisCat355012T OBJECT IDENTIFIER ::= { cevChassis 235 } -- Catalyst 3550 12 1000T ports fixed configuration Layer 2/Layer 3 Ethernet Switch @@ -360,7 +361,7 @@ cevChassis828 OBJECT IDENTIFIER ::= { cevChassis 248 } -- Cisco 800 platform wi cevChassisSOHO78 OBJECT IDENTIFIER ::= { cevChassis 249 } -- SOHO (Small Office Home Office) G.SHDSL Router, 1 Ethernet and 1 G.991.2 (G.shdsl) Interface, data only model cevChassis806 OBJECT IDENTIFIER ::= { cevChassis 250 } -- Cisco SOHO (Small Office Home Office) router with 4 hubbed 10BaseT Ethernet LAN interfaces and 1 10BaseT Ethernet WAN interface cevChassis12416 OBJECT IDENTIFIER ::= { cevChassis 251 } -- Cisco 12000 platform with 16 slots and 10G Fabric card -cevChassisCat2948gL3Dc OBJECT IDENTIFIER ::= { cevChassis 252 } -- A fixed-configuration Layer 3 Ethernet switch featuring IP, IPX, and IP mulitcast with 48 10/100BaseTX ports and 2 GBIC Gigabit ports using DC power +cevChassisCat2948gL3Dc OBJECT IDENTIFIER ::= { cevChassis 252 } -- A fixed-configuration Layer 3 Ethernet switch featuring IP, IPX, and IP mulitcast with 48 10/100BaseTX ports and 2 GBIC Gigabit ports using DC power cevChassisCat4908gL3Dc OBJECT IDENTIFIER ::= { cevChassis 253 } -- A fixed-configuration L3 Ethernet switch featuring IP,IPX and IP multicast with 8 GBIC ports using DC power cevChassis12406 OBJECT IDENTIFIER ::= { cevChassis 254 } -- Cisco 12400 platform with 6 slots cevChassisPIXFirewall506 OBJECT IDENTIFIER ::= { cevChassis 255 } -- Cisco PIX Firewall 506 @@ -376,7 +377,7 @@ cevChassisMWR1900 OBJECT IDENTIFIER ::= { cevChassis 264 } -- The Mobile Wirel cevChassis4224 OBJECT IDENTIFIER ::= { cevChassis 265 } -- A standalone 24 port powered Ethernet switch, router and voice gateway cevChassisWSC6513 OBJECT IDENTIFIER ::= { cevChassis 266 } -- Catalyst 6000 series chassis with 13 slots cevChassisCisco7603 OBJECT IDENTIFIER ::= { cevChassis 267 } -- Cisco Internet Router 7600 Series Chassis with 3 slots -cevChassisCisco7606 OBJECT IDENTIFIER ::= { cevChassis 268 } -- Cisco Internet Router 7600 Series Chassis with 6 slots +cevChassisCisco7606 OBJECT IDENTIFIER ::= { cevChassis 268 } -- Cisco Internet Router 7600 Series Chassis with 6 slots cevChassis7401ASR OBJECT IDENTIFIER ::= { cevChassis 269 } -- Cisco 7400 platform, ASR series with 1 slot cevChassis1105 OBJECT IDENTIFIER ::= { cevChassis 271 } -- CiscoWorks network management chassis cevChassisONS15540ESP OBJECT IDENTIFIER ::= { cevChassis 272 } -- Cisco ONS 15540 Extended Services Platform Chassis @@ -384,8 +385,8 @@ cevChassisCe507 OBJECT IDENTIFIER ::= { cevChassis 275 } -- Cisco Content Eng cevChassisCe560 OBJECT IDENTIFIER ::= { cevChassis 276 } -- Cisco Content Engine Model 560 cevChassisCe590 OBJECT IDENTIFIER ::= { cevChassis 277 } -- Cisco Content Engine Model 590 cevChassisCe7320 OBJECT IDENTIFIER ::= { cevChassis 278 } -- Cisco Content Engine Model 7320 -cevChassis2691 OBJECT IDENTIFIER ::= { cevChassis 279 } -- One Network Module slot, three WIC slot, two Fast Ethernet port MARS router -cevChassis3725 OBJECT IDENTIFIER ::= { cevChassis 280 } -- Two Network Module slot, three WIC slot, two Fast Ethernet port MARS router +cevChassis2691 OBJECT IDENTIFIER ::= { cevChassis 279 } -- One Network Module slot, three WIC slot, two Fast Ethernet port MARS router +cevChassis3725 OBJECT IDENTIFIER ::= { cevChassis 280 } -- Two Network Module slot, three WIC slot, two Fast Ethernet port MARS router cevChassis1760 OBJECT IDENTIFIER ::= { cevChassis 282 } -- Analog/digital voice capable, 19" rack-mount (1RU) Cisco 1700 platform with 2 WIC/VIC slots and 2 VIC-only slots cevChassisPIXFirewall501 OBJECT IDENTIFIER ::= { cevChassis 283 } -- Cisco PIX Firewall 501 cevChassis2610M OBJECT IDENTIFIER ::= { cevChassis 284 } -- c2600M chassis with 1 integrated ethernet interface @@ -400,7 +401,7 @@ cevChassisCE507AV OBJECT IDENTIFIER ::= { cevChassis 298 } -- Cisco Content En cevChassisCE560AV OBJECT IDENTIFIER ::= { cevChassis 299 } -- Cisco Content Engine Model 560-AV cevChassisIE2105 OBJECT IDENTIFIER ::= { cevChassis 300 } -- The Cisco Intelligence Engine 2100 series is a new form of network device that provides intelligent network interface to applications and users cevChassis3745 OBJECT IDENTIFIER ::= { cevChassis 301 } -- 3700 family four slot modular router -cevChassis10005 OBJECT IDENTIFIER ::= { cevChassis 302 } -- Cisco 10000 platform with 7 slots +cevChassis10005 OBJECT IDENTIFIER ::= { cevChassis 302 } -- Cisco 10000 platform with 7 slots cevChassis10008 OBJECT IDENTIFIER ::= { cevChassis 303 } -- Cisco 10000 platform with 7 slots cevChassis7304 OBJECT IDENTIFIER ::= { cevChassis 304 } -- Cisco 7300 Chassis cevChassis7505 OBJECT IDENTIFIER ::= { cevChassis 305 } -- Cisco 7505 Chassis @@ -410,7 +411,7 @@ cevChassis827H OBJECT IDENTIFIER ::= { cevChassis 312 } -- Cisco 800 platform cevChassisSOHO77H OBJECT IDENTIFIER ::= { cevChassis 313 } -- SOHO (Small Office Home Office) Router, 4-port 10Base-T Ethernet, and 1 ADSL over POTS Interface, data only model cevChassisCat4006 OBJECT IDENTIFIER ::= { cevChassis 314 } -- Catalyst 4000 with 6 slots (WS-C4006) cevChassisCat355024Mmf OBJECT IDENTIFIER ::= { cevChassis 315 } -- Catalyst 3550 24 10/100Mbps Multi Mode Fiber ports + 2 Gig uplinks fixed configuration Layer 2/Layer 3 Ethernet Switch -cevChassisWSC6503 OBJECT IDENTIFIER ::= { cevChassis 316 } -- Catalyst 6000 series chassis with 3 slots +cevChassisWSC6503 OBJECT IDENTIFIER ::= { cevChassis 316 } -- Catalyst 6000 series chassis with 3 slots cevChassisPIXFirewall506E OBJECT IDENTIFIER ::= { cevChassis 317 } -- Cisco PIX Firewall 506E cevChassisPIXFirewall515E OBJECT IDENTIFIER ::= { cevChassis 318 } -- Cisco PIX Firewall 515E cevChassisCat355024Dc OBJECT IDENTIFIER ::= { cevChassis 319 } -- Catalyst 3550 10/100Base-Tx ports + 2 Gig uplinks fixed configuration Layer 2/Layer 3 Ethernet Switch with DC power @@ -463,10 +464,10 @@ cevChassisDSC9509 OBJECT IDENTIFIER ::= { cevChassis 376 } -- DS-C9509 - MDS cevChassisDSC9513 OBJECT IDENTIFIER ::= { cevChassis 377 } -- DS-C9513 - MDS 9513 Chassis cevChassisONS15201 OBJECT IDENTIFIER ::= { cevChassis 378 } -- Cisco ONS 15201 Single Channel Unit cevChassisONS15252 OBJECT IDENTIFIER ::= { cevChassis 379 } -- Cisco ONS 15252 Multi Channel Unit -cevChassisMdsDSX9216 OBJECT IDENTIFIER ::= { cevChassis 380 } -- DS-X9216 - MDS 9216 Chassis +cevChassisMdsDSX9216 OBJECT IDENTIFIER ::= { cevChassis 380 } -- DS-X9216 - MDS 9216 Chassis cevChassisVG200 OBJECT IDENTIFIER ::= { cevChassis 381 } -- The Cisco VG200 chassis for Voice-over-IP (VoIP) Gateway -cevChassisAIRAP1210 OBJECT IDENTIFIER ::= { cevChassis 382 } -- 1200 series WLAN Access Point on Cisco IOS platform with 1 10/100TX port, 1 CardBus slot, 1 Mini PCI slot -cevChassisCat375048PS OBJECT IDENTIFIER ::= { cevChassis 383 } -- Catalyst 3750 48 10/100 ports with In-Line Power + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable Switch.(SFP Small Formfactor Pluggable) +cevChassisAIRAP1210 OBJECT IDENTIFIER ::= { cevChassis 382 } -- 1200 series WLAN Access Point on Cisco IOS platform with 1 10/100TX port, 1 CardBus slot, 1 Mini PCI slot +cevChassisCat375048PS OBJECT IDENTIFIER ::= { cevChassis 383 } -- Catalyst 3750 48 10/100 ports with In-Line Power + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable Switch.(SFP Small Formfactor Pluggable) cevChassisCat375024PS OBJECT IDENTIFIER ::= { cevChassis 384 } -- Catalyst 3750 24 10/100 ports with In-Line Power + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable Switch.(SFP Small Formfactor Pluggable) cevChassisCe510 OBJECT IDENTIFIER ::= { cevChassis 385 } -- Cisco Content Engine Model 510 cevChassisCe565 OBJECT IDENTIFIER ::= { cevChassis 386 } -- Cisco Content Engine Model 565 @@ -475,18 +476,18 @@ cevChassisCe7325 OBJECT IDENTIFIER ::= { cevChassis 388 } -- Cisco Content Eng cevChassisCe4630 OBJECT IDENTIFIER ::= { cevChassis 389 } -- Cisco Content Engine Model 4630 cevChassisCe4650 OBJECT IDENTIFIER ::= { cevChassis 390 } -- Cisco Content Engine Model 4650 cevChassisCat297024 OBJECT IDENTIFIER ::= { cevChassis 391 } -- Catalyst 2970 24 10/100/1000 ports fixed configuration Layer 2 Ethernet Switch -cevChassisCisco7613 OBJECT IDENTIFIER ::= { cevChassis 392 } -- Cisco Internet router 7600 Series Chassis with 13 slots +cevChassisCisco7613 OBJECT IDENTIFIER ::= { cevChassis 392 } -- Cisco Internet router 7600 Series Chassis with 13 slots cevChassisCat3750Ge12Sfp OBJECT IDENTIFIER ::= { cevChassis 394 } -- Catalyst 3750 12 Ethernet Gigabit SFP ports stackable switch.(SFP: Small Form factor Pluggable) cevChassisCr4450 OBJECT IDENTIFIER ::= { cevChassis 395 } -- Cisco Content Router Model 4450 cevChassisAIRBR1410 OBJECT IDENTIFIER ::= { cevChassis 396 } -- 1410 Series Wireless LAN Bridge on Cisco IOS platform with 1 10/100Tx port and 1 5-GHz radio cevChassisWSC6509neba OBJECT IDENTIFIER ::= { cevChassis 397 } -- Catalyst 6500 series chassis with 9 slots -cevChassisCat4510 OBJECT IDENTIFIER ::= { cevChassis 398 } -- Catalyst 4000 with 10 slots ( WS-C4510R ) +cevChassisCat4510 OBJECT IDENTIFIER ::= { cevChassis 398 } -- Catalyst 4000 with 10 slots ( WS-C4510R ) cevChassisCisco1711 OBJECT IDENTIFIER ::= { cevChassis 399 } -- Enhanced security router with 4 FastEthernet switch ports, 1 Analog modem port, 1 FastEthernet port and a hardware encryption module cevChassisCisco1712 OBJECT IDENTIFIER ::= { cevChassis 400 } -- Enhanced security router with 4 FastEthernet switch ports, 1 Basic Rate Interface(S/T) data port, 1 FastEthernet port and a hardware encryption module. cevChassisCisco1701 OBJECT IDENTIFIER ::= { cevChassis 401 } -- c1701 is a re-packaging of existing products to create a fixed configuration sku. It has ADSLoPOTs WIC and ISDN BRI (S/T) WIC riveted into it. cevChassis29408TT OBJECT IDENTIFIER ::= { cevChassis 402 } -- Catalyst 2940 L2 switch with 8 10/100 copper ports and 1 10/100/1000 copper uplink port. cevChassis29408TF OBJECT IDENTIFIER ::= { cevChassis 403 } -- Catalyst 2940 L2 switch with 8 10/100 copper ports, 1 100 FX Uplink port and 1 Gigabit SFP Module slot. -cevChassis3825 OBJECT IDENTIFIER ::= { cevChassis 404 } -- Two Network Module Slots, Four WIC slots, Two Gigabit Ethernet ports 3800 family router +cevChassis3825 OBJECT IDENTIFIER ::= { cevChassis 404 } -- Two Network Module Slots, Four WIC slots, Two Gigabit Ethernet ports 3800 family router cevChassis3845 OBJECT IDENTIFIER ::= { cevChassis 405 } -- Four Network Module Slots, Four WIC slots, Two Gigabit Ethernet ports 3800 family router cevChassis2430Iad24Fxs OBJECT IDENTIFIER ::= { cevChassis 406 } -- cIAD2430 with 24FXS, 2FE cevChassis2431Iad8Fxs OBJECT IDENTIFIER ::= { cevChassis 407 } -- cIAD2431 with 8FXS, 2FE, 1T1/E1, 1 vwic slot @@ -506,8 +507,8 @@ cevChassisCat297024TS OBJECT IDENTIFIER ::= { cevChassis 420 } -- Catalyst 2970 cevChassisCrs116Fabric OBJECT IDENTIFIER ::= { cevChassis 421 } -- CRS1 16 slots Fabric Chassis cevChassisCrs116LineCard OBJECT IDENTIFIER ::= { cevChassis 422 } -- CRS1 16 slots Line Card Chassis cevChassisCrs18LineCard OBJECT IDENTIFIER ::= { cevChassis 423 } -- CRS1 8 slots Line Card Chassis -cevChassisCat356048PS OBJECT IDENTIFIER ::= { cevChassis 424 } -- Catalyst 3560 48 10/100 ports with In-Line Power + 4 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch.(SFP Small Formfactor Pluggable) -cevChassisCat356024PS OBJECT IDENTIFIER ::= { cevChassis 425 } -- Catalyst 3560 24 10/100 ports with In-Line Power + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch.(SFP Small Formfactor Pluggable) +cevChassisCat356048PS OBJECT IDENTIFIER ::= { cevChassis 424 } -- Catalyst 3560 48 10/100 ports with In-Line Power + 4 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch.(SFP Small Formfactor Pluggable) +cevChassisCat356024PS OBJECT IDENTIFIER ::= { cevChassis 425 } -- Catalyst 3560 24 10/100 ports with In-Line Power + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch.(SFP Small Formfactor Pluggable) cevChassisAIRBR1300 OBJECT IDENTIFIER ::= { cevChassis 426 } -- Cisco Aironet 1300 Series Wireless Bridge with 1 10/100TX Ethernet port, 1 IEEE 802.11g radio port cevChassis12004 OBJECT IDENTIFIER ::= { cevChassis 427 } -- Cisco 12000 platform with 4 slots cevChassis12006 OBJECT IDENTIFIER ::= { cevChassis 428 } -- Cisco 12000 platform with 6 slots @@ -527,11 +528,11 @@ cevChassisCat375024ME OBJECT IDENTIFIER ::= { cevChassis 439 } -- Metro Etherne cevChassisMdsDSC9216AK9 OBJECT IDENTIFIER ::= { cevChassis 442 } -- DS-C9216A-K9 - MDS 9216A Chassis cevChassis3201WMIC OBJECT IDENTIFIER ::= { cevChassis 443 } -- Cisco 3201 Wireless MIC (Mobile Interface card) with 802.11g wireless interface in the PC104+ form factor. An interface card for the existing MAR 3200 products(Mobile Access Router) cevChassisCat3750G16TD OBJECT IDENTIFIER ::= { cevChassis 444 } -- Cisco Catalyst 3750 switch with 16 gigabit and one 10G ethernet port (WS-C3750G-16TD) -cevChassis1718 OBJECT IDENTIFIER ::= { cevChassis 445 } -- Voice capable Cisco 1700 Router with 4 FastEthernet switch ports, 1 FastEthernet port and 4 FXS-DID ports +cevChassis1718 OBJECT IDENTIFIER ::= { cevChassis 445 } -- Voice capable Cisco 1700 Router with 4 FastEthernet switch ports, 1 FastEthernet port and 4 FXS-DID ports cevChassisIGESM OBJECT IDENTIFIER ::= { cevChassis 446 } -- Cisco Systems Intelligent Gigabit Ethernet Switch Module for IBM eServer BladeCenter (OS-CIGESM-18TT-E) cevChassisASA5510 OBJECT IDENTIFIER ::= { cevChassis 447 } -- This is Adaptive Security Appliance (ASA) 5510. This security appliance combines functions of firewall, intrusion prevention, VPN hub and remote access hub. This is a standalone appliance with no linecards cevChassisASA5520 OBJECT IDENTIFIER ::= { cevChassis 448 } -- This is Adaptive Security Appliance (ASA) 5520. This security appliance combines functions of firewall, IDS sensor, VPN hub and remote access hub. This is a modular chassis with a slot for one line card -cevChassisASA5540 OBJECT IDENTIFIER ::= { cevChassis 449 } -- This is Adaptive Security Appliance (ASA) 5540. This security appliance combines functions of firewall, intrusion prevention, VPN hub and remote access hub. This is a modular chassis with a slot for one line card +cevChassisASA5540 OBJECT IDENTIFIER ::= { cevChassis 449 } -- This is Adaptive Security Appliance (ASA) 5540. This security appliance combines functions of firewall, intrusion prevention, VPN hub and remote access hub. This is a modular chassis with a slot for one line card cevChassis1841 OBJECT IDENTIFIER ::= { cevChassis 450 } -- 1700 Next Generation data only router with 2 slots cevChassis2801 OBJECT IDENTIFIER ::= { cevChassis 451 } -- 1700 Next Generation voice enabled router with 4 slots cevChassisCe511K9 OBJECT IDENTIFIER ::= { cevChassis 452 } -- Cisco Content Engine Model CE-511-K9 @@ -547,7 +548,7 @@ cevChassisCat297048TS OBJECT IDENTIFIER ::= { cevChassis 461 } -- Catalyst 297 cevChassisDSX9132K9 OBJECT IDENTIFIER ::= { cevChassis 462 } -- DS-X9132-K9 MDS 9132 Chassis cevChassisDSX9116K9 OBJECT IDENTIFIER ::= { cevChassis 463 } -- DS-X9116-K9 MDS 9116 Chassis cevChassisBMGX8830 OBJECT IDENTIFIER ::= { cevChassis 464 } -- Cisco Multiservice Switch (Model B) with 14 half height slots -cevChassisBMGX8850 OBJECT IDENTIFIER ::= { cevChassis 465 } -- Cisco Multiservice Gigabit Switch (Model B) with 32 half height slots +cevChassisBMGX8850 OBJECT IDENTIFIER ::= { cevChassis 465 } -- Cisco Multiservice Gigabit Switch (Model B) with 32 half height slots cevChassisWsC4948 OBJECT IDENTIFIER ::= { cevChassis 466 } -- Cisco Catalyst 4000 series fixed configuration switch with 48 wirespeed 10/100/1000BaseT ports and 4 wirespeed 1000BaseX SFP ports cevChassisCe501K9 OBJECT IDENTIFIER ::= { cevChassis 467 } -- Cisco Content Engine Model CE-501-K9 cevChassisCat3560G24PS OBJECT IDENTIFIER ::= { cevChassis 468 } -- Catalyst 3560 24 10/100/1000 Power over Ethernet ports + 4 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch. (SFP Small Formfactor Pluggable) @@ -557,17 +558,17 @@ cevChassisCat3560G48TS OBJECT IDENTIFIER ::= { cevChassis 471 } -- Catalyst 35 cevChassisDSC9216iK9 OBJECT IDENTIFIER ::= { cevChassis 472 } -- 2-Slot MDS fabric switch chassis cevChassisAs5400XM OBJECT IDENTIFIER ::= { cevChassis 473 } -- Chassis for Cisco AS5400XM cevChassisAs5350XM OBJECT IDENTIFIER ::= { cevChassis 474 } -- Chassis for Cisco AS5350XM -cevChassisAIRAP1130 OBJECT IDENTIFIER ::= { cevChassis 475 } -- Cisco Aironet 1130 series WLAN Access Point with 1 10/100TX port, dual IEEE 802.11a and 802.11g radio port -cevChassisCisco7604 OBJECT IDENTIFIER ::= { cevChassis 476 } -- Cisco 7604 chassis, a 4-slot chassis. -cevChassisWsC494810GE OBJECT IDENTIFIER ::= { cevChassis 477 } -- Catalyst 4000 series fixed configuration switch with 48 10/100/1000BaseT wirespeed ports and two 10Gbps ports +cevChassisAIRAP1130 OBJECT IDENTIFIER ::= { cevChassis 475 } -- Cisco Aironet 1130 series WLAN Access Point with 1 10/100TX port, dual IEEE 802.11a and 802.11g radio port +cevChassisCisco7604 OBJECT IDENTIFIER ::= { cevChassis 476 } -- Cisco 7604 chassis, a 4-slot chassis. +cevChassisWsC494810GE OBJECT IDENTIFIER ::= { cevChassis 477 } -- Catalyst 4000 series fixed configuration switch with 48 10/100/1000BaseT wirespeed ports and two 10Gbps ports cevChassisCat3750G24TS1U OBJECT IDENTIFIER ::= { cevChassis 478 } -- Catalyst 3750 24 10/100/1000 Ethernet ports + 4 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable Switch. (SFP Small Formfactor Pluggable) -- removed can reuse assignment -cevChassis371098HP001 OBJECT IDENTIFIER ::= { cevChassis 480 } -- 24 port Gigabit Ethernet switch module for HP ProLiant BL p-class server chassis +cevChassis371098HP001 OBJECT IDENTIFIER ::= { cevChassis 480 } -- 24 port Gigabit Ethernet switch module for HP ProLiant BL p-class server chassis cevChassisSB101 OBJECT IDENTIFIER ::= { cevChassis 481 } -- (Small Buisness) Router, with 4-port 10/100 Base-T Ethernet Switch, 1 10Base-T Ethernet WAN interface cevChassisSB106 OBJECT IDENTIFIER ::= { cevChassis 482 } -- (Small Buisness) Router, with 4-port 10/100 Base-T Ethernet Switch, 1 ADSL over ISDN interface, 1 ISDN BRI S/T interface cevChassisSB107 OBJECT IDENTIFIER ::= { cevChassis 483 } -- (Small Buisness) Router, with 4-port 10/100 Base-T Ethernet Switch, 1 ADSL over POTS interface, data only model -cevChassisCat356024TS OBJECT IDENTIFIER ::= { cevChassis 484 } -- Catalyst 3560 24 10/100 ports + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch. (SFP Small Formfactor Pluggable) -cevChassisCat356048TS OBJECT IDENTIFIER ::= { cevChassis 485 } -- Catalyst 3560 48 10/100 ports + 4 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch. (SFP Small Formfactor Pluggable) +cevChassisCat356024TS OBJECT IDENTIFIER ::= { cevChassis 484 } -- Catalyst 3560 24 10/100 ports + 2 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch. (SFP Small Formfactor Pluggable) +cevChassisCat356048TS OBJECT IDENTIFIER ::= { cevChassis 485 } -- Catalyst 3560 48 10/100 ports + 4 Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Switch. (SFP Small Formfactor Pluggable) cevChassisONS15310 OBJECT IDENTIFIER ::= { cevChassis 486 } -- Cisco ONS 15310 Platform Chassis cevChassis1801 OBJECT IDENTIFIER ::= { cevChassis 487 } -- Cisco 1800 platform with 1 ADSL over POTS WAN interface, 8-port 10/100 BASE-T LAN Ethernet switch, 1 ISDN BRI S/T interface, 2 USB ports and an optional Wireless LAN card. cevChassis1802 OBJECT IDENTIFIER ::= { cevChassis 488 } -- Cisco 1800 platform with 1 ADSL over ISDN WAN interface, 8-port 10/100 BASE-T LAN Ethernet switch, 1 ISDN BRI S/T interface, 2 USB ports and an optional Wireless LAN card. @@ -585,7 +586,7 @@ cevChassisIDS4250SX OBJECT IDENTIFIER ::= { cevChassis 500 } -- Cisco Intrusio cevChassisIDS4250XL OBJECT IDENTIFIER ::= { cevChassis 501 } -- Cisco Intrusion Detection System 4250 with accelerator card cevChassisIDS4255 OBJECT IDENTIFIER ::= { cevChassis 502 } -- Cisco Intrusion Prevention System 4255 cevChassisCat375024FS OBJECT IDENTIFIER ::= { cevChassis 503 } -- Catalyst 3750 24 100BaseFX ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet switch. (SFP:Small Formfactor Pluggable) -cevChassisWSC6504E OBJECT IDENTIFIER ::= { cevChassis 504 } -- 4 slots chassis in Catalyst 6500 family +cevChassisWSC6504E OBJECT IDENTIFIER ::= { cevChassis 504 } -- 4 slots chassis in Catalyst 6500 family cevChassisIGESMSFP OBJECT IDENTIFIER ::= { cevChassis 505 } -- Cisco Systems Intelligent Gigabit Ethernet Switch Module with SFPs for IBM eServer BladeCenter (OS-CIGESM-18-SFP-E) cevChasisFe6326K9 OBJECT IDENTIFIER ::= { cevChassis 506 } -- Cisco File Engine Model FE-6326-K9 cevChassisFe7326K9 OBJECT IDENTIFIER ::= { cevChassis 508 } -- Cisco File Engine Model FE-7326-K9 @@ -593,7 +594,7 @@ cevChassisFe511K9 OBJECT IDENTIFIER ::= { cevChassis 509 } -- Cisco File Engin cevChassisSCEDispatcher OBJECT IDENTIFIER ::= { cevChassis 510 } -- Cisco Service Control Engine Dispatcher cevChassisSCE2000 OBJECT IDENTIFIER ::= { cevChassis 511 } -- Cisco SCE2000 Service Control Engine cevChassisSCE1000 OBJECT IDENTIFIER ::= { cevChassis 512 } -- Cisco SCE1000 Service Control Engine -cevChassisAIRAP1240 OBJECT IDENTIFIER ::= { cevChassis 513 } -- Cisco Aironet 1240 series WLAN Access Point with 1 10/100TX port, dual IEEE 802.11a and 802.11g radio ports, external antenna connectors +cevChassisAIRAP1240 OBJECT IDENTIFIER ::= { cevChassis 513 } -- Cisco Aironet 1240 series WLAN Access Point with 1 10/100TX port, dual IEEE 802.11a and 802.11g radio ports, external antenna connectors cevChassisDSC902020K9 OBJECT IDENTIFIER ::= { cevChassis 514 } -- DS-C9020-20K9 - MDS 9020-20K9, 20-Port 4 Gbps Fibre Channel Fabric Switch, Commercial cevChassisFe611K9 OBJECT IDENTIFIER ::= { cevChassis 515 } -- Cisco File Engine Model FE-611-K9 cevChassisCat3750Ge12SfpDc OBJECT IDENTIFIER ::= { cevChassis 520 } -- Catalyst 3750 12 Gigabit Ethernet SFP (small Form Factor Plugable) port chassis @@ -633,7 +634,7 @@ cevChassisWS3030DEL OBJECT IDENTIFIER ::= { cevChassis 562 } -- Cisco Catalyst cevChassisWLSE1133 OBJECT IDENTIFIER ::= { cevChassis 563 } -- Chassis for Cisco WLSE 1133 cevChassisASA5550 OBJECT IDENTIFIER ::= { cevChassis 564 } -- This is an Adaptive Security Appliance (ASA) 5550. This security appliance combines firewall, VPN and remote access capabilities.It is a fixed configuration device containing one ASA-SSM-4GE module. cevChassisWae612K9 OBJECT IDENTIFIER ::= { cevChassis 565 } -- Cisco Wide Area Engine Model WAE-612-K9 -cevChassisAirap1250 OBJECT IDENTIFIER ::= { cevChassis 567 } -- Cisco Aironet 1250 series WLAN Access Point with one 10/100/1000TX port and dual IEEE 802.11n radio ports +cevChassisAirap1250 OBJECT IDENTIFIER ::= { cevChassis 567 } -- Cisco Aironet 1250 series WLAN Access Point with one 10/100/1000TX port and dual IEEE 802.11n radio ports cevChassisCe512K9 OBJECT IDENTIFIER ::= { cevChassis 568 } -- Cisco Content Engine Model CE-512-K9 cevChassisFe512K9 OBJECT IDENTIFIER ::= { cevChassis 569 } -- Cisco File Engine Model FE-512-K9 cevChassisCe612K9 OBJECT IDENTIFIER ::= { cevChassis 570 } -- Cisco Content Engine Model CE-612-K9 @@ -651,9 +652,9 @@ cevChassisSpaIPSEC2g2 OBJECT IDENTIFIER ::= { cevChassis 582 } -- cevChassisOe511K9 OBJECT IDENTIFIER ::= { cevChassis 583 } -- Cisco Optimization Engine Model OE-511-K9 cevChassisOe611K9 OBJECT IDENTIFIER ::= { cevChassis 584 } -- Cisco Optimization Engine Model OE-611-K9 cevChassisOe7326K9 OBJECT IDENTIFIER ::= { cevChassis 585 } -- Cisco Optimization Engine Model OE-7326-K9 -cevChassisMe492410GE OBJECT IDENTIFIER ::= { cevChassis 586 } -- Metro Ethernet fixed configuration box (ME-4924-10GE) with 2 Ten Gigabit X2 ports and 24+4 One Gigabit SFP ports. +cevChassisMe492410GE OBJECT IDENTIFIER ::= { cevChassis 586 } -- Metro Ethernet fixed configuration box (ME-4924-10GE) with 2 Ten Gigabit X2 ports and 24+4 One Gigabit SFP ports. cevChassisDSC9124 OBJECT IDENTIFIER ::= { cevChassis 587 } -- Chassis of 24-port 1/2/4 Gig Supervisor Storage Switch -cevChassisCat3750E48TD OBJECT IDENTIFIER ::= { cevChassis 588 } -- Catalyst 3750E 48 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch. +cevChassisCat3750E48TD OBJECT IDENTIFIER ::= { cevChassis 588 } -- Catalyst 3750E 48 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch. cevChassisCat3750E24TD OBJECT IDENTIFIER ::= { cevChassis 589 } -- Catalyst 3750E 24 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch. cevChassisCat3750E24PD OBJECT IDENTIFIER ::= { cevChassis 590 } -- Catalyst 3750E 24 10/100/1000 Power over Ethernet ports + 2 TenGigabit Ethernet (X2) ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch. cevChassisCat3750E48PD OBJECT IDENTIFIER ::= { cevChassis 591 } -- Catalyst 3750E 48 10/100/1000 Power over Ethernet ports + 2 TenGigabit Ethernet (X2) ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch. @@ -664,7 +665,7 @@ cevChassisCat3560E48PD OBJECT IDENTIFIER ::= { cevChassis 595 } -- Cata cevChassisCat35608PC OBJECT IDENTIFIER ::= { cevChassis 596 } -- Catalyst 3560 8 10/100 Power over Ethernet ports + 1 dual purpose Gigabit Ethernet Ports fixed configuration Layer 2 /Layer 3 Ethernet Switch. cevChassisCat29608TC OBJECT IDENTIFIER ::= { cevChassis 597 } -- Catalyst 2960 8 10/100 Ethernet ports + 1 dual purpose Gigabit Ethernet Port fixed configuration Layer 2 Ethernet Switch. cevChassisCat2960G8TC OBJECT IDENTIFIER ::= { cevChassis 598 } -- Catalyst 2960 7 10/100/1000 Ethernet ports + 1 dual purpose Gigabit Ethernet Port fixed configuration Layer 2 Ethernet Switch. -cevChassisCisco7606S OBJECT IDENTIFIER ::= { cevChassis 599 } -- Cisco Internet Router 7600 S-series Chassis with 6 slots +cevChassisCisco7606S OBJECT IDENTIFIER ::= { cevChassis 599 } -- Cisco Internet Router 7600 S-series Chassis with 6 slots cevChassisCisco7609S OBJECT IDENTIFIER ::= { cevChassis 600 } -- Cisco Internet Router 7600 S-series Chassis with 9 slots cevChassisDSIBMFC OBJECT IDENTIFIER ::= { cevChassis 601 } -- Chassis of Cisco 4Gb Fibre Channel Switch Module for IBM BladeCenter cevChassisIPSVirtual OBJECT IDENTIFIER ::= { cevChassis 602 } -- Cisco Intrusion Prevention System virtual sensor @@ -675,11 +676,11 @@ cevChassisMe3400g2csA OBJECT IDENTIFIER ::= { cevChassis 607 } -- Metro cevChassis7201 OBJECT IDENTIFIER ::= { cevChassis 608 } -- Cisco 7201 platform, 1 Rack Unit (RU) application specific router with 1 slot cevChassisNmWae OBJECT IDENTIFIER ::= { cevChassis 609 } -- Cisco Content Engine Network Module cevChassisACE4710K9 OBJECT IDENTIFIER ::= { cevChassis 610 } -- ACE 4710 Application Control Engine Appliance -cevChassisN7Kc7010 OBJECT IDENTIFIER ::= { cevChassis 612 } -- Nexus7000 10 slot N7K chassis +cevChassisN7Kc7010 OBJECT IDENTIFIER ::= { cevChassis 612 } -- Nexus7000 10 slot N7K chassis cevChassisUbr7225Vxr OBJECT IDENTIFIER ::= { cevChassis 613 } -- Cisco 7225 Universal Broadband Router, VXR series cevChassisWSC6509ve OBJECT IDENTIFIER ::= { cevChassis 615 } -- Catalyst 6500 enhanced 9-slot vertical chassis cevChassisDSC9134 OBJECT IDENTIFIER ::= { cevChassis 616 } -- Chassis of 32-port 1/2/4 with 10 Gig Supervisor Storage -cevChassisCisco7603S OBJECT IDENTIFIER ::= { cevChassis 617 } -- Cisco Internet Router 7600 S-series Chassis with 3 slots +cevChassisCisco7603S OBJECT IDENTIFIER ::= { cevChassis 617 } -- Cisco Internet Router 7600 S-series Chassis with 3 slots cevChassis5740 OBJECT IDENTIFIER ::= { cevChassis 620 } -- Integrated Encryption Router cevChassis867 OBJECT IDENTIFIER ::= { cevChassis 623 } -- c867 with 1 ADSL2/2+ AnnexA, 4 switch ports, 1 Console/Aux port, and an optional Wireless LAN cevChassis881 OBJECT IDENTIFIER ::= { cevChassis 624 } -- c881 with 1 FE, 4 switch ports, 1 USB 1.1 port, 1 Console/Aux port, and an optional Wireless LAN @@ -709,16 +710,16 @@ cevChassis885EJ3 OBJECT IDENTIFIER ::= { cevChassis 648 } -- c885-E/J-3 cevChassis7816H OBJECT IDENTIFIER ::= { cevChassis 649 } -- MCS-7816H class of servers Starting with CCM 6.0 release cevChassisSce8000 OBJECT IDENTIFIER ::= { cevChassis 650 } -- Cisco SCE8000 Service Control Engine cevChassisMdsDSC9222i OBJECT IDENTIFIER ::= { cevChassis 651 } -- MDS 9222i 18-port FC and 4-port GE + 1-slot Modular Switch -cevChassis860Ap OBJECT IDENTIFIER ::= { cevChassis 653 } -- Cisco 860 AP is the embedded wireless access point module for Cisco 860 router. It has one IEEE 802.11 b/g/n radio port which operates in 2.4 GHz. +cevChassis860Ap OBJECT IDENTIFIER ::= { cevChassis 653 } -- Cisco 860 AP is the embedded wireless access point module for Cisco 860 router. It has one IEEE 802.11 b/g/n radio port which operates in 2.4 GHz. cevChassis880Ap OBJECT IDENTIFIER ::= { cevChassis 654 } -- Cisco 880 AP is the embedded wireless access point module for Cisco 860 router. It has one IEEE 802.11 b/g/n radio port which operates in 2.4 GHz. cevChassis890Ap OBJECT IDENTIFIER ::= { cevChassis 655 } -- Cisco 890 AP is the embedded wireless access point module for Cisco 890 router. It has one IEEE 802.11 b/g/n radio port which operates in 2.4 GHz and one IEEE 802.11 a/n radio port which operates in 5 GHz -cevChassis1900Ap OBJECT IDENTIFIER ::= { cevChassis 656 } -- Cisco 1900 AP is the embedded wireless access point module for Cisco 1900 router. It has one IEEE 802.11 b/g/n radio port which operates in 2.4 GHz and one IEEE 802.11 a/n radio port which operates in 5 GHz +cevChassis1900Ap OBJECT IDENTIFIER ::= { cevChassis 656 } -- Cisco 1900 AP is the embedded wireless access point module for Cisco 1900 router. It has one IEEE 802.11 b/g/n radio port which operates in 2.4 GHz and one IEEE 802.11 a/n radio port which operates in 5 GHz cevChassis340024FSA OBJECT IDENTIFIER ::= { cevChassis 657 } -- Metro Ethernet 3400, 24 100BaseFX Fast Ethernet + 2 SFP ports fixed configuration Layer 2/3 Ethernet switch, AC power cevChassisCat4503e OBJECT IDENTIFIER ::= { cevChassis 658 } -- Catalyst 4500 E-series with 3 slots ( WS-C4503-E ) cevChassisCat4506e OBJECT IDENTIFIER ::= { cevChassis 659 } -- Catalyst 4500 E-series with 6 slots ( WS-C4506-E ) cevChassisCat4507re OBJECT IDENTIFIER ::= { cevChassis 660 } -- Catalyst 4500 E-series with 7 slots with redundant supervisors (WS-C4507R-E ) cevChassisCat4510re OBJECT IDENTIFIER ::= { cevChassis 661 } -- Catalyst 4500 E-series with 10 slots with redundant supervisors (WS-C4510R-E ) -cevChassisUc520s8U4FxoK9 OBJECT IDENTIFIER ::= { cevChassis 662 } -- UC500 with support for 8 switch ports and 4 FXO ports +cevChassisUc520s8U4FxoK9 OBJECT IDENTIFIER ::= { cevChassis 662 } -- UC500 with support for 8 switch ports and 4 FXO ports cevChassisUc520s8U4FxoWK9 OBJECT IDENTIFIER ::= { cevChassis 663 } -- UC500 with support for 8 switch ports, 4 FXO ports, and Wi-Fi cevChassisUc520s8U2BriK9 OBJECT IDENTIFIER ::= { cevChassis 664 } -- UC500 with support for 8 switch ports and 2 BRI cevChassisUc520s8U2BriWK9 OBJECT IDENTIFIER ::= { cevChassis 665 } -- UC500 with support for 8 switch ports and 2 BRI, and Wi-Fi @@ -740,11 +741,11 @@ cevChassisCE5208PC OBJECT IDENTIFIER ::= { cevChassis 680 } -- Catalyst Expre cevChassis7828H OBJECT IDENTIFIER ::= { cevChassis 681 } -- MCS-7828H class of servers Starting with CCM 6.0 release cevChassis7816I OBJECT IDENTIFIER ::= { cevChassis 682 } -- MCS-7816I class of servers Starting with CCM 6.0 release cevChassis7828I OBJECT IDENTIFIER ::= { cevChassis 683 } -- MCS-7828I class of servers Starting with CCM 6.0 release -cevChassis1861Uc2BK9 OBJECT IDENTIFIER ::= { cevChassis 684 } -- C1861 UC with support for 2 BRI ports and CUE +cevChassis1861Uc2BK9 OBJECT IDENTIFIER ::= { cevChassis 684 } -- C1861 UC with support for 2 BRI ports and CUE cevChassis1861Uc4FK9 OBJECT IDENTIFIER ::= { cevChassis 685 } -- C1861 UC with support for 4 FXO ports and CUE cevChassis1861Srst2BK9 OBJECT IDENTIFIER ::= { cevChassis 686 } -- C1861 SRST with support for 2 BRI ports cevChassis1861Srst4FK9 OBJECT IDENTIFIER ::= { cevChassis 687 } -- C1861 SRST with support for 4 FXO ports -cevChassisOe7330K9 OBJECT IDENTIFIER ::= { cevChassis 688 } -- Cisco Optimization Engine Model OE-7330-K9 +cevChassisOe7330K9 OBJECT IDENTIFIER ::= { cevChassis 688 } -- Cisco Optimization Engine Model OE-7330-K9 cevChassisOe7350K9 OBJECT IDENTIFIER ::= { cevChassis 689 } -- Cisco Optimization Engine Model OE-7350-K9 cevChassisCat296048TCS OBJECT IDENTIFIER ::= { cevChassis 694 } -- WS-C2960-48TC-S chassis cevChassisCat296024TCS OBJECT IDENTIFIER ::= { cevChassis 695 } -- WS-C2960-24TC-S chassis @@ -764,7 +765,7 @@ cevChassisCE52024TT OBJECT IDENTIFIER ::= { cevChassis 708 } cevChassisCE520G24TC OBJECT IDENTIFIER ::= { cevChassis 709 } -- Catalyst Express 520 24 10/100/1000 ports + 2 dual purpose Gigabit Ethernet Ports fixed configuration Layer 2 Ethernet Switch. cevChassis1861Srst2BCueK9 OBJECT IDENTIFIER ::= { cevChassis 710 } -- C1861 SRST with support for 2 BRI ports and CUE cevChassis1861Srst4FCueK9 OBJECT IDENTIFIER ::= { cevChassis 711 } -- C1861 SRST with support for 4 FXO ports and CUE -cevChassisVgd1t3 OBJECT IDENTIFIER ::= { cevChassis 712 } -- VGD Voice Gateway with 1xCT3 supporting CCM and MGCP +cevChassisVgd1t3 OBJECT IDENTIFIER ::= { cevChassis 712 } -- VGD Voice Gateway with 1xCT3 supporting CCM and MGCP cevChassisCat3560e12d OBJECT IDENTIFIER ::= { cevChassis 718 } -- Catalyst 3560E 12 Ten GE (X2) ports cevChassisN5kC5020pBf OBJECT IDENTIFIER ::= { cevChassis 719 } -- N5000 2RU Chassis, No Power Supply, 5 Fan Modules, 40 Ports (requires SFP+) @@ -813,12 +814,12 @@ cevChassisCe674 OBJECT IDENTIFIER ::= { cevChassis 761 } cevChassisCAM35 OBJECT IDENTIFIER ::= { cevChassis 762 } -- Four port GigE Common Appliance Model 35 for Service Control Operating System cevChassisCe7341 OBJECT IDENTIFIER ::= { cevChassis 763 } -- Cisco Content Engine 7341 cevChassisCe7371 OBJECT IDENTIFIER ::= { cevChassis 764 } -- Cisco Content Engine 7371 -cevChassisWsCbs3125gS OBJECT IDENTIFIER ::= { cevChassis 768 } -- Cisco Catalyst Blade Switch 3125G for HP +cevChassisWsCbs3125gS OBJECT IDENTIFIER ::= { cevChassis 768 } -- Cisco Catalyst Blade Switch 3125G for HP cevChassisWsC492810GE OBJECT IDENTIFIER ::= { cevChassis 770 } -- Catalyst 4000 series fixed configuration switch with 28 One Gigabit SFP ports and 2 Ten Gigabit X2 ports cevChassisCat296048TTS OBJECT IDENTIFIER ::= { cevChassis 771 } -- Catalyst 2960 48 10/100 ports + 2 10/100/1000 Ethernet ports fixed configuration Layer 2 Ethernet switch cevChassisCat29608TCS OBJECT IDENTIFIER ::= { cevChassis 772 } -- Catalyst 2960 8 10/100 ports + 1 dual purpose Gigabit Ethernet port fixed configuration Layer 2 Ethernet switch cevChassisSr520FE OBJECT IDENTIFIER ::= { cevChassis 774 } -- SR520 with 1 10/100T ethernet WAN interface, 4-port 10/100 Base-T LAN Ethernet switch, hardware encryption and an optional Wireless LAN card -cevChassisSr520ADSL OBJECT IDENTIFIER ::= { cevChassis 775 } -- SR520 with 1 ADSL over POTS WAN interface, 4-port 10/100 BASE-T LAN Ethernet switch, hardware encryption and an optional Wireless LAN card +cevChassisSr520ADSL OBJECT IDENTIFIER ::= { cevChassis 775 } -- SR520 with 1 ADSL over POTS WAN interface, 4-port 10/100 BASE-T LAN Ethernet switch, hardware encryption and an optional Wireless LAN card cevChassisSr520ADSLi OBJECT IDENTIFIER ::= { cevChassis 776 } -- SR520 with 1 ADSL over ISDN WAN interface, 4-port 10/100 Base-T LAN Ethernet switch, hardware encryption and an optional Wireless LAN card cevChassisN7Kc7018 OBJECT IDENTIFIER ::= { cevChassis 777 } -- Nexus7000 18 slot N7K chassis cevChassisCat356012PCS OBJECT IDENTIFIER ::= { cevChassis 778 } -- Catalyst 3560 12 10/100 Power over Ethernet ports + 1 dual purpose Gigabit Ethernet port fixed configuration Layer 2 Ethernet switch @@ -935,12 +936,12 @@ cevChassisOeNm522 OBJECT IDENTIFIER ::= { cevChassis 939 } -- Cis cevChassisOeSmSre700 OBJECT IDENTIFIER ::= { cevChassis 940 } -- Cisco Optimization Engine Service Module Service Ready Engine 700 cevChassisOeSmSre900 OBJECT IDENTIFIER ::= { cevChassis 941 } -- Cisco Optimization Engine Service Module Service Ready Engine 900 cevChassisCDScde2202s3 OBJECT IDENTIFIER ::= { cevChassis 944 } -- Cisco Content Delivery System Model CDE-220-2S3 -cevChassisWsC3750x24 OBJECT IDENTIFIER ::= { cevChassis 945 } -- Catalyst 3750X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevChassisWsC3750x48 OBJECT IDENTIFIER ::= { cevChassis 946 } -- Catalyst 3750X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevChassisWsC3750x24P OBJECT IDENTIFIER ::= { cevChassis 947 } -- Catalyst 3750X 24 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevChassisWsC3750x48P OBJECT IDENTIFIER ::= { cevChassis 948 } -- Catalyst 3750X 48 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevChassisWsC3560x24 OBJECT IDENTIFIER ::= { cevChassis 949 } -- Catalyst 3560X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch -cevChassisWsC3560x48 OBJECT IDENTIFIER ::= { cevChassis 950 } -- Catalyst 3560X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch +cevChassisWsC3750x24 OBJECT IDENTIFIER ::= { cevChassis 945 } -- Catalyst 3750X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevChassisWsC3750x48 OBJECT IDENTIFIER ::= { cevChassis 946 } -- Catalyst 3750X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevChassisWsC3750x24P OBJECT IDENTIFIER ::= { cevChassis 947 } -- Catalyst 3750X 24 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevChassisWsC3750x48P OBJECT IDENTIFIER ::= { cevChassis 948 } -- Catalyst 3750X 48 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevChassisWsC3560x24 OBJECT IDENTIFIER ::= { cevChassis 949 } -- Catalyst 3560X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch +cevChassisWsC3560x48 OBJECT IDENTIFIER ::= { cevChassis 950 } -- Catalyst 3560X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch cevChassis1841Ck9 OBJECT IDENTIFIER ::= { cevChassis 957 } -- 1841C/K9 data only router with 2 HWIC slots cevChassis2801Ck9 OBJECT IDENTIFIER ::= { cevChassis 958 } -- 2801C/K9 router with 4 HWIC slots cevChassis2811Ck9 OBJECT IDENTIFIER ::= { cevChassis 959 } -- 2811C/K9 router with two integrated fast ethernets and integrated VPN @@ -963,7 +964,7 @@ cevChassisWsC2960s24pdL OBJECT IDENTIFIER ::= { cevChassis 978 } -- Cat cevChassisWsC2960s24tdL OBJECT IDENTIFIER ::= { cevChassis 979 } -- Catalyst 2960S 24 Gig Downlinks and 2 SFP+ uplink with support for a 2 x 10G stacking module cevChassisWsC2960s48fpsL OBJECT IDENTIFIER ::= { cevChassis 980 } -- Catalyst 2960S 48 Gig Downlinks and 4 SFP uplink with support for a 2 x 10G stacking module. POE support for 740W cevChassisWsC2960s48lpsL OBJECT IDENTIFIER ::= { cevChassis 981 } -- Catalyst 2960S 48 Gig Downlinks and 4 SFP uplink with support for a 2 x 10G stacking module. POE support for 370W -cevChassisWsC2960s24psL OBJECT IDENTIFIER ::= { cevChassis 982 } -- Catalyst 2960S 24 GigDownlinks and 4 SFP uplink with support for a 2 x 10G stacking module. POE support for 370W +cevChassisWsC2960s24psL OBJECT IDENTIFIER ::= { cevChassis 982 } -- Catalyst 2960S 24 GigDownlinks and 4 SFP uplink with support for a 2 x 10G stacking module. POE support for 370W cevChassisWsC2960s48tsL OBJECT IDENTIFIER ::= { cevChassis 983 } -- Catalyst 2960S 48 Gig Downlinks and 4 SFP uplink with support for a 2 x 10G stacking module cevChassisWsC2960S24tsL OBJECT IDENTIFIER ::= { cevChassis 984 } -- Catalyst 2960S 24 Gig Downlinks and 4 SFP uplink with support for a 2 x 10G stacking module cevChassis1906Ck9 OBJECT IDENTIFIER ::= { cevChassis 985 } -- 1906C/K9 Chassis (2 GE, Serial 1T, 1 EHWIC) @@ -992,7 +993,7 @@ cevChassis881G2 OBJECT IDENTIFIER ::= { cevChassis 1009 } -- c88 cevChassisWsC3750v224fsS OBJECT IDENTIFIER ::= { cevChassis 1010 } -- Catalyst 3750 24FS: 24 10/100 ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch cevChassisOeVWaas OBJECT IDENTIFIER ::= { cevChassis 1011 } -- Cisco Optimization Engine Virtual Wide Area Application Services cevChassisCrs16SB OBJECT IDENTIFIER ::= { cevChassis 1012 } -- Enhanced CRS 16 slots Line Card Chassis -cevChassisCat2960cG8TC OBJECT IDENTIFIER ::= { cevChassis 1014 } -- Catalyst 2960c 8 10/100/1000 ports + 2 dual purpose Gigabit Ethernet ports module +cevChassisCat2960cG8TC OBJECT IDENTIFIER ::= { cevChassis 1014 } -- Catalyst 2960c 8 10/100/1000 ports + 2 dual purpose Gigabit Ethernet ports module cevChassisECDS1100 OBJECT IDENTIFIER ::= { cevChassis 1017 } -- Cisco Enterprise Content Delivery System Model ECDS-1100 cevChassisECDS3100 OBJECT IDENTIFIER ::= { cevChassis 1018 } -- Cisco Enterprise Content Delivery System Model ECDS-3100 cevChassisIE301016S8PC OBJECT IDENTIFIER ::= { cevChassis 1019 } -- Cisco Industrial Ethernet 3010 Switch, 16 100 SFP + 8 10/100 + 2 T/SFP @@ -1000,7 +1001,7 @@ cevChassisIE301024TC OBJECT IDENTIFIER ::= { cevChassis 1020 } -- Cis cevChassisWsC4948ef10GE OBJECT IDENTIFIER ::= { cevChassis 1023 } -- Catalyst 4900 series front exhaust fixed configuration switch with 48 10/100/1000BaseT ports and four 10Gbps/1Gbps SFP+/SFP ports(WS-C4948E-F) cevChassisWave284K9 OBJECT IDENTIFIER ::= { cevChassis 1024 } -- Cisco Wide Area Virtualization Engine 284 cevChassisWave584K9 OBJECT IDENTIFIER ::= { cevChassis 1025 } -- Cisco Wide Area Virtualization Engine 584 -cevChassisWave684K9 OBJECT IDENTIFIER ::= { cevChassis 1026 } -- Cisco Wide Area Virtualization Engine 684 +cevChassisWave684K9 OBJECT IDENTIFIER ::= { cevChassis 1026 } -- Cisco Wide Area Virtualization Engine 684 cevChassisWave7441K9 OBJECT IDENTIFIER ::= { cevChassis 1027 } -- Cisco Wide Area Virtualization Engine 7441 cevChassisWave7471K9 OBJECT IDENTIFIER ::= { cevChassis 1028 } -- Cisco Wide Area Virtualization Engine 7471 cevChassisWave7626K9 OBJECT IDENTIFIER ::= { cevChassis 1029 } -- Cisco Wide Area Virtualization Engine 7626 @@ -1072,24 +1073,24 @@ cevChassisASR903 OBJECT IDENTIFIER ::= { cevChassis 1118 } -- Cis cevChassis3560c12pcS OBJECT IDENTIFIER ::= { cevChassis 1121 } -- Catalyst 3560C 12 10/100 with PoE + 2 Gig Dual Media Uplinks fixed configuration Layer 2/Layer 3 Ethernet switch chassis cevChassis3560c8pcS OBJECT IDENTIFIER ::= { cevChassis 1122 } -- Catalyst 3560C 8 10/100 with PoE + 2 Gig Dual Media Uplinks fixed configuration Layer 2/Layer 3 Ethernet switch chassis cevChassisCrs8SB OBJECT IDENTIFIER ::= { cevChassis 1123 } -- CRS-8 Line Card Chassis-enhanced for CRS-8/S-B -cevChassisRAIE1783BMS06S OBJECT IDENTIFIER ::= { cevChassis 1124 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP -cevChassisRAIE1783BMS06T OBJECT IDENTIFIER ::= { cevChassis 1125 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T -cevChassisRAIE1783BMS06SG OBJECT IDENTIFIER ::= { cevChassis 1126 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP +cevChassisRAIE1783BMS06S OBJECT IDENTIFIER ::= { cevChassis 1124 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP +cevChassisRAIE1783BMS06T OBJECT IDENTIFIER ::= { cevChassis 1125 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T +cevChassisRAIE1783BMS06SG OBJECT IDENTIFIER ::= { cevChassis 1126 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP cevChassisRAIE1783BMS10C OBJECT IDENTIFIER ::= { cevChassis 1127 } -- Rockwell Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP -cevChassisRAIE1783BMS06TG OBJECT IDENTIFIER ::= { cevChassis 1128 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T -cevChassisRAIE1783BMS10CG OBJECT IDENTIFIER ::= { cevChassis 1129 } -- Rockwell Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevChassisRAIE1783BMS20C OBJECT IDENTIFIER ::= { cevChassis 1130 } -- Rockwell Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP -cevChassisRAIE1783BMS20CG OBJECT IDENTIFIER ::= { cevChassis 1131 } -- Rockwell Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevChassisRAIE1783BMS20CGPK OBJECT IDENTIFIER ::= { cevChassis 1132 } -- Rockwell Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevChassisIE20004TS OBJECT IDENTIFIER ::= { cevChassis 1133 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP -cevChassisIE20004T OBJECT IDENTIFIER ::= { cevChassis 1134 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T -cevChassisIE20004TSG OBJECT IDENTIFIER ::= { cevChassis 1135 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP -cevChassisIE20004TG OBJECT IDENTIFIER ::= { cevChassis 1136 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T -cevChassisIE20008TC OBJECT IDENTIFIER ::= { cevChassis 1137 } -- Cisco Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP -cevChassisIE20008TCG OBJECT IDENTIFIER ::= { cevChassis 1138 } -- Cisco Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevChassisIE200016TC OBJECT IDENTIFIER ::= { cevChassis 1139 } -- Cisco Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP -cevChassisIE200016TCG OBJECT IDENTIFIER ::= { cevChassis 1140 } -- Cisco Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevChassisIE200016TCGX OBJECT IDENTIFIER ::= { cevChassis 1141 } -- Cisco Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevChassisRAIE1783BMS06TG OBJECT IDENTIFIER ::= { cevChassis 1128 } -- Rockwell Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T +cevChassisRAIE1783BMS10CG OBJECT IDENTIFIER ::= { cevChassis 1129 } -- Rockwell Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevChassisRAIE1783BMS20C OBJECT IDENTIFIER ::= { cevChassis 1130 } -- Rockwell Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP +cevChassisRAIE1783BMS20CG OBJECT IDENTIFIER ::= { cevChassis 1131 } -- Rockwell Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevChassisRAIE1783BMS20CGPK OBJECT IDENTIFIER ::= { cevChassis 1132 } -- Rockwell Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevChassisIE20004TS OBJECT IDENTIFIER ::= { cevChassis 1133 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP +cevChassisIE20004T OBJECT IDENTIFIER ::= { cevChassis 1134 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T +cevChassisIE20004TSG OBJECT IDENTIFIER ::= { cevChassis 1135 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP +cevChassisIE20004TG OBJECT IDENTIFIER ::= { cevChassis 1136 } -- Cisco Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T +cevChassisIE20008TC OBJECT IDENTIFIER ::= { cevChassis 1137 } -- Cisco Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP +cevChassisIE20008TCG OBJECT IDENTIFIER ::= { cevChassis 1138 } -- Cisco Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevChassisIE200016TC OBJECT IDENTIFIER ::= { cevChassis 1139 } -- Cisco Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP +cevChassisIE200016TCG OBJECT IDENTIFIER ::= { cevChassis 1140 } -- Cisco Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevChassisIE200016TCGX OBJECT IDENTIFIER ::= { cevChassis 1141 } -- Cisco Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP cevChassisASR5000CHSSYSK9 OBJECT IDENTIFIER ::= { cevChassis 1145 } -- Individually orderable base chassis cevChassisASR55CHSSYS OBJECT IDENTIFIER ::= { cevChassis 1146 } -- ASR5500 Base Chassis, with MidPlane EEProm Card (MEC, ASR55-MEC) cevChassisN7Kc7004 OBJECT IDENTIFIER ::= { cevChassis 1147 } -- Nexus7000 4slot zonda n7k chassis N7K-C7004 @@ -1131,9 +1132,10 @@ cevChassisCDScde2502s10 OBJECT IDENTIFIER ::= { cevChassis 1207 } -- Cis cevChassisCDScdeGeneric OBJECT IDENTIFIER ::= { cevChassis 1208 } -- Cisco Content Delivery System Generic Hardware cevChassisN2kB22FTSP OBJECT IDENTIFIER ::= { cevChassis 1210 } -- N2K 10GE Fabric Extender, 16xSFP+ 10GE and 8xSFP+ 10GE (req SFP+ optics) for Fujitsu PRIMERGY BX900 cevChassisN2kB22DELLP OBJECT IDENTIFIER ::= { cevChassis 1211 } -- N2K 10GE Fabric Extender, 16xSFP+ 10GE and 8xSFP+ 10GE (req SFP+ optics) for Dell M1000E -cevChassisC385048 OBJECT IDENTIFIER ::= { cevChassis 1212 } -- Manually added WS-3850-48 models +cevChassiscat385048P OBJECT IDENTIFIER ::= { cevChassis 1212 } -- Catalyst 3850 48 10/100/1000 PoE+ Ports Layer 2/Layer 3 Ethernet Stackable Switch cevChassisASR9922Dc OBJECT IDENTIFIER ::= { cevChassis 1225 } -- ASR 9922 20 Line Card Slot DC Chassis w/ PEM V2 cevChassisASR9922Ac OBJECT IDENTIFIER ::= { cevChassis 1226 } -- ASR 9922 20 Line Card Slot AC Chassis w/ PEM V2 +cevChassis385024P OBJECT IDENTIFIER ::= { cevChassis 1234 } -- Catalyst 3850 24P 10/100/1000 PoE+ Ports Layer 2/Layer 3 Ethernet Stackable Switch cevChassisN6kC600496Q OBJECT IDENTIFIER ::= { cevChassis 1237 } -- Nexus 6004 Switch with 2 Power Supplies, 4 Fan Modules and 48Q 40GE Ethernet/FCoE ports cevChassisN3kC3548P10G OBJECT IDENTIFIER ::= { cevChassis 1238 } -- Nexus 3500 Series 1 RU fixed chassis with 48 SFPs, 2 Power Supplies, 4 Individual Fans cevChassisN3kC3064TQ10GT OBJECT IDENTIFIER ::= { cevChassis 1239 } -- Nexus 3000 Series 1 RU fixed chassis (Trident+) with 48 SFP+ and 4 QSFP ports, no power supply, no fan @@ -1193,18 +1195,22 @@ cevChassisNexus1000VKVM OBJECT IDENTIFIER ::= { cevChassis 1292 } -- Ne cevChassisNexus1000VMH OBJECT IDENTIFIER ::= { cevChassis 1294 } -- Nexus1000V on Microsoft Hypervisor cevChassisVG202XM OBJECT IDENTIFIER ::= { cevChassis 1295 } -- Line side Analog Gateway VG202XM with 2FXS Analog ports cevChassisVG204XM OBJECT IDENTIFIER ::= { cevChassis 1296 } -- Line side Analog Gateway VG204XM with 4FXS Analog ports -cevChassisAsr9904AC OBJECT IDENTIFIER ::= { cevChassis 1301 } -- ASR-9904 AC Chassis -cevChassisAsr9904DC OBJECT IDENTIFIER ::= { cevChassis 1302 } -- ASR-9904 DC Chassis -cevChassisME2600X OBJECT IDENTIFIER ::= { cevChassis 1303 } -- Cisco ME 2600X Series Ethernet Access Switches is Cisco's switches built specifically for the Fiber to the Home/Premise (FTTH/FTTP) services with 10G capability. It is 1-rack-unit (1RU), fixed-form-factor platform hardware-optimized for ANSI,ETSI & AC Power configurations +cevChassisAsr9904AC OBJECT IDENTIFIER ::= { cevChassis 1301 } -- ASR-9904 AC Chassis +cevChassisAsr9904DC OBJECT IDENTIFIER ::= { cevChassis 1302 } -- ASR-9904 DC Chassis +cevChassisME2600X OBJECT IDENTIFIER ::= { cevChassis 1303 } -- Cisco ME 2600X Series Ethernet Access Switches is Cisco's switches built specifically for the Fiber to the Home/Premise (FTTH/FTTP) services with 10G capability. It is 1-rack-unit (1RU), fixed-form-factor platform hardware-optimized for ANSI,ETSI & AC Power configurations cevChassisNCSCHASSIS OBJECT IDENTIFIER ::= { cevChassis 1304 } -- NCS 6008 - 8-Slot Chassis -cevChassisC6807xl OBJECT IDENTIFIER ::= { cevChassis 1305 } -- Catalyst 6800 series chassis with 7 slots +cevChassisC6807xl OBJECT IDENTIFIER ::= { cevChassis 1305 } -- Catalyst 6800 series chassis with 7 slots cevChassisN6kC600164P OBJECT IDENTIFIER ::= { cevChassis 1308 } -- Nexus 6001 chassis cevChassis131WsC385024U OBJECT IDENTIFIER ::= { cevChassis 1309 } -- cisco Catalyst 3850 24 Port UPOE cevChassis131WsC385048U OBJECT IDENTIFIER ::= { cevChassis 1310 } -- cisco Catalyst 3850 48 Port UPOE +cevChassisCat365024TS OBJECT IDENTIFIER ::= { cevChassis 1311 } -- Cisco Catalyst 3650 24 Port Data 4x1G Uplink +cevChassisCat365048TS OBJECT IDENTIFIER ::= { cevChassis 1312 } -- Cisco Catalyst 3650 48 Port Data 4x1G Uplink +cevChassisCat365024PS OBJECT IDENTIFIER ::= { cevChassis 1313 } -- Cisco Catalyst 3650 24 Port POE 4x1G Uplink +cevChassisCat365048PS OBJECT IDENTIFIER ::= { cevChassis 1314 } -- Cisco Catalyst 3650 48 Port POE 4x1G Uplink cevChassisDSC9250IK9 OBJECT IDENTIFIER ::= { cevChassis 1326 } -- DS-C9250I-K9, Chassis for MDS 9250i Intelligent Fabric Switch, 40FC+8FCoE+2FCIP cevChassisDSC9710 OBJECT IDENTIFIER ::= { cevChassis 1327 } -- DS-C9710, Chassis for MDS 10-Slot Director Switch -cevChassisC6880xle OBJECT IDENTIFIER ::= { cevChassis 1328 } -- Catalyst 6880 LE chassis -cevChassisIE2000U16TCGP OBJECT IDENTIFIER ::= { cevChassis 1338 } -- Cisco Industrial Ethernet 2000U Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE + 1588 +cevChassisC6880xle OBJECT IDENTIFIER ::= { cevChassis 1328 } -- Catalyst 6880 LE chassis +cevChassisIE2000U16TCGP OBJECT IDENTIFIER ::= { cevChassis 1338 } -- Cisco Industrial Ethernet 2000U Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE + 1588 cevChassisN2kB22IBMP OBJECT IDENTIFIER ::= { cevChassis 1339 } -- N2K-B22IBM-P is a 10G Fabric Extender with 14 10G KR HIF ports and 8 NIF (uplink) ports cevChassisN6kC600164T OBJECT IDENTIFIER ::= { cevChassis 1340 } -- Nexus 6001 switch with 48x10G-BaseT + 4xQSFP ports cevChassisWsC2960P48PstL OBJECT IDENTIFIER ::= { cevChassis 1342 } -- 48-port PoE, 2+2 1G uplinks, LAN Base @@ -1217,9 +1223,9 @@ cevChassisWsC2960P24PcS OBJECT IDENTIFIER ::= { cevChassis 1348 } -- 24- cevChassisWsC2960P24LcS OBJECT IDENTIFIER ::= { cevChassis 1349 } -- 24-port, partial PoE 2/2 1G uplinks, LAN Lite cevChassisWsC2960P48TcS OBJECT IDENTIFIER ::= { cevChassis 1350 } -- 48-port, 2/2 1G uplinks, LAN Lite cevChassisWsC2960P24TcS OBJECT IDENTIFIER ::= { cevChassis 1351 } -- 24-port, 2/2 1G uplinks, LAN Lite -cevChassisN77c7718 OBJECT IDENTIFIER ::= { cevChassis 1352 } -- Nexus7700 18-slot chassis -cevChassisN77c7710 OBJECT IDENTIFIER ::= { cevChassis 1353 } -- Nexus7700 10-slot chassis -cevChassisN77c7706 OBJECT IDENTIFIER ::= { cevChassis 1354 } -- Nexus7700 6-slot chassis +cevChassisN77c7718 OBJECT IDENTIFIER ::= { cevChassis 1352 } -- Nexus7700 18-slot chassis +cevChassisN77c7710 OBJECT IDENTIFIER ::= { cevChassis 1353 } -- Nexus7700 10-slot chassis +cevChassisN77c7706 OBJECT IDENTIFIER ::= { cevChassis 1354 } -- Nexus7700 6-slot chassis cevChassisWsC2960XR48FpdI OBJECT IDENTIFIER ::= { cevChassis 1355 } -- Catalyst 2960XR 48 Gig Downlinks and 2 SFP+ uplinks IP Lite Stackable with POE support for 740W cevChassisWsC2960XR48LpdI OBJECT IDENTIFIER ::= { cevChassis 1356 } -- Catalyst 2960XR 48 Gig Downlinks and 2 SFP+ uplinks IP Lite Stackable with POE support for 370W cevChassisWsC2960XR48TdI OBJECT IDENTIFIER ::= { cevChassis 1357 } -- Catalyst 2960XR 48 Gig Downlinks and 2 SFP+ uplinks IP Lite Stackable @@ -1230,19 +1236,19 @@ cevChassisWsC2960XR48LpsI OBJECT IDENTIFIER ::= { cevChassis 1361 } -- Cat cevChassisWsC2960XR48TsI OBJECT IDENTIFIER ::= { cevChassis 1362 } -- Catalyst 2960XR 48 Gig Downlinks and 4 SFP uplinks IP Lite Stackable cevChassisWsC2960XR24PsI OBJECT IDENTIFIER ::= { cevChassis 1363 } -- Catalyst 2960XR 24 Gig Downlinks and 4 SFP uplinks IP Lite Stackable with POE support for 370W cevChassisWsC2960XR24TsI OBJECT IDENTIFIER ::= { cevChassis 1364 } -- Catalyst 2960XR 24 Gig Downlinks and 4 SFP uplinks IP Lite Stackable -cevChassisA901S4SGFD OBJECT IDENTIFIER ::= { cevChassis 1375 } -- Agora platform - 4 external Ports (4 SFP) + 1 Gland Interface, DC PSU -cevChassisA901S3SGFD OBJECT IDENTIFIER ::= { cevChassis 1376 } -- Agora platform - 3 external Ports (3 SFP+1Cu) + 1 Gland Interface, DC PSU -cevChassisA901S2SGFD OBJECT IDENTIFIER ::= { cevChassis 1377 } -- Agora platform - 3 external Ports (2 SFP+2Cu) + 1 Gland Interface, DC PSU +cevChassisA901S4SGFD OBJECT IDENTIFIER ::= { cevChassis 1375 } -- Agora platform - 4 external Ports (4 SFP) + 1 Gland Interface, DC PSU +cevChassisA901S3SGFD OBJECT IDENTIFIER ::= { cevChassis 1376 } -- Agora platform - 3 external Ports (3 SFP+1Cu) + 1 Gland Interface, DC PSU +cevChassisA901S2SGFD OBJECT IDENTIFIER ::= { cevChassis 1377 } -- Agora platform - 3 external Ports (2 SFP+2Cu) + 1 Gland Interface, DC PSU cevChassisA901S3SGFAH OBJECT IDENTIFIER ::= { cevChassis 1378 } -- Agora platform - AC, 3 External Ports (3SFP) + 1 Gland Interface, AC PSU, 1sec holdover for 1 PoE+ -cevChassisA901S2SGFAH OBJECT IDENTIFIER ::= { cevChassis 1379 } -- Agora platform - AC, 3 External Ports (2 SFP+1 Cu) + 1 Gland Interface, AC PSU, 1sec holdover for 1 PoE+ +cevChassisA901S2SGFAH OBJECT IDENTIFIER ::= { cevChassis 1379 } -- Agora platform - AC, 3 External Ports (2 SFP+1 Cu) + 1 Gland Interface, AC PSU, 1sec holdover for 1 PoE+ cevChassisASR901AC10G OBJECT IDENTIFIER ::= { cevChassis 1380 } -- ASR901 10G AC platform with TDM & Eth interfaces cevChassisASR901DC10G OBJECT IDENTIFIER ::= { cevChassis 1381 } -- ASR901 10G DC platform with TDM & Eth interfaces cevChassisASR901eAC10G OBJECT IDENTIFIER ::= { cevChassis 1382 } -- ASR901 10G AC platform with Eth interfaces cevChassisASR901eDC10G OBJECT IDENTIFIER ::= { cevChassis 1383 } -- ASR901 10G DC platform with Eth interfaces -cevChassisIE2000U4STSG OBJECT IDENTIFIER ::= { cevChassis 1384 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 SFP + 2 1000 SFP -cevChassisC881 OBJECT IDENTIFIER ::= { cevChassis 1385 } -- C881 router with 1 Fast Ethernet Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevChassisC886VA OBJECT IDENTIFIER ::= { cevChassis 1386 } -- C886VA router with 1 VDSL2/ADSL2+ Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevChassisC887VA OBJECT IDENTIFIER ::= { cevChassis 1387 } -- C887VA router with 1 VDSL2/ADSL2+ Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevChassisIE2000U4STSG OBJECT IDENTIFIER ::= { cevChassis 1384 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 SFP + 2 1000 SFP +cevChassisC881 OBJECT IDENTIFIER ::= { cevChassis 1385 } -- C881 router with 1 Fast Ethernet Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevChassisC886VA OBJECT IDENTIFIER ::= { cevChassis 1386 } -- C886VA router with 1 VDSL2/ADSL2+ Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevChassisC887VA OBJECT IDENTIFIER ::= { cevChassis 1387 } -- C887VA router with 1 VDSL2/ADSL2+ Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevChassisN3KC3172PQ10GE OBJECT IDENTIFIER ::= { cevChassis 1388 } -- Cisco chassis for N3K / QuickIron2 cevChassisN3KC3172TQ10GT OBJECT IDENTIFIER ::= { cevChassis 1389 } -- Cisco chassis for N3K / QuickZinc2 cevChassisN3KC3132Q40GE OBJECT IDENTIFIER ::= { cevChassis 1390 } -- Cisco chassis for N3K / Neptune-GE @@ -1258,19 +1264,19 @@ cevChassisRAIE1783ZMS16TA OBJECT IDENTIFIER ::= { cevChassis 1399 } -- Roc cevChassisRAIE1783ZMS24TA OBJECT IDENTIFIER ::= { cevChassis 1400 } -- Rockwell IE2000 IP67 Variant Switch with 24 port 10/100 downlink, LAN Base Image cevChassisRAIE1783ZMS4T4E2TGP OBJECT IDENTIFIER ::= { cevChassis 1401 } -- Rockwell IE2000 IP67 Variant Switch with 4 port 10/100 downlink, 4-port POE /POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT cevChassisRAIE1783ZMS8T8E2TGP OBJECT IDENTIFIER ::= { cevChassis 1402 } -- Rockwell IE2000 IP67 Variant Switch with 8 port 10/100 downlink, 8-port POE / 4-port POE+, 2 10/100/1000 uplink , LAN Base Image, can support PTP, NAT -cevChassisC888 OBJECT IDENTIFIER ::= { cevChassis 1403 } -- C888 router with 1 EFM/ATM over G.SHDSL Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevChassisC891F OBJECT IDENTIFIER ::= { cevChassis 1404 } -- C891F router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevChassisC891FW OBJECT IDENTIFIER ::= { cevChassis 1405 } -- C891FW router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 1 Dual 2.4/5GHz Wireless LAN, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevChassisC888 OBJECT IDENTIFIER ::= { cevChassis 1403 } -- C888 router with 1 EFM/ATM over G.SHDSL Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevChassisC891F OBJECT IDENTIFIER ::= { cevChassis 1404 } -- C891F router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevChassisC891FW OBJECT IDENTIFIER ::= { cevChassis 1405 } -- C891FW router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 1 Dual 2.4/5GHz Wireless LAN, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevChassisASR1001X OBJECT IDENTIFIER ::= { cevChassis 1406 } -- Cisco Aggregation Services Router 1000 Series, ASR1001-X Chassis -cevChassis1783WAP5100xK9 OBJECT IDENTIFIER ::= { cevChassis 1407 } -- Cisco Rockwell Industrial Automation Wireless AP 5100, one 10/100/1000 BASE-T, Dual-band autonomous 802.11a/g/n +cevChassis1783WAP5100xK9 OBJECT IDENTIFIER ::= { cevChassis 1407 } -- Cisco Rockwell Industrial Automation Wireless AP 5100, one 10/100/1000 BASE-T, Dual-band autonomous 802.11a/g/n cevChassisCDScde2502s5 OBJECT IDENTIFIER ::= { cevChassis 1408 } -- Cisco Content Delivery System Model CDE-250-2S5 -cevChassisN5KC56128P OBJECT IDENTIFIER ::= { cevChassis 1409 } -- Nexus 56128P 2RU Chassis,48x10G SFP+, 4x40G QSFP+ -cevChassisN5KC5672UP OBJECT IDENTIFIER ::= { cevChassis 1410 } -- Nexus 5672UP 1RU Chassis, 32x10G SFP+, 16xUP SFP+, 6x40G QSFP+ -cevChassisIE2000U4TG OBJECT IDENTIFIER ::= { cevChassis 1412 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 T -cevChassisIE2000U4TSG OBJECT IDENTIFIER ::= { cevChassis 1413 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 SFP -cevChassisIE2000U8TCG OBJECT IDENTIFIER ::= { cevChassis 1414 } -- Cisco Industrial Ethernet 2000U Switch, 8 10/100 T + 2 1000 T/SFP -cevChassisIE2000U16TCG OBJECT IDENTIFIER ::= { cevChassis 1415 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevChassisIE2000U16TCGX OBJECT IDENTIFIER ::= { cevChassis 1416 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevChassisN5KC56128P OBJECT IDENTIFIER ::= { cevChassis 1409 } -- Nexus 56128P 2RU Chassis,48x10G SFP+, 4x40G QSFP+ +cevChassisN5KC5672UP OBJECT IDENTIFIER ::= { cevChassis 1410 } -- Nexus 5672UP 1RU Chassis, 32x10G SFP+, 16xUP SFP+, 6x40G QSFP+ +cevChassisIE2000U4TG OBJECT IDENTIFIER ::= { cevChassis 1412 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 T +cevChassisIE2000U4TSG OBJECT IDENTIFIER ::= { cevChassis 1413 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 SFP +cevChassisIE2000U8TCG OBJECT IDENTIFIER ::= { cevChassis 1414 } -- Cisco Industrial Ethernet 2000U Switch, 8 10/100 T + 2 1000 T/SFP +cevChassisIE2000U16TCG OBJECT IDENTIFIER ::= { cevChassis 1415 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevChassisIE2000U16TCGX OBJECT IDENTIFIER ::= { cevChassis 1416 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP cevChassisN3KC3132Q40GX OBJECT IDENTIFIER ::= { cevChassis 1417 } -- Neptune-CR chassis Nexus 3000 Series 1 RU fixed chassis with Nexus 3132Q 32 x QSFP+ ports, 2 Power Supplies and 4 FANs cevChassisVG310 OBJECT IDENTIFIER ::= { cevChassis 1418 } -- VG310 Medium Density Voice Gateway cevChassisVG320 OBJECT IDENTIFIER ::= { cevChassis 1419 } -- VG320 Medium Density Voice Gateway @@ -1280,7 +1286,13 @@ cevChassisAIRAP702 OBJECT IDENTIFIER ::= { cevChassis 1422 } -- Cis cevChassisAIRAP1532 OBJECT IDENTIFIER ::= { cevChassis 1423 } -- Cisco Aironet 1530 Series (IEEE 802.11n) Access point cevChassisC6800IA48FPD OBJECT IDENTIFIER ::= { cevChassis 1424 } -- Catalyst 6800IA 48 Gig Downlinks and 2 SFP+ uplink with support for a 2 x 10G stacking module. POE support for 740W cevChassisC6800IA48TD OBJECT IDENTIFIER ::= { cevChassis 1425 } -- Catalyst 6800IA 48 Gig Downlinks and 2 SFP+ uplink with support for a 2 x 10G stacking module -cevChassisNCS4016SAAC OBJECT IDENTIFIER ::= { cevChassis 1426 } -- NCS 4016 Shelf Assembly - AC Power +cevChassisNCS4016SAAC OBJECT IDENTIFIER ::= { cevChassis 1426 } -- NCS 4016 Shelf Assembly - AC Power +cevChassisCat365048PQ OBJECT IDENTIFIER ::= { cevChassis 1427 } -- Cisco Catalyst 3650 48 Port POE 4x10G Uplink +cevChassisCat365048TQ OBJECT IDENTIFIER ::= { cevChassis 1428 } -- Cisco Catalyst 3650 48 Port Data 4x10G Uplink +cevChassisCat365024TD OBJECT IDENTIFIER ::= { cevChassis 1429 } -- Cisco Catalyst 3650 24 Port Data 2x10G Uplink +cevChassisCat365048TD OBJECT IDENTIFIER ::= { cevChassis 1430 } -- Cisco Catalyst 3650 48 Port Data 2x10G Uplink +cevChassisCat365024PD OBJECT IDENTIFIER ::= { cevChassis 1431 } -- Cisco Catalyst 3650 24 Port POE 2x10G Uplink +cevChassisCat365048PD OBJECT IDENTIFIER ::= { cevChassis 1432 } -- Cisco Catalyst 3650 48 Port POE 2x10G Uplink cevChassis131WsC385024S OBJECT IDENTIFIER ::= { cevChassis 1433 } -- cisco Catalyst 3850 24 SFP Ports cevChassis131WsC385012S OBJECT IDENTIFIER ::= { cevChassis 1434 } -- cisco Catalyst 3850 12 SFP Ports cevChassisASR902 OBJECT IDENTIFIER ::= { cevChassis 1449 } -- Cisco Aggregation Services Router 900 Series, 2RU Chassis @@ -1290,16 +1302,16 @@ cevChassisN9Kc9508 OBJECT IDENTIFIER ::= { cevChassis 1467 } -- Nex cevChassisME12006sAO OBJECT IDENTIFIER ::= { cevChassis 1469 } -- Cisco ME 1200 Outdoor Carrier Ethernet Access Demarcation Device, with 4 GE SFP ports and 2 RJ45 ports, AC power supply cevChassisME12006sD OBJECT IDENTIFIER ::= { cevChassis 1470 } -- Cisco ME 1200 Indoor Carrier Ethernet Access Demarcation Device, with 4 GE SFP ports and 2 RJ45 ports, DC power supply cevChassisME12006sA OBJECT IDENTIFIER ::= { cevChassis 1471 } -- Cisco ME 1200 Indoor Carrier Ethernet Access Demarcation Device, with 4 GE SFP ports and 2 RJ45 ports, AC power supply -cevChassis1783SR OBJECT IDENTIFIER ::= { cevChassis 1472 } -- Stratix S5900 K9 Hardened Router for Rockwell Automation with 1 Gigabit Ethernet WAN, 4 Fast Ethernet LAN, 1 Serial, 1 Console/Aux ports, 1GB flash memory and 1GB DRAM -cevChassisWapAP702 OBJECT IDENTIFIER ::= { cevChassis 1475 } -- Wireless Access Point 700 -cevChassisWapAP2602 OBJECT IDENTIFIER ::= { cevChassis 1476 } -- Wireless Access Point 2600 +cevChassis1783SR OBJECT IDENTIFIER ::= { cevChassis 1472 } -- Stratix S5900 K9 Hardened Router for Rockwell Automation with 1 Gigabit Ethernet WAN, 4 Fast Ethernet LAN, 1 Serial, 1 Console/Aux ports, 1GB flash memory and 1GB DRAM +cevChassisWapAP702 OBJECT IDENTIFIER ::= { cevChassis 1475 } -- Wireless Access Point 700 +cevChassisWapAP2602 OBJECT IDENTIFIER ::= { cevChassis 1476 } -- Wireless Access Point 2600 cevChassisWapAP1602 OBJECT IDENTIFIER ::= { cevChassis 1477 } -- Wireless Access Point 1600 cevChassisISR4431 OBJECT IDENTIFIER ::= { cevChassis 1485 } -- Cisco ISR 4431 Router Chassis -cevChassisC6880x OBJECT IDENTIFIER ::= { cevChassis 1486 } -- Catalyst 6880 chassis +cevChassisC6880x OBJECT IDENTIFIER ::= { cevChassis 1486 } -- Catalyst 6880 chassis cevChassisAIRAP2702 OBJECT IDENTIFIER ::= { cevChassis 1487 } -- Cisco Aironet 2700 Series (IEEE 802.11ac) Access Point cevChassisUCSFI6332 OBJECT IDENTIFIER ::= { cevChassis 1488 } -- Cisco UCS Unified Computing System 6332 1RU In-Chassis FI with 32x40G Fixed Ports cevChassisN6kC6004 OBJECT IDENTIFIER ::= { cevChassis 1489 } -- Nexus 6004 Switch with 6 Power Supplies, 4 Fan Modules and 96Q 40GE Ethernet/FCoE ports -cevChassisAsr9000V24vDcA OBJECT IDENTIFIER ::= { cevChassis 1490 } -- This is a new 9000v satellite chassis. Same 9000v hardware with a different 24volt DC Power module and PID +cevChassisAsr9000V24vDcA OBJECT IDENTIFIER ::= { cevChassis 1490 } -- This is a new 9000v satellite chassis. Same 9000v hardware with a different 24volt DC Power module and PID cevChassisDSC9148SK9 OBJECT IDENTIFIER ::= { cevChassis 1491 } -- Chassis for 16G MDS 9148 fabric swtich cevChassisRT1081K9 OBJECT IDENTIFIER ::= { cevChassis 1494 } -- Router 1081 Fast Ethernet Router cevChassisRT1091FK9 OBJECT IDENTIFIER ::= { cevChassis 1495 } -- Router 1091 GigaE SecRouter @@ -1311,7 +1323,7 @@ cevChassisRT3221K9 OBJECT IDENTIFIER ::= { cevChassis 1500 cevChassisRT3201K9 OBJECT IDENTIFIER ::= { cevChassis 1501 } -- Router 3201 w/2 GE,4 EHWIC,2 DSP,256MB CF,512MB DRAM,IP Base cevChassisN9Kc9516 OBJECT IDENTIFIER ::= { cevChassis 1506 } -- Nexus 9500 series 16 slot chassis N9K-C9516 cevChassisN9Kc9504 OBJECT IDENTIFIER ::= { cevChassis 1507 } -- Nexus 9500 series 4 slot chassis N9K-C9504 -cevChassisN9KC9396PX OBJECT IDENTIFIER ::= { cevChassis 1508 } -- Cisco chassis for 2RU TOR, 48x10GF+12x40G QSFP +cevChassisN9KC9396PX OBJECT IDENTIFIER ::= { cevChassis 1508 } -- Cisco chassis for 2RU TOR, 48x10GF+12x40G QSFP cevChassisN9KC9396TX OBJECT IDENTIFIER ::= { cevChassis 1509 } -- Cisco chassis for 2RU TOR, 48x10GT+12x40G QSFP cevChassisN9KC93128TX OBJECT IDENTIFIER ::= { cevChassis 1510 } -- Cisco chassis for 3RU TOR, 96x10GT+8x40G QSFP cevChassisISR4351 OBJECT IDENTIFIER ::= { cevChassis 1511 } -- Cisco ISR 4351 Router Chassis @@ -1320,18 +1332,18 @@ cevChassisPrime OBJECT IDENTIFIER ::= { cevChassis 1520 cevChassis897VAB OBJECT IDENTIFIER ::= { cevChassis 1521 } -- C897VAB-K9 router with 1 VDSL2 with bonding/ADSL2+ WAN , 1 Giga Ethernet WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 8 Giga Ethernet LAN,4PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevChassisC385012X48U OBJECT IDENTIFIER ::= { cevChassis 1537 } -- Cisco Catalyst 3850 48 UPOE 12 100M/1G/2.5G/5G/10G and 36 1G Ports Layer 2/Layer 3 Ethernet cevChassisC385024XU OBJECT IDENTIFIER ::= { cevChassis 1538 } -- Cisco Catalyst 3850 24 UPOE 100M/1G/2.5G/5G/10G Ports Layer2/Layer3 Ethernet -cevChassisN5kC5696Q OBJECT IDENTIFIER ::= { cevChassis 1539 } -- Nexus 5696 Switch with 6 Power Supplies, 4 Fan Modules and 96Q 40GE Ethernet/FCoE ports +cevChassisN5kC5696Q OBJECT IDENTIFIER ::= { cevChassis 1539 } -- Nexus 5696 Switch with 6 Power Supplies, 4 Fan Modules and 96Q 40GE Ethernet/FCoE ports cevChassisN2KC2348TQ OBJECT IDENTIFIER ::= { cevChassis 1540 } -- Nexus 2000 Series 10GE FEX; 48x1/10T; 6x40G QSFP cevChassisN2KC2348UPQ OBJECT IDENTIFIER ::= { cevChassis 1541 } -- Nexus 2000 Series 10GE FEX; 48x1/10GE SFP+; 6x40G QSFP cevChassisC6800IA48FPDR OBJECT IDENTIFIER ::= { cevChassis 1542 } -- Catalyst 6800IA-FPDR 48 Gig Downlinks and 2 SFP+ uplink with support for a 2 x 10G stacking module. POE support for 740W -cevChassisISR4331 OBJECT IDENTIFIER ::= { cevChassis 1544 } -- Cisco ISR 4331 Router Chassis +cevChassisISR4331 OBJECT IDENTIFIER ::= { cevChassis 1544 } -- Cisco ISR 4331 Router Chassis cevChassisNCSFSYSS OBJECT IDENTIFIER ::= { cevChassis 1545 } -- NCS 12 Slot Fabric Card Chassis cevChassisIE40004TC4GE OBJECT IDENTIFIER ::= { cevChassis 1546 } -- Cisco IE4000 with 4 FE Combo DL ports, 4 GE combo UL ports, w/FPGA cevChassisIE40008T4GE OBJECT IDENTIFIER ::= { cevChassis 1547 } -- CISCO IE4000 with 8 FE Copper DL ports, 4 GE combo UL ports, w/FPGA cevChassisIE40008S4GE OBJECT IDENTIFIER ::= { cevChassis 1548 } -- CISCO IE4000 with 8 FE Fiber DL ports, 4 GE combo UL ports, w/FPGA cevChassisIE40004T4P4GE OBJECT IDENTIFIER ::= { cevChassis 1549 } -- CISCO IE4000 with 4 FE Copper DL ports + 4 FE Copper DL ports with POE, 4 GE combo UL ports, w/FPGA cevChassisIE400016T4GE OBJECT IDENTIFIER ::= { cevChassis 1550 } -- CISCO IE4000 with 16 FE Copper DL ports, 4 GE combo UL ports, w/FPGA -cevChassisIE40004S8P4GE OBJECT IDENTIFIER ::= { cevChassis 1551 } -- CISCO IE4000 with 4 FE Fiber DL ports + 8 FE Copper DL ports with POE, 4 GE combo UL ports, w/FPGA +cevChassisIE40004S8P4GE OBJECT IDENTIFIER ::= { cevChassis 1551 } -- CISCO IE4000 with 4 FE Fiber DL ports + 8 FE Copper DL ports with POE, 4 GE combo UL ports, w/FPGA cevChassisIE40008GT4GE OBJECT IDENTIFIER ::= { cevChassis 1552 } -- CISCO IE4000 with 8 GE Copper DL ports, 4 GE combo UL ports, w/FPGA cevChassisIE40008GS4GE OBJECT IDENTIFIER ::= { cevChassis 1553 } -- CISCO IE4000 with 8 GE Fiber DL ports, 4 GE combo UL ports, w/FPGA cevChassisIE40004GC4GP4GE OBJECT IDENTIFIER ::= { cevChassis 1554 } -- CISCO IE4000 with 4 GE Combo DL ports + 4 GE Copper DL ports with POE, 4 GE combo UL ports, w/FPGA @@ -1351,15 +1363,15 @@ cevChassisRAIE1783HMS16TG4CGN OBJECT IDENTIFIER ::= { cevChassis 1567 cevChassisRAIE1783HMS8TG8EG4CGN OBJECT IDENTIFIER ::= { cevChassis 1568 } -- CISCO IE4000 with 8 GE Copper DL ports + 8 GE Copper DL ports with POE, 4 GE combo UL ports, w/FPGA cevChassisRAIE1783HMS4SG8EG4CGN OBJECT IDENTIFIER ::= { cevChassis 1569 } -- CISCO IE4000 with 4 GE Fiber DL ports + 8 GE Copper DL ports with POE, 4 GE combo UL ports, w/FPGA cevChassisN2KC2232TQ OBJECT IDENTIFIER ::= { cevChassis 1571 } -- Nexus 2K Series-32x1/10GT+ 2x40G QSFP -cevChassisASR9010ACv2 OBJECT IDENTIFIER ::= { cevChassis 1572 } -- ASR 9010 AC Chassis with PEM Version 2 -cevChassisASR9010DCv2 OBJECT IDENTIFIER ::= { cevChassis 1573 } -- ASR 9010 DC Chassis with PEM Version 2 -cevChassisASR9006ACv2 OBJECT IDENTIFIER ::= { cevChassis 1574 } -- ASR 9006 AC Chassis with PEM Version 2 -cevChassisASR9006DCv2 OBJECT IDENTIFIER ::= { cevChassis 1575 } -- ASR 9006 DC Chassis with PEM Version 2 -cevChassisISR4321 OBJECT IDENTIFIER ::= { cevChassis 1576 } -- Cisco ISR 4321 Router Chassis +cevChassisASR9010ACv2 OBJECT IDENTIFIER ::= { cevChassis 1572 } -- ASR 9010 AC Chassis with PEM Version 2 +cevChassisASR9010DCv2 OBJECT IDENTIFIER ::= { cevChassis 1573 } -- ASR 9010 DC Chassis with PEM Version 2 +cevChassisASR9006ACv2 OBJECT IDENTIFIER ::= { cevChassis 1574 } -- ASR 9006 AC Chassis with PEM Version 2 +cevChassisASR9006DCv2 OBJECT IDENTIFIER ::= { cevChassis 1575 } -- ASR 9006 DC Chassis with PEM Version 2 +cevChassisISR4321 OBJECT IDENTIFIER ::= { cevChassis 1576 } -- Cisco ISR 4321 Router Chassis cevChassisASR901eDC10GS OBJECT IDENTIFIER ::= { cevChassis 1577 } -- ASR901 10GS DC platform with Eth interfaces cevChassisASR901eAC10GS OBJECT IDENTIFIER ::= { cevChassis 1578 } -- ASR901 10GS AC platform with Eth interfaces -cevChassisNCS4009SAAC OBJECT IDENTIFIER ::= { cevChassis 1579 } -- NCS4009 shelf assembly - AC Powers -cevChassisNCS4009SADC OBJECT IDENTIFIER ::= { cevChassis 1580 } -- NCS4009 shelf assembly - DC Powers +cevChassisNCS4009SAAC OBJECT IDENTIFIER ::= { cevChassis 1579 } -- NCS4009 shelf assembly - AC Powers +cevChassisNCS4009SADC OBJECT IDENTIFIER ::= { cevChassis 1580 } -- NCS4009 shelf assembly - DC Powers cevChassisCiscoQvPCDI OBJECT IDENTIFIER ::= { cevChassis 1585 } -- Cisco Quantum Virtualized Packet Core (Cisco QvPC) -DI cevChassisCiscoQvPC OBJECT IDENTIFIER ::= { cevChassis 1586 } -- Cisco Quantum Virtualized Packet Core (Cisco QvPC) cevChassisWSC3560CX8PTS OBJECT IDENTIFIER ::= { cevChassis 1587 } -- Smirnoff catalyst 3560CX 8x GE downlink ,PoE+, 2x 1G copper UPOE uplinks. @@ -1385,22 +1397,22 @@ cevChassisC385024XS OBJECT IDENTIFIER ::= { cevChassis 1606 cevChassisC385048XS OBJECT IDENTIFIER ::= { cevChassis 1607 } -- Cisco Catalyst 3850 48 Port 10G Fiber Switch cevChassisAIRAP1702 OBJECT IDENTIFIER ::= { cevChassis 1608 } -- Cisco Aironet 1700 Series (IEEE 802.11ac) Access Point cevChassisN3KC3164Q40GE OBJECT IDENTIFIER ::= { cevChassis 1609 } -- N3K-C3164Q-40GE Nexus 3000 series 2 RU fixed chassis with 64 QSFP ports, 2 Power Supplies and 2 Fan trays -cevChassisCCE8RU OBJECT IDENTIFIER ::= { cevChassis 1610 } -- Cisco uBR CCE NextGen platform -cevChassisCCE13RU OBJECT IDENTIFIER ::= { cevChassis 1611 } -- Cisco uBR CCE NextGen platform -cevChassisCCE18RU OBJECT IDENTIFIER ::= { cevChassis 1612 } -- Cisco uBR CCE NextGen platform -cevChassis2911T OBJECT IDENTIFIER ::= { cevChassis 1613 } -- CISCO2911-T/K9 with 3 GE, 4 EHWIC, 2 DSP, 1 SM , 256 MB CF, 512 MB DRAM, IPB, extended temperature range from -5 to 60 C +cevChassisCCE8RU OBJECT IDENTIFIER ::= { cevChassis 1610 } -- Cisco uBR CCE NextGen platform +cevChassisCCE13RU OBJECT IDENTIFIER ::= { cevChassis 1611 } -- Cisco uBR CCE NextGen platform +cevChassisCCE18RU OBJECT IDENTIFIER ::= { cevChassis 1612 } -- Cisco uBR CCE NextGen platform +cevChassis2911T OBJECT IDENTIFIER ::= { cevChassis 1613 } -- CISCO2911-T/K9 with 3 GE, 4 EHWIC, 2 DSP, 1 SM , 256 MB CF, 512 MB DRAM, IPB, extended temperature range from -5 to 60 C cevChassis891x24X OBJECT IDENTIFIER ::= { cevChassis 1614 } -- C891-24X Router series with 2 Giga Ethernet WAN Xor'ed with SFP (Small Form-factor Pluggable), 24 Giga Ethernet LAN with 8 PoE, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 512MB/1GB DRAM cevChassisAsr9KvV2Ac OBJECT IDENTIFIER ::= { cevChassis 1615 } -- 44-Port GE + 4-Port 10GE ASR 9000v-V2, AC Power cevChassisAsr9KvV2DcA OBJECT IDENTIFIER ::= { cevChassis 1616 } -- 44-Port GE + 4-Port 10GE ASR 9000v-V2, DC Power ANSI Chassis cevChassisAsr9KvV2DcE OBJECT IDENTIFIER ::= { cevChassis 1617 } -- 44-Port GE + 4-Port 10GE ASR 9000v-V2, DC Power ETSI Chassis cevChassiscBR8 OBJECT IDENTIFIER ::= { cevChassis 1618 } -- Cisco cBR-8 CCAP platform with 8 subscriber slots and 2 Supervisor slots (including WAN) -cevChassisN5KC5624Q OBJECT IDENTIFIER ::= { cevChassis 1619 } -- Nexus 5624Q VXLAN 1RU Chassis, 12x40G QSFP+ +cevChassisN5KC5624Q OBJECT IDENTIFIER ::= { cevChassis 1619 } -- Nexus 5624Q VXLAN 1RU Chassis, 12x40G QSFP+ cevChassisN5KC5648Q OBJECT IDENTIFIER ::= { cevChassis 1620 } -- Nexus 5648Q VXLAN 2RU Chassis, 24x40G QSFP+ cevChassisN5KC5672UP16G OBJECT IDENTIFIER ::= { cevChassis 1621 } -- Nexus 5672UP VXLAN 1RU 16G FC, 6x40G QSFP+ cevChassisAIRAP1572 OBJECT IDENTIFIER ::= { cevChassis 1623 } -- Cisco Aironet 1570 (IEEE 802.11ac) Series Outdoor Access Points with two radio's cevChassisAIRAP702w OBJECT IDENTIFIER ::= { cevChassis 1624 } -- Cisco Aironet 702w (IEEE 802.11n) Series Access Points cevChassisN9KC9332PQ OBJECT IDENTIFIER ::= { cevChassis 1625 } -- Cisco 32x40G Supervisor, Cisco 1RU Top Of Rack L2/L3 switch with ACI, 32 QSFP ports -cevChassisN9KC9372PX OBJECT IDENTIFIER ::= { cevChassis 1626 } -- Cisco 48x10GE + 6x40G Supervisor, Cisco 1RU Top Of Rack L2/L3 switch with ACI +cevChassisN9KC9372PX OBJECT IDENTIFIER ::= { cevChassis 1626 } -- Cisco 48x10GE + 6x40G Supervisor, Cisco 1RU Top Of Rack L2/L3 switch with ACI cevChassisN9KC9372TX OBJECT IDENTIFIER ::= { cevChassis 1627 } -- Cisco 48x10GT + 6x40G Supervisor, 48 10GBaseT and 6 QSFPs ports, Cisco 1RU Top Of Rack L2/L3 switch with ACI, 32 QSFP ports cevChassisCiscoQvPCVSM OBJECT IDENTIFIER ::= { cevChassis 1630 } -- Cisco QvPC over VSM (ASR9000 + Forge Card) cevChassisRAIE1783ZMS4T4E2TGN OBJECT IDENTIFIER ::= { cevChassis 1632 } -- Rockwell IE2000 IP67 Variant Switch with 4 port 10/100 downlink, 4-port POE /POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT @@ -1417,7 +1429,7 @@ cevChassisCDScde2802s21 OBJECT IDENTIFIER ::= { cevChassis 1644 cevChassisCDScde2802h0 OBJECT IDENTIFIER ::= { cevChassis 1645 } -- Cisco Content Delivery System Model CDE-280-2H0 cevChassisCDScde2802h13 OBJECT IDENTIFIER ::= { cevChassis 1646 } -- Cisco Content Delivery System Model CDE-280-2H13 cevChassisCDScde2802h26 OBJECT IDENTIFIER ::= { cevChassis 1647 } -- Cisco Content Delivery System Model CDE-280-2H26 -cevChassisN77c7702 OBJECT IDENTIFIER ::= { cevChassis 1648 } -- Nexus7700 2-slot chassis +cevChassisN77c7702 OBJECT IDENTIFIER ::= { cevChassis 1648 } -- Nexus7700 2-slot chassis cevChassis841Mx4X OBJECT IDENTIFIER ::= { cevChassis 1650 } -- C841M-4X/K9 router with 4GE LAN, 2GE WAN, 2 WIM slots cevChassis841Mx8X OBJECT IDENTIFIER ::= { cevChassis 1651 } -- C841M-8X/K9 router with 8GE LAN, 2GE WAN, 2 WIM slots cevChassisN2kC2332TQ10GT OBJECT IDENTIFIER ::= { cevChassis 1652 } -- Nexus 2332TQ Fex with 32 HIF ports (copper) and 4 NIF (uplink) ports @@ -1433,6 +1445,7 @@ cevChassisAsa5506H OBJECT IDENTIFIER ::= { cevChassis 1663 cevChassisAsa5516 OBJECT IDENTIFIER ::= { cevChassis 1664 } -- Cisco Adaptive Security Appliance (ASA) 5516 Chassis cevChassis819GWLTE OBJECT IDENTIFIER ::= { cevChassis 1665 } -- cisco819GWLTE router with 1 4G LTE interface, 4 Fast Ethernet LAN interfaces, 1GE WAN, 1 Serial(sync/async) interface, 2 terminal lines, 1 Virtual Private Network (VPN) Module, 1 cisco Embedded AP, 1 Console/Aux port, and 1GB FLASH cevChassisN3kC3548P10GX OBJECT IDENTIFIER ::= { cevChassis 1666 } -- Nexus 3500 Series 1 RU fixed chassis (Monticello-2) with 48 SFPs, 2 Power Supplies, 4 individual Fans +cevChassisASR92016SZIM OBJECT IDENTIFIER ::= { cevChassis 1667 } -- Cisco ASR920 Series - 12GE and 4-10GE - Modular PSU and IM cevChassisciscoIR829GWLTEVZAK9 OBJECT IDENTIFIER ::= { cevChassis 1668 } -- IR829 Hardened WAN GE 4G LTE secure platform multi-mode Verizon LTE/DoRa with 802.11n, PoE, FCC compliant cevChassisciscoIR829GWLTENAAK9 OBJECT IDENTIFIER ::= { cevChassis 1669 } -- IR829 Hardened WAN GE 4G LTE secure platform multi-mode ATT and Canada LTE/HSPA+ with 802.11n, PoE, FCC compliant cevChassisciscoIR829GWLTEGAEK9 OBJECT IDENTIFIER ::= { cevChassis 1670 } -- IR829 Hardened WAN GE 4G LTE secure platform multi-mode Global (Europe) LTE/HSPA+ with 802.11n, PoE, ETSI Compliant @@ -1447,7 +1460,7 @@ cevChassisISA30002C2F OBJECT IDENTIFIER ::= { cevChassis 1678 cevChassisRAISA1783SAD4T0S OBJECT IDENTIFIER ::= { cevChassis 1679 } -- Cisco Rockwell Industrial Security Appliance (ISA) 30004C Chassis cevChassisRAISA1783SAD2T2S OBJECT IDENTIFIER ::= { cevChassis 1680 } -- Cisco Rockwell Industrial Security Appliance (ISA) 30002C2F Chassis cevChassisISA4000 OBJECT IDENTIFIER ::= { cevChassis 1681 } -- CISCO Industrial Security Appliance (ISA) 4000 Chassis -cevChassisNCS5508CHASSIS OBJECT IDENTIFIER ::= { cevChassis 1682 } -- NCS5500 8 Slot Single Chassis +cevChassisNCS5508CHASSIS OBJECT IDENTIFIER ::= { cevChassis 1682 } -- NCS5500 8 Slot Single Chassis cevChassisDSC9718 OBJECT IDENTIFIER ::= { cevChassis 1683 } -- DS-C9718, Chassis for MDS 18-Slot Director Switch cevChassisN2KC2348TQ10GE OBJECT IDENTIFIER ::= { cevChassis 1684 } -- This product belongs to nexus 2k family of Fex's. This Fex is Currently in bringup stage. This FEX has 48 HIF ports (copper) and 6 NIF (uplink) ports. cevChassisC6816xle OBJECT IDENTIFIER ::= { cevChassis 1685 } -- Catalyst C6816-X-LE with 16x10G ports @@ -1461,7 +1474,7 @@ cevChassisN3KC3172PQOE OBJECT IDENTIFIER ::= { cevChassis 1693 cevChassisN3KC3172TQOE OBJECT IDENTIFIER ::= { cevChassis 1694 } -- Cisco chassis for N3K / QuickIron2, configured as environment hardware cevChassisN3KC3064XOE OBJECT IDENTIFIER ::= { cevChassis 1695 } -- Nexus 3000 Series 1 RU fixed chassis with 48 SFP+ and 4 QSFP ports, 2 Power Supplies and 1 Fan tray, configured as open environment hardware cevChassisN3KC3048OE OBJECT IDENTIFIER ::= { cevChassis 1696 } -- Nexus 3000 Series 1 RU fixed chassis with 48x1G-BaseT and 4x10GE SFP+ ports, no Power Supply, no fan, configured as open environment hardware -cevChassisN3KC3232C OBJECT IDENTIFIER ::= { cevChassis 1697 } -- 32x40/100G QSFP28, 2x10G SFP+ Ethernet +cevChassisN3KC3232C OBJECT IDENTIFIER ::= { cevChassis 1697 } -- 32x40/100G QSFP28, 2x10G SFP+ Ethernet cevChassisNamApp2420 OBJECT IDENTIFIER ::= { cevChassis 1698 } -- Cisco NAM Appliance 2420 cevChassisNamApp2440 OBJECT IDENTIFIER ::= { cevChassis 1699 } -- Cisco NAM Appliance 2440 cevChassisFlowAgent3300 OBJECT IDENTIFIER ::= { cevChassis 1700 } -- Cisco Integrated NetFlow Generation Agent Series 3300 @@ -1487,7 +1500,7 @@ cevChassis819GWLTELANK9 OBJECT IDENTIFIER ::= { cevChassis 1725 cevChassisN3KC3132QXL40GX OBJECT IDENTIFIER ::= { cevChassis 1726 } -- Nexus 3000 Series 1 RU fixed chassis with Nexus 3132Q 32 x QSFP+ports, 2 Power Supplies and 4 FANs cevChassisN3KC3172PQXL10GE OBJECT IDENTIFIER ::= { cevChassis 1727 } -- Nexus 3000 Series 1 RU fixed chassis with 48 x SFP+ and 6 QSFP+ports, 2 Power Supplies and 1 Fan tray cevChassisN3KC3172TQXL10GT OBJECT IDENTIFIER ::= { cevChassis 1728 } -- Nexus 3000 Series 1 RU fixed chassis with Nexus 3172P 48 x SFP+and 6 QSFP+ports, 2 Power Supplies and 1 Fan tray -cevChassisNCS4216SA OBJECT IDENTIFIER ::= { cevChassis 1729 } -- NCS 4216 shelf assembly - 16 slots-7 RU +cevChassisNCS4216SA OBJECT IDENTIFIER ::= { cevChassis 1729 } -- NCS 4216 shelf assembly - 16 slots-7 RU cevChassisNCS4206SA OBJECT IDENTIFIER ::= { cevChassis 1730 } -- NCS 4206 shelf assembly - 6 slots-3 RU cevChassisNCS4202SA OBJECT IDENTIFIER ::= { cevChassis 1731 } -- NCS 4202 shelf assembly - 4x10GE + 12xGE/FE + 1 slot-1 RU cevChassisASR901CC OBJECT IDENTIFIER ::= { cevChassis 1732 } -- ASR901-C platform with Conformal Coating @@ -1524,9 +1537,15 @@ cevChassisC897vagwlte OBJECT IDENTIFIER ::= { cevChassis 1766 cevChassisC886vagwlte OBJECT IDENTIFIER ::= { cevChassis 1767 } -- C886VAG-LTE-GA-K9 router with 1 WAN VDSL2/ADSL2+ over ISDN, 1 4G LTE secure platform multi-mode Global (Europe) LTE/HSPA+, 4 Fast Ethernet LAN, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevChassisCPUC897vagwlte OBJECT IDENTIFIER ::= { cevChassis 1768 } -- CPU for Cisco C897VAGW-LTE-GAEK9 cevChassisCPUC886vag OBJECT IDENTIFIER ::= { cevChassis 1769 } -- CPU for Cisco C886VAG-LTE-GA-K9 +cevChassisC365048FQM OBJECT IDENTIFIER ::= { cevChassis 1770 } -- Theon 48-Port, POE+, 4X10G Uplink +cevChassisC365024PDM OBJECT IDENTIFIER ::= { cevChassis 1771 } -- Theon 24-Port, POE+, 2X10G/2X1G Uplink +cevChassisC365012X48UR OBJECT IDENTIFIER ::= { cevChassis 1772 } -- 3650 mGig-48 with 8x10G UL 36 x 100/1000 UPoE + 12 x 1G/mGig/10G POE+/UPoE +cevChassisC365012X48UZ OBJECT IDENTIFIER ::= { cevChassis 1773 } -- 3650 mGig-48 with 2x40G UL 36 x 100/1000 UPoE + 12 x 1G/mGig/10G POE+/UPoE +cevChassisC36508X24UQ OBJECT IDENTIFIER ::= { cevChassis 1774 } -- 3650 mGig-24 with 4x10G UL 16 x 100/1000 UPoE + 8 x 1G/mGig/10G POE+/UPoE +cevChassisC365012X48UQ OBJECT IDENTIFIER ::= { cevChassis 1775 } -- 3650 mGig-48 with 4x10G UL 36 x 100/1000 UPoE + 12 x 1G/mGig/10G POE+/UPoE cevChassisASR1001HX OBJECT IDENTIFIER ::= { cevChassis 1776 } -- Cisco Aggregation Services Router 1000 Series, ASR1001-HX Chassis cevChassisN3KC3172PQXL10GE16 OBJECT IDENTIFIER ::= { cevChassis 1777 } -- Nexus 3000 Series 1 RU fixed chassis with 48 x SFP+ and 6 QSFP+ ports, 2 Power Supplies and 1 Fan tray -cevChassisN3KC3172PQXLOE OBJECT IDENTIFIER ::= { cevChassis 1778 } -- Nexus 3000 Series 1 RU fixed chassis with 48 x SFP+ and 6 QSFP+ports, 2 Power Supplies and 1 Fan tray, configured as open environment hardware +cevChassisN3KC3172PQXLOE OBJECT IDENTIFIER ::= { cevChassis 1778 } -- Nexus 3000 Series 1 RU fixed chassis with 48 x SFP+ and 6 QSFP+ports, 2 Power Supplies and 1 Fan tray, configured as open environment hardware cevChassisN3KC3132Q40GEOE OBJECT IDENTIFIER ::= { cevChassis 1779 } -- Cisco chassis for N3K / Neptune-GE, configured as open environment hardware cevChassisN3KC3232COE OBJECT IDENTIFIER ::= { cevChassis 1780 } -- Nexus 3000 series 32x40/100G QSFP28, 2x10G SFP+ Ethernet configured as open environment hardware cevChassisN3KC3264QOE OBJECT IDENTIFIER ::= { cevChassis 1781 } -- Nexus 3000 series 2 RU fiexed chassis with 64x40G QSFP Ethernet configured as open environment hardware @@ -1556,22 +1575,29 @@ cevChassisWSC2960L16TSLL OBJECT IDENTIFIER ::= { cevChassis 1806 cevChassisWSC2960L16PSLL OBJECT IDENTIFIER ::= { cevChassis 1807 } -- Catalyst 2960L 16 x GE downlink, POE support, 2 x GE (2 SFP) uplinks cevChassisWSC2960L8TSLL OBJECT IDENTIFIER ::= { cevChassis 1808 } -- Catalyst 2960L 8 x GE downlink, 2 x GE (2 SFP) uplinks cevChassisWSC2960L8PSLL OBJECT IDENTIFIER ::= { cevChassis 1809 } -- Catalyst 2960L 8 x GE downlink, POE support, 2 x GE (2 SFP) uplinks -cevChassisIE40104S24P OBJECT IDENTIFIER ::= { cevChassis 1810 } -- CISCO IE4010 with 4 1GE Fiber UL ports + 24 GE Copper DL ports with POE, w/FPGA +cevChassisIE40104S24P OBJECT IDENTIFIER ::= { cevChassis 1810 } -- CISCO IE4010 with 4 1GE Fiber UL ports + 24 GE Copper DL ports with POE, w/FPGA cevChassisIE401016S12P OBJECT IDENTIFIER ::= { cevChassis 1811 } -- CISCO IE4010 with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE + 12 GE Fiber DL ports, w/FPGA cevChassisN9KC93180YCEX OBJECT IDENTIFIER ::= { cevChassis 1812 } -- Nexus 9300 series chassis 48x10G/25G SFP+ and 6x40G/100G QSFP +cevChassisN9KC92304QC OBJECT IDENTIFIER ::= { cevChassis 1813 } -- Nexus 9000 series 2 RU fiexed chassis with 56x40G+8x100G Ethernet Module QSFP cevChassis86xVAEV2 OBJECT IDENTIFIER ::= { cevChassis 1818 } -- Chassis for C86xVAE series products -cevChassisRAIE1783LMS5 OBJECT IDENTIFIER ::= { cevChassis 1819 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 5x 10/100 BaseT Copper ports -cevChassisRAIE1783LMS8 OBJECT IDENTIFIER ::= { cevChassis 1820 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 8x 10/100 BaseT Copper ports +cevChassisRAIE1783LMS5 OBJECT IDENTIFIER ::= { cevChassis 1819 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 5x 10/100 BaseT Copper ports +cevChassisRAIE1783LMS8 OBJECT IDENTIFIER ::= { cevChassis 1820 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 8x 10/100 BaseT Copper ports cevChassisStealthWatch2404 OBJECT IDENTIFIER ::= { cevChassis 1821 } -- Cisco StealthWatch Packet Analyzer 2404 cevChassisStealthWatch2420 OBJECT IDENTIFIER ::= { cevChassis 1822 } -- Cisco StealthWatch Packet Analyzer 2420 cevChassisNamApp2404 OBJECT IDENTIFIER ::= { cevChassis 1823 } -- Cisco Prime NAM Appliance 2404 cevchassisN9KC93108TCEX OBJECT IDENTIFIER ::= { cevChassis 1824 } -- Cisco 1RU N9K-C93108TC-EX TOR chassis with 6x40G/100G uplink (6 QSFP/4 QSFP28) and 48x10G base T downlink +cevChassisC36508X24PD OBJECT IDENTIFIER ::= { cevChassis 1825 } -- 3650 mGig-24 with 2x10G UL 16 x 100/1000 + 8 x 1G/mGig/10G POE+ +cevChassisC365012X48FD OBJECT IDENTIFIER ::= { cevChassis 1826 } -- 3650 mGig-48 with 2x10G UL 36 x 100/1000 + 12 x 1G/mGig/10G POE+ cevChassisN1KVhv OBJECT IDENTIFIER ::= { cevChassis 1827 } -- Chassis for Nexus 1000V Virtual Supervisor Module on Hyperv platform +cevChassisUCSFI6454 OBJECT IDENTIFIER ::= { cevChassis 1828 } -- Cisco UCS Unified Computing System 6454 1RU In-Chassis FI with 40x10G/25G + 6x40G/100G + 8 UP Ports +cevChassisISR4221 OBJECT IDENTIFIER ::= { cevChassis 1829 } -- Cisco ISR 4221 Router Chassis +cevChassisISR4221B OBJECT IDENTIFIER ::= { cevChassis 1830 } -- Cisco ISR 4221 Router Boost Chassis cevChassisCSP2100 OBJECT IDENTIFIER ::= { cevChassis 1831 } -- Cloud Services Platform Model CSP-2100 -cevChassisMadeiraC480 OBJECT IDENTIFIER ::= { cevChassis 1833 } -- 4 socket C-series (rack) system -cevChassisCDB8U OBJECT IDENTIFIER ::= { cevChassis 1834 } -- Catalyst Digital Building 8 Port UPoE -cevChassisCDB8P OBJECT IDENTIFIER ::= { cevChassis 1835 } -- Catalyst Digital Building 8 Port PoE+ -cevChassisNCS4216F2BSA OBJECT IDENTIFIER ::= { cevChassis 1836 } -- NCS 4216 Front to Back Shelf Assembly (16 slots - 14 RU) - Includes Air Deflector Plenum and Brackets/Guides +cevChassisNCS5516CHASSIS OBJECT IDENTIFIER ::= { cevChassis 1832 } -- NCS5500 16 Slot Single Chassis +cevChassisMadeiraC480 OBJECT IDENTIFIER ::= { cevChassis 1833 } -- 4 socket C-series (rack) system +cevChassisCDB8U OBJECT IDENTIFIER ::= { cevChassis 1834 } -- Catalyst Digital Building 8 Port UPoE +cevChassisCDB8P OBJECT IDENTIFIER ::= { cevChassis 1835 } -- Catalyst Digital Building 8 Port PoE+ +cevChassisNCS4216F2BSA OBJECT IDENTIFIER ::= { cevChassis 1836 } -- NCS 4216 Front to Back Shelf Assembly (16 slots - 14 RU) - Includes Air Deflector Plenum and Brackets/Guides cevChassisNCS5501A2SE OBJECT IDENTIFIER ::= { cevChassis 1838 } -- NCS-5501 - 48x25GE and 6x100G Scale Chassis cevChassisN9KC9232C OBJECT IDENTIFIER ::= { cevChassis 1839 } -- Nexus 9000 series 1 RU fiexed chassis with with 32x40G/100G QSFP28 Ethernet cevChassisFPR2KDC OBJECT IDENTIFIER ::= { cevChassis 1840 } -- FirePOWER 2K chassis with DC power permanent @@ -1582,6 +1608,8 @@ cevChassisFpr2130td OBJECT IDENTIFIER ::= { cevChassis 1847 cevChassisFpr2120td OBJECT IDENTIFIER ::= { cevChassis 1848 } -- Cisco FirePOWER 2120 Security Appliance, 1U with embedded security module cevChassisFpr2110td OBJECT IDENTIFIER ::= { cevChassis 1849 } -- Cisco FirePOWER 2110 Security Appliance, 1U with embedded security module cevChassisN9KC93180YCFX OBJECT IDENTIFIER ::= { cevChassis 1850 } -- Nexus 9300 series chassis 48x10/25G (SFP28) and 6x40/100G (QSFP28) +cevChassisN54024Z8Q2CM OBJECT IDENTIFIER ::= { cevChassis 1853 } -- NCS 540 Series 24x1/10GE, 8x10/25GE, 2x100GE Fixed Chassis +cevChassisN9KC92300YC OBJECT IDENTIFIER ::= { cevChassis 1856 } -- Nexus 9000 series fixed chassis with 48x10/25G + 18x40/100G Ethernet cevChassisC11118P OBJECT IDENTIFIER ::= { cevChassis 1857 } -- Cisco C1111-8P Router Chassis cevChassisC11118PLteEA OBJECT IDENTIFIER ::= { cevChassis 1858 } -- Cisco C1111-8PLTEEA Router Chassis with Multimode Europe and North America Advanced LTE cevChassisC11118PLteLA OBJECT IDENTIFIER ::= { cevChassis 1859 } -- Cisco C1111-8PLTELA Router Chassis with Latin America Multimode and Asia Pacific Advanced LTE @@ -1619,30 +1647,31 @@ cevChassisC11138PLteLAWE OBJECT IDENTIFIER ::= { cevChassis 1890 cevChassisC11138PLteLAWZ OBJECT IDENTIFIER ::= { cevChassis 1891 } -- Cisco C1113-8PLTELAWZ Router Chassis cevChassisASR914 OBJECT IDENTIFIER ::= { cevChassis 1892 } -- ASR 914 Series Router Chassis cevChassisN9KC93108TCFX OBJECT IDENTIFIER ::= { cevChassis 1893 } -- Nexus 9300 series TOR chassis with 6x40G/100G uplink (QSFP28) and 48x10G BASE-T -cevChassisDSC9132TK9 OBJECT IDENTIFIER ::= { cevChassis 1894 } -- DS-C9132T-K9, MDS 9132T 32G 1 RU FC switch, with 16/32 active FC ports +cevChassisDSC9132TK9 OBJECT IDENTIFIER ::= { cevChassis 1894 } -- DS-C9132T-K9, MDS 9132T 32G 1 RU FC switch, with 16/32 active FC ports cevChassisDSC9232U OBJECT IDENTIFIER ::= { cevChassis 1895 } -- MDS 9232U 32G Universal 2 RU FC switch, with 48 active FC ports -cevChassisNCS4KFSADC OBJECT IDENTIFIER ::= { cevChassis 1896 } -- NCS 4000 Centralised Fabric Chassis Shelf Assembly - DC Power -cevChassisFpr1010td OBJECT IDENTIFIER ::= { cevChassis 1897 } -- Chassis for Cisco Firepower 1010 Security Appliance -cevChassis2911A OBJECT IDENTIFIER ::= { cevChassis 1899 } -- Cisco 2911A Chassis(3 GE, 4 EHWIC, 1 SM, 2 DSP) +cevChassisNCS4KFSADC OBJECT IDENTIFIER ::= { cevChassis 1896 } -- NCS 4000 Centralised Fabric Chassis Shelf Assembly - DC Power +cevChassisFpr1010td OBJECT IDENTIFIER ::= { cevChassis 1897 } -- Chassis for Cisco Firepower 1010 Security Appliance +cevChassis2911A OBJECT IDENTIFIER ::= { cevChassis 1899 } -- Cisco 2911A Chassis(3 GE, 4 EHWIC, 1 SM, 2 DSP) cevChassisC1100 OBJECT IDENTIFIER ::= { cevChassis 1902 } -- Cisco C1100 Series Chassis -cevChassisASR9906 OBJECT IDENTIFIER ::= { cevChassis 1903 } -- ASR 9906 4 Line Card Slot Chassis +cevChassisASR9906 OBJECT IDENTIFIER ::= { cevChassis 1903 } -- ASR 9906 4 Line Card Slot Chassis cevChassisASR9901 OBJECT IDENTIFIER ::= { cevChassis 1904 } -- ASR 9901 Chassis cevChassisNCS1001 OBJECT IDENTIFIER ::= { cevChassis 1905 } -- NCS1001 Platform cevChassisAIRCT5540K9 OBJECT IDENTIFIER ::= { cevChassis 1906 } -- AIRCT5540-K9 is a 40G Wireless LC that occupies 1RU rack space and will populate a total of 4 ports cevChassisAIRCT8580K9 OBJECT IDENTIFIER ::= { cevChassis 1907 } -- AIRCT8580-K9 is a 80G WLC that occupies 2RU rack space and will populate a total of 8 ports -cevChassisWSC2960L24TQLL OBJECT IDENTIFIER ::= { cevChassis 1908 } -- Catalyst 2960L 24 x GE downlink, 4 x 10GE (4 SFP+) uplinks -cevChassisWSC2960L48TQLL OBJECT IDENTIFIER ::= { cevChassis 1909 } -- Catalyst 2960L 48 x GE downlink, 4 x 10GE (4 SFP+) uplinks -cevChassisWSC2960L24PQLL OBJECT IDENTIFIER ::= { cevChassis 1910 } -- Catalyst 2960L 24 x GE downlink, 4 x 10GE (4 SFP+) uplinks, POE support -cevChassisWSC2960L48PQLL OBJECT IDENTIFIER ::= { cevChassis 1911 } -- Catalyst 2960L 48 x GE downlink, 4 x 10GE (4 SFP+) uplinks, POE support -cevChassisN3KC3264CE OBJECT IDENTIFIER ::= { cevChassis 1912 } -- Nexus 3000 series 2 RU fixed chassis with 64x100G QSFP Ethernet +cevChassisWSC2960L24TQLL OBJECT IDENTIFIER ::= { cevChassis 1908 } -- Catalyst 2960L 24 x GE downlink, 4 x 10GE (4 SFP+) uplinks +cevChassisWSC2960L48TQLL OBJECT IDENTIFIER ::= { cevChassis 1909 } -- Catalyst 2960L 48 x GE downlink, 4 x 10GE (4 SFP+) uplinks +cevChassisWSC2960L24PQLL OBJECT IDENTIFIER ::= { cevChassis 1910 } -- Catalyst 2960L 24 x GE downlink, 4 x 10GE (4 SFP+) uplinks, POE support +cevChassisWSC2960L48PQLL OBJECT IDENTIFIER ::= { cevChassis 1911 } -- Catalyst 2960L 48 x GE downlink, 4 x 10GE (4 SFP+) uplinks, POE support +cevChassisN3KC3264CE OBJECT IDENTIFIER ::= { cevChassis 1912 } -- Nexus 3000 series 2 RU fixed chassis with 64x100G QSFP Ethernet cevChassisC9404R OBJECT IDENTIFIER ::= { cevChassis 1913 } -- Cisco Catalyst 9400 Series 4 slot chassis -cevChassisC9407R OBJECT IDENTIFIER ::= { cevChassis 1914 } -- Cisco Catalyst 9400 Series 7 slot chassis -cevChassisC9410R OBJECT IDENTIFIER ::= { cevChassis 1915 } -- Cisco Catalyst 9400 Series 10 slot chassis -cevChassisASR920U16SZIM OBJECT IDENTIFIER ::= { cevChassis 1916 } -- Cisco ASR920U Series - 12GE and 4-10GE - Modular PSU and IM +cevChassisC9407R OBJECT IDENTIFIER ::= { cevChassis 1914 } -- Cisco Catalyst 9400 Series 7 slot chassis +cevChassisC9410R OBJECT IDENTIFIER ::= { cevChassis 1915 } -- Cisco Catalyst 9400 Series 10 slot chassis +cevChassisASR920U16SZIM OBJECT IDENTIFIER ::= { cevChassis 1916 } -- Cisco ASR920U Series - 12GE and 4-10GE - Modular PSU and IM cevChassisASR903U OBJECT IDENTIFIER ::= { cevChassis 1917 } -- Cisco Aggregation Services Router 900U Series, 3RU Chassis cevChassisASR902U OBJECT IDENTIFIER ::= { cevChassis 1918 } -- Cisco Aggregation Services Router 900U Series, 2RU Chassis cevChassisAIRCT9880K9 OBJECT IDENTIFIER ::= { cevChassis 1919 } -- AIR-CT9880-K9 is a 80G WLC that occupies 2RU rack space and will populate a total of 8 ports -cevchassisN9KC9348GCFXP OBJECT IDENTIFIER ::= { cevChassis 1921 } -- Nexus 9300 series 1RU TOR chassis with 48x100/1000Mbps (PoE) + 4x10G/25G SFP28 + 2x40G/100G QSFP28 +cevChassisC980040K9 OBJECT IDENTIFIER ::= { cevChassis 1920 } -- C9800-40-K9 is a 40G Wireless LC that occupies 1RU rack space and will populate a total of 4 ports +cevchassisN9KC9348GCFXP OBJECT IDENTIFIER ::= { cevChassis 1921 } -- Nexus 9300 series 1RU TOR chassis with 48x100/1000Mbps (PoE) + 4x10G/25G SFP28 + 2x40G/100G QSFP28 cevChassisC11114P OBJECT IDENTIFIER ::= { cevChassis 1922 } -- Cisco C11114P Router Chassis cevChassisC11114PLteEA OBJECT IDENTIFIER ::= { cevChassis 1923 } -- Cisco C1111-4PLTEEA Router Chassis with Multimode Europe and North America Advanced LTE cevChassisC11114PLteLA OBJECT IDENTIFIER ::= { cevChassis 1924 } -- Cisco C1111-4PLTELA Router Chassis with Latin America Multimode and Asia Pacific Advanced LTE @@ -1670,7 +1699,7 @@ cevChassisC11174PMLteEA OBJECT IDENTIFIER ::= { cevChassis 1945 icevChassisC11174PMWE OBJECT IDENTIFIER ::= { cevChassis 1946 } -- Cisco C1117-4PMWE Router Chassis with WLAN E domain cevChassisC11174PLteEAWE OBJECT IDENTIFIER ::= { cevChassis 1947 } -- Cisco C1117-4PLTEEAWE Router Chassis cevChassisC11174PLteEAWA OBJECT IDENTIFIER ::= { cevChassis 1948 } -- Cisco C1117-4PLTEEAWA Router Chassis -cevChassisC11174PLteLAWZ OBJECT IDENTIFIER ::= { cevChassis 1949 } -- Cisco C1117-4PLTEEAWZ Router Chassis +cevChassisC11174PLteLAWZ OBJECT IDENTIFIER ::= { cevChassis 1949 } -- Cisco C1117-4PLTEEAWZ Router Chassis cevChassisC11174PMLteEAWE OBJECT IDENTIFIER ::= { cevChassis 1950 } -- Cisco C1117-4PMLTEEAWE Router Chassis cevChassisN9KV9000 OBJECT IDENTIFIER ::= { cevChassis 1951 } -- Nexus 9000v Virtual Platform cevChassisC11114PWE OBJECT IDENTIFIER ::= { cevChassis 1952 } -- Cisco C1111-4PWE Router Chassis with WLAN E domain @@ -1694,23 +1723,32 @@ cevChassisN520X4G4ZD OBJECT IDENTIFIER ::= { cevChassis 1978 cevChassisN520X20G4ZA OBJECT IDENTIFIER ::= { cevChassis 1979 } -- Cisco NCS520 Series - 20-1GE and 4-10GE - Dual AC, I-Temp, conformal Coated model cevChassisN520X20G4ZD OBJECT IDENTIFIER ::= { cevChassis 1980 } -- Cisco NCS520 Series - 20-1GE and 4-10GE - Dual DC, I-Temp, conformal Coated model cevChassisC9200L48T4G OBJECT IDENTIFIER ::= { cevChassis 1981 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks -cevChassisC9200L24T4G OBJECT IDENTIFIER ::= { cevChassis 1982 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks -cevChassisC9200L24T4X OBJECT IDENTIFIER ::= { cevChassis 1983 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks -cevChassisC9200L48T4X OBJECT IDENTIFIER ::= { cevChassis 1984 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks -cevChassisC9200L24P4G OBJECT IDENTIFIER ::= { cevChassis 1985 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks. PoE support for 720W -cevChassisC9200L48P4G OBJECT IDENTIFIER ::= { cevChassis 1986 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks. PoE support for 720W -cevChassisC9200L24P4X OBJECT IDENTIFIER ::= { cevChassis 1987 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks. PoE support for 720W -cevChassisC9200L48P4X OBJECT IDENTIFIER ::= { cevChassis 1988 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks. PoE support for 1440W -cevChassisC9200L24PXG4X OBJECT IDENTIFIER ::= { cevChassis 1989 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 4 SFP+ uplinks. PoE support for 720W -cevChassisC9200L24PXG2Y OBJECT IDENTIFIER ::= { cevChassis 1990 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 720W -cevChassisC9200L48PXG4X OBJECT IDENTIFIER ::= { cevChassis 1991 } -- Catalyst 9200L 36 Gig + 12 mGig Downlinks, 4 SFP+ uplinks. PoE support for 1440W -cevChassisC9200L48PXG2Y OBJECT IDENTIFIER ::= { cevChassis 1992 } -- Catalyst 9200L 40 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 1440W -cevChassisC920024T OBJECT IDENTIFIER ::= { cevChassis 1993 } -- Catalyst 9200 24 Gig downlinks -cevChassisC920048T OBJECT IDENTIFIER ::= { cevChassis 1994 } -- Catalyst 9200 48 Gig downlinks -cevChassisC920024P OBJECT IDENTIFIER ::= { cevChassis 1995 } -- Catalyst 9200 24 Gig downlinks. PoE support for 720W -cevChassisC920048P OBJECT IDENTIFIER ::= { cevChassis 1996 } -- Catalyst 9200 48 Gig downlinks. PoE support for 1440W +cevChassisC9200L24T4G OBJECT IDENTIFIER ::= { cevChassis 1982 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks +cevChassisC9200L24T4X OBJECT IDENTIFIER ::= { cevChassis 1983 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks +cevChassisC9200L48T4X OBJECT IDENTIFIER ::= { cevChassis 1984 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks +cevChassisC9200L24P4G OBJECT IDENTIFIER ::= { cevChassis 1985 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks. PoE support for 740W +cevChassisC9200L48P4G OBJECT IDENTIFIER ::= { cevChassis 1986 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks. PoE support for 1480W +cevChassisC9200L24P4X OBJECT IDENTIFIER ::= { cevChassis 1987 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks. PoE support for 740W +cevChassisC9200L48P4X OBJECT IDENTIFIER ::= { cevChassis 1988 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks. PoE support for 1480W +cevChassisC9200L24PXG4X OBJECT IDENTIFIER ::= { cevChassis 1989 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 4 SFP+ uplinks. PoE support for 740W +cevChassisC9200L24PXG2Y OBJECT IDENTIFIER ::= { cevChassis 1990 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 740W +cevChassisC9200L48PXG4X OBJECT IDENTIFIER ::= { cevChassis 1991 } -- Catalyst 9200L 36 Gig + 12 mGig Downlinks, 4 SFP+ uplinks. PoE support for 1480W +cevChassisC9200L48PXG2Y OBJECT IDENTIFIER ::= { cevChassis 1992 } -- Catalyst 9200L 40 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 1480W +cevChassisC920024T OBJECT IDENTIFIER ::= { cevChassis 1993 } -- Catalyst 9200 24 Gig downlinks +cevChassisC920048T OBJECT IDENTIFIER ::= { cevChassis 1994 } -- Catalyst 9200 48 Gig downlinks +cevChassisC920024P OBJECT IDENTIFIER ::= { cevChassis 1995 } -- Catalyst 9200 24 Gig downlinks. PoE support for 740W +cevChassisC920048P OBJECT IDENTIFIER ::= { cevChassis 1996 } -- Catalyst 9200 48 Gig downlinks. PoE support for 1480W +cevChassisC920024PXG OBJECT IDENTIFIER ::= { cevChassis 1997 } -- Catalyst 9200 16 Gig + 8 mGig downlinks. PoE support for 740W +cevChassisC920048PXG OBJECT IDENTIFIER ::= { cevChassis 1998 } -- Catalyst 9200 40 Gig + 8 mGig downlinks. PoE support for 1480W +cevChassisWedge10012VF OBJECT IDENTIFIER ::= { cevChassis 1999 } -- Facebook fixed chassis with with 32 100G Ethernet Module +cevChassisS4048TON OBJECT IDENTIFIER ::= { cevChassis 2006 } -- Dell fixed chassis with 48x10G and 6x40G Ethernet module +cevChassisZ9100ON OBJECT IDENTIFIER ::= { cevChassis 2007 } -- Dell fixed chassis with 32x40/100G QSFP28 and 2x10G SFP+ Ethernet module +cevChassisT7032IX1 OBJECT IDENTIFIER ::= { cevChassis 2008 } -- Dell fixed chassis with 32x100G Ethernet module cevChassisN540X24Z8Q2CM OBJECT IDENTIFIER ::= { cevChassis 2009 } -- Conformal Coated NCS 540 Series Router 24x10G, 8x25G, 2x100G -cevChassisN9KC93240YCFX2 OBJECT IDENTIFIER ::= { cevChassis 2010 } -- Nexus 9300 series chassis 48x10/25G + 12x40/100G +cevChassisN9KC93240YCFX2 OBJECT IDENTIFIER ::= { cevChassis 2010 } -- Nexus 9300 series chassis 48x10/25G + 12x40/100G +cevChassis8818 OBJECT IDENTIFIER ::= { cevChassis 2011 } -- Cisco 8818 18 LC Slot Chassis +cevChassis8812 OBJECT IDENTIFIER ::= { cevChassis 2012 } -- Cisco 8812 12 LC Slot Chassis +cevChassis8808 OBJECT IDENTIFIER ::= { cevChassis 2013 } -- Cisco 8808 8 LC Slot Chassis cevChassisC11092PLteIN OBJECT IDENTIFIER ::= { cevChassis 2015 } -- Cisco C1109-2PLTEIN 2 ports GE LAN M2M Router Chassis with Multimode LTE WWAN India, 1 GE WAN and USB 3.0/Micro USB Console cevChassisC11014P OBJECT IDENTIFIER ::= { cevChassis 2016 } -- Cisco C1101-4P 4 Ports GE LAN Router Chassis, 1 GE WAN and USB 3.0/Micro USB Console cevChassisC11014PLteP OBJECT IDENTIFIER ::= { cevChassis 2017 } -- Cisco C1101-4PLTEP 4 Ports GE LAN Router Chassis, Pluggable LTE (Advanced) or Pluggable High Speed Serial WAN, 1 GE WAN and USB 3.0/Micro USB Console @@ -1737,12 +1775,16 @@ cevChassisC11094PLte2PWR OBJECT IDENTIFIER ::= { cevChassis 2037 cevChassisC11094PLte2PWF OBJECT IDENTIFIER ::= { cevChassis 2038 } -- Cisco C1109-4PLTE2P 4 Ports GE LAN M2M Router Chassis, Dual Pluggables LTE (Advanced) or Pluggable High Speed Serial WAN, 802.11ac WLAN -F Domain, 1 GE WAN and USB 3.0/Micro USB Console cevChassisN3KC3548PXL OBJECT IDENTIFIER ::= { cevChassis 2039 } -- Nexus 3500 Series 1 RU fixed chassis (Monticello-2) with 48 SFPs, 2 Power Supplies, 4 individual Fans cevChassisC9606 OBJECT IDENTIFIER ::= { cevChassis 2040 } -- Cisco Catalyst 9600 Series 6 Slot Chassis +cevChassis8201 OBJECT IDENTIFIER ::= { cevChassis 2044 } -- Cisco 8201 1RU Chassis with 24x400GE QSFP56-DD & 12x100G QSFP28 +cevChassis8202 OBJECT IDENTIFIER ::= { cevChassis 2045 } -- Cisco 8202 2RU Chassis with 12x400GE QSFP56-DD & 60x100GE QSFP28 cevChassisC11092PLteGB OBJECT IDENTIFIER ::= { cevChassis 2047 } -- Cisco C1109-2PLTEGB 2 ports GE LAN M2M Router Chassis with Multimode LTE WWAN Global (non-US), 1 GE WAN and USB 3.0/Micro USB Console cevChassisC11092PLteUS OBJECT IDENTIFIER ::= { cevChassis 2048 } -- Cisco C1109-2PLTEUS 2 ports GE LAN M2M Router Chassis with Multimode LTE WWAN United States, 1 GE WAN and USB 3.0/Micro USB Console cevChassisC11092PLteVZ OBJECT IDENTIFIER ::= { cevChassis 2049 } -- Cisco C1109-2PLTEVZ 2 ports GE LAN M2M Router Chassis with Multimode LTE WWAN Verizon, 1 GE WAN and USB 3.0/Micro USB Console cevChassisC11092PLteJN OBJECT IDENTIFIER ::= { cevChassis 2050 } -- Cisco C1109-2PLTEJN 2 ports GE LAN M2M Router Chassis with Multimode LTE WWAN Japan, 1 GE WAN and USB 3.0/Micro USB Console cevChassisC11092PLteAU OBJECT IDENTIFIER ::= { cevChassis 2051 } -- Cisco C1109-2PLTEAU 2 ports GE LAN M2M Router Chassis with Multimode LTE WWAN Australia and New Zealand, 1 GE WAN and USB 3.0/Micro USB Console -cevChassisDSC9148TK9 OBJECT IDENTIFIER ::= { cevChassis 2054 } -- DS-C9148T-K9, MDS 9148T 32G 1 RU FC switch, with 48 active ports +cevChassis731254XOACB OBJECT IDENTIFIER ::= { cevChassis 2052 } -- Walmart fixed chassis with 48x25G + 6x100G Ethernet Module +cevChassis771232XOACB OBJECT IDENTIFIER ::= { cevChassis 2053 } -- Walmart fixed chassis with 32x100G Ethernet Module +cevChassisDSC9148TK9 OBJECT IDENTIFIER ::= { cevChassis 2054 } -- DS-C9148T-K9, MDS 9148T 32G 1 RU FC switch, with 48 active ports cevChassisDSC9396TK9 OBJECT IDENTIFIER ::= { cevChassis 2055 } -- DS-C9396T-K9, MDS 9396T 32G 2 RU FC switch, upto 96 active ports cevChassisC11128PWE OBJECT IDENTIFIER ::= { cevChassis 2056 } -- Cisco C1112-8PWE Router Chassis with WLAN E domain cevChassisC11128PLteEAWE OBJECT IDENTIFIER ::= { cevChassis 2057 } -- Cisco C1112-8PLTEEAWE Router Chassis @@ -1750,15 +1792,17 @@ cevChassisC11138PWB OBJECT IDENTIFIER ::= { cevChassis 2058 cevChassisC11138PLteEAWB OBJECT IDENTIFIER ::= { cevChassis 2059 } -- Cisco C1113-8PLTEEAWB Router Chassis cevChassisC11138PLteLAWA OBJECT IDENTIFIER ::= { cevChassis 2060 } -- Cisco C1113-8PLTELAWA Router Chassis cevChassisC11164PLteLA OBJECT IDENTIFIER ::= { cevChassis 2061 } -- Cisco C1116-4PLTELA Router Chassis with Latin America Multimode and Asia Pacific Advanced LTE -cevChassisIR1101K9 OBJECT IDENTIFIER ::= { cevChassis 2062 } -- Next-generation Industrial Modular Router with 4 Copper Ports + 1 Combo Port + expansion slot, no Fog computing +cevChassisIR1101K9 OBJECT IDENTIFIER ::= { cevChassis 2062 } -- Next-generation Industrial Modular Router with 4 Copper Ports + 1 Combo Port + expansion slot, no Fog computing cevChassisFpr1140td OBJECT IDENTIFIER ::= { cevChassis 2065 } -- Cisco Firepower 1140 Security Appliance cevChassisFpr1120td OBJECT IDENTIFIER ::= { cevChassis 2066 } -- Cisco Firepower 1120 Security Appliance +cevChassisDX010 OBJECT IDENTIFIER ::= { cevChassis 2069 } -- Celestica fixed chassis with 32x100G Ethernet Module cevChassisISR4221X OBJECT IDENTIFIER ::= { cevChassis 2070 } -- Cisco ISR 4221X Router Chassis with 8 GB memory cevChassisC1111X8P OBJECT IDENTIFIER ::= { cevChassis 2071 } -- Cisco C1111X-8P Router Chassis +cevChassisC980080K9 OBJECT IDENTIFIER ::= { cevChassis 2072 } -- C9800-80-K9 is a 80G WLC that occupies 2RU rack space and will populate a total of 8 ports cevChassisASR92012SZD OBJECT IDENTIFIER ::= { cevChassis 2073 } -- Cisco ASR920 Series - 12 port dual rate 10G/1G DC Power Supply cevChassisASR92012SZA OBJECT IDENTIFIER ::= { cevChassis 2074 } -- Cisco ASR920 Series - 12 port dual rate 10G/1G AC Power Supply -cevChassisN9KC9332C OBJECT IDENTIFIER ::= { cevChassis 2076 } -- 32x100G QSFP28 + 2x10G SFP+ Ethernet -cevChassisN3KC3132CZ OBJECT IDENTIFIER ::= { cevChassis 2077 } -- 32x40/100G QSFP28 2x10G SFP+ Ethernet Module +cevChassisN9KC9332C OBJECT IDENTIFIER ::= { cevChassis 2076 } -- 32x100G QSFP28 + 2x10G SFP+ Ethernet +cevChassisN3KC3132CZ OBJECT IDENTIFIER ::= { cevChassis 2077 } -- 32x40/100G QSFP28 2x10G SFP+ Ethernet Module cevChassisISR4461 OBJECT IDENTIFIER ::= { cevChassis 2078 } -- Cisco ISR 4461 Router Chassis cevChassisESS3300NCP OBJECT IDENTIFIER ::= { cevChassis 2079 } -- Cisco ESS-3300 Embedded Service Switch with 8 Gig Downlinks and 2x10G SFP+ Switch, Main Board, No cooling plate cevChassisESS3300CON OBJECT IDENTIFIER ::= { cevChassis 2080 } -- Cisco ESS-3300 Embedded Service Switch with 8 Gig Downlinks and 2x10G SFP+ Switch, Main Board, Conduction cooled @@ -1766,52 +1810,55 @@ cevChassisIE32008T2S OBJECT IDENTIFIER ::= { cevChassis 2081 cevChassisIE32008P2S OBJECT IDENTIFIER ::= { cevChassis 2082 } -- Cisco Industrial Ethernet 3200 Switch, Petra Fixed System 2 Port SFP + 8 Port GE PoE+ Basic cevChassisIE33008T2S OBJECT IDENTIFIER ::= { cevChassis 2083 } -- Cisco Industrial Ethernet 3300 Switch, Petra Expandable System 2 Port SFP + 8 Port GE Copper Basic cevChassisIE33008P2S OBJECT IDENTIFIER ::= { cevChassis 2084 } -- Cisco Industrial Ethernet 3300 Switch, Petra Expandable System 2 Port SFP + 8 Port GE PoE+ Basic -cevChassisIE34008P2S OBJECT IDENTIFIER ::= { cevChassis 2085 } -- Cisco Industrial Ethernet 3400 Switch, Petra Expandable System 2 Port SFP + 8 Port GE PoE+ Adv -cevChassisNamApp2520 OBJECT IDENTIFIER ::= { cevChassis 2086 } -- Cisco NAM Appliance 2520 -cevChassisNamApp2540 OBJECT IDENTIFIER ::= { cevChassis 2087 } -- Cisco NAM Appliance 2540 -cevChassisCSPA2520 OBJECT IDENTIFIER ::= { cevChassis 2088 } -- Cisco Security Packet Analyzer 2520 +cevChassisIE34008P2S OBJECT IDENTIFIER ::= { cevChassis 2085 } -- Cisco Industrial Ethernet 3400 Switch, Petra Expandable System 2 Port SFP + 8 Port GE PoE+ Adv +cevChassisNamApp2520 OBJECT IDENTIFIER ::= { cevChassis 2086 } -- Cisco NAM Appliance 2520 +cevChassisNamApp2540 OBJECT IDENTIFIER ::= { cevChassis 2087 } -- Cisco NAM Appliance 2540 +cevChassisCSPA2520 OBJECT IDENTIFIER ::= { cevChassis 2088 } -- Cisco Security Packet Analyzer 2520 cevChassisIR829MLTELAxK9 OBJECT IDENTIFIER ::= { cevChassis 2089 } -- Cisco 829 Single LTE with mSATA card and POE cevChassisIR829M2LTEEAxK9 OBJECT IDENTIFIER ::= { cevChassis 2090 } -- Cisco 829 Dual LTE with mSATA card and POE cevChassisIR829M2LTELAxK9 OBJECT IDENTIFIER ::= { cevChassis 2091 } -- Cisco 829 Dual LTE with mSATA card and POE cevChassisIR829MLTEEAxK9 OBJECT IDENTIFIER ::= { cevChassis 2092 } -- Cisco 829 Single LTE with mSATA card and POE cevChassisIR829BLTEEAxK9 OBJECT IDENTIFIER ::= { cevChassis 2093 } -- Cisco 829 4G LTE Industrial Integrated Service Routers with multi-mode LTE/HSPA+ with 802.11n, no POE and no mSATA card, FCC compliant cevChassisIR829BLTELAxK9 OBJECT IDENTIFIER ::= { cevChassis 2094 } -- Cisco 829 4G LTE Industrial Integrated Service Routers with multi-mode LTE/HSPA+ with 802.11n, no POE and no mSATA card, FCC compliant -cevChassisIR829B2LTEEAxK9 OBJECT IDENTIFIER ::= { cevChassis 2095 } -- Cisco 829 4G LTE Dual-modem Industrial Integrated Service Routers with multi-mode LTE/HSPA+ with 802.11n, no POE and no mSATA card, FCC compliant +cevChassisIR829B2LTEEAxK9 OBJECT IDENTIFIER ::= { cevChassis 2095 } -- Cisco 829 4G LTE Dual-modem Industrial Integrated Service Routers with multi-mode LTE/HSPA+ with 802.11n, no POE and no mSATA card, FCC compliant cevChassisIR829B2LTELAxK9 OBJECT IDENTIFIER ::= { cevChassis 2096 } -- Cisco 829 4G LTE Dual-modem Industrial Integrated Service Routers with multi-mode LTE/HSPA+ with 802.11n, no POE and no mSATA card, FCC compliant -cevChassisIR809GLTENAK9 OBJECT IDENTIFIER ::= { cevChassis 2097 } -- Cisco 809 4G LTE Industrial Integrated Service Routers with multi-mode AT&T and Canada LTE/HSPA+ +cevChassisIR809GLTENAK9 OBJECT IDENTIFIER ::= { cevChassis 2097 } -- Cisco 809 4G LTE Industrial Integrated Service Routers with multi-mode AT&T and Canada LTE/HSPA+ cevChassisIR809GLTEVZK9 OBJECT IDENTIFIER ::= { cevChassis 2098 } -- Cisco 809 4G LTE Industrial Integrated Service Routers with multi-mode Verizon LTE/DoRA -cevChassisIR809GLTEGAK9 OBJECT IDENTIFIER ::= { cevChassis 2099 } -- Cisco 809 4G LTE Industrial Integrated Service Routers with multi-mode Global (Europe & Australia)LTE/HSPA+ +cevChassisIR809GLTEGAK9 OBJECT IDENTIFIER ::= { cevChassis 2099 } -- Cisco 809 4G LTE Industrial Integrated Service Routers with multi-mode Global (Europe & Australia)LTE/HSPA+ cevChassisIR809GLTELAK9 OBJECT IDENTIFIER ::= { cevChassis 2100 } -- Cisco 809 4G LTE Industrial Integrated Service Routers with multi-mode LTE/HSPA+, ETSI compliant cevChassisVG450 OBJECT IDENTIFIER ::= { cevChassis 2101 } -- Cisco VG450 Router Chassis cevChassisASR92020SZM OBJECT IDENTIFIER ::= { cevChassis 2102 } -- Cisco ASR920 Series - 4GE Copper, 20GE SFP and 4-10GE - Modular PSU -cevChassisRAIE1783MMS10B OBJECT IDENTIFIER ::= { cevChassis 2103 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Fixed System 2 Port SFP + 8 Port GE Copper Basic -cevChassisRAIE1783MMS10BE OBJECT IDENTIFIER ::= { cevChassis 2104 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Fixed System 2 Port SFP + 8 Port GE PoE+ Basic +cevChassisRAIE1783MMS10B OBJECT IDENTIFIER ::= { cevChassis 2103 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Fixed System 2 Port SFP + 8 Port GE Copper Basic +cevChassisRAIE1783MMS10BE OBJECT IDENTIFIER ::= { cevChassis 2104 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Fixed System 2 Port SFP + 8 Port GE PoE+ Basic cevChassisRAIE1783MMS10 OBJECT IDENTIFIER ::= { cevChassis 2105 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Expandable System 2 Port SFP + 8 Port GE Copper Basic -cevChassisRAIE1783MMS10R OBJECT IDENTIFIER ::= { cevChassis 2106 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Advantage, Expandable System 2 Port SFP + 8 Port GE Copper Basic +cevChassisRAIE1783MMS10R OBJECT IDENTIFIER ::= { cevChassis 2106 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Advantage, Expandable System 2 Port SFP + 8 Port GE Copper Basic cevChassisRAIE1783MMS10E OBJECT IDENTIFIER ::= { cevChassis 2107 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Expandable System 2 Port SFP + 8 Port GE PoE+ Basic cevChassisRAIE1783MMS10ER OBJECT IDENTIFIER ::= { cevChassis 2108 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Advantage, Expandable System 2 Port SFP + 8 Port GE PoE+ Basic cevChassisRAIE1783MMS10EA OBJECT IDENTIFIER ::= { cevChassis 2109 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Expandable System 2 Port SFP + 8 Port GE PoE+ Advanced -cevChassisRAIE1783MMS10EAR OBJECT IDENTIFIER ::= { cevChassis 2110 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Advantage, Expandable System 2 Port SFP + 8 Port GE PoE+ Advanced -cevChassisIR807GLTEGAK9 OBJECT IDENTIFIER ::= { cevChassis 2113 } -- Cisco 807 4G LTE Industrial Integrated Service Routers with multi-mode Global (Europe & Australia) LTE/HSPA+ +cevChassisRAIE1783MMS10EAR OBJECT IDENTIFIER ::= { cevChassis 2110 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Advantage, Expandable System 2 Port SFP + 8 Port GE PoE+ Advanced +cevChassisN3KC34180YC OBJECT IDENTIFIER ::= { cevChassis 2111 } -- Nexus 3000 Series 2 RU fixed chassis with 48x10G/25G + 6x40/100G module +cevChassisN3KC3464C OBJECT IDENTIFIER ::= { cevChassis 2112 } -- Nexus 3000 Series 1 RU fixed chassis with 64x100G QSFP28 + 2x10G SFP module +cevChassisIR807GLTEGAK9 OBJECT IDENTIFIER ::= { cevChassis 2113 } -- Cisco 807 4G LTE Industrial Integrated Service Routers with multi-mode Global (Europe & Australia) LTE/HSPA+ cevChassisIR807GLTENAK9 OBJECT IDENTIFIER ::= { cevChassis 2114 } -- Cisco 807 4G LTE Industrial Integrated Service Routers with multi-mode AT&T and Canada LTE/HSPA+ cevChassisN9KC93240YCFX2Z OBJECT IDENTIFIER ::= { cevChassis 2115 } -- Nexus 9300 series fixed chassis with 48x10/25G SFP+ & 12x40/100G cevChassisN9KC93360YCFX3 OBJECT IDENTIFIER ::= { cevChassis 2117 } -- 2RU TOR fixed chassis with 96x10/25G SFP28 + 12x40/100G QSFP28 ports -cevChassisC941J4P OBJECT IDENTIFIER ::= { cevChassis 2119 } -- C941J-4P Router with 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 2GB DDR4 DRAM(x64) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevChassisNCS55A2MODHDS OBJECT IDENTIFIER ::= { cevChassis 2118 } -- NCS55A2 Fixed 24x10G & 16x25G with 2xMPA Chassis +cevChassisC941J4P OBJECT IDENTIFIER ::= { cevChassis 2119 } -- C941J-4P Router with 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 2GB DDR4 DRAM(x64) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevChassisC9214P OBJECT IDENTIFIER ::= { cevChassis 2120 } -- C921-4P Router with 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevChassisC9314P OBJECT IDENTIFIER ::= { cevChassis 2121 } -- C931-4P Router with Internal Power Supply, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevChassisC941J4PLTEJN OBJECT IDENTIFIER ::= { cevChassis 2122 } -- C941J-4PLTEJN Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 2GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevChassisC9214PLTEGB OBJECT IDENTIFIER ::= { cevChassis 2123 } -- C921-4PLTE GB Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevChassisC9214PLTEAS OBJECT IDENTIFIER ::= { cevChassis 2124 } -- C921-4PLTE AS Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevChassisC9214PLTEAU OBJECT IDENTIFIER ::= { cevChassis 2125 } -- C921-4PLTE AU Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevChassisC9214PLTENA OBJECT IDENTIFIER ::= { cevChassis 2126 } -- C921-4PLTE NA Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevChassisC921J4P OBJECT IDENTIFIER ::= { cevChassis 2127 } -- C921J-4P Router with, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevChassisC9274P OBJECT IDENTIFIER ::= { cevChassis 2128 } -- C927-4P Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevChassisC9214PLTEGB OBJECT IDENTIFIER ::= { cevChassis 2123 } -- C921-4PLTE GB Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevChassisC9214PLTEAS OBJECT IDENTIFIER ::= { cevChassis 2124 } -- C921-4PLTE AS Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevChassisC9214PLTEAU OBJECT IDENTIFIER ::= { cevChassis 2125 } -- C921-4PLTE AU Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevChassisC9214PLTENA OBJECT IDENTIFIER ::= { cevChassis 2126 } -- C921-4PLTE NA Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevChassisC921J4P OBJECT IDENTIFIER ::= { cevChassis 2127 } -- C921J-4P Router with, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevChassisC9274P OBJECT IDENTIFIER ::= { cevChassis 2128 } -- C927-4P Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevChassisC9274PM OBJECT IDENTIFIER ::= { cevChassis 2129 } -- C927-4PM Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevChassisC9264P OBJECT IDENTIFIER ::= { cevChassis 2130 } -- C926-4P Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevChassisC9274PLTEAU OBJECT IDENTIFIER ::= { cevChassis 2131 } -- C927-4PLTE AU Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevChassisC9274PLTENA OBJECT IDENTIFIER ::= { cevChassis 2132 } -- C927-4PLTE NA Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevChassisC9274PLTEGB OBJECT IDENTIFIER ::= { cevChassis 2133 } -- C927-4PLTE GB Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevChassisC9274PMLTEGB OBJECT IDENTIFIER ::= { cevChassis 2134 } -- C927-4PMLTEGB Router with 1 Eth+DSL with Annex M, 1 LTE interface,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevChassisC9274PLTEAU OBJECT IDENTIFIER ::= { cevChassis 2131 } -- C927-4PLTE AU Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevChassisC9274PLTENA OBJECT IDENTIFIER ::= { cevChassis 2132 } -- C927-4PLTE NA Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevChassisC9274PLTEGB OBJECT IDENTIFIER ::= { cevChassis 2133 } -- C927-4PLTE GB Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevChassisC9274PMLTEGB OBJECT IDENTIFIER ::= { cevChassis 2134 } -- C927-4PMLTEGB Router with 1 Eth+DSL with Annex M, 1 LTE interface,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevChassisC9264PLTEGB OBJECT IDENTIFIER ::= { cevChassis 2135 } -- C926-4PLTEGB Router with 1 Eth+DSL, 1 LTE interface,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevChassisC931J4P OBJECT IDENTIFIER ::= { cevChassis 2139 } -- C931J-4P Router with External Power Supply 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevChassisNCS5064 OBJECT IDENTIFIER ::= { cevChassis 2140 } -- Cisco NCS 5064 Series Router @@ -1820,19 +1867,52 @@ cevChassisC11118PLteLAWS OBJECT IDENTIFIER ::= { cevChassis 2142 cevChassisC11118PLteLAWA OBJECT IDENTIFIER ::= { cevChassis 2143 } -- Cisco C1111-8PLTELAWA Router Chassis cevChassisC11118PLteLAWE OBJECT IDENTIFIER ::= { cevChassis 2144 } -- Cisco C1111-8PLTELAWE Router Chassis cevChassis9200LFixedSwitchStack OBJECT IDENTIFIER ::= { cevChassis 2145 } -- A stack of any Cisco Catalyst 9200L Fixed stack-able ethernet switches with unified identity (as a single unified switch), control and management -cevChassis9200FixedSwitchStack OBJECT IDENTIFIER ::= { cevChassis 2146 } -- A stack of any Cisco Catalyst 9200 Fixed stack-able ethernet switches with unified identity (as a single unified switch), control and management +cevChassis9200FixedSwitchStack OBJECT IDENTIFIER ::= { cevChassis 2146 } -- A stack of any Cisco Catalyst 9200 Fixed stack-able ethernet switches with unified identity (as a single unified switch), control and management cevChassisNCS1004 OBJECT IDENTIFIER ::= { cevChassis 2147 } -- NCS1004 System (1RP, 3 FANs, 2 Powers, 4 LCs) +cevChassisC11218PLteP OBJECT IDENTIFIER ::= { cevChassis 2148 } -- Cisco C1121-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1121X8PLTEP OBJECT IDENTIFIER ::= { cevChassis 2149 } -- Cisco C1121X-8PLTEP 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11218PLtePWE OBJECT IDENTIFIER ::= { cevChassis 2150 } -- Cisco C1121-8PLTEPWE 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -E Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11218PLtePWB OBJECT IDENTIFIER ::= { cevChassis 2151 } -- Cisco C1121-8PLTEPWB 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -B Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11218PLtePWZ OBJECT IDENTIFIER ::= { cevChassis 2152 } -- Cisco C1121-8PLTEPWZ 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -Z Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11218PLtePWQ OBJECT IDENTIFIER ::= { cevChassis 2153 } -- Cisco C1121-8PLTEPWQ 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -Q Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11218P OBJECT IDENTIFIER ::= { cevChassis 2154 } -- Cisco C1121-8P 8 Ports GE LAN Router Chassis, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1121X8P OBJECT IDENTIFIER ::= { cevChassis 2155 } -- Cisco C1121X-8P 8 Ports GE LAN Router Chassis with 8GB memory, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11618P OBJECT IDENTIFIER ::= { cevChassis 2156 } -- Cisco C1161-8P 8 Ports GE LAN Router Chassis, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1161X8P OBJECT IDENTIFIER ::= { cevChassis 2157 } -- Cisco C1161X-8P 8 Ports GE LAN Router Chassis with 8GB memory, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11618PLteP OBJECT IDENTIFIER ::= { cevChassis 2158 } -- Cisco C1161-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1161X8PLteP OBJECT IDENTIFIER ::= { cevChassis 2159 } -- Cisco C1161X-8PLTEP 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11268PLteP OBJECT IDENTIFIER ::= { cevChassis 2160 } -- Cisco C1126-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11278PLteP OBJECT IDENTIFIER ::= { cevChassis 2161 } -- Cisco C1127-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11278PMLteP OBJECT IDENTIFIER ::= { cevChassis 2162 } -- Cisco C1127-8PMLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1126X8PLteP OBJECT IDENTIFIER ::= { cevChassis 2163 } -- Cisco C1126X-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1127X8PLteP OBJECT IDENTIFIER ::= { cevChassis 2164 } -- Cisco C1127X-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1127X8PMLteP OBJECT IDENTIFIER ::= { cevChassis 2165 } -- Cisco C1127X-8PMLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11214P OBJECT IDENTIFIER ::= { cevChassis 2166 } -- Cisco C1121-4P 4 Ports GE LAN Router Chassis, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11214PLteP OBJECT IDENTIFIER ::= { cevChassis 2167 } -- Cisco C1121-4PLTEP 4 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC11288PLteP OBJECT IDENTIFIER ::= { cevChassis 2168 } -- Cisco C1128-8PLTEP 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisVG4002FXS2FXO OBJECT IDENTIFIER ::= { cevChassis 2169 } -- Cisco VG400-2FXS/2FXO Router Chassis with 2 port FXS and 2 port FXO, USB 3.0 Console +cevChassisVG4004FXS4FXO OBJECT IDENTIFIER ::= { cevChassis 2170 } -- Cisco VG400-4FXS/4FXO Router Chassis with 4 port FXS and 4 port FXO, USB 3.0 Console +cevChassisVG4006FXS6FXO OBJECT IDENTIFIER ::= { cevChassis 2171 } -- Cisco VG400-6FXS/6FXO Router Chassis with 6 port FXS and 6 port FXO, USB 3.0 Console +cevChassisVG4008FXS OBJECT IDENTIFIER ::= { cevChassis 2172 } -- Cisco VG400-8FXS Router Chassis with 8 port FXS, USB 3.0 Console cevChassis01FT566E04 OBJECT IDENTIFIER ::= { cevChassis 2173 } -- IBM SAN192C-6 8978-E04 (4 Module) SAN Director cevChassis01FT565E08 OBJECT IDENTIFIER ::= { cevChassis 2174 } -- IBM SAN384C-6 8978-E08 (8 Module) SAN Director cevChassis01FT564E16 OBJECT IDENTIFIER ::= { cevChassis 2175 } -- IBM SAN768C-6 8978-E16 (16 Module) SAN Director cevChassis01FT562R50 OBJECT IDENTIFIER ::= { cevChassis 2176 } -- IBM SAN50C-R 8977-R50 50 Port SAN Extension Switch cevChassis01FT563T32 OBJECT IDENTIFIER ::= { cevChassis 2177 } -- IBM SAN32C-6 8977-T32 32X32G FC SAN Switch -cevChassisFPR4115 OBJECT IDENTIFIER ::= { cevChassis 2179 } -- FirePOWER 4115 chassis +cevChassisD2062 OBJECT IDENTIFIER ::= { cevChassis 2178 } -- Celestica fixed chassis with 48x10G and 6x40G Ethernet Module +cevChassisFPR4115 OBJECT IDENTIFIER ::= { cevChassis 2179 } -- FirePOWER 4115 chassis cevChassisFPR4125 OBJECT IDENTIFIER ::= { cevChassis 2180 } -- FirePOWER 4125 chassis cevChassisFPR4145 OBJECT IDENTIFIER ::= { cevChassis 2181 } -- FirePOWER 4145 chassis cevChassisN9KC9358GYFX OBJECT IDENTIFIER ::= { cevChassis 2183 } -- 2RU TOR fixed module with 8x100/1000M + 2x10G SFP ports -cevChassisAIRCT9510CK9 OBJECT IDENTIFIER ::= { cevChassis 2185 } -- AIR-CT9510-C-K9 (Katar copper) +cevChassisNCS55A2MODHXS OBJECT IDENTIFIER ::= { cevChassis 2184 } -- Peyto Non SE Itemp CC NCS-55A2-MOD-HX-S Network Convergence Services fretta peyto fixed board with comforter coating +cevChassisAIRCT9510CK9 OBJECT IDENTIFIER ::= { cevChassis 2185 } -- AIR-CT9510-C-K9 (copper) +cevChassisC1121X8PLtePWE OBJECT IDENTIFIER ::= { cevChassis 2187 } -- Cisco C1121X-8PLTEPWE 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -E Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1121X8PLtePWB OBJECT IDENTIFIER ::= { cevChassis 2188 } -- Cisco C1121X-8PLTEPWB 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -B Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1121X8PLtePWZ OBJECT IDENTIFIER ::= { cevChassis 2189 } -- Cisco C1121X-8PLTEPWZ 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -Z Domain, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC1121X8PLtePWA OBJECT IDENTIFIER ::= { cevChassis 2190 } -- Cisco C1121X-8PLTEPWA 8 Ports GE LAN Router Chassis, Pluggable LTE (Advanced), 802.11ac WLAN -A Domain, 1 GE WAN and USB 3.0/Micro USB Console cevChassisN9KC9358GYFXP OBJECT IDENTIFIER ::= { cevChassis 2191 } -- 2RU TOR fixed chassis with 8x100/1000M + 2x10/25G SFP28 ports +cevChassisNC55A2MODSEHS OBJECT IDENTIFIER ::= { cevChassis 2192 } -- Peyto SE Itemp CC NC55A2-MOD-SE-H-S Network Convergence Services fretta peyto TCAM fixed board with conformal coating +cevChassisN9KC93180YCFX3 OBJECT IDENTIFIER ::= { cevChassis 2193 } -- Nexus 9300 series fixed chassis with 48x1/10/25G SFP+, 6*40/100G Ethernet cevChassisWSC2960LSM24TS OBJECT IDENTIFIER ::= { cevChassis 2194 } -- Catalyst 2960L-SM 24 x GE downlink, 4 x GE (4 SFP) uplinks cevChassisWSC2960LSM24PS OBJECT IDENTIFIER ::= { cevChassis 2195 } -- Catalyst 2960L-SM 24 x GE downlink, 4 x GE (4 SFP) uplinks,with 24 port POE support cevChassisWSC2960LSM48TS OBJECT IDENTIFIER ::= { cevChassis 2196 } -- Catalyst 2960L-SM 48 x GE downlink, 4 x GE (4 SFP) uplinks @@ -1845,18 +1925,47 @@ cevChassisWSC2960LSM24TQ OBJECT IDENTIFIER ::= { cevChassis 2202 cevChassisWSC2960LSM48TQ OBJECT IDENTIFIER ::= { cevChassis 2203 } -- Catalyst 2960L-SM 48 x GE downlink, 4 x 10GE (4 SFP+) uplinks cevChassisWSC2960LSM24PQ OBJECT IDENTIFIER ::= { cevChassis 2204 } -- Catalyst 2960L-SM 24 x GE downlink, 4 x 10GE (4 SFP+) uplinks, POE support cevChassisWSC2960LSM48PQ OBJECT IDENTIFIER ::= { cevChassis 2205 } -- Catalyst 2960L-SM 48 x GE downlink, 4 x 10GE (4 SFP+) uplinks, POE support +cevChassisN3KC3408S OBJECT IDENTIFIER ::= { cevChassis 2206 } -- Nexus 3000 chassis cevChassisN3KC3432DS OBJECT IDENTIFIER ::= { cevChassis 2207 } -- Nexus 3000 Series fixed chassis with 32x400G + 2x10G SFP+ module +cevChassisC850012X4QC OBJECT IDENTIFIER ::= { cevChassis 2208 } -- Cisco Aggregation Services Router 1000 Series, C8500-12X4QC Chassis +cevChassisC850012X OBJECT IDENTIFIER ::= { cevChassis 2209 } -- Cisco Aggregation Services Router 1000 Series, C8500-12X Chassis +cevChassisC9514P OBJECT IDENTIFIER ::= { cevChassis 2211 } -- Cisco C951-4P 4 Ports GE LAN Router Chassis with 2GB RAM, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC9592PLteGB OBJECT IDENTIFIER ::= { cevChassis 2212 } -- Cisco C959-2PLTEGB 2 ports GE LAN M2M Router Chassis with 2GB RAM, Multimode LTE WWAN Global (non-US), 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC9592PLteUS OBJECT IDENTIFIER ::= { cevChassis 2213 } -- Cisco C959-2PLTEUS 2 ports GE LAN M2M Router Chassis with 2GB RAM, Multimode LTE WWAN United States, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC9592PLteVZ OBJECT IDENTIFIER ::= { cevChassis 2214 } -- Cisco C959-2PLTEVZ 2 ports GE LAN M2M Router Chassis with 2GB RAM, Multimode LTE WWAN Verizon, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisC9592PLteIN OBJECT IDENTIFIER ::= { cevChassis 2215 } -- Cisco C959-2PLTEIN 2 ports GE LAN M2M Router Chassis with 2GB RAM, Multimode LTE WWAN India, 1 GE WAN and USB 3.0/Micro USB Console +cevChassisCat930024UBX OBJECT IDENTIFIER ::= { cevChassis 2216 } -- Catalyst 9300 24-port mGig and UPOE switch with support of deepbuffer feature for all interfaces +cevChassisCat930048UB OBJECT IDENTIFIER ::= { cevChassis 2217 } -- Catalyst 9300 48-port UPOE switch with support of deepbuffer feature for all interfaces +cevChassisCat930024UB OBJECT IDENTIFIER ::= { cevChassis 2218 } -- Catalyst 9300 24-port UPOE switch with support of deepbuffer feature for all interfaces cevChassisESR1115CONK9 OBJECT IDENTIFIER ::= { cevChassis 2219 } -- Next-generation Embedded Services Router with 2 Gigabit Ethernet routed ports, 4 Gigabit Ethernet switched ports, with cooling cevChassisESR1115NCPK9 OBJECT IDENTIFIER ::= { cevChassis 2220 } -- Next-generation Embedded Services Router with 2 Gigabit Ethernet routed ports, 4 Gigabit Ethernet switched ports, no cooling +cevChassisC83001N1S4T2X OBJECT IDENTIFIER ::= { cevChassis 2221 } -- Cisco C8300-1N1S-4T2X Chassis (2x10GE, 4xGE, 1 NIM, 1 SM, 1PIM, 8Core, 8G FLASH, 8G DRAM) +cevChassisC83001N1S6T OBJECT IDENTIFIER ::= { cevChassis 2222 } -- Cisco C8300-1N1S-6T Chassis (8C, 2x1GE, 4xGE, 1 NIM, 1 SM, 1PIM, 8Core, 8G FLASH, 8G DRAM)) +cevChassisC9800LCK9 OBJECT IDENTIFIER ::= { cevChassis 2223 } -- C9800-L-C-K9 Chassis (RJ45) +cevChassisC9800LFK9 OBJECT IDENTIFIER ::= { cevChassis 2224 } -- C9800-L-F-K9 Chassis (SFP) cevChassisN9KC9316DGX OBJECT IDENTIFIER ::= { cevChassis 2227 } -- 1RU TOR fixed chassis with 16x400GE DD QSFP Ports cevChassisN9KC9358GYFXPv2 OBJECT IDENTIFIER ::= { cevChassis 2228 } -- 2RU TOR fixed module with 8x100/1000M + 2x10/25G SFP28 ports cevChassisESR6300CONK9 OBJECT IDENTIFIER ::= { cevChassis 2229 } -- Next-generation Embedded Services Router with 2 Gigabit Ethernet routed ports, 4 Gigabit Ethernet switched ports, with cooling plate cevChassisESR6300NCPK9 OBJECT IDENTIFIER ::= { cevChassis 2230 } -- Next-generation Embedded Services Router with 2 Gigabit Ethernet routed ports, 4 Gigabit Ethernet switched ports, no cooling plate cevChassisNCS54016G OBJECT IDENTIFIER ::= { cevChassis 2231 } -- Cisco NCS540 series with 16G RAM -cevChassisNCS540X16G OBJECT IDENTIFIER ::= { cevChassis 2232 } -- Cisco NCS540 conformal coating series with 16G RAM +cevChassisNCS540X16G OBJECT IDENTIFIER ::= { cevChassis 2232 } -- Cisco NCS540 conformal coating series with 16G RAM + +cevChassisCMICR4PS OBJECT IDENTIFIER ::= { cevChassis 2233 } -- Catalyst Micro Switch for Walljack Deployments, 2 x SFP Uplink +cevChassisCMICR4PC OBJECT IDENTIFIER ::= { cevChassis 2234 } -- Catalyst Micro Switch for Walljack Deployments, 1 x copper + 1 x SFP Uplink +cevChassisFpr1150td OBJECT IDENTIFIER ::= { cevChassis 2235 } -- Cisco Firepower 1150 Security Appliance cevChassisN9KC93600CDGX OBJECT IDENTIFIER ::= { cevChassis 2236 } -- 1RU TOR fixed chassis with 28xQSFP28 (100G/40G) + 8xQSFP-DD (400G) Ports +cevChassisN9KC93360YCFX2 OBJECT IDENTIFIER ::= { cevChassis 2237 } -- 2RU TOR fixed chassis with 96x10/25G SFP28 + 12x40/100G QSFP28 ports +cevChassisN9KC93216TCFX2 OBJECT IDENTIFIER ::= { cevChassis 2238 } -- 2RU TOR fixed chassis with 96x10GBase-T (copper) + 12x40/100G QSFP28 ports cevChassisN9KC92348GCX OBJECT IDENTIFIER ::= { cevChassis 2239 } -- OR 48x100M/1G Base-T + 4x10/25G SPF28 + 2x40/100G QSFP28 -cevChassisMS39048UXHW OBJECT IDENTIFIER ::= { cevChassis 2248 } -- +cevChassisNCS540L28Z4SysA OBJECT IDENTIFIER ::= { cevChassis 2240 } -- NCS540L series - NCS540-28Z4-SYS-A Chassis +cevChassisNCS540L28Z4SysD OBJECT IDENTIFIER ::= { cevChassis 2241 } -- NCS540L series - NCS540-28Z4-SYS-D Chassis +cevChassisNCS540L16Z4G8Q2CA OBJECT IDENTIFIER ::= { cevChassis 2242 } -- NCS540L series - N540X-16Z4G8Q2C-A Chassis +cevChassisNCS540L16Z4G8Q2CD OBJECT IDENTIFIER ::= { cevChassis 2243 } -- NCS540L series - N540X-16Z4G8Q2C-D Chassis +cevChassisNCS540L12Z20GSysA OBJECT IDENTIFIER ::= { cevChassis 2244 } -- NCS540L series - N540-12Z20G-SYS-A Chassis +cevChassisNCS540L12Z20GSysD OBJECT IDENTIFIER ::= { cevChassis 2245 } -- NCS540L series - N540-12Z20G-SYS-D Chassis +cevChassisNCS540L12Z16GSysA OBJECT IDENTIFIER ::= { cevChassis 2246 } -- NCS540L series - N540X-12Z16G-SYS-A Chassis +cevChassisNCS540L12Z16GSysD OBJECT IDENTIFIER ::= { cevChassis 2247 } -- NCS540L series - N540X-12Z16G-SYS-D Chassis +cevChassisMS39048UXHW OBJECT IDENTIFIER ::= { cevChassis 2248 } -- cevChassisIE34008T2S OBJECT IDENTIFIER ::= { cevChassis 2249 } -- Cisco Industrial Ethernet 3400 Switch, Petra Expandable System 2 Port SFP + 8 Port GE Copper Adv cevChassisIE34008FTMC OBJECT IDENTIFIER ::= { cevChassis 2250 } -- Cisco Industrial Ethernet 3400 Switch, IP65/67 rated, 8 port FE Copper , No PoE, FPGA available cevChassisIE340016FTMC OBJECT IDENTIFIER ::= { cevChassis 2251 } -- Cisco Industrial Ethernet 3400 Switch, IP65/67 rated, 16 port FE Copper , No PoE, FPGA available @@ -1874,22 +1983,230 @@ cevChassisIE3400H24FT OBJECT IDENTIFIER ::= { cevChassis 2263 cevChassisIE3400H8T OBJECT IDENTIFIER ::= { cevChassis 2264 } -- Cisco Catalyst IE3400 Heavy duty Series, 8 GE M12 interfaces cevChassisIE3400H16T OBJECT IDENTIFIER ::= { cevChassis 2265 } -- Cisco Catalyst IE3400 Heavy duty Series, 16 GE M12 interfaces cevChassisIE3400H24T OBJECT IDENTIFIER ::= { cevChassis 2266 } -- Cisco Catalyst IE3400 Heavy duty Series, 24 GE M12 interfaces +cevChassisN3KC34200YCSM OBJECT IDENTIFIER ::= { cevChassis 2267 } -- Nexus 3000 Series chassis with 48x10/25G + 8x100G Ethernet Module cevChassisRAIE1783MMS10A OBJECT IDENTIFIER ::= { cevChassis 2269 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Essentials, Expandable System : 2 Port SFP + 8 Port GE Copper Advanced cevChassisRAIE1783MMS10AR OBJECT IDENTIFIER ::= { cevChassis 2270 } -- Cisco-Rockwell Stratix 5800 Industrial Ethernet Switch, Network Advantage, Expandable System : 2 Port SFP + 8 Port GE Copper Advanced +cevChassisC10008T2GL OBJECT IDENTIFIER ::= { cevChassis 2271 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) cevChassisN9KC9364CGX OBJECT IDENTIFIER ::= { cevChassis 2272 } -- 2RU TOR fixed chassis with 64x100GE QSFP28 Ports cevChassisCSP5228 OBJECT IDENTIFIER ::= { cevChassis 2273 } -- Cloud Services Platform Model CSP-5228 cevChassisCSP5400 OBJECT IDENTIFIER ::= { cevChassis 2274 } -- Cloud Services Platform Model CSP-5400 cevChassisCSP5436 OBJECT IDENTIFIER ::= { cevChassis 2275 } -- Cloud Services Platform Model CSP-5436 cevChassisCSP5444 OBJECT IDENTIFIER ::= { cevChassis 2276 } -- Cloud Services Platform Model CSP-5444 cevChassisCSP5456 OBJECT IDENTIFIER ::= { cevChassis 2277 } -- Cloud Services Platform Model CSP-5456 +cevChassisC920024PB OBJECT IDENTIFIER ::= { cevChassis 2278 } -- Catalyst 9200 24 Gig downlinks. PoE support for 740W +cevChassisC920048PB OBJECT IDENTIFIER ::= { cevChassis 2279 } -- Catalyst 9200 48 Gig downlinks. PoE support for 1480W +cevChassisC9200PVA OBJECT IDENTIFIER ::= { cevChassis 2280 } -- Catalyst 9200 24 Gig downlinks. PoE support for 740W +cevChassisC10008TE2GL OBJECT IDENTIFIER ::= { cevChassis 2281 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + External Adapter +cevChassisC10008P2GL OBJECT IDENTIFIER ::= { cevChassis 2282 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + Partial PoE with 67W PoE budget +cevChassisC10008PE2GL OBJECT IDENTIFIER ::= { cevChassis 2283 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + Partial PoE with 60W PoE budget + External Adapter +cevChassisC10008FP2GL OBJECT IDENTIFIER ::= { cevChassis 2284 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + PoE with 120W PoE budget +cevChassisC10008FPE2GL OBJECT IDENTIFIER ::= { cevChassis 2285 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + PoE with 120W PoE budgetS + External Adapter +cevChassisC100016T2GL OBJECT IDENTIFIER ::= { cevChassis 2286 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) +cevChassisC100016TE2GL OBJECT IDENTIFIER ::= { cevChassis 2287 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + External Adapter +cevChassisC100016P2GL OBJECT IDENTIFIER ::= { cevChassis 2288 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + Partial PoE with 120W PoE budget +cevChassisC100016PE2GL OBJECT IDENTIFIER ::= { cevChassis 2289 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + Partial PoE with 120W PoE budget + External Adapter +cevChassisC100016FP2GL OBJECT IDENTIFIER ::= { cevChassis 2290 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + PoE with 240W PoE budget +cevChassisC100024T4GL OBJECT IDENTIFIER ::= { cevChassis 2291 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) +cevChassisC100024PP4GL OBJECT IDENTIFIER ::= { cevChassis 2292 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 195W PoE budget, First 8 ports with PoE +cevChassisC100024FP4GL OBJECT IDENTIFIER ::= { cevChassis 2293 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) + PoE with 370W PoE budget +cevChassisC100048T4GL OBJECT IDENTIFIER ::= { cevChassis 2294 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) +cevChassisC100048PP4GL OBJECT IDENTIFIER ::= { cevChassis 2295 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) + Partial PoE w ith 180W PoE budget, First 12 ports with PoE +cevChassisC100048P4GL OBJECT IDENTIFIER ::= { cevChassis 2296 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 370W PoE budget +cevChassisC100048FP4GL OBJECT IDENTIFIER ::= { cevChassis 2297 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) + PoE with 740W PoE budget +cevChassisC100024T4XL OBJECT IDENTIFIER ::= { cevChassis 2298 } -- Catalyst 1000, 24x 1G downlink + 4x 10G uplink (SFP+) +cevChassisC100024P4XL OBJECT IDENTIFIER ::= { cevChassis 2299 } -- Catalyst 1000, 24x 1G downlink + 4x 10G uplink (SFP+) + Partial PoE with 195W PoE budget +cevChassisC100024FP4XL OBJECT IDENTIFIER ::= { cevChassis 2300 } -- Catalyst 1000, 24x 1G downlink + 4x 10G uplink (SFP+) + PoE with 370W PoE budget +cevChassisC100048T4XL OBJECT IDENTIFIER ::= { cevChassis 2301 } -- Catalyst 1000, 48x 1G downlink + 4x 10G uplink (SFP+) +cevChassisC100048P4XL OBJECT IDENTIFIER ::= { cevChassis 2302 } -- Catalyst 1000, 48x 1G downlink + 4x 10G uplink (SFP+) + Partial PoE with 370W PoE budget +cevChassisC100048FP4XL OBJECT IDENTIFIER ::= { cevChassis 2303 } -- Catalyst 1000, 48x 1G downlink + 4x 10G uplink (SFP+) + PoE with 740W PoE budget cevChassisCSP5200 OBJECT IDENTIFIER ::= { cevChassis 2331 } -- Cloud Services Platform Model CSP-5200 cevChassisCSP5216 OBJECT IDENTIFIER ::= { cevChassis 2332 } -- Cloud Services Platform Model CSP-5216 +cevChassisCMICR4PT OBJECT IDENTIFIER ::= { cevChassis 2333 } -- Catalyst Micro Switch for Desktop Deployments +cevChassisC100024P4GL OBJECT IDENTIFIER ::= { cevChassis 2334 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 195W PoE budget +cevChassisC82001N4T OBJECT IDENTIFIER ::= { cevChassis 2335 } -- Cisco C8200-1N-4T (4xGE, 1 NIM, 1PIM, 8Core, 8G FLASH, 8G DRAM) +cevChassisC8200L4G OBJECT IDENTIFIER ::= { cevChassis 2336 } -- Cisco C8200-L-4G Chassis (AMD, 4xGE, 1PIM, 8Core, 8G FLASH, 8G DRAM) +cevChassisC83002N2S4T2X OBJECT IDENTIFIER ::= { cevChassis 2337 } -- Cisco C8300-2N2S-4T2X Chassis (2x10GE, 4xGE, 2 NIM, 2 SM, 1PIM, 12Core, 8G FLASH, 16G DRAM) +cevChassisC83002N2S6T OBJECT IDENTIFIER ::= { cevChassis 2338 } -- Cisco C8300-2N2S-6T Chassis (6xGE, 2 NIM, 2 SM. 1 PIM, 8Core, 8G FLASH, 8G DRAM) +cevChassisC9200HFixedSwitchStack OBJECT IDENTIFIER ::= { cevChassis 2339 } -- A stack of Cisco Catalyst 9200H Fixed switch modules +cevChassisUCSFI64108 OBJECT IDENTIFIER ::= { cevChassis 2340 } -- Cisco UCS Unified Computing System 64108 2RU In-Chassis FI with 96x10G/25G UP Ports + 12x40G/100G Ports +cevChassisC1100TG1N32A OBJECT IDENTIFIER ::= { cevChassis 2344 } -- Cisco C1100TG-1N32A terminal server (2xGE, 1 NIM, 32ASYNC, 4Core, 4G FLASH, 2G DRAM) +cevChassisC1100TG1N24P32A OBJECT IDENTIFIER ::= { cevChassis 2345 } -- Cisco C1100TG-1N24P32A terminal server (2xGE, 1 NIM, 24 L2port, 32ASYNC, 4Core, 4G FLASH, 4G DRAM) +cevChassisC1100TGX1N24P32A OBJECT IDENTIFIER ::= { cevChassis 2346 } -- Cisco C1100TGX-1N24P32A terminal server (2xGE, 1 NIM, 24 L2port, 32ASYNC, 4Core, 8G FLASH, 8G DRAM) +cevChassisN9KC93180YC2FX OBJECT IDENTIFIER ::= { cevChassis 2348 } -- Nexus 9300 series chassis 48x10/25G (SFP28) and 6x40/100G (QSFP28) +cevChassisN9KC9348GC2FXP OBJECT IDENTIFIER ::= { cevChassis 2349 } -- Nexus 9300 series 1RU TOR chassis with 48x100/1000Mbps (PoE) + 4x10G/25G SFP28 + 2x40G/100G QSFP28 +cevChassisFPR4112 OBJECT IDENTIFIER ::= { cevChassis 2351 } -- FirePOWER 4112 chassis +cevChassisN9KC93108TC2FX OBJECT IDENTIFIER ::= { cevChassis 2352 } -- Nexus 9300 series 1RU chassis TOR with 48 x 10GBASE-T + 6 x QSFP28 (40/100G) +cevChassisN9KC93180YCFX24 OBJECT IDENTIFIER ::= { cevChassis 2353 } -- Nexus 9300 series 1RU TOR chassis 24 x 1/10/25 Gbps SFP+ + 6 x 40/100 Gbps QSFP+ +cevChassisN9KC93108TCFX24 OBJECT IDENTIFIER ::= { cevChassis 2354 } -- Nexus 9300 series 1RU chassis TOR 24 x 10GBase-T, 6 x 40/100 Gbps +cevChassisN9KC93108TCEX24 OBJECT IDENTIFIER ::= { cevChassis 2355 } -- Nexus 9300 series 1RU chassis TOR 24 x 1/10GBase-T + 6 x 40/100 Gbps QSFP+ +cevChassisN9KC93180YCEX24 OBJECT IDENTIFIER ::= { cevChassis 2356 } -- Nexus 9300 series 1RU chassis TOR 24 x 1/10/25 Gigabit SFP+ + 6 x 40/100 Gigabit QSFP28 +cevChassisNCS540LFHCSRSys OBJECT IDENTIFIER ::= { cevChassis 2360 } -- NCS540L series - N540-FH-CSR-SYS +cevChassisNCS540LFHAGGSys OBJECT IDENTIFIER ::= { cevChassis 2361 } -- NCS540L series - N540-FH-AGG-SYS +cevChassisNCS540LFHIP65Sys OBJECT IDENTIFIER ::= { cevChassis 2362 } -- NCS540L series - N540-FH-IP65-SYS +cevChassisC8000V OBJECT IDENTIFIER ::= { cevChassis 2363 } -- Cisco Catalyst 8000V Edge Chassis +cevChassisN9KC9500v OBJECT IDENTIFIER ::= { cevChassis 2364 } -- Nexus9000 C9500v Chassis +cevChassisIE33008T2X OBJECT IDENTIFIER ::= { cevChassis 2366 } -- Cisco Catalyst IE3300 Rugged Series Expandable System with 8 GE Copper & 2 10G SFP +cevChassisIE33008U2X OBJECT IDENTIFIER ::= { cevChassis 2367 } -- Cisco Catalyst IE3300 Rugged Series Expandable System with 8GE Copper (4PPoE) & 2 10G SFP +cevChassisC920048PL OBJECT IDENTIFIER ::= { cevChassis 2368 } -- Catalyst 9200 48 Gig downlinks. PoE support for 740W +cevChassisC9200L48PL4G OBJECT IDENTIFIER ::= { cevChassis 2369 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks. PoE support for 740W +cevChassisC9200L48PL4X OBJECT IDENTIFIER ::= { cevChassis 2370 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+uplinks. PoE support for 740W +cevChassisISR11004G OBJECT IDENTIFIER ::= { cevChassis 2371 } -- Cisco ISR1100-4G (4xGE, Flexible Core, 8G FLASH, 4G DRAM) +cevChassisISR11006G OBJECT IDENTIFIER ::= { cevChassis 2372 } -- Cisco ISR1100-6G (4xGE, 2xSFP, Flexible Core, 8G FLASH, 4G DRAM) +cevChassisISR11004GLTEGB OBJECT IDENTIFIER ::= { cevChassis 2373 } -- Cisco ISR1100-4GLTE-GB (4xGE, Flexible Core, 8G FLASH, 4G DRAM) +cevChassisISR11004GLTENA OBJECT IDENTIFIER ::= { cevChassis 2374 } -- Cisco ISR1100-4GLTE-NA (4xGE, Flexible Core, 8G FLASH, 4G DRAM) +cevChassisNCS55A124Q6HSSCHASSIS OBJECT IDENTIFIER ::= { cevChassis 2375 } -- NCS55A1 24Q6H_SS 1RU Chassis +cevChassisN9KC93108TCFX3P OBJECT IDENTIFIER ::= { cevChassis 2377 } -- Cisco 1RU N9K-C93108TC-FX3P TOR chassis with 32 UPOE 48 100M/1G/2.5G/5G/10G base T downlink and 6x40/100G (QSFP28) uplink Ethernet +cevChassisN9KC93180YCFX3S OBJECT IDENTIFIER ::= { cevChassis 2378 } -- Nexus 9300 series fixed chassis with 48x1/10/25G SFP+, 6*40/100G Ethernet +cevChassisC1000FE24T4GL OBJECT IDENTIFIER ::= { cevChassis 2379 } -- Catalyst 1000, 24x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) +cevChassisC1000FE24P4GL OBJECT IDENTIFIER ::= { cevChassis 2380 } -- Catalyst 1000, 24x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) + Partial PoE +cevChassisC1000FE48T4GL OBJECT IDENTIFIER ::= { cevChassis 2381 } -- Catalyst 1000, 48x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) +cevChassisC1000FE48P4GL OBJECT IDENTIFIER ::= { cevChassis 2382 } -- Catalyst 1000, 48x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) + Partial PoE +cevChassisNCS540L6Z18GSysA OBJECT IDENTIFIER ::= { cevChassis 2383 } -- NCS540L series - N540X-6Z18G-SYS-A Chassis +cevChassisNCS540L6Z18GSysD OBJECT IDENTIFIER ::= { cevChassis 2384 } -- NCS540L series - N540X-6Z18G-SYS-D Chassis +cevChassisNCS540L8Z16GSysA OBJECT IDENTIFIER ::= { cevChassis 2385 } -- NCS540L series - N540X-8Z16G-SYS-A Chassis +cevChassisNCS540L8Z16GSysD OBJECT IDENTIFIER ::= { cevChassis 2386 } -- NCS540L series - N540X-8Z16G-SYS-D Chassis +cevChassisNCS540L4Z14G2QA OBJECT IDENTIFIER ::= { cevChassis 2387 } -- NCS540L series - N540X-4Z14G2Q-A Chassis +cevChassisNCS540L4Z14G2QD OBJECT IDENTIFIER ::= { cevChassis 2388 } -- NCS540L series - NCS540L series - N540X-4Z14G2Q-D Chassis +cevChassisDNAPLTTA1X OBJECT IDENTIFIER ::= { cevChassis 2389 } -- Cisco DNA Traffic Telemetry Appliance - Model 1X +cevChassisIR1821K9 OBJECT IDENTIFIER ::= { cevChassis 2390 } -- Cisco Catalyst IR1821 Rugged Series Router +cevChassisIR1831K9 OBJECT IDENTIFIER ::= { cevChassis 2391 } -- Cisco Catalyst IR1831 Rugged Series Router +cevChassisIR1835K9 OBJECT IDENTIFIER ::= { cevChassis 2392 } -- Cisco Catalyst IR1835 Rugged Series Router +cevChassisIR1833K9 OBJECT IDENTIFIER ::= { cevChassis 2393 } -- Cisco Catalyst IR1833 Rugged Series Router +cevChassisISR1100X4G OBJECT IDENTIFIER ::= { cevChassis 2398 } -- Cisco ISR1100X-4G (4xGE, Flexible Core, 8G FLASH, 8G DRAM) +cevChassisISR1100X6G OBJECT IDENTIFIER ::= { cevChassis 2399 } -- Cisco ISR1100X-6G (4xGE, 2xSFP, Flexible Core, 8G FLASH, 8G DRAM) +cevChassisN9KC9364DGX2A OBJECT IDENTIFIER ::= { cevChassis 2400 } -- Nexus 9300 series TOR chassis with 64x400G+2x10G, QuadPeaks 25.6T +cevChassisESS930010XE OBJECT IDENTIFIER ::= { cevChassis 2401 } -- Catalyst ESS9300 Embedded Series switch - 10p 10G, NE +cevChassisDSC9220IK9 OBJECT IDENTIFIER ::= { cevChassis 2402 } -- DS-C9220I-K9, Chassis for MDS 9220i Intelligent Fabric Switch, 12FC+6IPS +cevChassisN9KC9332DGX2B OBJECT IDENTIFIER ::= { cevChassis 2403 } -- 1RU TOR fixed chassis with 32x400G+2x10G, QuadPeaks 25.6T +cevChassisASR9903 OBJECT IDENTIFIER ::= { cevChassis 2404 } -- ASR 9903 Chassis +cevChassisIR8140HK9 OBJECT IDENTIFIER ::= { cevChassis 2405 } -- Cisco Catalyst IR8140H Heavy Duty Series Router +cevChassisIR8140HPK9 OBJECT IDENTIFIER ::= { cevChassis 2406 } -- Cisco Catalyst IR8140H Heavy Duty Series Router with PoE +cevChassisIR8340K9 OBJECT IDENTIFIER ::= { cevChassis 2407 } -- Cisco Catalyst IR8340 Rugged Router System with 12 1G LAN ports and 2 1G WAN ports +cevChassisC8500L8S4X OBJECT IDENTIFIER ::= { cevChassis 2408 } -- Cisco C8500L-8S4X chassis(4x10GE SFP+, 8x1GE SFP, 12Core, 16G FLASH, 16G DRAM) +cevChassisC11138PLteEAWA OBJECT IDENTIFIER ::= { cevChassis 2412 } -- Cisco C1113-8PLTEEAWA Router Chassis +cevChassisN9KC9336CFX2E OBJECT IDENTIFIER ::= { cevChassis 2413 } -- 1RU TOR fixed chassis with 36x40G/100G QSFP28 ports +cevChassisC950056C16D OBJECT IDENTIFIER ::= { cevChassis 2414 } -- Cisco Catalyst 9500X series, fixed chassis with 56-port x 100G + 16-port x 400G +cevChassisC8200L1N4T OBJECT IDENTIFIER ::= { cevChassis 2415 } -- Cisco C8200L-1N-4T Chassis (4xGE, 1 NIM, 1PIM, 4Core, 8G FLASH, 4G DRAM) +cevChassisVG420144FXS OBJECT IDENTIFIER ::= { cevChassis 2416 } -- Cisco VG420-144FXS Router Chassis with 144 port FXS +cevChassisVG420132FXS6FXO OBJECT IDENTIFIER ::= { cevChassis 2417 } -- Cisco VG420-132FXS/6FXO Router Chassis with 132 port FXS and 6 port FXO +cevChassisVG42084FXS6FXO OBJECT IDENTIFIER ::= { cevChassis 2418 } -- Cisco VG420-84FXS/6FXO Router Chassis with 84 port FXS and 6 port FXO +cevChassisNCS57C3MODSCHASSIS OBJECT IDENTIFIER ::= { cevChassis 2419 } -- Network Convergence System-57A3 Hybrid Chassis with one LC and 2 fruable RP's +cevChassisNCS57C3MODCHASSIS OBJECT IDENTIFIER ::= { cevChassis 2420 } -- Network Convergence System-57A3 Hybrid Chassis with one LC and 2 fruable RP's. LC is Non-SE variant so chassis is also Non-SE variant +cevChassisC950028C8D OBJECT IDENTIFIER ::= { cevChassis 2421 } -- Cisco Catalyst 9500X series, fixed chassis with 28-port x 100G + 8-port x 400G +cevChassisNCS540L24Q8L2DDSYS OBJECT IDENTIFIER ::= { cevChassis 2422 } -- NCS540L series - N540-24Q8L2DD-SYS +cevChassis8608 OBJECT IDENTIFIER ::= { cevChassis 2424 } -- Cisco 8600 - 8 Slot Centralized Chassis +cevChassisC9200CX12T2X2G OBJECT IDENTIFIER ::= { cevChassis 2428 } -- Catalyst 9200CX 12x GE downlinks, 2x 1G copper + 2x 10G SFP+ uplinks, Class 6 PD port +cevChassisC9200CX12P2X2G OBJECT IDENTIFIER ::= { cevChassis 2429 } -- Catalyst 9200CX 12x GE downlinks, 2x 1G copper + 2x 10G SFP+ uplinks, PoE+ for 240W +cevChassisC850020X6C OBJECT IDENTIFIER ::= { cevChassis 2430 } -- Cisco Aggregation Services Router 1000 Series, C8500-20X6C Chassis +cevChassisASR9902 OBJECT IDENTIFIER ::= { cevChassis 2432 } -- ASR 9902 Chassis +cevChassis03FR027R16 OBJECT IDENTIFIER ::= { cevChassis 2433 } -- IBM SAN16C-R 8977-R16 16 Port PSI 32G SAN Extension Switch +cevChassis03FR026R16 OBJECT IDENTIFIER ::= { cevChassis 2434 } -- IBM SAN16C-R 8977-R16 16 Port PSE 32G SAN Extension Switch +cevChassisC9200CX8P2X2G OBJECT IDENTIFIER ::= { cevChassis 2435 } -- Catalyst 9200CX 8x GE downlinks, 2x 1G copper + 2x 10G SFP+ uplinks, PoE+ for 240W +cevChassisC9200CX8PT2G OBJECT IDENTIFIER ::= { cevChassis 2436 } -- Catalyst 9200CX 8x1G Downlinks, 8x30W PoE+, 2x1G 90W PD Cu Uplinks +cevChassisC9200CX8UXG2X OBJECT IDENTIFIER ::= { cevChassis 2437 } -- Catalyst 9200CX 4x1G, 4x10G mGig Downlinks, 8x60W UPoE, 2x10G SFP+ Uplinks +cevChassisFpr3110td OBJECT IDENTIFIER ::= { cevChassis 2438 } -- Chassis for Cisco Firepower 3110 Security Appliance +cevChassisFpr3120td OBJECT IDENTIFIER ::= { cevChassis 2439 } -- Chassis for Cisco Firepower 3120 Security Appliance +cevChassisFpr3130td OBJECT IDENTIFIER ::= { cevChassis 2440 } -- Chassis for Cisco Firepower 3130 Security Appliance +cevChassisFpr3140td OBJECT IDENTIFIER ::= { cevChassis 2441 } -- Chassis for Cisco Firepower 3140 Security Appliance +cevChassisFPR3100DC OBJECT IDENTIFIER ::= { cevChassis 2442 } -- Firepower 3100 chassis with DC power +cevChassisFPR3100AC OBJECT IDENTIFIER ::= { cevChassis 2443 } -- Firepower 3100 chassis with AC power +cevChassis810132FH OBJECT IDENTIFIER ::= { cevChassis 2472 } -- Cisco 8100 32x400G QSFPDD 1RU Fixed System w/o HBM +cevChassisC9500X60L4D OBJECT IDENTIFIER ::= { cevChassis 2473 } -- Cisco Catalyst 9500X Series fixed switch with 60 50G ports and 4 400G ports +cevChassisN3KT48X OBJECT IDENTIFIER ::= { cevChassis 2474 } -- Nexus 3000 Series 1 RU fixed chassis with 48x10G Ethernet Module +cevChassisN9KC9408 OBJECT IDENTIFIER ::= { cevChassis 2476 } -- Nexus 9400 series chassis with QuadPeaks 25.6T and pluggable LEM +cevChassisNCS1010SA OBJECT IDENTIFIER ::= { cevChassis 2478 } -- Cisco Network Convergence System 1010 Shelf Assembly +cevChassisNCS57C148Q6Sys OBJECT IDENTIFIER ::= { cevChassis 2484 } -- NCS5700 Twins +cevChassisUCSFI6536 OBJECT IDENTIFIER ::= { cevChassis 2485 } -- Cisco UCS Unified Computing System 6536 36-40G/100G Port Fabric Interconnect +cevChassisNCS540L6Z14GSysD OBJECT IDENTIFIER ::= { cevChassis 2491 } -- NCS540L Router - N540-6Z14G-SYS-D +cevChassisFpr3105td OBJECT IDENTIFIER ::= { cevChassis 2493 } -- Chassis for Cisco Firepower 3105 Security Appliance +cevChassisIE31004T2S OBJECT IDENTIFIER ::= { cevChassis 2494 } -- Catalyst IE3100 with 4 GE Copper and 2 GE SFP Ports, Fixed system, Network Essentials +cevChassisIE31008T2C OBJECT IDENTIFIER ::= { cevChassis 2495 } -- Catalyst IE3100 with 8 GE Copper and 2 Combo Ports, Fixed system, Network Essentials +cevChassisIE310018T2C OBJECT IDENTIFIER ::= { cevChassis 2496 } -- Catalyst IE3100 with 18 GE Copper and 2 Combo Ports, Fixed system, Network Essentials +cevChassisIE31058T2C OBJECT IDENTIFIER ::= { cevChassis 2497 } -- Catalyst IE3105 with 8 GE Copper and 2 GE Combo ports, Advanced features, Fixed system, Network Essentials +cevChassisIE310518T2C OBJECT IDENTIFIER ::= { cevChassis 2498 } -- Catalyst IE3105 with 18 GE Copper and 2 GE Combo ports, Advanced features, Fixed system, Network Essentials +cevChassisRAIE1783CMS6B OBJECT IDENTIFIER ::= { cevChassis 2499 } -- Stratix 5200 switch, 4 copper 100m ports, 2 SFP 100/1000 slots, base FW +cevChassisRAIE1783CMS6P OBJECT IDENTIFIER ::= { cevChassis 2500 } -- Stratix 5200 switch, 4 copper 10/100/1000 ports, 2 SFP 100/1000 slots, full FW +cevChassisRAIE1783CMS10B OBJECT IDENTIFIER ::= { cevChassis 2501 } -- Stratix 5200 switch, 8 copper 100m ports, 2 Combo 100/1000 ports, base FW +cevChassisRAIE1783CMS10P OBJECT IDENTIFIER ::= { cevChassis 2502 } -- Stratix 5200 switch, 8 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW +cevChassisRAIE1783CMS10DP OBJECT IDENTIFIER ::= { cevChassis 2503 } -- Stratix 5200 switch, 8 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR +cevChassisRAIE1783CMS10DN OBJECT IDENTIFIER ::= { cevChassis 2504 } -- Stratix 5200 switch, 8 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR, PRP, NAT +cevChassisRAIE1783CMS20DB OBJECT IDENTIFIER ::= { cevChassis 2505 } -- Stratix 5200 switch, 18 copper 100m ports, 2 Combo 100/1000 ports, base FW, DLR +cevChassisRAIE1783CMS20DP OBJECT IDENTIFIER ::= { cevChassis 2506 } -- Stratix 5200 switch, 18 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR +cevChassisRAIE1783CMS20DN OBJECT IDENTIFIER ::= { cevChassis 2507 } -- Stratix 5200 switch, 18 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR, PRP, NAT +cevChassisN9KC9808 OBJECT IDENTIFIER ::= { cevChassis 2508 } -- Cisco Nexus 9800 - 8 Slot Chassis +cevChassisDSC9148VK9 OBJECT IDENTIFIER ::= { cevChassis 2513 } -- Chassis for 48 port 8/16/32/64Gbps FC/SUP-4 switch +cevChassisDSC9124VK9 OBJECT IDENTIFIER ::= { cevChassis 2514 } -- Chassis information for 24 port 8/16/32/64 Gbps FC/Sup-4 Switch +cevChassisN9KC93180YCFX3H OBJECT IDENTIFIER ::= { cevChassis 2518 } -- Nexus 9300 series fixed chassis with 24x1/10/25G SFP+, 6*40/100G Ethernet +cevChassisN9KC93108TCFX3H OBJECT IDENTIFIER ::= { cevChassis 2519 } -- Cisco 1RU N9K-C93108TC-FX3P TOR chassis with 32 UPOE 24 100M/1G/2.5G/5G/10G base T downlink and 6x40/100G (QSFP28) uplink Ethernet +cevChassisC9200CX8P2XGH OBJECT IDENTIFIER ::= { cevChassis 2520 } -- Catalyst 9200CX 8x GE downlinks, 2x 1G copper + 2x 10G SFP+ uplinks, PoE+ for 240W 310W Internal FEP with SAF-D-Grid Power Connector for HVDC +cevChassisC9200CX8UXG2XH OBJECT IDENTIFIER ::= { cevChassis 2521 } -- Catalyst 9200CX 4x1G, 4x10G mGig Downlinks, 8x60W UPoE, 2x10G SFP+ Uplinks, Internal FEP with SAF-D-Grid Power Connector for HVDC +cevChassis03FR176 OBJECT IDENTIFIER ::= { cevChassis 2523 } -- IBM SAN48C-7 9024-V48 48x64G PSE SAN Switch +cevChassis03FR180 OBJECT IDENTIFIER ::= { cevChassis 2524 } -- IBM SAN48C-7 9024-V48 48x64G PSI SAN Switch +cevChassis03FR183 OBJECT IDENTIFIER ::= { cevChassis 2525 } -- IBM SAN24C-7 9024-V24 24x64G PSE SAN Switch +cevChassis03FR186 OBJECT IDENTIFIER ::= { cevChassis 2526 } -- IBM SAN24C-7 9024-V24 24x64G PSI SAN Switch +cevChassisIE932022S2C4X OBJECT IDENTIFIER ::= { cevChassis 2527 } -- Cisco Catalyst IE9300 Series Switch with 22 Ports GE SFP and 2 Ports GE Combo Downlinks and 4 Port 10GE SFP+ Uplinks with stacking +cevChassisIE932024T4X OBJECT IDENTIFIER ::= { cevChassis 2528 } -- Cisco Catalyst IE9300 Series Switch with 24 Ports GE copper downlinks and 4 port 10GE SFP+ uplinks with stacking +cevChassisIE932024P4X OBJECT IDENTIFIER ::= { cevChassis 2529 } -- Cisco Catalyst IE9300 Series Switch with 24 Ports GE POE+ downlinks and 4 port 10GE SFP+ uplinks with stacking +cevChassisIE932016P8U4X OBJECT IDENTIFIER ::= { cevChassis 2530 } -- Cisco Catalyst IE9300 Series Switch with 16 ports GE POE+ and 8 ports 2.5GE 4PPOE downlinks and 4 port 10GE SFP+ uplinks with stacking +cevChassisIE932024P4S OBJECT IDENTIFIER ::= { cevChassis 2531 } -- Cisco Catalyst IE9300 Series Switch with 24 Ports GE POE+ downlinks and 4 port 1GE SFP uplinks with stacking +cevChassisIE31008T4S OBJECT IDENTIFIER ::= { cevChassis 2532 } -- Catalyst IE3100 with 8 GE Copper and 4 GE SFP Ports, Fixed system, Network Essentials +cevChassisESR6300LICK9 OBJECT IDENTIFIER ::= { cevChassis 2533 } -- Cisco ESR6300 Embedded Services Router Software operating on authorized 3rd party hardware +cevChassisC8500L8S2X2Y OBJECT IDENTIFIER ::= { cevChassis 2534 } -- Cisco Aggregation Services Router 1000 Series, C8500L-8S2X2Y Chassis +cevChassisC8500L8S8X4Y OBJECT IDENTIFIER ::= { cevChassis 2535 } -- Cisco Aggregation Services Router 1000 Series, C8500L-8S8X4Y Chassis +cevChassisFpr1010Etd OBJECT IDENTIFIER ::= { cevChassis 2536 } -- Chassis for Cisco Firepower 1010E Security Appliance +cevChassisNCS57D218DDSYS OBJECT IDENTIFIER ::= { cevChassis 2538 } -- NCS-57D2-18DD-SYS NCS5700 Castleblack chassis +cevChassisN9KC9232EB1 OBJECT IDENTIFIER ::= { cevChassis 2539 } -- 32 x 800G 1RU Switch. +cevChassisentLogicalSerialNum OBJECT IDENTIFIER ::= { cevChassis 2544 } -- The entLogicalSerialNum is the string for vendor-specific serial number for the logical entity. +cevChassisN9KC9804 OBJECT IDENTIFIER ::= { cevChassis 2545 } -- Cisco Nexus 9800 4-slot Chassis +cevChassisDSC9396VK9 OBJECT IDENTIFIER ::= { cevChassis 2549 } -- Chassis for 96 port 8/16/32/64Gbps FC/SUP-4 switch +cevChassisN9KC9348GCFX3 OBJECT IDENTIFIER ::= { cevChassis 2552 } -- Cisco 1RU N9K-C9348GC-FX3PH TOR chassis with 48x 10M/100M/1G Base T downlink, 4x10/25G (SFP28) and 2x 40/100G (QSFP28) +cevChassisN9KC9348GCFX3PH OBJECT IDENTIFIER ::= { cevChassis 2553 } -- Cisco 1RU N9K-C9348GC-FX3PH TOR chassis with 48x 10M/100M/1G Base T half-duplex downlink, 4x10/25G (SFP28) and 2x 40/100G (QSFP28) +cevChassisNCS1014 OBJECT IDENTIFIER ::= { cevChassis 2554 } -- Network Convergence System 1014 chassis with timing support +cevChassisC9610R OBJECT IDENTIFIER ::= { cevChassis 2557 } -- Cisco Catalyst 9600 Series 10 Slot Chassis +cevChassisCG522E OBJECT IDENTIFIER ::= { cevChassis 2569 } -- Cisco Catalyst Cellular Gateway 5G Sub-6GHz +cevChassisCG418E OBJECT IDENTIFIER ::= { cevChassis 2570 } -- Cisco Catalyst Cellular Gateway LTE Cat 18 +cevChassisCG1134GW6 OBJECT IDENTIFIER ::= { cevChassis 2571 } -- Cisco Catalyst Wireless Gateway CG113, 4G Cellular + Wi-Fi 6 +cevChassisCG113W6 OBJECT IDENTIFIER ::= { cevChassis 2572 } -- Cisco Catalyst Wireless Gateway CG113, Wi-Fi 6 +cevChassis00NR244V96 OBJECT IDENTIFIER ::= { cevChassis 2575 } -- IBM SAN96C-7 9024-V96 96 port PSE 64G SAN Extension Switch +cevChassis00NR254V96 OBJECT IDENTIFIER ::= { cevChassis 2576 } -- IBM SAN96C-7 9024-V96 96 port PSI 64G SAN Extension Switch +cevChassisN9KC93108TCFX3 OBJECT IDENTIFIER ::= { cevChassis 2578 } -- Cisco 1RU N9K-C93108TC-FX3 TOR chassis with 48x100M/1G/10G BASE-T downlinks and 6x40/100G (QSFP28) uplinks +cevChassisN9KC9336CK1 OBJECT IDENTIFIER ::= { cevChassis 2579 } -- Nexus 9300 series TOR chassis with 36x40G/100G ports +cevChassisCW9800M OBJECT IDENTIFIER ::= { cevChassis 2593 } -- Cisco Catalyst CW9800M Chassis +cevChassisCW9800H1 OBJECT IDENTIFIER ::= { cevChassis 2594 } -- Cisco Catalyst CW9800H1 Chassis +cevChassisCW9800H2 OBJECT IDENTIFIER ::= { cevChassis 2595 } -- Cisco Catalyst CW9800H2 Chassis +cevChassisNCS1012SA OBJECT IDENTIFIER ::= { cevChassis 2597 } -- NCS 1012 Shelf Assembly +cevChassisNCS1020SA OBJECT IDENTIFIER ::= { cevChassis 2598 } -- NCS 1020 Shelf Assembly +cevChassisC11318PWN OBJECT IDENTIFIER ::= { cevChassis 2600 } -- Cisco C1131-8PWN 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -N Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PWH OBJECT IDENTIFIER ::= { cevChassis 2601 } -- Cisco C1131-8PWH 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -H Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PWK OBJECT IDENTIFIER ::= { cevChassis 2602 } -- Cisco C1131-8PWK 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -K Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PWF OBJECT IDENTIFIER ::= { cevChassis 2603 } -- Cisco C1131-8PWF 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -F Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PWD OBJECT IDENTIFIER ::= { cevChassis 2604 } -- Cisco C1131-8PWD 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -D Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PWR OBJECT IDENTIFIER ::= { cevChassis 2605 } -- Cisco C1131-8PWR 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -R Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PWN OBJECT IDENTIFIER ::= { cevChassis 2606 } -- Cisco C1131X-8PWN 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -N Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PWH OBJECT IDENTIFIER ::= { cevChassis 2607 } -- Cisco C1131X-8PWH 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -H Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PWK OBJECT IDENTIFIER ::= { cevChassis 2608 } -- Cisco C1131X-8PWK 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -K Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PWF OBJECT IDENTIFIER ::= { cevChassis 2609 } -- Cisco C1131X-8PWF 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -F Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PWD OBJECT IDENTIFIER ::= { cevChassis 2610 } -- Cisco C1131X-8PWD 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -D Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PWR OBJECT IDENTIFIER ::= { cevChassis 2611 } -- Cisco C1131X-8PWR 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -R Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PLTEPWN OBJECT IDENTIFIER ::= { cevChassis 2612 } -- Cisco C1131-8PLTEPWN 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -N Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PLTEPWH OBJECT IDENTIFIER ::= { cevChassis 2613 } -- Cisco C1131-8PLTEPWH 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -H Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PLTEPWK OBJECT IDENTIFIER ::= { cevChassis 2614 } -- Cisco C1131-8PLTEPWK 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -K Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PLTEPWF OBJECT IDENTIFIER ::= { cevChassis 2615 } -- Cisco C1131-8PLTEPWF 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -F Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PLTEPWD OBJECT IDENTIFIER ::= { cevChassis 2616 } -- Cisco C1131-8PLTEPWD 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -D Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC11318PLTEPWR OBJECT IDENTIFIER ::= { cevChassis 2617 } -- Cisco C1131-8PLTEPWR 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -R Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PLTEPWN OBJECT IDENTIFIER ::= { cevChassis 2618 } -- Cisco C1131X-8PLTEPWN 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -N Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PLTEPWH OBJECT IDENTIFIER ::= { cevChassis 2619 } -- Cisco C1131X-8PLTEPWH 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -H Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PLTEPWK OBJECT IDENTIFIER ::= { cevChassis 2620 } -- Cisco C1131X-8PLTEPWK 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -K Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PLTEPWF OBJECT IDENTIFIER ::= { cevChassis 2621 } -- Cisco C1131X-8PLTEPWF 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -F Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PLTEPWD OBJECT IDENTIFIER ::= { cevChassis 2622 } -- Cisco C1131X-8PLTEPWD 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -D Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisC1131X8PLTEPWR OBJECT IDENTIFIER ::= { cevChassis 2623 } -- Cisco C1131X-8PLTEPWR 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -R Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console +cevChassisN9KC92348GCFX3 OBJECT IDENTIFIER ::= { cevChassis 2652 } -- Cisco Nexus 9200 Series fixed switch with 48x100M/1G BASE-T + 4x10/25 Gbps SFP28 + 2x40/100-Gbps QSFP28 ports cevBackplane OBJECT IDENTIFIER ::= { cevMIBObjects 4 } cevBackplaneAtm OBJECT IDENTIFIER ::= { cevBackplane 4 } -- LS1010 Chassis cevBackplaneCat5500 OBJECT IDENTIFIER ::= { cevBackplane 5 } -- Catalyst 5500 Chassis -cevBackplaneCat6400 OBJECT IDENTIFIER ::= { cevBackplane 6 } -- Catalyst 6400 Chassis +cevBackplaneCat6400 OBJECT IDENTIFIER ::= { cevBackplane 6 } -- Catalyst 6400 Chassis cevBackplaneCat8510 OBJECT IDENTIFIER ::= { cevBackplane 7 } -- Catalyst 8510 Layer 3 Router/Switch cevBackplaneCat8540 OBJECT IDENTIFIER ::= { cevBackplane 8 } -- Catalyst 8540 Layer 3 Router/Switch cevBackplaneMGX8850 OBJECT IDENTIFIER ::= { cevBackplane 9 } -- MGX8850 Chassis @@ -1922,7 +2239,7 @@ cevBackplaneMGX8880 OBJECT IDENTIFIER ::= { cevBackplane 38 } -- Backplane for cevBackplane6SlotsRCON8850 OBJECT IDENTIFIER ::= { cevBackplane 39 } -- A 6-slot RCON for MGX8850/8880 chassis. Redundancy CONnector (RCON) is intended to provide 1:N front card redundancy solution for MGX8xxx solution where N can be 1,2,3,4,5. cevBackplane4SlotsRCON8850 OBJECT IDENTIFIER ::= { cevBackplane 40 } -- A 4-slot RCON for MGX8850/8880 chassis. Redundancy CONnector (RCON) is intended to provide 1:N front card redundancy solution for MGX8xxx solution where N can be 1,2,3,4,5. cevBackplane4SlotsRCON8830 OBJECT IDENTIFIER ::= { cevBackplane 41 } -- A 4-slot RCON for MGX8830 chassis. Redundancy CONnector (RCON) is intended to provide 1:N front card redundancy solution for MGX8xxx solution where N can be 1,2,3,4,5. -cevBackplaneDSX9116K9 OBJECT IDENTIFIER ::= { cevBackplane 42 } -- mds-9116 backplane type +cevBackplaneDSX9116K9 OBJECT IDENTIFIER ::= { cevBackplane 42 } -- mds-9116 backplane type cevBackplaneONS15310 OBJECT IDENTIFIER ::= { cevBackplane 43 } -- Cisco ONS 15310 Backplane cevBackplaneCat4503e OBJECT IDENTIFIER ::= { cevBackplane 48 } -- Catalyst 4503-E Backplane cevBackplaneCat4506e OBJECT IDENTIFIER ::= { cevBackplane 49 } -- Catalyst 4506-E Backplane @@ -1936,19 +2253,26 @@ cevBackplaneN7Kc7009 OBJECT IDENTIFIER ::= { cevBackplane 57 cevBackplaneN7Kc7004 OBJECT IDENTIFIER ::= { cevBackplane 61 } -- Nexus7000 4slot zonda n7k backplane N7K-C7004 cevBackplaneDSC9710 OBJECT IDENTIFIER ::= { cevBackplane 63 } -- DS-C9710, backplane for MDS 10-Slot Director Switch cevBackplaneN77c7718 OBJECT IDENTIFIER ::= { cevBackplane 64 } -- Nexus7700 18-slot backplane -cevBackplaneN77c7710 OBJECT IDENTIFIER ::= { cevBackplane 65 } -- Nexus7700 10-slot backplane -cevBackplaneN77c7706 OBJECT IDENTIFIER ::= { cevBackplane 66 } -- Nexus7700 6-slot backplane -cevBackplaneCat6800 OBJECT IDENTIFIER ::= { cevBackplane 67 } -- Catalyst 6800 Backplane +cevBackplaneN77c7710 OBJECT IDENTIFIER ::= { cevBackplane 65 } -- Nexus7700 10-slot backplane +cevBackplaneN77c7706 OBJECT IDENTIFIER ::= { cevBackplane 66 } -- Nexus7700 6-slot backplane +cevBackplaneCat6800 OBJECT IDENTIFIER ::= { cevBackplane 67 } -- Catalyst 6800 Backplane cevBackplaneDSC9706 OBJECT IDENTIFIER ::= { cevBackplane 68 } -- Backplane for MDS-9706 6-slot Director Switch cevBackplaneNCS4K OBJECT IDENTIFIER ::= { cevBackplane 69 } -- NCS4k Daughterboard Module -cevBackplaneN77c7702 OBJECT IDENTIFIER ::= { cevBackplane 70 } -- Nexus7700 2-slot backplane +cevBackplaneN77c7702 OBJECT IDENTIFIER ::= { cevBackplane 70 } -- Nexus7700 2-slot backplane cevBackplaneDSC9718 OBJECT IDENTIFIER ::= { cevBackplane 71 } -- DS-C9718, Backplane of MDS 18-Slot Director Switch cevBackplaneNCS1002 OBJECT IDENTIFIER ::= { cevBackplane 76 } -- Cisco NCS1002 Line Card Chassis Backplane -cevBackplaneC9404R OBJECT IDENTIFIER ::= { cevBackplane 78 } -- Cisco Catalyst 9400 Series 4 slot chassis backplane -cevBackplaneC9407R OBJECT IDENTIFIER ::= { cevBackplane 79 } -- Cisco Catalyst 9400 Series 7 slot chassis backplane +cevBackplaneC9404R OBJECT IDENTIFIER ::= { cevBackplane 78 } -- Cisco Catalyst 9400 Series 4 slot chassis backplane +cevBackplaneC9407R OBJECT IDENTIFIER ::= { cevBackplane 79 } -- Cisco Catalyst 9400 Series 7 slot chassis backplane cevBackplaneC9410R OBJECT IDENTIFIER ::= { cevBackplane 80 } -- Cisco Catalyst 9400 Series 10 slot chassis backplane cevBackplaneC9606 OBJECT IDENTIFIER ::= { cevBackplane 81 } -- Cisco Catalyst 9600 Series 6 slot chassis backplane cevBackplaneNCS1004 OBJECT IDENTIFIER ::= { cevBackplane 82 } -- Cisco NCS1004 Chassis Backplane +cevBackplaneC950056C16D OBJECT IDENTIFIER ::= { cevBackplane 84 } -- Cisco Catalyst 9500 Series Fixed chassis backplane for 56-port x 100G + 16-port x400G +cevBackplaneC950028C8D OBJECT IDENTIFIER ::= { cevBackplane 85 } -- Cisco Catalyst 9500 Series Fixed chassis backplane for 28-port x100G + 8-port x400G +cevBackplaneC9610R OBJECT IDENTIFIER ::= { cevBackplane 86 } -- Cisco Catalyst 9600 Series 10 slot chassis backplane + + + + -- Acronyms used in the cevContainer section: -- EARLDB EARL DaughterBoard @@ -1959,13 +2283,13 @@ cevContainerSlot OBJECT IDENTIFIER ::= { cevContainer 1 } -- represents slots cevContainerDaughterCard OBJECT IDENTIFIER ::= { cevContainer 2 } -- represents slots for a daughter card cevContainerPCMCIA OBJECT IDENTIFIER ::= { cevContainer 12 } cevContainerDSPModuleSlot OBJECT IDENTIFIER ::= { cevContainer 16 } -cevContainerCat8500Carrier OBJECT IDENTIFIER ::= { cevContainer 17 } -- Module Carrier that can carry 2 submodules per slot -cevContainerCat8500CpuSwitchAndFeature OBJECT IDENTIFIER ::= { cevContainer 18 } -- Switch Processor with feature card FC1 -cevContainerCat8500CpuSwitchAndFeaturePFQ OBJECT IDENTIFIER ::= { cevContainer 19 } -- Switch Processor with feature card FC-PFQ +cevContainerCat8500Carrier OBJECT IDENTIFIER ::= { cevContainer 17 } -- Module Carrier that can carry 2 submodules per slot +cevContainerCat8500CpuSwitchAndFeature OBJECT IDENTIFIER ::= { cevContainer 18 } -- Switch Processor with feature card FC1 +cevContainerCat8500CpuSwitchAndFeaturePFQ OBJECT IDENTIFIER ::= { cevContainer 19 } -- Switch Processor with feature card FC-PFQ cevContainerCat8500SuperCarrier OBJECT IDENTIFIER ::= { cevContainer 20 } -- Super Module Carrier that can carry 2 submodules per slot cevContainerCat8500CpuRoute OBJECT IDENTIFIER ::= { cevContainer 21 } -- Routing Processor cevContainerCat8500Switch10GAndFC OBJECT IDENTIFIER ::= { cevContainer 22 } -- 10 Gigabit Switch Fabric with Feature Card option -cevContainerCat8500Switch10GNoFC OBJECT IDENTIFIER ::= { cevContainer 23 } -- 10 Gigabit Switch Fabric without Feature Card option +cevContainerCat8500Switch10GNoFC OBJECT IDENTIFIER ::= { cevContainer 23 } -- 10 Gigabit Switch Fabric without Feature Card option cevContainerDslamSlot OBJECT IDENTIFIER ::= { cevContainer 24 } -- Cisco 6100, 6130, 6260 DSLAM Chassis General Purpose Slot cevContainerC6260PsSlot OBJECT IDENTIFIER ::= { cevContainer 25 } -- Cisco 6260 Power Supply Slot cevContainerC6260FanSlot OBJECT IDENTIFIER ::= { cevContainer 26 } -- Cisco 6260 Fan Tray Slot @@ -2021,7 +2345,7 @@ cevContainer12404FabricAlarmBay OBJECT IDENTIFIER ::= { cevContainer 82 } -- Fa cevContainer12404PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 83 } -- Power Supply bay for GSR 12404 cevContainer12404MainBlowerBay OBJECT IDENTIFIER ::= { cevContainer 84 } -- Main blower bay for GSR 12404 cevContainerC7304PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 85 } -- Cisco 7300 platform Power Supply Slot -cevContainerC10KSlot OBJECT IDENTIFIER ::= { cevContainer 86 } -- Cisco 10000 General Purpose Slot +cevContainerC10KSlot OBJECT IDENTIFIER ::= { cevContainer 86 } -- Cisco 10000 General Purpose Slot cevContainerC10KPowerSupplySlot OBJECT IDENTIFIER ::= { cevContainer 87 } -- Cisco 10000 Power Supply Slot cevContainerC10KFanTraySlot OBJECT IDENTIFIER ::= { cevContainer 88 } -- Cisco 10000 Fan Tray Bay cevContainerC10KFlashCardSlot OBJECT IDENTIFIER ::= { cevContainer 89 } -- Cisco 10000 Flash Card Slot @@ -2055,7 +2379,7 @@ cevContainerSupFabricSlot OBJECT IDENTIFIER ::= { cevContainer 122 } -- Contain cevContainerLineCardSlot OBJECT IDENTIFIER ::= { cevContainer 123 } -- Container for supervisor/fabric slot cevContainer9506PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 124 } -- Container for 9506 Power supply bay cevContainer9509PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 125 } -- Container for 9509 Power supply bay -cevContainer9513PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 126 } -- Container for 9513 Power supply bay +cevContainer9513PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 126 } -- Container for 9513 Power supply bay cevContainer9506FanBay OBJECT IDENTIFIER ::= { cevContainer 127 } -- Container for 9506 Fan bay cevContainer9509FanBay OBJECT IDENTIFIER ::= { cevContainer 128 } -- Container for 9509 Fan bay cevContainer9513FanBay OBJECT IDENTIFIER ::= { cevContainer 129 } -- Container for 9513 Fan bay @@ -2073,7 +2397,7 @@ cevContainerPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 140 } -- Generi cevContainerPowerSupply OBJECT IDENTIFIER ::= { cevContainer 141 } -- Generic power supply subcontainer for bay cevContainerGbic OBJECT IDENTIFIER ::= { cevContainer 142 } -- Generic gigabit port container cevContainerCrs1RPSlot OBJECT IDENTIFIER ::= { cevContainer 143 } -- Cisco CRS1 route processor slot. -cevContainerCrs1LCDRPSlot OBJECT IDENTIFIER ::= { cevContainer 144 } -- Cisco CRS1 Line Card / Distributed Route Processor card slot +cevContainerCrs1LCDRPSlot OBJECT IDENTIFIER ::= { cevContainer 144 } -- Cisco CRS1 Line Card / Distributed Route Processor card slot cevContainerCrs1FabricSlot OBJECT IDENTIFIER ::= { cevContainer 145 } -- Cisco CRS1 fabric card slot. cevContainerCrs1AlarmSlot OBJECT IDENTIFIER ::= { cevContainer 146 } -- Cisco CRS1 alarm card slot. cevContainerCrs1PowerSupplySlot OBJECT IDENTIFIER ::= { cevContainer 147 } -- Cisco CRS1 power supply slot. @@ -2092,7 +2416,7 @@ cevContainerONS15310CardSlot OBJECT IDENTIFIER ::= { cevContainer 159 } -- Cisc cevContainerGSR6Blwr OBJECT IDENTIFIER ::= { cevContainer 160 } -- Cisco 12000 6-slot Enhanced blower cevContainerGSR10GSR16Blwr OBJECT IDENTIFIER ::= { cevContainer 161 } -- Cisco 12000 10-slot and 16-slot Enhanced blower cevContainer9513RearFanBay OBJECT IDENTIFIER ::= { cevContainer 162 } -- Container for 9513 Rear Fan bay -cevContainerFabricSlot OBJECT IDENTIFIER ::= { cevContainer 163 } -- Container for Fabric cards +cevContainerFabricSlot OBJECT IDENTIFIER ::= { cevContainer 163 } -- Container for Fabric cards cevContainerCrs18RPSlot OBJECT IDENTIFIER ::= { cevContainer 164 } -- Cisco CRS-1 Series 8 Slots Route Processor Slot cevContainerCrs18FabricSlot OBJECT IDENTIFIER ::= { cevContainer 165 } -- Cisco CRS-1 Series 8 Slots Fabric Card (Single) slot cevContainerCrs1FabricShelfControllerSlot OBJECT IDENTIFIER ::= { cevContainer 166 } -- Cisco CRS-1 Series Fabric Card Chassis Shelf controller Slot @@ -2103,7 +2427,7 @@ cevPowerSupplyCrs1PowerSupplyShelf OBJECT IDENTIFIER ::= { cevContainer 170 } - cevContainerTransceiver OBJECT IDENTIFIER ::= { cevContainer 171 } -- Represents a place-holder on the card where a transceiver module is inserted cevContainer9124PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 173 } -- Power Supply Bay for 24-port 1/2/4 Gig Supervisor Fabric Switch cevContainer9124FanBay OBJECT IDENTIFIER ::= { cevContainer 174 } -- Fan Bay for 24-port 1/2/4 Gig Supervisor Fabric Storage Switch -cevContainerC3KPowerSupply OBJECT IDENTIFIER ::= { cevContainer 175 } -- Catalyst 3K Power supply slot +cevContainerC3KPowerSupply OBJECT IDENTIFIER ::= { cevContainer 175 } -- Catalyst 3K Power supply slot cevContainerC3KRemotePowerSupply OBJECT IDENTIFIER ::= { cevContainer 176 } -- Catalyst 3K Remote Power Supply (RPS) slot cevContainerC3KBlower OBJECT IDENTIFIER ::= { cevContainer 177 } -- Catalyst 3K Blower / Fan slot cevContainer9222iFanBay OBJECT IDENTIFIER ::= { cevContainer 178 } -- Fan bay in MDS 9222i Chassis @@ -2126,14 +2450,14 @@ cevContainerASR9KPowerSupplySlotAC OBJECT IDENTIFIER ::= { cevConta cevContainerASR9KRSPSlot OBJECT IDENTIFIER ::= { cevContainer 191 } -- ASR 90xx Route/Switch Processor Module Container cevContainerASR9KLCSlot OBJECT IDENTIFIER ::= { cevContainer 192 } -- ASR 90xx Line Card Module Container cevContainerN7Kc7018PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 193 } -- container for Nexus7000 18 slot N7K powersupply -cevContainerN7KC7018FanBay OBJECT IDENTIFIER ::= { cevContainer 194 } -- container for Nexus7000 18 slot N7K fan -cevContainerCrs1PowerShelfSlot OBJECT IDENTIFIER ::= { cevContainer 195 } -- Cisco CRS1 Power Shelf slot +cevContainerN7KC7018FanBay OBJECT IDENTIFIER ::= { cevContainer 194 } -- container for Nexus7000 18 slot N7K fan +cevContainerCrs1PowerShelfSlot OBJECT IDENTIFIER ::= { cevContainer 195 } -- Cisco CRS1 Power Shelf slot cevContainerN5kC5010FanBay OBJECT IDENTIFIER ::= { cevContainer 196 } -- Container for N5kC5010 Fan bay cevContainerN5kC5010PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 197 } -- Container for N5kC5010 Power supply bay cevContainerXFP OBJECT IDENTIFIER ::= { cevContainer 198 } -- XFP container cevContainerAsr14kPowerSupplySlot OBJECT IDENTIFIER ::= { cevContainer 199 } -- Cisco ASR14000 Series Power Supply Slot cevContainerAsr14kPowerShelfSlot OBJECT IDENTIFIER ::= { cevContainer 200 } -- Cisco ASR14000 Series Power Shelf Slot -cevContainerAsr14kFanTraySlot OBJECT IDENTIFIER ::= { cevContainer 201 } -- Cisco ASR14000 Series Fan Tray Slot +cevContainerAsr14kFanTraySlot OBJECT IDENTIFIER ::= { cevContainer 201 } -- Cisco ASR14000 Series Fan Tray Slot cevContainerAsr14kFabricCardSlot OBJECT IDENTIFIER ::= { cevContainer 202 } -- Cisco ASR14000 Series Fabric Card Slot cevContainerAsr14kFPSlot OBJECT IDENTIFIER ::= { cevContainer 203 } -- Cisco ASR14000 Series Forwarding Processor Slot cevContainerAsr14kRPSlot OBJECT IDENTIFIER ::= { cevContainer 204 } -- Cisco ASR14000 Series Route Processor Slot @@ -2148,7 +2472,7 @@ cevContainerMXE5600FanTray OBJECT IDENTIFIER ::= { cevConta cevContainerN2kC2248TP1GEPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 218 } -- Container for N2K-C2248TP-1GE, N3K-C3016,N3K-C3048 and N3K-C3064 Power Supply bay cevContainerN7Kc7009PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 219 } -- container for Nexus7000 9slot boxster N7Kpowersupply cevContainerN7KC7009FanBay OBJECT IDENTIFIER ::= { cevContainer 220 } -- container for Nexus7000 9slot boxster N7K fan -cevContainerFruLinkModuleSlot OBJECT IDENTIFIER ::= { cevContainer 221 } -- Container for FRULink Modules +cevContainerFruLinkModuleSlot OBJECT IDENTIFIER ::= { cevContainer 221 } -- Container for FRULink Modules cevContainerFlexStackModuleSlot OBJECT IDENTIFIER ::= { cevContainer 222 } -- Container for Cisco FlexStack Module cevContainerMXE5600ShelfManagerBay OBJECT IDENTIFIER ::= { cevContainer 223 } -- Shelf Manager Bay for Cisco MXE 5600 platform cevContainerMXE5600NpmSlot OBJECT IDENTIFIER ::= { cevContainer 224 } -- Chassis Slot for NPM module of Cisco MXE 5600 platform @@ -2156,7 +2480,7 @@ cevContainerMXE5600MpmSlot OBJECT IDENTIFIER ::= { cevConta cevContainerN5KC5548FanBay OBJECT IDENTIFIER ::= { cevContainer 226 } -- Container for N5548P-Fan cevContainerN5kC5548PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 227 } -- Container for N55-PAC-750W Power supply cevContainerCrs18PowerShelfVirtual OBJECT IDENTIFIER ::= { cevContainer 228 } -- Cisco CRS-1 Series Virtual Power Shelf for 8 Slots LCC -cevContainer40GigBasePort OBJECT IDENTIFIER ::= { cevContainer 229 } -- Generic 40 gigabit ethernet port container +cevContainer40GigBasePort OBJECT IDENTIFIER ::= { cevContainer 229 } -- Generic 40 gigabit ethernet port container cevContainerSAMBay OBJECT IDENTIFIER ::= { cevContainer 230 } -- sub-slots in the Integrated Service Module (ISM) where Service Accelerator Module(SAM) Flash cards are inserted cevContainerN5KC5596FanBay OBJECT IDENTIFIER ::= { cevContainer 231 } -- Container for N5596UP-Fan cevContainerN5kC5596PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 232 } -- Container for N55-PAC-1100W Power supply @@ -2178,9 +2502,9 @@ cevContainerIMBay OBJECT IDENTIFIER ::= { cevConta cevContainerN7Kc7004FanBay OBJECT IDENTIFIER ::= { cevContainer 250 } -- container for Nexus7000 4slot zonda n7k fan cevContainerN7Kc7004PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 251 } -- container for Nexus7000 4slot zonda n7k powersupply cevContainerN3KC3048FanBay OBJECT IDENTIFIER ::= { cevContainer 252 } -- Container for N3K-C3048-Fan -cevContainerESGPSBay OBJECT IDENTIFIER ::= { cevContainer 253 } -- ESG 2000 Power Supply Module container -cevContainerESGPOEConvBay OBJECT IDENTIFIER ::= { cevContainer 254 } -- ESG 2000 POE converter supply bays container -cevContainerESGFanTrayBay OBJECT IDENTIFIER ::= { cevContainer 255 } -- ESG 2000 Fan Tray container +cevContainerESGPSBay OBJECT IDENTIFIER ::= { cevContainer 253 } -- ESG 2000 Power Supply Module container +cevContainerESGPOEConvBay OBJECT IDENTIFIER ::= { cevContainer 254 } -- ESG 2000 POE converter supply bays container +cevContainerESGFanTrayBay OBJECT IDENTIFIER ::= { cevContainer 255 } -- ESG 2000 Fan Tray container cevContainerESG2000RPSlot OBJECT IDENTIFIER ::= { cevContainer 256 } -- ESG2000 Routing Processor Module Container cevContainerESG2000FPSlot OBJECT IDENTIFIER ::= { cevContainer 257 } -- ESG2000 Forwarding Processor Module Container cevContainerESGNGSMSlot OBJECT IDENTIFIER ::= { cevContainer 258 } -- ESG2000 NGSM Container @@ -2196,22 +2520,23 @@ cevContainerISR4400POEBay OBJECT IDENTIFIER ::= { cevConta cevContainerISR4400InternalPOEBay OBJECT IDENTIFIER ::= { cevContainer 272 } -- ISR 4400 Series Internal Power Over Ethennet bay cevContainerDSC9710FanBay OBJECT IDENTIFIER ::= { cevContainer 273 } -- Fan Bay for MDS 10-Slot Director Switch, DS9710 cevContainerMDS9250iFanBay OBJECT IDENTIFIER ::= { cevContainer 274 } -- Fan Bay unit for MDS 9250i Intelligent Fabric Switch -cevContainerNCSProcessorSlot OBJECT IDENTIFIER ::= { cevContainer 275 } -- NCS Route Processor slot -cevContainerNCSLineCardSlot OBJECT IDENTIFIER ::= { cevContainer 276 } -- NCS Line Card slot -cevContainerNCSFabcardSlot OBJECT IDENTIFIER ::= { cevContainer 277 } -- NCS Fabric Card slot -cevContainerNCSPwrTraySlot OBJECT IDENTIFIER ::= { cevContainer 278 } -- NCS Power Tray slot +cevContainerNCSProcessorSlot OBJECT IDENTIFIER ::= { cevContainer 275 } -- NCS Route Processor slot +cevContainerNCSLineCardSlot OBJECT IDENTIFIER ::= { cevContainer 276 } -- NCS Line Card slot +cevContainerNCSFabcardSlot OBJECT IDENTIFIER ::= { cevContainer 277 } -- NCS Fabric Card slot +cevContainerNCSPwrTraySlot OBJECT IDENTIFIER ::= { cevContainer 278 } -- NCS Power Tray slot cevContainerNCSFanTraySlot OBJECT IDENTIFIER ::= { cevContainer 279 } -- NCS Fan Tray slot -cevContainerNCSPwrSupSlot OBJECT IDENTIFIER ::= { cevContainer 280 } -- NCS Power Supply slot -cevContainerNCSDisplaySlot OBJECT IDENTIFIER ::= { cevContainer 281 } -- NCS Panel Display slot +cevContainerNCSPwrSupSlot OBJECT IDENTIFIER ::= { cevContainer 280 } -- NCS Power Supply slot +cevContainerNCSDisplaySlot OBJECT IDENTIFIER ::= { cevContainer 281 } -- NCS Panel Display slot cevContainerN77c7718PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 282 } -- Container for Nexus7700 18-slot power supply -cevContainerN77c7710PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 283 } -- Container for Nexus7700 10-slot power supply -cevContainerN77c7706PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 284 } -- Container for Nexus7700 6-slot power supply -cevContainerN77c7718FanBay OBJECT IDENTIFIER ::= { cevContainer 285 } -- Container for Nexus7700 18-slot fan -cevContainerN77c7710FanBay OBJECT IDENTIFIER ::= { cevContainer 286 } -- Container for Nexus7700 10-slot fan -cevContainerN77c7706FanBay OBJECT IDENTIFIER ::= { cevContainer 287 } -- Container for Nexus7700 6-slot fan +cevContainerN77c7710PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 283 } -- Container for Nexus7700 10-slot power supply +cevContainerN77c7706PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 284 } -- Container for Nexus7700 6-slot power supply +cevContainerN77c7718FanBay OBJECT IDENTIFIER ::= { cevContainer 285 } -- Container for Nexus7700 18-slot fan +cevContainerN77c7710FanBay OBJECT IDENTIFIER ::= { cevContainer 286 } -- Container for Nexus7700 10-slot fan +cevContainerN77c7706FanBay OBJECT IDENTIFIER ::= { cevContainer 287 } -- Container for Nexus7700 6-slot fan cevContainerCXP OBJECT IDENTIFIER ::= { cevContainer 288 } -- CXP Pluggable Optics port slot cevContainerCPAK OBJECT IDENTIFIER ::= { cevContainer 289 } -- CPAK Pluggable Optics port slot -cevContainerPsConverter OBJECT IDENTIFIER ::= { cevContainer 290 } -- Generic Power Supply converter module container +cevContainerPsConverter OBJECT IDENTIFIER ::= { cevContainer 290 } -- Generic Power Supply converter module container +cevContainerFixedLinkModuleSlot OBJECT IDENTIFIER ::= { cevContainer 291 } -- Container for Fixed Link Modules cevContainerQIron22Qzinc2 OBJECT IDENTIFIER ::= { cevContainer 292 } -- QuickIron2/QuickZinc2 Fan Bay cevContainerDSC9706 OBJECT IDENTIFIER ::= { cevContainer 293 } -- Fan Bay Container for MDS-9706 6-slot Director Switch cevContainerNCS4KRPS OBJECT IDENTIFIER ::= { cevContainer 294 } -- Cisco NCS 4000 Router Processor slot @@ -2242,24 +2567,26 @@ cevContainerN9Kc9516FanBay OBJECT IDENTIFIER ::= { cevContainer 318 cevContainerN9Kc9504FanBay OBJECT IDENTIFIER ::= { cevContainer 319 } -- container for Nexus9504 fan tray cevContainerN9KC9300FanBay2 OBJECT IDENTIFIER ::= { cevContainer 320 } -- Container for 3RU Fans cevContainerN9KC9300FanBay1 OBJECT IDENTIFIER ::= { cevContainer 321 } -- Container for 2RU Fans -cevContainerISRSSDSlot OBJECT IDENTIFIER ::= { cevContainer 322 } -- ISR Series SSD Module Container +cevContainerISRSSDSlot OBJECT IDENTIFIER ::= { cevContainer 322 } -- ISR Series SSD Module Container cevContainerNIMSlot OBJECT IDENTIFIER ::= { cevContainer 323 } -- Network Interface Module Container cevContainerISRPVDMSlot OBJECT IDENTIFIER ::= { cevContainer 324 } -- Cisco ISR Series Packet Voice DSP Module Container -cevContainerN5KC56128FanBay OBJECT IDENTIFIER ::= { cevContainer 327 } -- Container for N5K-C56128 Fan -cevContainerNXAPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 328 } -- Container for Nexus Power Module -cevContainerN6kC6001FanBay OBJECT IDENTIFIER ::= { cevContainer 329 } -- Container for N6K-C6001 Fan +cevContainerN5KC56128FanBay OBJECT IDENTIFIER ::= { cevContainer 327 } -- Container for N5K-C56128 Fan +cevContainerNXAPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 328 } -- Container for Nexus Power Module +cevContainerN6kC6001FanBay OBJECT IDENTIFIER ::= { cevContainer 329 } -- Container for N6K-C6001 Fan cevContainerNCS4KSFP OBJECT IDENTIFIER ::= { cevContainer 330 } -- NCS4k Pluggable Optical Module Container cevContainerNCS4KPwrSupSlot OBJECT IDENTIFIER ::= { cevContainer 331 } -- NCS4K Power Supply slot cevContainerNCS6KSwitchCard OBJECT IDENTIFIER ::= { cevContainer 332 } -- It is Switch Card, present in NCS6K Firin Chassis cevContainerUSB OBJECT IDENTIFIER ::= { cevContainer 333 } -- Universal Serial Bus (USB) module container cevContainerCCEPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 334 } -- uBR CCE NexGen Power Supply Slot cevContainerCCEFanTraySlot OBJECT IDENTIFIER ::= { cevContainer 335 } -- uBR CCE NexGen Fan Tray Slot -cevContainerN77c7702PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 336 } -- Container for Nexus7700 2-slot power supply +cevContainerN77c7702PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 336 } -- Container for Nexus7700 2-slot power supply cevContainerN77c7702FanBay OBJECT IDENTIFIER ::= { cevContainer 337 } -- Container for Nexus7700 2-slot fan cevContainerASR1000XFanTrayBay OBJECT IDENTIFIER ::= { cevContainer 338 } -- Cisco ASR1006-X/ASR1009-X Fan Tray Container cevContainerDSCAC1200W OBJECT IDENTIFIER ::= { cevContainer 339 } -- Container for 1200W AC Power Supply for MDS-9396 16G x 96 FC ports fabric switch cevContainerDSC96SFAN OBJECT IDENTIFIER ::= { cevContainer 340 } -- Fan Bay for MDS-9396 16G x 96 FC ports fabric switch -cevContainerASR9KPwrTraySlot OBJECT IDENTIFIER ::= { cevContainer 343 } -- ASR9K Chassis Power Tray Slot +cevContainerUCS6332PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 341 } -- Container for UCS 6332 PSU +cevContainerUCS6332FanBay OBJECT IDENTIFIER ::= { cevContainer 342 } -- Container for UCS 6332 Fan +cevContainerASR9KPwrTraySlot OBJECT IDENTIFIER ::= { cevContainer 343 } -- ASR9K Chassis Power Tray Slot cevContainerDSCAC973KW OBJECT IDENTIFIER ::= { cevContainer 344 } -- Container for Power Supply Unit of MDS 18-Slot Director Switch, DS-C9718 cevContainerDSC9718FAN OBJECT IDENTIFIER ::= { cevContainer 345 } -- Container for Fan module of MDS 18-Slot Director Switch, DS-C9718 cevContainerN9kc9264PQFanBay OBJECT IDENTIFIER ::= { cevContainer 346 } -- container for Nexus9264PQ fan tray @@ -2290,16 +2617,16 @@ cevContainerNonCiscoQSFP28AOC OBJECT IDENTIFIER ::= { cevContainer 371 cevContainerNonCiscoQSFP28CWDM OBJECT IDENTIFIER ::= { cevContainer 372 } -- Non Cisco QSFP28 CWDM optics for NCS-5508 Chassis cevContainerNCS420XRSP OBJECT IDENTIFIER ::= { cevContainer 373 } -- NCS 4206/4204 Router & Switching Processor and Controller-400G cevContainerNCS4216RSP OBJECT IDENTIFIER ::= { cevContainer 374 } -- NCS 4216 Router & Switching Processor and Controller-400G -cevContainerNCS1002LineCardVirtual OBJECT IDENTIFIER ::= { cevContainer 377 } -- Cisco NCS1K Virtual Line Card Slot -cevContainerNCS1002RP OBJECT IDENTIFIER ::= { cevContainer 378 } -- NCS1K route processor slot 0 -cevContainerPowerModuleSlot OBJECT IDENTIFIER ::= { cevContainer 379 } -- Cisco NCS1K power module Slot +cevContainerNCS1002LineCardVirtual OBJECT IDENTIFIER ::= { cevContainer 377 } -- Cisco NCS1K Virtual Line Card Slot +cevContainerNCS1002RP OBJECT IDENTIFIER ::= { cevContainer 378 } -- NCS1K route processor slot 0 +cevContainerPowerModuleSlot OBJECT IDENTIFIER ::= { cevContainer 379 } -- Cisco NCS1K power module Slot cevContainerFPR2KFanBay OBJECT IDENTIFIER ::= { cevContainer 384 } -- FirePOWER 2K Fan Bay cevContainerFPR2KPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 385 } -- FirePOWER 2K Power Supply Bay cevContainerQSFP OBJECT IDENTIFIER ::= { cevContainer 390 } -- Represents a place-holder on the card where an QSFP module is inserted -cevContainerC9400RPSlot OBJECT IDENTIFIER ::= { cevContainer 391 } -- Cisco Catalyst 9400 Series Routing Processor Module Container -cevContainerC9400CCSlot OBJECT IDENTIFIER ::= { cevContainer 392 } -- Cisco Catalyst 9400 Series Carrier Card Module Container -cevContainerC9400PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 393 } -- Cisco Catalyst 9400 Series Power Supply Bay Module Container -cevContainerC9400FanTrayBay OBJECT IDENTIFIER ::= { cevContainer 394 } -- Cisco Catalyst 9400 Series Fan Tray Bay Module Container +cevContainerC9400RPSlot OBJECT IDENTIFIER ::= { cevContainer 391 } -- Cisco Catalyst 9400 Series Routing Processor Module Container +cevContainerC9400CCSlot OBJECT IDENTIFIER ::= { cevContainer 392 } -- Cisco Catalyst 9400 Series Carrier Card Module Container +cevContainerC9400PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 393 } -- Cisco Catalyst 9400 Series Power Supply Bay Module Container +cevContainerC9400FanTrayBay OBJECT IDENTIFIER ::= { cevContainer 394 } -- Cisco Catalyst 9400 Series Fan Tray Bay Module Container cevContainerISR1100PSBay OBJECT IDENTIFIER ::= { cevContainer 395 } -- Cisco ISR 1100 Series Power Supply Module Container cevContainerISR1100POEBay OBJECT IDENTIFIER ::= { cevContainer 396 } -- ISR 1100 Series Power Over Ethennet bay cevContainerISR1100InternalPOEBay OBJECT IDENTIFIER ::= { cevContainer 397 } -- ISR 1100 Series Internal Power Over Ethennet bay @@ -2324,9 +2651,29 @@ cevContainerASR907PowerSupplySlot OBJECT IDENTIFIER ::= { cevContainer 416 cevContainerASR907RPSlot OBJECT IDENTIFIER ::= { cevContainer 417 } -- ASR 907 Route Processor Slot cevContainerASR907LineCardSlot OBJECT IDENTIFIER ::= { cevContainer 418 } -- ASR 907 IM Slot cevContainerNC55A2FANLFW OBJECT IDENTIFIER ::= { cevContainer 419 } -- PEYTO latch type fan tray NC55-A2-FAN-L-FW NCS: Network Convergence System +cevContainerC9500RPSlot OBJECT IDENTIFIER ::= { cevContainer 420 } -- Cisco Catalyst 9500X Series Routing Processor Module Container cevContainerQSFPDD OBJECT IDENTIFIER ::= { cevContainer 423 } -- QSFP_DD module container - - +cevContainerIR1800POEBay OBJECT IDENTIFIER ::= { cevContainer 426 } -- IR1800 Series Power Over Ethernet Bay +cevContainerDSC9220IK9FANBay OBJECT IDENTIFIER ::= { cevContainer 427 } -- Container for Fan Bay of DS-C9220I-K9 +cevContainerDSC9220IK9PSU OBJECT IDENTIFIER ::= { cevContainer 428 } -- Container for Power Supply Unit of DS-C9220I-K9 +cevContainerDSC9220IAC1200W OBJECT IDENTIFIER ::= { cevContainer 429 } -- Container for 1200W AC Power Supply for MDS-9220I 32G x 12 FC ports fabric switch +cevContainerFPR3100FanBay OBJECT IDENTIFIER ::= { cevContainer 434 } -- FirePOWER 3100 Fan Bay +cevContainerFPR3100PowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 435 } -- FirePOWER 3100 Power Supply Bay +cevContainerC95001RUFanTrayBay OBJECT IDENTIFIER ::= { cevContainer 436 } -- Cisco Catalyst 9500X Series 1RU Fan Tray Bay Module Container +cevContainerC95001RUPowerSupplyBay OBJECT IDENTIFIER ::= { cevContainer 437 } -- Cisco Catalyst 9500X Series 1RU Power Supply Bay Module Container +cevContainerDSC9148VK9PSU OBJECT IDENTIFIER ::= { cevContainer 438 } -- "Power Supply Unit" information for 48 port 8/16/32/64 Gbps FC/Sup-4 Switch +cevContainerDSC9148VK9FanBay OBJECT IDENTIFIER ::= { cevContainer 439 } -- Fan Bay information for 48 port 8/16/32/64 Gbps FC/Sup-4 Switch +cevDSC9124VK9PSU OBJECT IDENTIFIER ::= { cevContainer 440 } -- "Power Supply Unit" information for 24 port 8/16/32/64 Gbps FC/Sup-4 Switch +cevDSC9124VK9FanBay OBJECT IDENTIFIER ::= { cevContainer 441 } -- Fan Bay information for 24 port 8/16/32/64 Gbps FC/Sup-4 Switch +cevContainerN9KC9808FANBAY OBJECT IDENTIFIER ::= { cevContainer 442 } -- Container for Nexus9808 fan tray +cevContainerN9KC9808PSUBAY OBJECT IDENTIFIER ::= { cevContainer 443 } -- Container for Nexus9808 power supply +cevContainerDSC9396VK9FanBay OBJECT IDENTIFIER ::= { cevContainer 445 } -- Fan Bay information for 96 port 8/16/32/64 Gbps FC/Sup-4 Switch +cevContainerDSC9396VK92000WPSI OBJECT IDENTIFIER ::= { cevContainer 446 } -- 2000W HV-AC-DC PSU for 96 port 8/16/32/64 Gbps FC/Sup-4 Switch,Reversed Air Flow (port-side intake) +cevContainerDSC9396VK91400WPSE OBJECT IDENTIFIER ::= { cevContainer 447 } -- 1400W PSU for 96 port 8/16/32/64 Gbps FC/Sup-4 Switch, Forward Air Flow (port-side exhaust) +cevContainerDSC9396VK91400WPSI OBJECT IDENTIFIER ::= { cevContainer 448 } -- 1400W PSU for 96 port 8/16/32/64 Gbps FC/Sup-4 Switch, Reversed Air Flow (port-side intake) +cevContainerC9610RPSlot OBJECT IDENTIFIER ::= { cevContainer 449 } -- Cisco Catalyst 9600 Series Route Processor Module Container +cevContainerC9610FanTrayBay OBJECT IDENTIFIER ::= { cevContainer 450 } -- Cisco Catalyst 9600 Series Fan Tray Bay Module Container +cevContainerNCS1K14BLANK OBJECT IDENTIFIER ::= { cevContainer 451 } -- Network Convergence System 1014 Filler cevPowerSupply OBJECT IDENTIFIER ::= { cevMIBObjects 6 } cevPowerSupplyAC1360W OBJECT IDENTIFIER ::= { cevPowerSupply 1 } @@ -2354,7 +2701,7 @@ cevPowerSupplyDC2500W OBJECT IDENTIFIER ::= { cevPowerSupply 22 } -- Cisco 2500 cevPowerSupplyAC1050W OBJECT IDENTIFIER ::= { cevPowerSupply 23 } -- Cisco 1050 Watt AC power supply for assorted MGX and IGX series chassis cevPowerSupplyAC2500W OBJECT IDENTIFIER ::= { cevPowerSupply 24 } -- Cisco 2500 Watt DC power supply for Catalyst 6000 or 8500 series cevPowerSupply6160DC OBJECT IDENTIFIER ::= { cevPowerSupply 25 } -- Cisco 6160 DC power supply module -cevPowerSupplyAC4000W OBJECT IDENTIFIER ::= { cevPowerSupply 28 } -- Cisco 4000 Watt AC power supply for Catalyst 6000 +cevPowerSupplyAC4000W OBJECT IDENTIFIER ::= { cevPowerSupply 28 } -- Cisco 4000 Watt AC power supply for Catalyst 6000 cevPowerSupplyDC4000W OBJECT IDENTIFIER ::= { cevPowerSupply 29 } -- Cisco 4000 Watt DC power supply for Catalyst 6000 cevPowerSupply12010DC OBJECT IDENTIFIER ::= { cevPowerSupply 31 } -- Cisco 12010 DC Power supply Module cevPowerSupply12010AC OBJECT IDENTIFIER ::= { cevPowerSupply 32 } -- Cisco 12010 AC Power supply Module @@ -2365,8 +2712,8 @@ cevPowerSupply12410DC OBJECT IDENTIFIER ::= { cevPowerSupply 36 } -- Cisco 12410 cevPowerSupply12410AC OBJECT IDENTIFIER ::= { cevPowerSupply 37 } -- Cisco 12410 AC Power supply Module cevPowerSupplyAC1900W OBJECT IDENTIFIER ::= { cevPowerSupply 38 } -- Cisco 1900 watt AC Power Supply cevPowerSupplyDC1900W OBJECT IDENTIFIER ::= { cevPowerSupply 39 } -- Cisco 1900 watt DC Power Supply -cevPowerSupplyDC950W OBJECT IDENTIFIER ::= { cevPowerSupply 40 } -- Cisco 950 watt DC Power Supply -cevPowerSupplyAC950W OBJECT IDENTIFIER ::= { cevPowerSupply 41 } -- Cisco 950 watt AC Power Supply +cevPowerSupplyDC950W OBJECT IDENTIFIER ::= { cevPowerSupply 40 } -- Cisco 950 watt DC Power Supply +cevPowerSupplyAC950W OBJECT IDENTIFIER ::= { cevPowerSupply 41 } -- Cisco 950 watt AC Power Supply cevPowerSupply12404DC OBJECT IDENTIFIER ::= { cevPowerSupply 42 } -- Cisco 12404 DC Power supply Module cevPowerSupply12404AC OBJECT IDENTIFIER ::= { cevPowerSupply 43 } -- Cisco 12404 AC Power supply Module cevPowerSupplyBP7513AC1200W OBJECT IDENTIFIER ::= { cevPowerSupply 44 } -- 1200W AC power supply @@ -2380,7 +2727,7 @@ cevPowerSupplyC7300AC OBJECT IDENTIFIER ::= { cevPowerSupply 51 } -- Cisco 730 cevPowerSupplyC7300DC OBJECT IDENTIFIER ::= { cevPowerSupply 52 } -- Cisco 7300 DC Power Supply cevPowerSupplyAC600W OBJECT IDENTIFIER ::= { cevPowerSupply 53 } -- Cisco 600 Watt AC Power Supply cevPowerSupplyDC600W OBJECT IDENTIFIER ::= { cevPowerSupply 54 } -- Cisco 600 Watt DC Power Supply -cevPowerSupplyC10KDC OBJECT IDENTIFIER ::= { cevPowerSupply 55 } -- Cisco 10000 DC Power Supply +cevPowerSupplyC10KDC OBJECT IDENTIFIER ::= { cevPowerSupply 55 } -- Cisco 10000 DC Power Supply cevPowerSupplyC10KAC OBJECT IDENTIFIER ::= { cevPowerSupply 56 } -- Cisco 10000 AC Power Supply cevPowerSupply15530AC OBJECT IDENTIFIER ::= { cevPowerSupply 59 } -- Cisco ONS 15530 120-240 VAC Power Supply cevPowerSupply15530DC OBJECT IDENTIFIER ::= { cevPowerSupply 60 } -- Cisco ONS 15530 -48 VDC Power Supply @@ -2416,19 +2763,19 @@ cevPowerSupplyDsCac300W OBJECT IDENTIFIER ::= { cevPowerSupply 96 } -- DS-CAC- cevPowerSupplyRedDsCac300W OBJECT IDENTIFIER ::= { cevPowerSupply 97 } -- DS-CAC-300W/2 - 300W AC Power Supply (Redundant) cevPowerSupplyAc1400W OBJECT IDENTIFIER ::= { cevPowerSupply 98 } -- Cisco 1400 Watt AC Power Supply cevPowerSupplyC2970AC204W12V OBJECT IDENTIFIER ::= { cevPowerSupply 99 } -- Cisco Catalyst 2970 AC power Supply 204 Watt, 12V DC -cevPowerSupplyCrs1PowerSupply OBJECT IDENTIFIER ::= { cevPowerSupply 100 } -- Cisco CRS1 Power Supply. +cevPowerSupplyCrs1PowerSupply OBJECT IDENTIFIER ::= { cevPowerSupply 100 } -- Cisco CRS1 Power Supply. cevPowerSupplyCrs1PowerZone OBJECT IDENTIFIER ::= { cevPowerSupply 101 } -- Cisco CRS1 Power Zones. cevPowerSupplyAC6000W OBJECT IDENTIFIER ::= { cevPowerSupply 102 } -- Cisco 6000 watt AC power supply for Catalyst 6000/6500 cevPowerSupplyDc150W OBJECT IDENTIFIER ::= { cevPowerSupply 103 } -- Cisco 150W DC Power Supply -cevPowerSupplyAC2700W OBJECT IDENTIFIER ::= { cevPowerSupply 104 } -- Cisco 2700W AC Power Supply -cevPowerSupplyDC2700W OBJECT IDENTIFIER ::= { cevPowerSupply 105 } -- Cisco 2700W DC Power Supply +cevPowerSupplyAC2700W OBJECT IDENTIFIER ::= { cevPowerSupply 104 } -- Cisco 2700W AC Power Supply +cevPowerSupplyDC2700W OBJECT IDENTIFIER ::= { cevPowerSupply 105 } -- Cisco 2700W DC Power Supply cevPowerSupplyPwrC45300AC OBJECT IDENTIFIER ::= { cevPowerSupply 106 } -- Catalyst 4000 PWR-C45-300AC power supply module cevPowerSupplyPwrC45300DC OBJECT IDENTIFIER ::= { cevPowerSupply 107 } -- Catalyst 4000 PWR-C45-300DC power supply module cevPowerSupplyAC2900WE OBJECT IDENTIFIER ::= { cevPowerSupply 108 } -- Cisco 2900W Power supply eith floating power capability for 6503/-E cevPowerSupplyAC6000WE OBJECT IDENTIFIER ::= { cevPowerSupply 109 } -- Cisco 6000 watt AC power supply with 52V floating output for Catalyst 6000/6500 cevPowerSupplyAC8700WE OBJECT IDENTIFIER ::= { cevPowerSupply 110 } -- Cisco 8700 watt AC power supply with 52V floating output for Catalyst 6000/6500 -cevPowerSupplyPWR2700AC4 OBJECT IDENTIFIER ::= { cevPowerSupply 111 } -- 2700 watt supply AC(PWR-2700-AC/4) -cevPowerSupplyPWR2700DC4 OBJECT IDENTIFIER ::= { cevPowerSupply 112 } -- 2700 watt supply DC(PWR-2700-AC/4) +cevPowerSupplyPWR2700AC4 OBJECT IDENTIFIER ::= { cevPowerSupply 111 } -- 2700 watt supply AC(PWR-2700-AC/4) +cevPowerSupplyPWR2700DC4 OBJECT IDENTIFIER ::= { cevPowerSupply 112 } -- 2700 watt supply DC(PWR-2700-AC/4) cevPowerSupplyPWRC49AC300W OBJECT IDENTIFIER ::= { cevPowerSupply 113 } -- Catalyst 4000 PWR-C49-300AC power supply module cevPowerSupplyPWRC49DC300W OBJECT IDENTIFIER ::= { cevPowerSupply 114 } -- Catalyst 4000 PWR-C49-300DC power supply module cevPowerSupplyGSR6PemAC OBJECT IDENTIFIER ::= { cevPowerSupply 115 } -- Cisco 12000 6-slot Enhanced AC PEM @@ -2471,8 +2818,8 @@ cevPowerSupplyCE500AC60W12V OBJECT IDENTIFIER ::= { cevPowerSupply 153 } -- C cevPowerSupplyCE500AC375W48V OBJECT IDENTIFIER ::= { cevPowerSupply 154 } -- Cisco Catalyst Express 500 AC power Supply 375 Watt, 48V DC cevPowerSupplyCE500AC75W48V OBJECT IDENTIFIER ::= { cevPowerSupply 155 } -- Cisco Catalyst Express 500 AC power Supply 75 Watt, 48V DC cevPowerSupplyCE500AC168W12V OBJECT IDENTIFIER ::= { cevPowerSupply 156 } -- Cisco Catalyst Express 500 AC power Supply 168 Watt, 12V DC -cevPowerSupplyCat3750AC210W12V OBJECT IDENTIFIER ::= { cevPowerSupply 157 } -- Cisco Catalyst 3750 AC power Supply 210 Watt, 12V DC -cevPowerSupplyCat3750AC375W48V OBJECT IDENTIFIER ::= { cevPowerSupply 158 } -- Cisco Catalyst 3750 AC power Supply 375 Watt, -48V DC +cevPowerSupplyCat3750AC210W12V OBJECT IDENTIFIER ::= { cevPowerSupply 157 } -- Cisco Catalyst 3750 AC power Supply 210 Watt, 12V DC +cevPowerSupplyCat3750AC375W48V OBJECT IDENTIFIER ::= { cevPowerSupply 158 } -- Cisco Catalyst 3750 AC power Supply 375 Watt, -48V DC cevPowerSupplyAC50W OBJECT IDENTIFIER ::= { cevPowerSupply 159 } -- Cisco 50W AC power supply cevPowerSupplyDC50W OBJECT IDENTIFIER ::= { cevPowerSupply 160 } -- Cisco 50W DC power supply cevPowerSupplyCrs116PowerShelfACDelta OBJECT IDENTIFIER ::= { cevPowerSupply 161 } -- Cisco CRS-1 Series AC Delta Power Shelf for 16 Slots Line Card Chassis @@ -2480,8 +2827,8 @@ cevPowerSupplyCrs116PowerShelfACWye OBJECT IDENTIFIER ::= { cevPowerSupply 162 cevPowerSupplyCrs116PowerShelfDC OBJECT IDENTIFIER ::= { cevPowerSupply 163 } -- Cisco CRS-1 Series DC Power Shelf for 16 Slots Line Card Chassis cevPowerSupplyCrs116ACRectifier OBJECT IDENTIFIER ::= { cevPowerSupply 164 } -- Cisco CRS-1 Series AC Power Rectifier for 16 Slot Line Card Chassis and Fabric Card Chassis cevPowerSupplyCrs116DCPEM OBJECT IDENTIFIER ::= { cevPowerSupply 165 } -- Cisco CRS-1 Series DC Power Entry Module for 16 Slot Line Card Chassis and Fabric Card Chassis -cevPowerSupplyDsCac3000W OBJECT IDENTIFIER ::= { cevPowerSupply 167 } -- Cisco MDS 9513 Power Supply - DS-CAC-3000W -cevPowerSupplyPWR6000DC OBJECT IDENTIFIER ::= { cevPowerSupply 168 } -- 6000W DC Power Supply +cevPowerSupplyDsCac3000W OBJECT IDENTIFIER ::= { cevPowerSupply 167 } -- Cisco MDS 9513 Power Supply - DS-CAC-3000W +cevPowerSupplyPWR6000DC OBJECT IDENTIFIER ::= { cevPowerSupply 168 } -- 6000W DC Power Supply cevPowerSupplyCrs18ACRectifier OBJECT IDENTIFIER ::= { cevPowerSupply 169 } -- Cisco CRS-1 Series AC Power Rectifier for 8 slot LCC cevPowerSupplyCrs18DCPem OBJECT IDENTIFIER ::= { cevPowerSupply 170 } -- Cisco CRS-1 Series DC Power Entry Module for 8 slot LCC cevPowerSupplyCrs18ACDelta OBJECT IDENTIFIER ::= { cevPowerSupply 171 } -- Cisco CRS-1 Series 8 Slot LCC with Redundant AC Delta Power @@ -2497,16 +2844,16 @@ cevPowerSupplyCrs14PowerShelfAC OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyCrs14PowerShelfDC OBJECT IDENTIFIER ::= { cevPowerSupply 181 } -- Cisco CRS-1 Series DC Power Shelf for 4 Slots LCC cevPowerSupplyCrs14PowerSupplyDC OBJECT IDENTIFIER ::= { cevPowerSupply 182 } -- Cisco CRS-1 Series DC Power Supply for 4 Slots LCC cevPowerSupplyCrs14PowerSupplyAC OBJECT IDENTIFIER ::= { cevPowerSupply 183 } -- Cisco CRS-1 Series AC Power Supply for 4 Slots LCC -cevPowerSupplyC3KPWR265WAC OBJECT IDENTIFIER ::= { cevPowerSupply 184 } -- Catalyst 3K 265 Watt, 12V AC Power Supply -cevPowerSupplyC3KPWR265WDC OBJECT IDENTIFIER ::= { cevPowerSupply 185 } -- Catalyst 3K 265 Watt, 12V DC Power Supply +cevPowerSupplyC3KPWR265WAC OBJECT IDENTIFIER ::= { cevPowerSupply 184 } -- Catalyst 3K 265 Watt, 12V AC Power Supply +cevPowerSupplyC3KPWR265WDC OBJECT IDENTIFIER ::= { cevPowerSupply 185 } -- Catalyst 3K 265 Watt, 12V DC Power Supply cevPowerSupplyC3KPWR750WAC OBJECT IDENTIFIER ::= { cevPowerSupply 186 } -- Catalyst 3K 750 Watt, 12V/-52V AC Power Supply cevPowerSupplyCat2960AC36W12V OBJECT IDENTIFIER ::= { cevPowerSupply 188 } -- Cisco Catalyst 2960 AC power Supply 36 Watt, 12V DC -cevPowerSupplyCat3560AC173W48V OBJECT IDENTIFIER ::= { cevPowerSupply 189 } -- Cisco Catalyst 3560 AC power Supply 173 Watt, 48V DC +cevPowerSupplyCat3560AC173W48V OBJECT IDENTIFIER ::= { cevPowerSupply 189 } -- Cisco Catalyst 3560 AC power Supply 173 Watt, 48V DC cevPowerSupplyAC345 OBJECT IDENTIFIER ::= { cevPowerSupply 190 } -- AC Power Supply 345 Watts cevPowerSupplyC3KPWR1150WAC OBJECT IDENTIFIER ::= { cevPowerSupply 191 } -- Catalyst 3K 1150 Watt, 12V/-52V AC Power Supply cevPowerSupplyPwrRPS2300 OBJECT IDENTIFIER ::= { cevPowerSupply 192 } -- Cisco Redundant Power System (RPS2300) with 2300 Watt total power -cevPowerSupplyCrs14DcPim OBJECT IDENTIFIER ::= { cevPowerSupply 193 } -- Cisco CRS-1 Series DC Power Input Module for 4 Slots LCC -cevPowerSupplyDC1500W OBJECT IDENTIFIER ::= { cevPowerSupply 194 } -- Cisco 1500W DC power supply for CISCO 7603-S +cevPowerSupplyCrs14DcPim OBJECT IDENTIFIER ::= { cevPowerSupply 193 } -- Cisco CRS-1 Series DC Power Input Module for 4 Slots LCC +cevPowerSupplyDC1500W OBJECT IDENTIFIER ::= { cevPowerSupply 194 } -- Cisco 1500W DC power supply for CISCO 7603-S cevPowerSupplyC7201AC OBJECT IDENTIFIER ::= { cevPowerSupply 195 } -- Cisco 7201 AC power supply cevPowerSupplyC7201DC OBJECT IDENTIFIER ::= { cevPowerSupply 196 } -- Cisco 7201 DC power supply cevPowerSupplyCE520AC173W48V OBJECT IDENTIFIER ::= { cevPowerSupply 197 } -- Cisco Catalyst Express 520 AC power Supply 173 Watt, 48V DC @@ -2526,7 +2873,7 @@ cevPowerSupplyCE520LCAC135W12V OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyCE520PCAC558W12V OBJECT IDENTIFIER ::= { cevPowerSupply 211 } -- Cisco Catalyst Express 520 AC power Supply 558 Watt, 12V DC cevPowerSupplyCE520TTAC60W12V OBJECT IDENTIFIER ::= { cevPowerSupply 212 } -- Cisco Catalyst Express 520 AC power Supply 60 Watt, 12V DC cevPowerSupplyCE520GTCAC125W12V OBJECT IDENTIFIER ::= { cevPowerSupply 213 } -- Cisco Catalyst Express 520 AC power Supply 125 Watt, 12V DC -cevPowerSupplyN7KAC6000W OBJECT IDENTIFIER ::= { cevPowerSupply 214 } -- N7K-AC-6.0KW, AC 6000W powersupply for Nexus7000 N7K +cevPowerSupplyN7KAC6000W OBJECT IDENTIFIER ::= { cevPowerSupply 214 } -- N7K-AC-6.0KW, AC 6000W powersupply for Nexus7000 N7K cevPowerSupplyDc4500W OBJECT IDENTIFIER ::= { cevPowerSupply 215 } -- RF gateway power supply DC 4500 Watts. cevPowerSupplyIE3000AC OBJECT IDENTIFIER ::= { cevPowerSupply 216 } -- Cisco Industrial Ethernet Switch IE3000 Power Transformer cevPowerSupplyN5kPac1200W OBJECT IDENTIFIER ::= { cevPowerSupply 217 } -- PSU module, A/C, 208v 1200w for N5020 2RU @@ -2534,7 +2881,7 @@ cevPowerSupplyCat2918AC60W12V OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyC3KPWR300WAC OBJECT IDENTIFIER ::= { cevPowerSupply 220 } -- Catalyst 3560E-12D/3560E-12SD 300 Watt AC power supply cevPowerSupplyC3KPWR300WDC OBJECT IDENTIFIER ::= { cevPowerSupply 221 } -- Catalyst 3560E-12D/3560E-12SD 300 Watt DC power supply cevPowerSupplyDCPowerSupply OBJECT IDENTIFIER ::= { cevPowerSupply 222 } -- Generic DC power supply -cevPowerSupplyACPowerSupply OBJECT IDENTIFIER ::= { cevPowerSupply 223 } -- Generic AC power supply +cevPowerSupplyACPowerSupply OBJECT IDENTIFIER ::= { cevPowerSupply 223 } -- Generic AC power supply cevPowerSupplyN7KAC7500WINT OBJECT IDENTIFIER ::= { cevPowerSupply 228 } -- N7K-AC-7.5KW-INT AC powersupply for Nexus7000 N7k cevPowerSupplyN7KAC7500WUS OBJECT IDENTIFIER ::= { cevPowerSupply 229 } -- N7K-AC-7.5KW-US AC powersupply for Nexus7000 N7K cevPowerSupplyN5kPac550W OBJECT IDENTIFIER ::= { cevPowerSupply 230 } -- PSU module, A/C, 208v 1200w for N5K product family @@ -2551,7 +2898,7 @@ cevPowerSupplyC2911PWRAC OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyC2901PWRPOE OBJECT IDENTIFIER ::= { cevPowerSupply 241 } -- Cisco 2901 AC Power Supply with Power Over Ethernat cevPowerSupplyC1941C2901PWRAC OBJECT IDENTIFIER ::= { cevPowerSupply 242 } -- Cisco 2901 AC Power Supply cevPowerSupplyC1941PWRPOE OBJECT IDENTIFIER ::= { cevPowerSupply 243 } -- Cisco 1941 AC Power Supply with Power Over Ethernat -cevPowerSupplyC3900PWRDC OBJECT IDENTIFIER ::= { cevPowerSupply 244 } -- Cisco 3925/3945 DC Power Supply +cevPowerSupplyC3900PWRDC OBJECT IDENTIFIER ::= { cevPowerSupply 244 } -- Cisco 3925/3945 DC Power Supply cevPowerSupplyC2921C2951PWRDC OBJECT IDENTIFIER ::= { cevPowerSupply 245 } -- Cisco 2921/2951 DC Power Supply cevPowerSupplyC2911PWRDC OBJECT IDENTIFIER ::= { cevPowerSupply 246 } -- Cisco 2911 DC power Supply cevPowerSupplyC2921C2951RPSADPTR OBJECT IDENTIFIER ::= { cevPowerSupply 247 } -- Cisco 2921/2951 RPS Adaptor for use with External RPS @@ -2578,11 +2925,11 @@ cevPowerSupplyASR1013AC OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyASR1013DC OBJECT IDENTIFIER ::= { cevPowerSupply 270 } -- Cisco ASR1013 DC Power Supply cevPowerSupplyC1941PWRAC OBJECT IDENTIFIER ::= { cevPowerSupply 271 } -- C1941 AC Power Supply cevPowerSupplyASR1002DC24V OBJECT IDENTIFIER ::= { cevPowerSupply 272 } -- Cisco ASR1002 24V DC Power Supply -cevPowerSupplyN2kC2200Pac400W OBJECT IDENTIFIER ::= { cevPowerSupply 273 } -- N2K-C2200 Series 400W AC Power Supply -cevPowerSupplyC1921C1905PWRAC OBJECT IDENTIFIER ::= { cevPowerSupply 277 } -- Cisco 1921/K9 and 1905/K9 AC Power Supply -cevPowerSupplyC3kxPwr350wAc OBJECT IDENTIFIER ::= { cevPowerSupply 278 } -- Cisco Catalyst 3750X/3560X 350 Watt AC Power Supply -cevPowerSupplyC3kxPwr715wAc OBJECT IDENTIFIER ::= { cevPowerSupply 279 } -- Cisco Catalyst 3750X/3560X 715 Watt AC Power Supply -cevPowerSupplyC3kxPwr1100wAc OBJECT IDENTIFIER ::= { cevPowerSupply 280 } -- Cisco Catalyst 3750X/3560X 1100 Watt AC Power Supply +cevPowerSupplyN2kC2200Pac400W OBJECT IDENTIFIER ::= { cevPowerSupply 273 } -- N2K-C2200 Series 400W AC Power Supply +cevPowerSupplyC1921C1905PWRAC OBJECT IDENTIFIER ::= { cevPowerSupply 277 } -- Cisco 1921/K9 and 1905/K9 AC Power Supply +cevPowerSupplyC3kxPwr350wAc OBJECT IDENTIFIER ::= { cevPowerSupply 278 } -- Cisco Catalyst 3750X/3560X 350 Watt AC Power Supply +cevPowerSupplyC3kxPwr715wAc OBJECT IDENTIFIER ::= { cevPowerSupply 279 } -- Cisco Catalyst 3750X/3560X 715 Watt AC Power Supply +cevPowerSupplyC3kxPwr1100wAc OBJECT IDENTIFIER ::= { cevPowerSupply 280 } -- Cisco Catalyst 3750X/3560X 1100 Watt AC Power Supply cevPowerSupplyPWRME3KXAC OBJECT IDENTIFIER ::= { cevPowerSupply 282 } -- Metro Ethernet 3600X/3800X AC power supply cevPowerSupplyPWRME3KXDC OBJECT IDENTIFIER ::= { cevPowerSupply 283 } -- Metro Ethernet 3600X/3800X DC power supply cevPowerSupplyCGR20xxCGS25xxPWRACPOE OBJECT IDENTIFIER ::= { cevPowerSupply 284 } -- Cisco Connected Grid Router 20xx/Switch 25xx AC POE Power Supply @@ -2618,7 +2965,7 @@ cevPowerSupplyOe7541 OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyOe694 OBJECT IDENTIFIER ::= { cevPowerSupply 318 } -- Power Supply Module for Oe694 cevPowerSupplyOe594 OBJECT IDENTIFIER ::= { cevPowerSupply 319 } -- Power Supply Module for Oe594 cevPowerSupplyOe294 OBJECT IDENTIFIER ::= { cevPowerSupply 320 } -- Power Supply Module for Oe294 -cevPowerSupplyASA5555PSInput OBJECT IDENTIFIER ::= { cevPowerSupply 324 } -- Power Supply unit in Adapative Security Appliance 5555 +cevPowerSupplyASA5555PSInput OBJECT IDENTIFIER ::= { cevPowerSupply 324 } -- Power Supply unit in Adapative Security Appliance 5555 cevPowerSupplyN2kN2200Pac400W OBJECT IDENTIFIER ::= { cevPowerSupply 325 } -- N2K-C2200, N3K-C3016, N3K-C3048 and N3K-C3064 400W ACPower Supply, Front to Back Airflow cevPowerSupplyN55Pac750WB OBJECT IDENTIFIER ::= { cevPowerSupply 326 } -- PSU module, A/C, 750W with Back-To-Front airflow for Nexus 5548 product family cevPowerSupplyN55Pac1100WB OBJECT IDENTIFIER ::= { cevPowerSupply 327 } -- PSU module, A/C, 1100W with Front-to-Back airflow for Nexus 5596 product family @@ -2658,20 +3005,20 @@ cevPowerSupplyASA5545PSInputSensor OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyASA5555PSInputSensor OBJECT IDENTIFIER ::= { cevPowerSupply 367 } -- Power Supply unit sensor in Adaptive Security Appliance 5555 cevPowerSupplyASA5545K7PSInputSensor OBJECT IDENTIFIER ::= { cevPowerSupply 368 } -- Power Supply unit sensor in Adaptive Security Appliance 5545 with No Payload Encryption cevPowerSupplyASA5555K7PSInputSensor OBJECT IDENTIFIER ::= { cevPowerSupply 369 } -- Power Supply unit sensor in Adaptive Security Appliance 5555 with No Payload Encryption -cevPowerSupplyCat2960XAC173W OBJECT IDENTIFIER ::= { cevPowerSupply 370 } -- 173 W SierraCool Power Supply for WS-C2960X-24PSK-L -cevPowerSupplyC6880X3KWAC OBJECT IDENTIFIER ::= { cevPowerSupply 372 } -- Catalyst 6880 3KW AC power supply -cevPowerSupplyC6880X3KWDC OBJECT IDENTIFIER ::= { cevPowerSupply 373 } -- Catalyst 6880 3KW DC power supply +cevPowerSupplyCat2960XAC173W OBJECT IDENTIFIER ::= { cevPowerSupply 370 } -- 173 W SierraCool Power Supply for WS-C2960X-24PSK-L +cevPowerSupplyC6880X3KWAC OBJECT IDENTIFIER ::= { cevPowerSupply 372 } -- Catalyst 6880 3KW AC power supply +cevPowerSupplyC6880X3KWDC OBJECT IDENTIFIER ::= { cevPowerSupply 373 } -- Catalyst 6880 3KW DC power supply cevPowerSupplyDS9710 OBJECT IDENTIFIER ::= { cevPowerSupply 374 } -- Power Supply module for MDS 10-Slot Director Switch, DS9710 -cevPowerSupplyPWR2KWDCV2 OBJECT IDENTIFIER ::= { cevPowerSupply 375 } -- 2kW DC Power Module -cevPowerSupplyPWR3KWACV2 OBJECT IDENTIFIER ::= { cevPowerSupply 376 } -- 3kW AC Power Module -cevPowerSupplyNCSDCPWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 377 } -- NCS DC Power Tray -cevPowerSupplyNCSACPWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 378 } -- NCS AC Power Tray +cevPowerSupplyPWR2KWDCV2 OBJECT IDENTIFIER ::= { cevPowerSupply 375 } -- 2kW DC Power Module +cevPowerSupplyPWR3KWACV2 OBJECT IDENTIFIER ::= { cevPowerSupply 376 } -- 3kW AC Power Module +cevPowerSupplyNCSDCPWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 377 } -- NCS DC Power Tray +cevPowerSupplyNCSACPWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 378 } -- NCS AC Power Tray cevPowerSupplyDSC50I300AC OBJECT IDENTIFIER ::= { cevPowerSupply 380 } -- DS-C50I-300AC, Power Supply unit for MDS 9250i Intelligent Fabric Switch cevPowerSupplyDSCAC973KW OBJECT IDENTIFIER ::= { cevPowerSupply 381 } -- DS-CAC97-3KW, AC Power Supply module for MDS 10-Slot Director Switch, DS9710 cevPowerSupplyDSCDC973KW OBJECT IDENTIFIER ::= { cevPowerSupply 382 } -- DS-CDC97-3KW, DC Power Supply module for MDS 10-Slot Director Switch, DS9710 -cevPowerSupplyN77AC3KW OBJECT IDENTIFIER ::= { cevPowerSupply 383 } -- Nexus7700 AC 3000W power supply -cevPowerSupplyN77DC3KW OBJECT IDENTIFIER ::= { cevPowerSupply 384 } -- Nexus7700 DC 3000W power supply -cevPowerSupplyC6800XL3KWAC OBJECT IDENTIFIER ::= { cevPowerSupply 385 } -- Catalyst 6800 3000 watt AC power supply +cevPowerSupplyN77AC3KW OBJECT IDENTIFIER ::= { cevPowerSupply 383 } -- Nexus7700 AC 3000W power supply +cevPowerSupplyN77DC3KW OBJECT IDENTIFIER ::= { cevPowerSupply 384 } -- Nexus7700 DC 3000W power supply +cevPowerSupplyC6800XL3KWAC OBJECT IDENTIFIER ::= { cevPowerSupply 385 } -- Catalyst 6800 3000 watt AC power supply cevPowerSupplyCat36xxC2Pwr640wAc OBJECT IDENTIFIER ::= { cevPowerSupply 387 } -- Cisco Catalyst 3650 640 Watt AC Power Supply cevPowerSupplyC2960XR250W OBJECT IDENTIFIER ::= { cevPowerSupply 390 } -- Cisco Catalyst C2960XR 250 Watt AC Power Supply cevPowerSupplyC2960XR640W OBJECT IDENTIFIER ::= { cevPowerSupply 391 } -- Cisco Catalyst C2960XR 640 Watt AC Power Supply @@ -2690,9 +3037,9 @@ cevPowerSupplyN9KPac1200WB OBJECT IDENTIFIER ::= { cevPower cevPowerSupplyN9KPac1200W OBJECT IDENTIFIER ::= { cevPowerSupply 406 } -- TOR PSU, 1200W AC PSU, NORMAL (FRONT TO BACK) AIRFLOW cevPowerSupplyN9KPac650WB OBJECT IDENTIFIER ::= { cevPowerSupply 407 } -- TOR PSU, 650W AC PSU, REVERSE (BACK TO FRONT) AIRFLOW cevPowerSupplyN9KPac650W OBJECT IDENTIFIER ::= { cevPowerSupply 408 } -- TOR PSU, 650W AC PSU, NORMAL (FRONT TO BACK) AIRFLOW -cevPowerSupplyISR4430PWR250 OBJECT IDENTIFIER ::= { cevPowerSupply 409 } -- Cisco ISR 4430 Series 250W AC Power Supply +cevPowerSupplyISR4430PWR250 OBJECT IDENTIFIER ::= { cevPowerSupply 409 } -- Cisco ISR 4430 Series 250W AC Power Supply cevPowerSupplyASR1001XAC OBJECT IDENTIFIER ::= { cevPowerSupply 414 } -- Cisco ASR1001-X AC Power Supply -cevPowerSupplyASR1001XDC OBJECT IDENTIFIER ::= { cevPowerSupply 415 } -- Cisco ASR1001-X DC Power Supply +cevPowerSupplyASR1001XDC OBJECT IDENTIFIER ::= { cevPowerSupply 415 } -- Cisco ASR1001-X DC Power Supply cevPowerSupply30WAC OBJECT IDENTIFIER ::= { cevPowerSupply 416 } -- Power Supply 30 Watt AC cevPowerSupply60WAC OBJECT IDENTIFIER ::= { cevPowerSupply 417 } -- Power Supply 60 Watt AC cevPowerSupply60WACV2 OBJECT IDENTIFIER ::= { cevPowerSupply 418 } -- Power Supply 60 Watt AC @@ -2705,9 +3052,9 @@ cevPowerSupplyRT32PWRAC OBJECT IDENTIFIER ::= { cevPowerSupply 4 cevPowerSupplyRT3211RPSADPTR OBJECT IDENTIFIER ::= { cevPowerSupply 425 } -- Router 3211 RPS Adapter for use with External RPS cevPowerSupplyRT32RPSADPTR OBJECT IDENTIFIER ::= { cevPowerSupply 426 } -- Router 3200 RPS Adapter for use with External RPS cevPowerSupplyDSC48S300AC OBJECT IDENTIFIER ::= { cevPowerSupply 439 } -- DS-C48S-300AC, Power Supply unit for MDS 9148S 16G Fabric Switch -cevPowerSupplyISR4430PWR250DC OBJECT IDENTIFIER ::= { cevPowerSupply 440 } -- Cisco ISR 4430 Series 250W DC Power Supply -cevPowerSupplyISR4430PWR500ACIP OBJECT IDENTIFIER ::= { cevPowerSupply 441 } -- Cisco ISR 4430 Series 500W AC Power Supply -cevPowerSupplyISR4330PWR250AC OBJECT IDENTIFIER ::= { cevPowerSupply 442 } -- Cisco ISR 4330 Series 250W AC Power Supply +cevPowerSupplyISR4430PWR250DC OBJECT IDENTIFIER ::= { cevPowerSupply 440 } -- Cisco ISR 4430 Series 250W DC Power Supply +cevPowerSupplyISR4430PWR500ACIP OBJECT IDENTIFIER ::= { cevPowerSupply 441 } -- Cisco ISR 4430 Series 500W AC Power Supply +cevPowerSupplyISR4330PWR250AC OBJECT IDENTIFIER ::= { cevPowerSupply 442 } -- Cisco ISR 4330 Series 250W AC Power Supply cevPowerSupplyISR4330PWR500ACIP OBJECT IDENTIFIER ::= { cevPowerSupply 443 } -- Cisco ISR 4330 Series 500W AC Power Supply cevPowerSupplyISR4320PWR110AC OBJECT IDENTIFIER ::= { cevPowerSupply 444 } -- Cisco ISR 4320 Series 110W AC Power Supply cevPowerSupplyISR4320PWR230ACIP OBJECT IDENTIFIER ::= { cevPowerSupply 445 } -- Cisco ISR 4320 Series 230W AC Power Supply @@ -2729,8 +3076,9 @@ cevPowerSupplyCCEDC OBJECT IDENTIFIER ::= { cevPowerSupply 4 cevPowerSupplyASR92024SZIM OBJECT IDENTIFIER ::= { cevPowerSupply 463 } -- Cisco ASR920 Series - SKU Type - 1M , Modular PSU cevPowerSupplyASR92024SZM OBJECT IDENTIFIER ::= { cevPowerSupply 464 } -- Cisco ASR920 Series - SKU Type - F2 SFP, Modular PSU cevPowerSupplyASR92024TZM OBJECT IDENTIFIER ::= { cevPowerSupply 465 } -- Cisco ASR920 Series - SKU Type - F2 - CU, Modular PSU -cevPowerSupplyNCS4KPwrTrayDCDM OBJECT IDENTIFIER ::= { cevPowerSupply 466 } -- NCS4K PowerTray Dual Master(DM) +cevPowerSupplyNCS4KPwrTrayDCDM OBJECT IDENTIFIER ::= { cevPowerSupply 466 } -- NCS4K PowerTray Dual Master(DM) cevPowerSupplyNCS4KPwrTrayDM OBJECT IDENTIFIER ::= { cevPowerSupply 467 } -- NCS4K PowerTray Dual Master(DM) +cevPowerSupplyASR9KDC4400W OBJECT IDENTIFIER ::= { cevPowerSupply 469 } -- 4.4kW DC V3 Power Module cevPowerSupplyASR920PWRA OBJECT IDENTIFIER ::= { cevPowerSupply 471 } -- Cisco ASR920 Series AC Power Supply cevPowerSupplyASR920PWRD OBJECT IDENTIFIER ::= { cevPowerSupply 472 } -- Cisco ASR920 Series DC Power Supply cevPowerSupplyC2911PWRDCPOE OBJECT IDENTIFIER ::= { cevPowerSupply 473 } -- Cisco 2911 DC Power Supply with Power Over Ethernet Support @@ -2742,23 +3090,26 @@ cevPowerSupplySCE10000AC1200W OBJECT IDENTIFIER ::= { cevPowerSupply 4 cevPowerSupplySCE10000DC930W OBJECT IDENTIFIER ::= { cevPowerSupply 481 } -- SCE10000 PSU Direct Current, 930 Watts cevPowerSupplyDSCAC1200WE OBJECT IDENTIFIER ::= { cevPowerSupply 482 } -- 1200W AC Power Supply (port-side exhaust) for MDS-9396 16G x 96 FC ports fabric switch cevPowerSupplyDSCAC1200W OBJECT IDENTIFIER ::= { cevPowerSupply 483 } -- 1200W AC Power Supply (bi-directional/ VE PSU) for MDS-9396 16G x 96 FC ports fabric switch -cevPowerSupplyASR9KACV2PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 492 } -- ASR9K AC Power Tray Version 2 -cevPowerSupplyASR9KDCV2PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 493 } -- ASR9K DC Power Tray Version 2 -cevPowerSupplyASR9KACV3PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 494 } -- ASR9K AC Power Tray Version 3 -cevPowerSupplyASR9KDCV3PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 495 } -- ASR9K DC Power Tray Version 3 +cevPowerSupplyA920PWR400A OBJECT IDENTIFIER ::= { cevPowerSupply 484 } -- Cisco ASR920 Series Crete AC, Non uPoE PS. +cevPowerSupplyUCS6332AC OBJECT IDENTIFIER ::= { cevPowerSupply 487 } -- UCS 6332 Power Supply/100-240V AC +cevPowerSupplyUCS6332DC OBJECT IDENTIFIER ::= { cevPowerSupply 488 } -- UCS 6332 DC Power Supply +cevPowerSupplyASR9KACV2PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 492 } -- ASR9K AC Power Tray Version 2 +cevPowerSupplyASR9KDCV2PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 493 } -- ASR9K DC Power Tray Version 2 +cevPowerSupplyASR9KACV3PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 494 } -- ASR9K AC Power Tray Version 3 +cevPowerSupplyASR9KDCV3PWRTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 495 } -- ASR9K DC Power Tray Version 3 cevPowerSupplyC6880X3500WHVAC OBJECT IDENTIFIER ::= { cevPowerSupply 496 } -- Catalyst 6880 3500W HVAC/HVDC power supply -cevPowerSupplyC6840X750WAC OBJECT IDENTIFIER ::= { cevPowerSupply 497 } -- Catalyst 6848 750W AC power supply -cevPowerSupplyC6840X750WDC OBJECT IDENTIFIER ::= { cevPowerSupply 498 } -- Catalyst 6848 750W DC power supply +cevPowerSupplyC6840X750WAC OBJECT IDENTIFIER ::= { cevPowerSupply 497 } -- Catalyst 6848 750W AC power supply +cevPowerSupplyC6840X750WDC OBJECT IDENTIFIER ::= { cevPowerSupply 498 } -- Catalyst 6848 750W DC power supply cevPowerSupplyC6840X1100WAC OBJECT IDENTIFIER ::= { cevPowerSupply 499 } -- Catalyst 6848 1100W AC power supply -cevPowerSupplyC6840X1100WDC OBJECT IDENTIFIER ::= { cevPowerSupply 500 } -- Catalyst 6848 1100W DC power supply +cevPowerSupplyC6840X1100WDC OBJECT IDENTIFIER ::= { cevPowerSupply 500 } -- Catalyst 6848 1100W DC power supply cevPowerSupplyPWRC3750WACR OBJECT IDENTIFIER ::= { cevPowerSupply 501 } -- Cisco Catalyst C3KX PWR-C3-750WAC-R 750W AC Power Supply with Front to Back Cooling cevPowerSupplyPWRC3750WDCR OBJECT IDENTIFIER ::= { cevPowerSupply 502 } -- Cisco Catalyst C3KX PWR-C3-750WDC-R 750W DC Power Supply with Front to Back Cooling cevPowerSupplyPWRC3750WACF OBJECT IDENTIFIER ::= { cevPowerSupply 503 } -- Cisco Catalyst C3KX PWR-C3-750WAC-F 750W AC Power Supply with Back to Front Cooling cevPowerSupplyPWRC3750WDCF OBJECT IDENTIFIER ::= { cevPowerSupply 504 } -- Cisco Catalyst C3KX PWR-C3-750WDC-F 750W DC Power Supply with Back to Front Cooling cevPowerSupplyISR4400PWR450DC OBJECT IDENTIFIER ::= { cevPowerSupply 508 } -- Cisco ISR 4400 Series 450W DC Power Supply cevPowerSupplyNC55UnivPSU OBJECT IDENTIFIER ::= { cevPowerSupply 509 } -- Universal Power Supply Unit (PSU) or Power Module (PEM) of NCS-5508, NCS-5516 chassis -cevPowerSupplyNC55DCPSU OBJECT IDENTIFIER ::= { cevPowerSupply 510 } -- NCS 5500 DC 3KW Power Supply -cevPowerSupplyNC55ACPSU OBJECT IDENTIFIER ::= { cevPowerSupply 511 } -- NCS 5500 AC 3KW Power Supply +cevPowerSupplyNC55DCPSU OBJECT IDENTIFIER ::= { cevPowerSupply 510 } -- NCS 5500 DC 3KW Power Supply +cevPowerSupplyNC55ACPSU OBJECT IDENTIFIER ::= { cevPowerSupply 511 } -- NCS 5500 AC 3KW Power Supply cevPowerSupply1783IMXAC OBJECT IDENTIFIER ::= { cevPowerSupply 512 } -- Rockwell Automation branded AC POE Power Supply cevPowerSupply1783IMXDC OBJECT IDENTIFIER ::= { cevPowerSupply 513 } -- Rockwell Automation branded DC POE Power Supply cevPowerSupplyFPR9KPSAC OBJECT IDENTIFIER ::= { cevPowerSupply 514 } -- FirePOWER 9K AC Power Supply @@ -2798,7 +3149,10 @@ cevPowerSupplyNCS1100WACFW OBJECT IDENTIFIER ::= { cevPowerSupply 5 cevPowerSupplyNCS1100WACRV OBJECT IDENTIFIER ::= { cevPowerSupply 552 } -- NCS 5500 AC 1100W Power Supply Port-S Exhaust/Back-to-Front cevPowerSupplyNCS950WDCFW OBJECT IDENTIFIER ::= { cevPowerSupply 553 } -- NCS 5500 DC 950W Power Supply Port-S Intake/Front-to-back cevPowerSupplyNCS1100WDCRV OBJECT IDENTIFIER ::= { cevPowerSupply 554 } -- NCS 5500 AC 1100W Power Supply Port-S Exhaust/Back-to-Front -cevPowerSupplyNCS1002AC2KW OBJECT IDENTIFIER ::= { cevPowerSupply 561 } -- Cisco NCS1002 AC 2KW power supply +cevPowerSupplyUCS6332NAC OBJECT IDENTIFIER ::= { cevPowerSupply 559 } -- UCS 6332 NAC Power Supply +cevPowerSupplyUCS6332NDC OBJECT IDENTIFIER ::= { cevPowerSupply 560 } -- UCS 6332 NDC Power Supply +cevPowerSupplyNCS1002AC2KW OBJECT IDENTIFIER ::= { cevPowerSupply 561 } -- Cisco NCS1002 AC 2KW power supply +cevPowerSupplyISR4220PWR90AC OBJECT IDENTIFIER ::= { cevPowerSupply 571 } -- Cisco ISR 4220 Series 90W AC Power Supply cevPowerSupplyNCS4216PWRFAN OBJECT IDENTIFIER ::= { cevPowerSupply 572 } -- NCS 4216 Power supply Fan Tray cevPowerSupplyNXAPDC930WPI OBJECT IDENTIFIER ::= { cevPowerSupply 573 } -- Nexus Access Switches 930W DC PSU, Reversed Air Flow (port-side intake) cevPowerSupplyNXAPDC930WPE OBJECT IDENTIFIER ::= { cevPowerSupply 574 } -- Nexus Access Switches 930W DC PSU, Forward Air Flow (port-side exhaust) @@ -2806,6 +3160,8 @@ cevPowerSupplyFPR2KDC OBJECT IDENTIFIER ::= { cevPowerSupply 5 cevPowerSupplyFPR2KAC OBJECT IDENTIFIER ::= { cevPowerSupply 576 } -- FirePOWER 2K AC Power Supply cevPowerSupplyNCS1002DC2KW OBJECT IDENTIFIER ::= { cevPowerSupply 577 } -- Cisco NCS1002 DC 2KW power suppl Cisco NCS1002 DC 2KW power supply cevPowerSupplyDSCHV3500W OBJECT IDENTIFIER ::= { cevPowerSupply 578 } -- MDS 9700 HVAC/ HVDC High Voltage power supply +cevPowerSupplyNXAPAC500WPI OBJECT IDENTIFIER ::= { cevPowerSupply 580 } -- Nexus 500W AC power supply, ingress airflow +cevPowerSupplyNXAPAC500WPE OBJECT IDENTIFIER ::= { cevPowerSupply 581 } -- Nexus 500W AC power supply, egress airflow cevPowerSupplyDSCHV3dot5KW OBJECT IDENTIFIER ::= { cevPowerSupply 582 } -- DS-CHV-3.5KW, AC/ DC Power Supply module for MDS Director Switch, M9700 cevPowerSupplyPWR66ACV2 OBJECT IDENTIFIER ::= { cevPowerSupply 583 } -- Cisco ISR Series 66W AC V2 Power Supply cevPowerSupplyPWR150AC OBJECT IDENTIFIER ::= { cevPowerSupply 584 } -- Cisco ISR Series 150W AC Power Supply @@ -2816,9 +3172,9 @@ cevPowerSupplyNXAPAC350WPE OBJECT IDENTIFIER ::= { cevPowerSupply 5 cevPowerSupplyASR9K9901AC OBJECT IDENTIFIER ::= { cevPowerSupply 593 } -- 1.6KW AC Power Module for ASR-9901 Chassis cevPowerSupplyASR9K9901DC OBJECT IDENTIFIER ::= { cevPowerSupply 594 } -- 1.6KW DC Power Module for ASR-9901 Chassis cevPowerSupplyNCS1K2KWAC2 OBJECT IDENTIFIER ::= { cevPowerSupply 595 } -- Cisco NCS1001 PSU 2KW AC2 -cevPowerSupplyC9400PWR3200AC OBJECT IDENTIFIER ::= { cevPowerSupply 596 } -- Cisco Catalyst 9400 Series 3200W AC Power Supply -cevPowerSupplyC9400PWR3000AC OBJECT IDENTIFIER ::= { cevPowerSupply 597 } -- Cisco Catalyst 9400 Series 3000W AC Power Supply -cevPowerSupplyC9400PWR3200DC OBJECT IDENTIFIER ::= { cevPowerSupply 598 } -- Cisco Catalyst 9400 Series 3200W DC Power Supply +cevPowerSupplyC9400PWR3200AC OBJECT IDENTIFIER ::= { cevPowerSupply 596 } -- Cisco Catalyst 9400 Series 3200W AC Power Supply +cevPowerSupplyC9400PWR3000AC OBJECT IDENTIFIER ::= { cevPowerSupply 597 } -- Cisco Catalyst 9400 Series 3000W AC Power Supply +cevPowerSupplyC9400PWR3200DC OBJECT IDENTIFIER ::= { cevPowerSupply 598 } -- Cisco Catalyst 9400 Series 3200W DC Power Supply cevPowerSupplyC9400PS OBJECT IDENTIFIER ::= { cevPowerSupply 599 } -- Cisco Catalyst 9400 Series Power Supply cevPowerSupplyPWR1100ACIP2 OBJECT IDENTIFIER ::= { cevPowerSupply 601 } -- Cisco ISR series 1100W AC 2 pin Power Supply POE Module cevPowerSupplyDSCAC650WE OBJECT IDENTIFIER ::= { cevPowerSupply 602 } -- DS-CAC-650W-E, Port side exhaust, 650W AC Power Supply Unit for DS-C9132T-K9 @@ -2838,6 +3194,8 @@ cevPowerSupplyNXAPAC2KWPE OBJECT IDENTIFIER ::= { cevPowerSupply 6 cevPowerSupplyNXAPAC2KWPI OBJECT IDENTIFIER ::= { cevPowerSupply 617 } -- Nexus 3000 Series 2KW AC power supply, port intake air flow cevPowerSupplyNXAPDC2KWPI OBJECT IDENTIFIER ::= { cevPowerSupply 618 } -- Nexus 3000 Series 2KW DC power supply, port intake air flow cevPowerSupplyNXAPDC2KWPE OBJECT IDENTIFIER ::= { cevPowerSupply 619 } -- Nexus 3000 Series 2KW DC power supply, port exhaust air flow +cevPowerSupplyDell06FKHH OBJECT IDENTIFIER ::= { cevPowerSupply 620 } -- Third party Dell power supply DELL 06FKHH +cevPowerSupplyDSP800AB25 OBJECT IDENTIFIER ::= { cevPowerSupply 621 } -- Third party Dell power supply DPS-800AB-25 cevPowerSupplyNCS520PWRA OBJECT IDENTIFIER ::= { cevPowerSupply 622 } -- Cisco NCS520 Series AC Power Supply cevPowerSupplyNCS520PWRD OBJECT IDENTIFIER ::= { cevPowerSupply 623 } -- Cisco NCS520 Series DC Power Supply cevPowerSupplyN540PWR400A OBJECT IDENTIFIER ::= { cevPowerSupply 624 } -- NCS 540 400W AC power supply @@ -2852,8 +3210,10 @@ cevPowerSupplyC9400PWR2100AC OBJECT IDENTIFIER ::= { cevPowerSupply 6 cevPowerSupplyC9600PS OBJECT IDENTIFIER ::= { cevPowerSupply 634 } -- Cisco Catalyst 9600 Series Power Supply cevPowerSupplyC9600PWR2KWDC OBJECT IDENTIFIER ::= { cevPowerSupply 635 } -- Cisco Catalyst 9600 Series 2000W DC Power Supply cevPowerSupplyC9600PWR2KWAC OBJECT IDENTIFIER ::= { cevPowerSupply 636 } -- Cisco Catalyst 9600 Series 2000W AC Power Supply +cevPowerSupplyC9800AC750W OBJECT IDENTIFIER ::= { cevPowerSupply 637 } -- Cisco 750 Watt AC power supply for C9800-40-K9 chassis +cevPowerSupplyYM2651Y OBJECT IDENTIFIER ::= { cevPowerSupply 638 } -- Third party Walmart power supply YM-2651Y cevPowerSupplyN9KPUV3000WB2 OBJECT IDENTIFIER ::= { cevPowerSupply 639 } -- N9K-PUV-3000W-B2 3183W HVAC/HVDC dual input power supply for spine -cevPowerSupplyFPR1KAC OBJECT IDENTIFIER ::= { cevPowerSupply 640 } -- Cisco Firepower 1K AC Power Supply +cevPowerSupplyFPR1KAC OBJECT IDENTIFIER ::= { cevPowerSupply 640 } -- Cisco Firepower 1K AC Power Supply cevPowerSupplyC9300PWR350ACP OBJECT IDENTIFIER ::= { cevPowerSupply 641 } -- Cisco Catalyst 9300 350W AC Power Supply (Packaged for inclusion with switch at the time of ordering) cevPowerSupplyC9300PWR350ACPB OBJECT IDENTIFIER ::= { cevPowerSupply 642 } -- Cisco Catalyst 9300 350W AC Power Supply (Packaged for individual shipment) cevPowerSupplyC9300PWR350ACP2 OBJECT IDENTIFIER ::= { cevPowerSupply 643 } -- Cisco Catalyst 9300 350W AC Power Supply (2 power supplies populated by default when ordering) @@ -2866,47 +3226,162 @@ cevPowerSupplyC9300PWR1100ACP2 OBJECT IDENTIFIER ::= { cevPowerSupply 6 cevPowerSupplyC9300PWR715DC OBJECT IDENTIFIER ::= { cevPowerSupply 650 } -- Cisco Catalyst 9300 715W DC Power Supply (Packaged for inclusion with switch at the time of ordering) cevPowerSupplyC9300PWR715DCB OBJECT IDENTIFIER ::= { cevPowerSupply 651 } -- Cisco Catalyst 9300 715W DC Power Supply (Packaged for individual shipment) cevPowerSupplyC9300PWR715DC2 OBJECT IDENTIFIER ::= { cevPowerSupply 652 } -- Cisco Catalyst 9300 715W DC Power Supply (2 power supplies populated by default when ordering) +cevPowerSupplyDPS800AB25D OBJECT IDENTIFIER ::= { cevPowerSupply 653 } -- Third party power supply Celestica DPS-800AB-25 D +cevPowerSupply7000139170000 OBJECT IDENTIFIER ::= { cevPowerSupply 654 } -- Third party power supply 700-013917-0000 cevPowerSupplyISR1100PS OBJECT IDENTIFIER ::= { cevPowerSupply 657 } -- Cisco ISR 1100 Series Generic Power Supply Module cevPowerSupplyISR4400PWR650WAC OBJECT IDENTIFIER ::= { cevPowerSupply 659 } -- Cisco ISR 4400 650W AC Power Supply cevPowerSupplyPwrIR1101DC OBJECT IDENTIFIER ::= { cevPowerSupply 660 } -- Cisco IR1101 DC Power Supply cevPowerSupplyNC55900WDCFWHD OBJECT IDENTIFIER ::= { cevPowerSupply 661 } -- 900W DC power supply port-side exhaust airflow -cevPowerSupplyC9200LPWR125ACP OBJECT IDENTIFIER ::= { cevPowerSupply 662 } -- Cisco Catalyst 9200L 125W(12V) AC Power Supply -cevPowerSupplyC9200LPWR600ACP OBJECT IDENTIFIER ::= { cevPowerSupply 663 } -- Cisco Catalyst 9200L 600W(56V) AC Power Supply +cevPowerSupplyC9200LPWR125ACP OBJECT IDENTIFIER ::= { cevPowerSupply 662 } -- Cisco Catalyst 9200L 125W(12V) AC Power Supply +cevPowerSupplyC9200LPWR600ACP OBJECT IDENTIFIER ::= { cevPowerSupply 663 } -- Cisco Catalyst 9200L 600W(56V) AC Power Supply cevPowerSupplyC9200LPWR1000ACP OBJECT IDENTIFIER ::= { cevPowerSupply 664 } -- Cisco Catalyst 9200L 1000W(56V) AC Power Supply cevPowerSupplyC9500PWR950WAC OBJECT IDENTIFIER ::= { cevPowerSupply 665 } -- Cisco Catalyst 9500 950W AC Power Supply (2 power supplies populated by default when ordering) cevPowerSupplyC9500PWR950WDC OBJECT IDENTIFIER ::= { cevPowerSupply 666 } -- Cisco Catalyst 9500 950W DC Power Supply (2 power supplies populated by default when ordering) -cevPowerSupplyADHL2DC1500W OBJECT IDENTIFIER ::= { cevPowerSupply 667 } -- Third party 1500 DC power supply for N9K-C93240YC-FX2Z +cevPowerSupplyADHL2DC1500W OBJECT IDENTIFIER ::= { cevPowerSupply 667 } -- Third party 1500 DC power supply for N9K-C93240YC-FX2Z cevPowerSupplyIE3k480WDc OBJECT IDENTIFIER ::= { cevPowerSupply 668 } -- Cisco Industrial Ethernet Switch IE3k 480 Watt DC Power Supply cevPowerSupplyESS3300720WDc OBJECT IDENTIFIER ::= { cevPowerSupply 669 } -- Cisco ESS-3300 Embedded Service Switch 720 Watt DC Power Supply cevPowerSupplyNC55900WACFWHD OBJECT IDENTIFIER ::= { cevPowerSupply 670 } -- 900W AC power supply port-side exhaust airflow cevPowerSupplyNCS1004AC2KW OBJECT IDENTIFIER ::= { cevPowerSupply 671 } -- Cisco NCS1004 AC 2KW power supply cevPowerSupplyNCS1004DC2KW OBJECT IDENTIFIER ::= { cevPowerSupply 672 } -- Cisco NCS1004 DC 2KW power supply cevPowerSupplyN9KPuv23000WB OBJECT IDENTIFIER ::= { cevPowerSupply 673} -- Nexus 9500 platform 3150W universal high-voltage 200 to 277V AC or 240 to 380V DC power supply with port-side intake +cevPowerSupplyDPS550AB21B OBJECT IDENTIFIER ::= { cevPowerSupply 674 } -- Third party Celestica power supply DPS-550AB-21 B +cevPowerSupply8000DHVDC OBJECT IDENTIFIER ::= { cevPowerSupply 675 } -- 8000-D AC/HVAC/HVDC Power-Tray cevPowerSupplyNCS5KPAC1200WFR OBJECT IDENTIFIER ::= { cevPowerSupply 678 } -- Cisco NCS 5000 Series Router Power AC 1200W Front flow cevPowerSupplyNCS5KPAC1200WBK OBJECT IDENTIFIER ::= { cevPowerSupply 679 } -- Cisco NCS 5000 Series Router Power AC 1200W Back flow cevPowerSupplyNCS5KPUV1200W OBJECT IDENTIFIER ::= { cevPowerSupply 680 } -- Cisco NCS 5000 Series Router Power UV 1200W +cevPowerSupplyISR4400PWR650WDC OBJECT IDENTIFIER ::= { cevPowerSupply 681 } -- Cisco ISR 4400 650W DC Power Supply +cevPowerSupplyC9800AC1100W OBJECT IDENTIFIER ::= { cevPowerSupply 682 } -- Cisco 1100 Watt AC power supply for C9800-80-K9 Chassis +cevPowerSupplyC9800DC950W OBJECT IDENTIFIER ::= { cevPowerSupply 683 } -- Cisco 950 Watt DC power supply for C9800-80-K9 Chassis cevPowerSupplyNXAPAC750WPI OBJECT IDENTIFIER ::= { cevPowerSupply 685 } -- Nexus 750W AC power supply, ingress airflow cevPowerSupplyNXAPAC750WPE OBJECT IDENTIFIER ::= { cevPowerSupply 686 } -- Nexus 750W AC power supply, egress airflow cevPowerSupplyNXAPAC500WPOE OBJECT IDENTIFIER ::= { cevPowerSupply 689 } -- NXA-PAC-500W-POE for power supply unit +cevPowerSupplyC9800LDC12V OBJECT IDENTIFIER ::= { cevPowerSupply 690 } -- Cisco C9800-L 12V DC generic power supply +cevPowerSupplyNCS540L28Z4AC OBJECT IDENTIFIER ::= { cevPowerSupply 695 } -- NCS540L series - NCS540L-28Z4-AC Power Supply Module +cevPowerSupplyNCS540L28Z4DC OBJECT IDENTIFIER ::= { cevPowerSupply 696 } -- NCS540L series - NCS540L-28Z4-DC Power Supply Module +cevPowerSupplyNCS540L16Z4G8Q2CAC OBJECT IDENTIFIER ::= { cevPowerSupply 697 } -- NCS540L series - NCS540L-16Z4G8Q2C-AC Power Supply Module +cevPowerSupplyNCS540L16Z4G8Q2CDC OBJECT IDENTIFIER ::= { cevPowerSupply 698 } -- NCS540L series - NCS540L-16Z4G8Q2C-DC Power Supply Module +cevPowerSupplyNCS540L12Z20GAC OBJECT IDENTIFIER ::= { cevPowerSupply 699 } -- NCS540L series - NCS540L-12Z20G-AC Power Supply Module +cevPowerSupplyNCS540L12Z20GDC OBJECT IDENTIFIER ::= { cevPowerSupply 700 } -- NCS540L series - NCS540L-12Z20G-DC Power Supply Module +cevPowerSupplyNCS540L12Z16GAC OBJECT IDENTIFIER ::= { cevPowerSupply 701 } -- NCS540L series - NCS540L-12Z16G-AC Power Supply Module +cevPowerSupplyNCS540L12Z16GDC OBJECT IDENTIFIER ::= { cevPowerSupply 702 } -- NCS540L series - NCS540L-12Z16G-DC Power Supply Module cevPowerSupplyNXAPHV2KWPI OBJECT IDENTIFIER ::= { cevPowerSupply 703} -- Nexus Series 2000W High voltage HVAC/HVDC Platinum power supply, Port Intake air flow cevPowerSupplyNXAPHV2KWPE OBJECT IDENTIFIER ::= { cevPowerSupply 704} -- Nexus Series 2000W High voltage HVAC/HVDC Platinum power supply, Port Exhaust air flow cevPowerSupplyN9KPuv350WB OBJECT IDENTIFIER ::= { cevPowerSupply 705} -- N9K-PUV-350W Cisco N9K Power Supply +cevPowerSupply8201PSU1DOT4KWACPE OBJECT IDENTIFIER ::= { cevPowerSupply 706 } -- 8201 PSU - 1.4KW AC Port Exhaust +cevPowerSupply8201PSU1DOT4KWACPI OBJECT IDENTIFIER ::= { cevPowerSupply 707 } -- 8201 PSU - 1.4KW AC Port Inlet +cevPowerSupplyC9kPwr1900wAc OBJECT IDENTIFIER ::= { cevPowerSupply 708 } -- Cisco Catalyst 9300 1900 Watt AC Power Supply cevPowerSupplyNC552KWACFW OBJECT IDENTIFIER ::= { cevPowerSupply 709 } -- Nexus 9000 series 2000W AC PI Red power supply cevPowerSupplyNC552KWACRV OBJECT IDENTIFIER ::= { cevPowerSupply 710 } -- Nexus 9000 series 2000W AC PE Blue power supply -cevPowerSupplyCat3kBuiltInPwr640wAc OBJECT IDENTIFIER ::= { cevPowerSupply 717 } -- Cisco Catalyst 3650 640 Watt AC Builtin Power Supply +cevPowerSupplyPSU2KWDCPE OBJECT IDENTIFIER ::= { cevPowerSupply 711 } -- 8201 PSU - 2KW DC Port Exhaust +cevPowerSupplyPSU2KWDCPI OBJECT IDENTIFIER ::= { cevPowerSupply 712 } -- 8201 PSU - 2KW DC Port Inlet +cevPowerSupplyPSU2KWHVPI OBJECT IDENTIFIER ::= { cevPowerSupply 713 } -- 8201 PSU - 2KW HV Port Inlet +cevPowerSupplyPSU2KWHVPE OBJECT IDENTIFIER ::= { cevPowerSupply 714 } -- 8201 PSU - 2KW HV Port Exhaust +cevPowerSupplyPSU2KWACPE OBJECT IDENTIFIER ::= { cevPowerSupply 715 } -- 8201 PSU - 2KW AC Port Exhaust +cevPowerSupplyPSU2KWACPI OBJECT IDENTIFIER ::= { cevPowerSupply 716 } -- 8201 PSU - 2KW AC Port Inlet +cevPowerSupplyCat3kBuiltInPwr640wAc OBJECT IDENTIFIER ::= { cevPowerSupply 717 } -- Cisco Catalyst 3650 640 Watt AC Builtin Power Supply cevPowerSupplyCat3kBuiltInPwr975wAc OBJECT IDENTIFIER ::= { cevPowerSupply 718 } -- Cisco Catalyst 3650 975 Watt AC Builtin Power Supply +cevPowerSupplyUCSPSU64108AC OBJECT IDENTIFIER ::= { cevPowerSupply 719 } -- Cisco UCS 64108 AC Power Supply +cevPowerSupplyPWR1100TGAC OBJECT IDENTIFIER ::= { cevPowerSupply 720 } -- Cisco C1100TG terminal server 120W AC Power Supply +cevPowerSupplyPWR1100TGDC OBJECT IDENTIFIER ::= { cevPowerSupply 721 } -- Cisco C1100TG terminal server 120W DC Power Supply +cevPowerSupplyPSU6DOT3KWHV OBJECT IDENTIFIER ::= { cevPowerSupply 722 } -- 6.3KW AC/HVAC/HVDC Power Supply +cevPowerSupplyPWRCC1400WAC OBJECT IDENTIFIER ::= { cevPowerSupply 723 } -- C8300 1RU, 400W AC +cevPowerSupplyPWRCC1400WDC OBJECT IDENTIFIER ::= { cevPowerSupply 724 } -- C8300 1RU, 400W DC +cevPowerSupplyPWRCC1501WAC OBJECT IDENTIFIER ::= { cevPowerSupply 725 } -- Cisco C8300 1RU, 500W AC with POE +cevPowerSupplyPWRCC1250WAC OBJECT IDENTIFIER ::= { cevPowerSupply 726 } -- C8300 1RU, 250W AC +cevPowerSupplyPWRCC1400WHV OBJECT IDENTIFIER ::= { cevPowerSupply 727 } -- C8300 1RU, 400W HVDC +cevPowerSupplyPWRCC1650WAC OBJECT IDENTIFIER ::= { cevPowerSupply 728 } -- Cisco C8300 2RU, 650W AC +cevPowerSupplyPWRCC1650WDC OBJECT IDENTIFIER ::= { cevPowerSupply 729 } -- Cisco C8300 2RU, 650W DC +cevPowerSupplyPWRCC1650WDCR OBJECT IDENTIFIER ::= { cevPowerSupply 730 } -- Cisco C8300 2RU, 650W NEBS DC +cevPowerSupplyPWRCC11000WAC OBJECT IDENTIFIER ::= { cevPowerSupply 731 } -- Cisco C8300 2RU, 1000W AC +cevPowerSupplyPWRCH1AC400W OBJECT IDENTIFIER ::= { cevPowerSupply 732 } -- Cisco 400 watt AC Power Supply +cevPowerSupplyPWRCH1DC400W OBJECT IDENTIFIER ::= { cevPowerSupply 733 } -- Cisco 400 watt DC Power Supply cevPowerSupplyNXAPAC1500WPI OBJECT IDENTIFIER ::= { cevPowerSupply 734 } -- This 1200W AC power supply port-side intake (with red tab) is in compliant with Network Equipment Building Systems Requirements cevPowerSupplyNXAPAC1500WPE OBJECT IDENTIFIER ::= { cevPowerSupply 735 } -- This 1200W AC power supply port-side exhaust (with blue tab) is in compliant with Network Equipment Building Systems Requirements +cevPowerSupplyNC55PWR4-4KWDC OBJECT IDENTIFIER ::= { cevPowerSupply 736 } -- Gen 2 4.4KW DC XR power supply entry +cevPowerSupplyNXAPUV350W OBJECT IDENTIFIER ::= { cevPowerSupply 737 } -- N9K NXA-PUV-350W power supply unit +cevPowerSupplyNXAPHV350WPI OBJECT IDENTIFIER ::= { cevPowerSupply 738 } -- N9K NXA-PHV-350W-PI port-intake power supply unit. +cevPowerSupplyNXAPHV350WPE OBJECT IDENTIFIER ::= { cevPowerSupply 739 } -- N9K NXA-PHV-350W-PE port-exhaust power supply unit. +cevPowerSupplyCat1000AC36W OBJECT IDENTIFIER ::= { cevPowerSupply 740 } -- Cisco Catalyst c1000 AC power Supply 36 Watt +cevPowerSupplyCat1000AC173W OBJECT IDENTIFIER ::= { cevPowerSupply 741 } -- Cisco Catalyst c1000 AC power Supply 173 Watt +cevPowerSupplyCat1000DC18W OBJECT IDENTIFIER ::= { cevPowerSupply 742 } -- Cisco Catalyst c1000 DC power Supply 18 Watt +cevPowerSupplyCat1000DC90W OBJECT IDENTIFIER ::= { cevPowerSupply 743 } -- Cisco Catalyst c1000 DC power Supply 90 Watt +cevPowerSupplyCat1000DC115W OBJECT IDENTIFIER ::= { cevPowerSupply 744 } -- Cisco Catalyst c1000 DC power Supply 115 Watt +cevPowerSupplyCat1000DC150W OBJECT IDENTIFIER ::= { cevPowerSupply 745 } -- Cisco Catalyst c1000 DC power Supply 150 Watt +cevPowerSupplyCat1000DC180W OBJECT IDENTIFIER ::= { cevPowerSupply 746 } -- Cisco Catalyst c1000 DC power Supply 180 Watt +cevPowerSupplyCat1000AC300W OBJECT IDENTIFIER ::= { cevPowerSupply 747 } -- Cisco Catalyst c1000 AC power Supply 300 Watt +cevPowerSupplyCat1000AC60W OBJECT IDENTIFIER ::= { cevPowerSupply 748 } -- Cisco Catalyst c1000 AC power Supply 60 Watt +cevPowerSupplyCat1000AC525W OBJECT IDENTIFIER ::= { cevPowerSupply 749 } -- Cisco Catalyst c1000 AC power Supply 525 Watt +cevPowerSupplyCat1000AC915W OBJECT IDENTIFIER ::= { cevPowerSupply 750 } -- Cisco Catalyst c1000 AC power Supply 915 Watt +cevPowerSupplyPWRINT90WAC OBJECT IDENTIFIER ::= { cevPowerSupply 751 } -- Cisco C8300 1RU 90W AC Internal PSU +cevPowerSupplyPWREXTPOE150WAC OBJECT IDENTIFIER ::= { cevPowerSupply 752 } -- Cisco C8200 1RU 150W AC Power Over Ethernet Module +cevPowerSupplyPSU48KWDC100 OBJECT IDENTIFIER ::= { cevPowerSupply 753 } -- BELPOWR DC100 4.8KW power supply +cevPowerSupply880048VDCTRAY OBJECT IDENTIFIER ::= { cevPowerSupply 754 } -- BELPOWR DC100 POWER TRAY +cevPowerSupplyNXAPAC1900WPI OBJECT IDENTIFIER ::= { cevPowerSupply 755 } -- N9K NXA-PAC-1900W-PI port-intake power supply unit +cevPowerSupplyNXAPAC1900WPE OBJECT IDENTIFIER ::= { cevPowerSupply 756 } -- N9K NXA-PAC-1900W-PE port-exhaust power supply unit +cevPowerSupplyNCS540LFHCSR OBJECT IDENTIFIER ::= { cevPowerSupply 757 } -- NCS540L series - N540-FH-CSR-SYS Power Supply Module +cevPowerSupplyNCS540LFHAGG OBJECT IDENTIFIER ::= { cevPowerSupply 758 } -- NCS540L series - N540-FH-AGG-SYS Power Supply Module +cevPowerSupplyNCS540LFHIP65 OBJECT IDENTIFIER ::= { cevPowerSupply 759 } -- NCS540L series - N540-FH-IP65-SYS Power Supply Module +cevPowerSupplyIR1800DC OBJECT IDENTIFIER ::= { cevPowerSupply 760 } -- Cisco IR1800 12V DC Power Supply +cevPowerSupplyIRMHPWR60WAC OBJECT IDENTIFIER ::= { cevPowerSupply 761 } -- 60W AC Power Supply module for IR8140 +cevPowerSupplyAC1600W OBJECT IDENTIFIER ::= { cevPowerSupply 762 } -- 1.6kW AC Power Module +cevPowerSupplyDC1600W OBJECT IDENTIFIER ::= { cevPowerSupply 763 } -- 1.6kW DC Power Module +cevPowerSupplyNXAPDC715WPE OBJECT IDENTIFIER ::= { cevPowerSupply 764 } -- DC PSU 715W +cevPowerSupplyNXAPDC715WPI OBJECT IDENTIFIER ::= { cevPowerSupply 765 } -- DC PSU 715W +cevPowerSupplyNC571600WACFW OBJECT IDENTIFIER ::= { cevPowerSupply 766 } -- 1600W PSU for Eyrie program from Belpower +cevPowerSupplyNC571600WDCFW OBJECT IDENTIFIER ::= { cevPowerSupply 767 } -- New Dc power supply for Eyrie +cevPowerSupplyPWRRGD150WACH OBJECT IDENTIFIER ::= { cevPowerSupply 768 } -- Sumatra 150W AC-DC High (H) Power Supply Module for Cisco IR8340-K9 +cevPowerSupplyPWRRGD150WDCL OBJECT IDENTIFIER ::= { cevPowerSupply 769 } -- Sumatra 150W DC Low (L) Power Supply Module for Cisco IR8340-K9 +cevPowerSupplyPSU60KWHV OBJECT IDENTIFIER ::= { cevPowerSupply 770 } -- 6.0KW AC/HVAC/HVDC Power Supply +cevPowerSupplyDSCAC500WI OBJECT IDENTIFIER ::= { cevPowerSupply 771 } -- DS-CAC-500W-I, Port side intake, 500W AC Power Supply Unit for DS-C9220U-K9 +cevPowerSupplyDSCAC500WE OBJECT IDENTIFIER ::= { cevPowerSupply 772 } -- DS-CAC-500W-E, Port side exhaust, 500W AC Power Supply Unit for DS-C9220I-K9 +cevPowerSupplyNXAPAC3KWPI OBJECT IDENTIFIER ::= { cevPowerSupply 773 } -- 3KW AC Power Supply for TOR +cevPowerSupplyNXAPAC3KWPE OBJECT IDENTIFIER ::= { cevPowerSupply 774 } -- 3KW AC Power Supply for TOR +cevPowerSupplyNXAPDC3KWPI OBJECT IDENTIFIER ::= { cevPowerSupply 775 } -- 3KW AC Power Supply for TOR +cevPowerSupplyNXAPDC3KWPE OBJECT IDENTIFIER ::= { cevPowerSupply 776 } -- 3KW AC Power Supply for TOR +cevPowerSupplyC9500PSU1500WDCF OBJECT IDENTIFIER ::= { cevPowerSupply 777 } -- Cisco Catalyst 9500X Series 1500W Forward Airflow DC/DC Power Supply +cevPowerSupplyC9500PSU1500WDCR OBJECT IDENTIFIER ::= { cevPowerSupply 778 } -- Cisco Catalyst 9500X Series 1500W Reverse Airflow DC/DC Power Supply +cevPowerSupplyC9500PSU1500WACF OBJECT IDENTIFIER ::= { cevPowerSupply 779 } -- Cisco Catalyst 9500X Series 1500W Forward Airflow AC/DC Power Supply +cevPowerSupplyC9500PSU1500WACR OBJECT IDENTIFIER ::= { cevPowerSupply 780 } -- Cisco Catalyst 9500X Series 1500W Reverse Airflow AC/DC Power Supply +cevPowerSupplyPWRCC1HV400W OBJECT IDENTIFIER ::= { cevPowerSupply 781 } -- C8500L-8S4X 400 watt HV Power Supply +cevPowerSupplyPSU650WACPI OBJECT IDENTIFIER ::= { cevPowerSupply 782 } -- 650W AC Port side intake supply +cevPowerSupplyPSU650WACPE OBJECT IDENTIFIER ::= { cevPowerSupply 783 } -- 650W AC Port side exhaust supply +cevPowerSupplyPSU930WDCPE OBJECT IDENTIFIER ::= { cevPowerSupply 784 } -- 930W DC Port side exhaust supply +cevPowerSupplyPSU930WDCPI OBJECT IDENTIFIER ::= { cevPowerSupply 785 } -- 930W DC Port side Intake supply +cevPowerSupplyPWRRGDACDC250W OBJECT IDENTIFIER ::= { cevPowerSupply 786 } -- Sumatra 250W AC-DC Power Supply Module for Cisco IR8340-K9 +cevPowerSupplyPWRRGDACDC OBJECT IDENTIFIER ::= { cevPowerSupply 797 } -- High AC/DC 150W power supply for IE Rackmount switches +cevPowerSupplyPWRRGDACDCH OBJECT IDENTIFIER ::= { cevPowerSupply 798 } -- High AC/DC 150W Hazloc power supply for IE Rackmount switches +cevPowerSupplyPWRRGDDCL OBJECT IDENTIFIER ::= { cevPowerSupply 799 } -- Low DC 150W power supply for IE Rackmount switches +cevPowerSupplyPWRRGDDCLH OBJECT IDENTIFIER ::= { cevPowerSupply 800 } -- Low DC 150W Hazloc power supply for IE Rackmount switches +cevPowerSupplyPWRRGDACDC250 OBJECT IDENTIFIER ::= { cevPowerSupply 801 } -- High 250W AC DC power supply for IE Rackmount switches +cevPowerSupplyNCS1010ACPSU OBJECT IDENTIFIER ::= { cevPowerSupply 802 } -- Cisco Network Convergence System 1010 AC PSU +cevPowerSupplyNCS1010DCPSU OBJECT IDENTIFIER ::= { cevPowerSupply 803 } -- Cisco Network Convergence System 1010 DC PSU +cevPowerSupplyN9KPAC3200WPI OBJECT IDENTIFIER ::= { cevPowerSupply 805 } -- N9K 3200W AC/DC Power Supply, Port Intake +cevPowerSupplyNCS1K4ACPSU2 OBJECT IDENTIFIER ::= { cevPowerSupply 813 } -- Network Convergence System 1004 AC Power Supply Unit 2.5KW +cevPowerSupplyNCS1K4DCPSU2 OBJECT IDENTIFIER ::= { cevPowerSupply 814 } -- Network Convergence System 1004 DC Power Supply Unit 2.5KW +cevPowerSupplyNXKHV6300W20A OBJECT IDENTIFIER ::= { cevPowerSupply 815 } -- 6.3KW20A Power Supply for Mando chassis +cevPowerSupplyNXKHV6300W30A OBJECT IDENTIFIER ::= { cevPowerSupply 816 } -- 6.3KW30A Power Supply for Mando chassis +cevPowerSupplyNXKDC4400W OBJECT IDENTIFIER ::= { cevPowerSupply 817 } -- 4.4KW DC Power Supply for Mando chassis +cevPowerSupplyN9KPDC3200WPI OBJECT IDENTIFIER ::= { cevPowerSupply 824 } -- N9K 3200W DC Power Supply, Port Intake +cevPowerSupplyC9400PWR3200ACT OBJECT IDENTIFIER ::= { cevPowerSupply 833 } -- Cisco Catalyst 9400 Series 3200W AC Titanium Power Supply +cevPowerSupplyDSCAC1400WI OBJECT IDENTIFIER ::= { cevPowerSupply 834 } -- DS-CAC-1400W-I, Port side intake, 1400W AC Power Supply Unit for DS-C9396V-K9 +cevPowerSupplyDSCAC1400WE OBJECT IDENTIFIER ::= { cevPowerSupply 835 } -- DS-CAC-1400W-E, Port side exhaust, 1400W AC Power Supply Unit for DS-C9396V-K9 +cevPowerSupplyDSCHV2000WI OBJECT IDENTIFIER ::= { cevPowerSupply 836 } -- DS-CHV-2000W-I, Port side Intake, 2000W CHV Power Supply Unit for DS-C9396V-K9 +cevPowerSupplyPWRC11900WHVT OBJECT IDENTIFIER ::= { cevPowerSupply 843 } -- 1900W hVAC/hVDC 80+ titanium Config 1 Power Supply +cevPowerSupplyPWRCH1AC250W OBJECT IDENTIFIER ::= { cevPowerSupply 844 } -- Cisco 250 watt AC Power Supply +cevPowerSupplyPWRC11900WHVT2 OBJECT IDENTIFIER ::= { cevPowerSupply 845 } -- 1900W hVAC/hVDC 80+ titanium Config 1 Secondary Power Supply +cevPowerSupplyPWRC11900WHVTB OBJECT IDENTIFIER ::= { cevPowerSupply 846 } -- 1900W hVAC/hVDC 80+ titanium Config 1 Spare Power Supply +cevPowerSupplyPWRC2850WACE OBJECT IDENTIFIER ::= { cevPowerSupply 848 } -- 850WAC Power Supply with Port Side Air Exhaust +cevPowerSupplyPWRC2500WACE OBJECT IDENTIFIER ::= { cevPowerSupply 849 } -- 500WAC Power Supply with Port Side Air Exhaust cevFan OBJECT IDENTIFIER ::= { cevMIBObjects 7 } cevFanC6260FanTray OBJECT IDENTIFIER ::= { cevFan 3 } -- Cisco 6260 Fan Tray -cevFanSinglePulse OBJECT IDENTIFIER ::= { cevFan 4 } -- Single Pulse Fan used in Cisco MGX series and other products. +cevFanSinglePulse OBJECT IDENTIFIER ::= { cevFan 4 } -- Single Pulse Fan used in Cisco MGX series and other products. cevFanDualPulse OBJECT IDENTIFIER ::= { cevFan 5 } -- Dual Pulse Fan used in Cisco MGX series and other products cevFan12012FanTray3 OBJECT IDENTIFIER ::= { cevFan 6 } -- Cisco 12012 Fan tray with 3 fans cevFan12008FanTray6 OBJECT IDENTIFIER ::= { cevFan 7 } -- Cisco 12008 Fan tray with 6 fans cevFan12008FanTray4 OBJECT IDENTIFIER ::= { cevFan 8 } -- Cisco 12008 Fan tray with 4 fans cevFanC6160FanTray OBJECT IDENTIFIER ::= { cevFan 9 } -- Cisco 6160 Blower Module -cevFanC6100FanTray OBJECT IDENTIFIER ::= { cevFan 11 } -- Cisco 6100 Blower Module +cevFanC6100FanTray OBJECT IDENTIFIER ::= { cevFan 11 } -- Cisco 6100 Blower Module cevFan12010FanTray3 OBJECT IDENTIFIER ::= { cevFan 13 } -- Cisco 12010 Fan tray with 3 fans cevFan12406FanTray3 OBJECT IDENTIFIER ::= { cevFan 14 } -- Cisco 12406 Fan tray with 3 fans cevFan12410FanTray3 OBJECT IDENTIFIER ::= { cevFan 15 } -- Cisco 12410 Fan tray with 3 fans @@ -2930,25 +3405,25 @@ cevFanCat3750CFM26 OBJECT IDENTIFIER ::= { cevFan 34 } -- Cisco Catalyst 3750 cevFanDs6SlotFanTray OBJECT IDENTIFIER ::= { cevFan 35 } -- MDS 9506 Fan Tray(ProductID DS-6SLOT-FAN) cevFanDs9SlotFanTray OBJECT IDENTIFIER ::= { cevFan 36 } -- MDS 9509 Fan Tray(ProductID DS-9SLOT-FAN) cevFanDs13SlotFanTray OBJECT IDENTIFIER ::= { cevFan 37 } -- MDS 9513 Fan Tray(ProductID DS-13SLOT-FAN) -cevFanTrayUnknown OBJECT IDENTIFIER ::= { cevFan 38 } -- Unknown Fan Tray +cevFanTrayUnknown OBJECT IDENTIFIER ::= { cevFan 38 } -- Unknown Fan Tray cevFanDs2SlotFanTray OBJECT IDENTIFIER ::= { cevFan 39 } -- MDS 9216 Fan Tray(ProductID DS-2SLOT-FAN) cevFanCat3710CFM26 OBJECT IDENTIFIER ::= { cevFan 40 } -- Cisco Catalyst 3710 Fan, 26 CFM cool air flow cevFanCat37xx12 OBJECT IDENTIFIER ::= { cevFan 41 } -- Cisco 37xx12 Fan -cevFanWS9SlotFanTray OBJECT IDENTIFIER ::= { cevFan 42 } -- Catalyst 65509 Fan Tray +cevFanWS9SlotFanTray OBJECT IDENTIFIER ::= { cevFan 42 } -- Catalyst 65509 Fan Tray cevFanMod9FanTray OBJECT IDENTIFIER ::= { cevFan 43 } -- Cisco 7609 and Catalyst 6509-NEB-A Fan Tray cevFanCat2970CFM26 OBJECT IDENTIFIER ::= { cevFan 44 } -- Cisco Catalyst 2970 Fan, 26 CFM cool air flow cevFanDs1RUFanTray OBJECT IDENTIFIER ::= { cevFan 45 } -- DS-1RU-FAN - MDS 1RU Fan Tray -cevFanFanMod3 OBJECT IDENTIFIER ::= { cevFan 46 } -- Fan Module for Catalyst 6503 / Cisco 7603 chassis +cevFanFanMod3 OBJECT IDENTIFIER ::= { cevFan 46 } -- Fan Module for Catalyst 6503 / Cisco 7603 chassis cevFanWSC6k6SlotFan OBJECT IDENTIFIER ::= { cevFan 47 } -- Catalyst 6000 Fan Tray for 6-Slot Systems -cevFanWSC6k6SlotFan2 OBJECT IDENTIFIER ::= { cevFan 48 } -- High Speed Fan Tray for Catalyst 6506 +cevFanWSC6k6SlotFan2 OBJECT IDENTIFIER ::= { cevFan 48 } -- High Speed Fan Tray for Catalyst 6506 cevFanWSC6k9SlotFan OBJECT IDENTIFIER ::= { cevFan 49 } -- Catalyst 6000 Fan Tray for 9-Slot Systems cevFanWSC6k9SlotFan2 OBJECT IDENTIFIER ::= { cevFan 50 } -- Catalyst 6509 High Speed Fan Tray cevFanWSC6509NebFan OBJECT IDENTIFIER ::= { cevFan 51 } -- Catalyst 6509-NEB Fan Tray for 9-Vertical-Slot System -cevFanWSC6k13SlotFan OBJECT IDENTIFIER ::= { cevFan 52 } -- Fan Tray for 13-Slot C6K -cevFanWSC6k13SlotFan2 OBJECT IDENTIFIER ::= { cevFan 53 } -- High Speed Fan Tray,for Catalyst 6513 / Cisco 7613 +cevFanWSC6k13SlotFan OBJECT IDENTIFIER ::= { cevFan 52 } -- Fan Tray for 13-Slot C6K +cevFanWSC6k13SlotFan2 OBJECT IDENTIFIER ::= { cevFan 53 } -- High Speed Fan Tray,for Catalyst 6513 / Cisco 7613 cevFanFanMod3HS OBJECT IDENTIFIER ::= { cevFan 54 } -- High Speed Fan Module for Catalyst 6503 / Cisco 7603 chassis cevFanWSC6509NebFan2 OBJECT IDENTIFIER ::= { cevFan 55 } -- Catalyst 6509-NEB High Speed Fan Tray for 9-Vertical-Slot System -cevFanFanMod6 OBJECT IDENTIFIER ::= { cevFan 56 } -- Fan Module for Cisco 7606 chassis +cevFanFanMod6 OBJECT IDENTIFIER ::= { cevFan 56 } -- Fan Module for Cisco 7606 chassis cevFanFanMod6HS OBJECT IDENTIFIER ::= { cevFan 57 } -- High Speed Fan Tray for Cisco 7606 chassis cevFanCrs1Fan OBJECT IDENTIFIER ::= { cevFan 58 } -- Cisco CRS1 Fan Tray. cevFanCat3560CFM26 OBJECT IDENTIFIER ::= { cevFan 59 } -- Cisco Catalyst 3560 Fan, 26 CFM cool air flow @@ -2957,8 +3432,8 @@ cevFanWSC6506eFanTray OBJECT IDENTIFIER ::= { cevFan 61 } -- Catalyst 6506 En cevFanWSC6509eFanTray OBJECT IDENTIFIER ::= { cevFan 62 } -- Catalyst 6509 Enhanced Fan Tray cevFanWSC6513eFanTray OBJECT IDENTIFIER ::= { cevFan 63 } -- Catalyst 6513 Enhanced Fan Tray cevFanWSC6503eFanTray OBJECT IDENTIFIER ::= { cevFan 64 } -- Catalyst 6503 Enhanced Fan Tray -cevFanUmg9820FanTray OBJECT IDENTIFIER ::= { cevFan 65 } -- umg9820 product's Fan Tray -cevFanMod4HS OBJECT IDENTIFIER ::= { cevFan 66 } -- Fan module for cisco7604 +cevFanUmg9820FanTray OBJECT IDENTIFIER ::= { cevFan 65 } -- umg9820 product's Fan Tray +cevFanMod4HS OBJECT IDENTIFIER ::= { cevFan 66 } -- Fan module for cisco7604 cevFanC4kFCFanTray OBJECT IDENTIFIER ::= { cevFan 67 } -- Cisco Catalyst 4000 fixed chassis fan tray cevFan12410EnhFanTray3 OBJECT IDENTIFIER ::= { cevFan 68 } -- Cisco 12410 Enhanced Fan tray with 3 fans cevFan12406EnhFanTray3 OBJECT IDENTIFIER ::= { cevFan 69 } -- Cisco 12406 Enhanced Fan tray with 3 fans @@ -2979,15 +3454,15 @@ cevModuleCrs116FanTray OBJECT IDENTIFIER ::= { cevFan 83 } -- Cisco CRS-1 Ser cevModuleCrs18FanTray OBJECT IDENTIFIER ::= { cevFan 84 } -- Cisco CRS-1 Series Fan Tray for 8 slots LCC cevModuleCrs14FanTray OBJECT IDENTIFIER ::= { cevFan 85 } -- Cisco CRS-1 Series Fan Tray for 4 slots LC cevFanC3KBLWR60CFM OBJECT IDENTIFIER ::= { cevFan 86 } -- Catalyst 3K Fan, 60 CFM -cevFanMod6ShsFanTray OBJECT IDENTIFIER ::= { cevFan 87 } -- High Speed Fan Module for CISCO7606-S Chassis -cevFanMod9ShsFanTray OBJECT IDENTIFIER ::= { cevFan 88 } -- High Speed Fan Module for CISCO7609-S Chassis +cevFanMod6ShsFanTray OBJECT IDENTIFIER ::= { cevFan 87 } -- High Speed Fan Module for CISCO7606-S Chassis +cevFanMod9ShsFanTray OBJECT IDENTIFIER ::= { cevFan 88 } -- High Speed Fan Module for CISCO7609-S Chassis cevFanMod9StFanTray OBJECT IDENTIFIER ::= { cevFan 89 } -- Turbo Fan Module for CISCO7609-S Chassis cevFanBlwrRPS2300 OBJECT IDENTIFIER ::= { cevFan 90 } -- Blower Assembly for RPS2300 cevFanACE4710K9CpuFan OBJECT IDENTIFIER ::= { cevFan 91 } -- Cisco ACE 4710 CPU Blower cevFanACE4710K9DimmFan OBJECT IDENTIFIER ::= { cevFan 92 } -- Cisco ACE 4710 DIMM Blower cevFanACE4710K9PciFan OBJECT IDENTIFIER ::= { cevFan 93 } -- Cisco ACE 4710 PCI Axial Fan cevFanWSC6509veFan OBJECT IDENTIFIER ::= { cevFan 94 } -- FAN Tray for Catalyst 6500 enhanced 9-slot vertical chassis -cevFanMod3ShsFanTray OBJECT IDENTIFIER ::= { cevFan 95 } -- Variable High Speed Fan Module for CISCO7603-S Chassis +cevFanMod3ShsFanTray OBJECT IDENTIFIER ::= { cevFan 95 } -- Variable High Speed Fan Module for CISCO7603-S Chassis cevFanSce8000FanTray OBJECT IDENTIFIER ::= { cevFan 96 } -- Cisco SCE8000 Fan tray cevFanN7Kc7010MainFanTray OBJECT IDENTIFIER ::= { cevFan 97 } -- main system fan for Nexus7000 10 slot N7K cevFanN7KC7010FabricFanTray OBJECT IDENTIFIER ::= { cevFan 98 } -- fabric fan for Nexus7000 10 slot N7K @@ -3042,8 +3517,8 @@ cevFanOe7541 OBJECT IDENTIFIER ::= { cevFan 155 } -- Cisco Oe cevFanOe8541 OBJECT IDENTIFIER ::= { cevFan 156 } -- Cisco Oe8541 Fan cevFanCrs16SBFan OBJECT IDENTIFIER ::= { cevFan 157 } -- Cisco CRS Series Fan for CRS-16/S-B Fan Tray cevFanCrs16FabricFan OBJECT IDENTIFIER ::= { cevFan 158 } -- Cisco CRS Series Fan for Fabric Card Chassis Fan Tray -cevFanASA5555PSFan OBJECT IDENTIFIER ::= { cevFan 160 } -- Power Supply Fan in Adapative Security Appliance 5555 -cevFanASA5555ChassisFan OBJECT IDENTIFIER ::= { cevFan 167 } -- Chassis Cooling Fan in Adapative Security Appliance 5555 +cevFanASA5555PSFan OBJECT IDENTIFIER ::= { cevFan 160 } -- Power Supply Fan in Adapative Security Appliance 5555 +cevFanASA5555ChassisFan OBJECT IDENTIFIER ::= { cevFan 167 } -- Chassis Cooling Fan in Adapative Security Appliance 5555 cevFanN3kC3064FanB OBJECT IDENTIFIER ::= { cevFan 173 } -- N3K-C3016 and N3K-C3064 Fan Module, Back to Front Airflow, Spare cevFanASR903FanTray OBJECT IDENTIFIER ::= { cevFan 174 } -- ASR 900 Chassis Series 3RU FAN Tray cevFanASR900Fan OBJECT IDENTIFIER ::= { cevFan 175 } -- Fan for ASR 900 Series platform @@ -3066,20 +3541,20 @@ cevFanN3kC3548PFan OBJECT IDENTIFIER ::= { cevFan 193 } -- Nexus 35 cevFanA9K9912FAN OBJECT IDENTIFIER ::= { cevFan 194 } -- ASR 9912 Fan Tray cevFanISR4400Fan OBJECT IDENTIFIER ::= { cevFan 195 } -- Cisco ISR 4400 Series Generic Fan cevFanAsr9010FanV2 OBJECT IDENTIFIER ::= { cevFan 196 } -- ASR-9010 Fan Tray Version 2 -cevFanCat2960XCFM23 OBJECT IDENTIFIER ::= { cevFan 197 } -- Cisco Catalyst 2960X Fan, 23 CFM cool air flow for non -Pwr SKUs -cevFanCat2960XCFM38 OBJECT IDENTIFIER ::= { cevFan 198 } -- Cisco Catalyst 2960X Fan, 38 CFM cool air flow for Pwr SKUs +cevFanCat2960XCFM23 OBJECT IDENTIFIER ::= { cevFan 197 } -- Cisco Catalyst 2960X Fan, 23 CFM cool air flow for non -Pwr SKUs +cevFanCat2960XCFM38 OBJECT IDENTIFIER ::= { cevFan 198 } -- Cisco Catalyst 2960X Fan, 38 CFM cool air flow for Pwr SKUs cevFanDSC9710 OBJECT IDENTIFIER ::= { cevFan 200 } -- DS-C9710-FAN, Fan module for MDS 10-Slot Director Switch, DS9710 -cevFanAsr9904Fan OBJECT IDENTIFIER ::= { cevFan 201 } -- ASR9904 Fan Tray -cevFanNCSFANTRAY OBJECT IDENTIFIER ::= { cevFan 202 } -- NCS 6008 Chassis Fan Tray +cevFanAsr9904Fan OBJECT IDENTIFIER ::= { cevFan 201 } -- ASR9904 Fan Tray +cevFanNCSFANTRAY OBJECT IDENTIFIER ::= { cevFan 202 } -- NCS 6008 Chassis Fan Tray cevFanDSC50I OBJECT IDENTIFIER ::= { cevFan 203 } -- DS-C50I-FAN, Fan module for MDS 9250i Intelligent Fabric Switch -cevFanC6880xFan OBJECT IDENTIFIER ::= { cevFan 204 } -- Catalyst 6880 chassis fan +cevFanC6880xFan OBJECT IDENTIFIER ::= { cevFan 204 } -- Catalyst 6880 chassis fan cevFanCrs18SBFan OBJECT IDENTIFIER ::= { cevFan 205 } -- Cisco CRS Series Fan for 8-Slot/S-B Fan Tray cevFanCrs18FanTrayB OBJECT IDENTIFIER ::= { cevFan 206 } -- CRS-8 Enhanced chassis fan tray for CRS400G -cevFanN77c7718Fan OBJECT IDENTIFIER ::= { cevFan 207 } -- Fan for Nexus7700 18-slot chassis -cevFanN77c7710Fan OBJECT IDENTIFIER ::= { cevFan 208 } -- Fan for Nexus7700 10-slot chassis -cevFanN77c7706Fan OBJECT IDENTIFIER ::= { cevFan 209 } -- Fan for Nexus7700 6-slot chassis -cevFanC6807xlFan OBJECT IDENTIFIER ::= { cevFan 210 } -- Catalyst 6807 chassis fan -cevFanNCSFan OBJECT IDENTIFIER ::= { cevFan 211 } -- NCS Fan +cevFanN77c7718Fan OBJECT IDENTIFIER ::= { cevFan 207 } -- Fan for Nexus7700 18-slot chassis +cevFanN77c7710Fan OBJECT IDENTIFIER ::= { cevFan 208 } -- Fan for Nexus7700 10-slot chassis +cevFanN77c7706Fan OBJECT IDENTIFIER ::= { cevFan 209 } -- Fan for Nexus7700 6-slot chassis +cevFanC6807xlFan OBJECT IDENTIFIER ::= { cevFan 210 } -- Catalyst 6807 chassis fan +cevFanNCSFan OBJECT IDENTIFIER ::= { cevFan 211 } -- NCS Fan cevFanCat3kCT57xxFan OBJECT IDENTIFIER ::= { cevFan 212 } -- Cisco Catalyst 3k/CT57xx Fruable FAN ASSEMBLY, 40MM, 12V, 16KRPM cevFanN3KC3172TQFAN OBJECT IDENTIFIER ::= { cevFan 213 } -- N3K QuickIron2 Fan (Front to Back Airflow) cevFanN3KC3172TQFANB OBJECT IDENTIFIER ::= { cevFan 214 } -- N3K QuickIron2 Fan (Back to Front Airflow) @@ -3091,26 +3566,26 @@ cevFanDSC9706FAN OBJECT IDENTIFIER ::= { cevFan 219 } -- Fan for cevFanNCS4KFTA OBJECT IDENTIFIER ::= { cevFan 220 } -- NCS 4016 Chassis Fan Tray cevFanNCS4KLCCFan OBJECT IDENTIFIER ::= { cevFan 221 } -- Cisco NCS 4000 Series LCC Chassis Fan cevFanN9Kc9508FanTray OBJECT IDENTIFIER ::= { cevFan 222 } -- N9K-C9508-FAN fan tray for Nexus9508 chassis -cevFanTrayISR4430 OBJECT IDENTIFIER ::= { cevFan 223 } -- Cisco ISR 4430 Series Fan Tray -cevFanASR1001XFanTray OBJECT IDENTIFIER ::= { cevFan 225 } -- Cisco ASR1001-X Fan Tray -cevFanASR902FanTray OBJECT IDENTIFIER ::= { cevFan 226 } -- ASR 900 Chassis Series 2RU FAN Tray +cevFanTrayISR4430 OBJECT IDENTIFIER ::= { cevFan 223 } -- Cisco ISR 4430 Series Fan Tray +cevFanASR1001XFanTray OBJECT IDENTIFIER ::= { cevFan 225 } -- Cisco ASR1001-X Fan Tray +cevFanASR902FanTray OBJECT IDENTIFIER ::= { cevFan 226 } -- ASR 900 Chassis Series 2RU FAN Tray cevFanN56128FanB OBJECT IDENTIFIER ::= { cevFan 227 } -- Nexus 56128 Fan Module with Back to Front Airflow cevFanN56128FanF OBJECT IDENTIFIER ::= { cevFan 228 } -- Nexus 56128 Fan Module with Front to Back Airflow cevFanDSC48SFAN OBJECT IDENTIFIER ::= { cevFan 229 } -- Fan module for MDS 9148 16G Fabric Switch cevFanN9Kc9516FanTray OBJECT IDENTIFIER ::= { cevFan 230 } -- N9K-C9516-FAN fan tray for Nexus9516 chassis cevFanN9Kc9504FanTray OBJECT IDENTIFIER ::= { cevFan 231 } -- N9K-C9504-FAN fan tray for Nexus9504 chassis cevFanN9Kc9300FanTray2B OBJECT IDENTIFIER ::= { cevFan 232 } -- 3RU (Nagano) fan tray back to front air flow (dual fan) -cevFanN9Kc9300FanTray2 OBJECT IDENTIFIER ::= { cevFan 233 } -- 3RU (Nagano) fan tray front to back air flow (dual fan) +cevFanN9Kc9300FanTray2 OBJECT IDENTIFIER ::= { cevFan 233 } -- 3RU (Nagano) fan tray front to back air flow (dual fan) cevFanN9Kc9300FanTray1B OBJECT IDENTIFIER ::= { cevFan 234 } -- 2RU (Lake Placid) fan tray back to front air flow (single fan) -cevFanN9Kc9300FanTray1 OBJECT IDENTIFIER ::= { cevFan 235 } -- 2RU (Lake Placid) fan tray front to back air flow (single fan) +cevFanN9Kc9300FanTray1 OBJECT IDENTIFIER ::= { cevFan 235 } -- 2RU (Lake Placid) fan tray front to back air flow (single fan) cevFanAsr9922FanV2 OBJECT IDENTIFIER ::= { cevFan 236 } -- ASR-9922 Fan Tray V2 -cevFanNXAFAN30CFMB OBJECT IDENTIFIER ::= { cevFan 237 } -- Nexus 2K/3K Single Fan, reverse airflow (port side intake) -cevFanNXAFAN30CFMF OBJECT IDENTIFIER ::= { cevFan 238 } -- Nexus 2K/3K Single Fan, forward airflow (port side exhaust) +cevFanNXAFAN30CFMB OBJECT IDENTIFIER ::= { cevFan 237 } -- Nexus 2K/3K Single Fan, reverse airflow (port side intake) +cevFanNXAFAN30CFMF OBJECT IDENTIFIER ::= { cevFan 238 } -- Nexus 2K/3K Single Fan, forward airflow (port side exhaust) cevFanASR9001V2 OBJECT IDENTIFIER ::= { cevFan 239 } -- ASR-9001 Fan Tray Ver 2 -cevFanN6kC6001FanF OBJECT IDENTIFIER ::= { cevFan 240 } -- Nexus 6001 Fan Module with Front to Back Airflow -cevFanN6kC6001FanB OBJECT IDENTIFIER ::= { cevFan 241 } -- Nexus 6001 Fan Module with Back to Front Airflow +cevFanN6kC6001FanF OBJECT IDENTIFIER ::= { cevFan 240 } -- Nexus 6001 Fan Module with Front to Back Airflow +cevFanN6kC6001FanB OBJECT IDENTIFIER ::= { cevFan 241 } -- Nexus 6001 Fan Module with Back to Front Airflow cevFanNCSFFANTRAY OBJECT IDENTIFIER ::= { cevFan 242 } -- NCS Fabric Chassis Fan Tray -cevFanTrayISR4330 OBJECT IDENTIFIER ::= { cevFan 244 } -- Cisco ISR 4330 Series Fan Tray +cevFanTrayISR4330 OBJECT IDENTIFIER ::= { cevFan 244 } -- Cisco ISR 4330 Series Fan Tray cevFanTrayISR4320 OBJECT IDENTIFIER ::= { cevFan 245 } -- Cisco ISR 4320 Series Fan Tray cevFanASR1000XFanTray OBJECT IDENTIFIER ::= { cevFan 246 } -- Cisco ASR1006-X/ASR1009-X Fan Tray cevFanAsa5508ChassisFan OBJECT IDENTIFIER ::= { cevFan 247 } -- Chassis Cooling Fan for Adaptive Security Appliance 5508 @@ -3128,13 +3603,14 @@ cevFanDSC96SFANE OBJECT IDENTIFIER ::= { cevFan 262 } -- Fan Tray cevFanDSC96SFANI OBJECT IDENTIFIER ::= { cevFan 263 } -- Fan Tray (port-side intake) for MDS-9396 16G x 96 FC ports fabric switch cevFanAsa5516ChassisFan OBJECT IDENTIFIER ::= { cevFan 264 } -- Chassis Cooling Fan for Adaptive Security Appliance 5516 cevFanC6840XFAN OBJECT IDENTIFIER ::= { cevFan 265 } -- FRU type FAN support for Catalyst 68xx family -cevFanASR1002HXFanTray OBJECT IDENTIFIER ::= { cevFan 266 } -- Cisco ASR1002-HX Fan Tray +cevFanASR1002HXFanTray OBJECT IDENTIFIER ::= { cevFan 266 } -- Cisco ASR1002-HX Fan Tray cevFanAsr9910Fan OBJECT IDENTIFIER ::= { cevFan 267 } -- ASR 9910 Fan Tray +cevFanASR920FanTray2ru OBJECT IDENTIFIER ::= { cevFan 268 } -- Fan tray for Crete box. Total 2 fans in this model cevFanDSC9718FAN OBJECT IDENTIFIER ::= { cevFan 269 } -- Fan module for MDS 18-Slot Director Switch, DS-C9718 cevFanT3R OBJECT IDENTIFIER ::= { cevFan 275 } -- Cisco 3850-XS FAN T3-R cevFanT3F OBJECT IDENTIFIER ::= { cevFan 276 } -- Cisco 3850-XS FAN T3-F -cevFanNC55FanTray OBJECT IDENTIFIER ::= { cevFan 277 } -- NCS 5508 Fan Tray -cevFanNC55Fan OBJECT IDENTIFIER ::= { cevFan 278 } -- NCS 5508 Chassis Fan +cevFanNC55FanTray OBJECT IDENTIFIER ::= { cevFan 277 } -- NCS 5508 Fan Tray +cevFanNC55Fan OBJECT IDENTIFIER ::= { cevFan 278 } -- NCS 5508 Chassis Fan cevFanNCS5001FANBK OBJECT IDENTIFIER ::= { cevFan 279 } -- Cisco NCS 5001 Router Fan Back ( Rear Side) to Front ( Port Side) Air Flow cevFanNCS5001FANFR OBJECT IDENTIFIER ::= { cevFan 280 } -- Cisco NCS 5001 Fan Front ( Port Side) to Back ( Rear Side) Air Flow cevFanNCS5002FANFR OBJECT IDENTIFIER ::= { cevFan 281 } -- Cisco NCS 5002 Fan Front ( Port Side) to Back ( Rear Side) Air Flow @@ -3143,18 +3619,19 @@ cevFanNCS4K OBJECT IDENTIFIER ::= { cevFan 285 } -- NC4K Fan cevFanASR1001HXFanTray OBJECT IDENTIFIER ::= { cevFan 287 } -- Cisco ASR1001-HX Fan Tray cevFanNCS4202 OBJECT IDENTIFIER ::= { cevFan 288 } -- Fan tray for NCS 4202 box, Total 4 fans in this model cevFanNCS4201 OBJECT IDENTIFIER ::= { cevFan 289 } -- Fan tray for NCS 4201 box, Total 5 fans in this model -cevFanASR920FanTray2ruCc OBJECT IDENTIFIER ::= { cevFan 290 } -- Fan tray for Crete box, Total 2 fans in this model -cevFanNCS1002FanTray OBJECT IDENTIFIER ::= { cevFan 291 } -- Cisco NCS1K fan tray slot -cevFanNCS5011FANFR OBJECT IDENTIFIER ::= { cevFan 298 } -- Cisco NCS 5011 Fan Front (Port Side) to Back (Rear Side) Air Flow -cevFanNCS5011FANBK OBJECT IDENTIFIER ::= { cevFan 299 } -- Cisco NCS 5011 Router Fan Back (Rear Side) to Front (Port Side) AirFlow +cevFanASR920FanTray2ruCc OBJECT IDENTIFIER ::= { cevFan 290 } -- Fan tray for Crete box, Total 2 fans in this model +cevFanNCS1002FanTray OBJECT IDENTIFIER ::= { cevFan 291 } -- Cisco NCS1K fan tray slot +cevFanNCS5011FANFR OBJECT IDENTIFIER ::= { cevFan 298 } -- Cisco NCS 5011 Fan Front (Port Side) to Back (Rear Side) Air Flow +cevFanNCS5011FANBK OBJECT IDENTIFIER ::= { cevFan 299 } -- Cisco NCS 5011 Router Fan Back (Rear Side) to Front (Port Side) AirFlow +cevFanTrayISR4220 OBJECT IDENTIFIER ::= { cevFan 300 } -- Cisco ISR 4220 Series Fan Tray cevFanNCS4216F2BFAN OBJECT IDENTIFIER ::= { cevFan 301 } -- NCS 4216 Top/Bottom Fan Tray -cevFanFPR2KCoolingFan OBJECT IDENTIFIER ::= { cevFan 302 } -- FirePOWER 2K cooling Fan +cevFanFPR2KCoolingFan OBJECT IDENTIFIER ::= { cevFan 302 } -- FirePOWER 2K cooling Fan cevFanNCS4216F2BFan OBJECT IDENTIFIER ::= { cevFan 307 } -- NCS 4216-F2B Top/Bottom Fan Tray cevFanNCS4216PWRFAN OBJECT IDENTIFIER ::= { cevFan 308 } -- NCS 4216 Power Supply Fan Tray cevFanASR914F2BFan OBJECT IDENTIFIER ::= { cevFan 311 } -- ASR 914 Top/Bottom Airflow Deflector Fan Tray Kit cevFanASR914PWRFAN OBJECT IDENTIFIER ::= { cevFan 312 } -- ASR914 Power Supply Fan Tray cevFanNCS4KFFanTray OBJECT IDENTIFIER ::= { cevFan 313 } -- NCS 4000 Centralised Fabric Chassis Fan Tray Assembly -cevFanAsr9906Fan OBJECT IDENTIFIER ::= { cevFan 314 } -- ASR 9906 Fan +cevFanAsr9906Fan OBJECT IDENTIFIER ::= { cevFan 314 } -- ASR 9906 Fan cevFanN77C7706FAN2 OBJECT IDENTIFIER ::= { cevFan 315 } -- Gen2 Fan Module for Nexus7700 6-slot chassis cevFanN77C7710FAN2 OBJECT IDENTIFIER ::= { cevFan 316 } -- Gen2 Fan Module for Nexus7700 10-slot chassis cevFanN77C7718FAN2 OBJECT IDENTIFIER ::= { cevFan 317 } -- Gen2 Fan Module for Nexus7700 18-slot chassis @@ -3163,11 +3640,12 @@ cevFanNCS1001FanTray OBJECT IDENTIFIER ::= { cevFan 319 } -- Cisco NC cevFanC9410FAN OBJECT IDENTIFIER ::= { cevFan 320 } -- Cisco Catalyst 9400 Series 10 slot chassis Fan Tray cevFanC9407FAN OBJECT IDENTIFIER ::= { cevFan 321 } -- Cisco Catalyst 9400 Series 7 slot chassis Fan Tray cevFanC9404FAN OBJECT IDENTIFIER ::= { cevFan 322 } -- Cisco Catalyst 9400 Series 4 slot chassis Fan Tray -cevFanC9400FAN OBJECT IDENTIFIER ::= { cevFan 323 } -- Cisco Catalyst 9400 Series Fan +cevFanC9400FAN OBJECT IDENTIFIER ::= { cevFan 323 } -- Cisco Catalyst 9400 Series Fan +cevFanC980040K9FanTray OBJECT IDENTIFIER ::= { cevFan 324 } -- C9800-40-K9 Fan tray cevFanAIRCT9880K9 OBJECT IDENTIFIER ::= { cevFan 325 } -- AIR-CT9880-K9 Fan tray cevFanNCS4009FANFC OBJECT IDENTIFIER ::= { cevFan 326 } -- NCS4009 Glaurung2 Fan -cevFanAIRCT5540K9FanTray OBJECT IDENTIFIER ::= { cevFan 327 } -- AIR-CT5540-K9 Fan tray -cevFanNXAFAN160CFMPI OBJECT IDENTIFIER ::= { cevFan 328 } -- NXA-FAN-160CFM-PI Nexus Fan, 160CFM, port side intake airflow +cevFanAIRCT5540K9FanTray OBJECT IDENTIFIER ::= { cevFan 327 } -- AIR-CT5540-K9 Fan tray +cevFanNXAFAN160CFMPI OBJECT IDENTIFIER ::= { cevFan 328 } -- NXA-FAN-160CFM-PI Nexus Fan, 160CFM, port side intake airflow cevFanNXAFAN160CFMPE OBJECT IDENTIFIER ::= { cevFan 329 } -- NXA-FAN-160CFM-PE Nexus Fan, 160CFM, port side exhaust airflow cevFanDSC32TFANE OBJECT IDENTIFIER ::= { cevFan 330 } -- DS-C32T-FAN-E, Port Side Exhaust Fan unit for DS-C9132T-K9 cevFanDSC32TFANI OBJECT IDENTIFIER ::= { cevFan 331 } -- DS-C32T-FAN-I, Port Side Intake Fan unit for DS-C9132T-K9 @@ -3176,33 +3654,128 @@ cevFanC9KT4R OBJECT IDENTIFIER ::= { cevFan 333 } -- Cisco Ca cevFanC9KFAN OBJECT IDENTIFIER ::= { cevFan 334 } -- Cisco Catalyst 9500 Series Fan cevFanNXAFAN65CFMPI OBJECT IDENTIFIER ::= { cevFan 335 } -- Nexus 3000 Series Fan Module, 65 CFM cool air flow, Port Intake air flow cevFanNXAFAN65CFMPE OBJECT IDENTIFIER ::= { cevFan 336 } -- Nexus 3000 Series Fan Module, 65 CFM cool air flow, Port Exhaust air flow +cevFanDellFan OBJECT IDENTIFIER ::= { cevFan 337 } -- Third party Dell Fan cevFanNCS520FanTray3 OBJECT IDENTIFIER ::= { cevFan 338 } -- Cisco NCS520 fan try with 3 fans cevFanNCS520FanTray5 OBJECT IDENTIFIER ::= { cevFan 339 } -- Cisco NCS520 fan try with 5 fans cevFanN540FAN OBJECT IDENTIFIER ::= { cevFan 340 } -- NCS 540 Fan cevFanN540XFAN OBJECT IDENTIFIER ::= { cevFan 341 } -- Cisco NCS 540 Router Fan Conformal Coated +cevFanSFD18FAN OBJECT IDENTIFIER ::= { cevFan 342 } -- SF-D18 Fan Tray +cevFan8812FAN OBJECT IDENTIFIER ::= { cevFan 343 } -- Cisco 8812 Fan Tray +cevFan8808FAN OBJECT IDENTIFIER ::= { cevFan 344 } -- Cisco 8808 Fan Tray +cevFanSFD4FAN OBJECT IDENTIFIER ::= { cevFan 345 } -- SF-D4 Fan Tray cevFanC9600FAN OBJECT IDENTIFIER ::= { cevFan 346 } -- Cisco Catalyst 9600 Series Fan cevFanC9606FAN OBJECT IDENTIFIER ::= { cevFan 347 } -- Cisco Catalyst 9600 Series C9606 Chassis Fan Tray +cevFan8201FANRV OBJECT IDENTIFIER ::= { cevFan 348 } -- Cisco 8201 Fan Module Reverse Airflow (port-side exhaust) +cevFan8201FANFW OBJECT IDENTIFIER ::= { cevFan 349 } -- Cisco 8201 Fan Module Forward Airflow (port-side intake) cevFanSystemFan OBJECT IDENTIFIER ::= { cevFan 350 } -- Generic system fan -cevFanFPR1KCoolingFan OBJECT IDENTIFIER ::= { cevFan 353 } -- Cisco Firepower 1K cooling Fan +cevFanNC555516FAN2 OBJECT IDENTIFIER ::= { cevFan 351 } -- NCS 5516 Fan Tray version 2 module for 16 slot chassis NCS Whistler +cevFanNC555508FAN2 OBJECT IDENTIFIER ::= { cevFan 352 } -- NCS 5508 Fan Tray version 2 module for 8 slot chassis NCS Whistler +cevFanFPR1KCoolingFan OBJECT IDENTIFIER ::= { cevFan 353 } -- Cisco Firepower 1K cooling Fan +cevFanC980080K9FanTray OBJECT IDENTIFIER ::= { cevFan 355 } -- C9800-80-K9 Fan tray cevFanNXAFAN160CFM OBJECT IDENTIFIER ::= { cevFan 356 } -- Fans for N9K-C9364C cevFanNXAFAN35CFMPI OBJECT IDENTIFIER ::= { cevFan 357 } -- NXA-FAN-35CFM-PI Nexus Fan, 35CFM, port side intake airflow -cevFanNXAFAN35CFMPE OBJECT IDENTIFIER ::= { cevFan 358 } -- NXA-FAN-35CFM-PE Nexus Fan, 35CFM, port side exhaust airflow -cevFanASR9922FANV3 OBJECT IDENTIFIER ::= { cevFan 359 } -- ASR 9922 Fan Tray v3 +cevFanNXAFAN35CFMPE OBJECT IDENTIFIER ::= { cevFan 358 } -- NXA-FAN-35CFM-PE Nexus Fan, 35CFM, port side exhaust airflow +cevFanASR9922FANV3 OBJECT IDENTIFIER ::= { cevFan 359 } -- ASR 9922 Fan Tray v3 +cevFanN560FANH OBJECT IDENTIFIER ::= { cevFan 360 } -- Cisco NCS 560 High Speed Fan - Industrial Temperature Range (I-Temp) cevFanNCS5064FANFR OBJECT IDENTIFIER ::= { cevFan 361 } -- NCS 5064 Router Fan Front to Back AirFlow cevFanNCS5064FANBK OBJECT IDENTIFIER ::= { cevFan 362 } -- NCS 5064 Router Fan Back to Front AirFlow cevFanNCS1004FanTray OBJECT IDENTIFIER ::= { cevFan 363 } -- NCS1004 fan tray slot cevFanN560Fan OBJECT IDENTIFIER ::= { cevFan 364 } -- NCS 560 Fan cevFanFPR1KPSFan OBJECT IDENTIFIER ::= { cevFan 365 } -- Power Supply Fan in FPR1K cevFanFPR2KPSFan OBJECT IDENTIFIER ::= { cevFan 366 } -- Power Supply Fan in FPR2K +cevFanTrayISR4460 OBJECT IDENTIFIER ::= { cevFan 367 } -- Cisco ISR 4460 series Fan Tray (forward-flow) +cevFanTrayISR4460NEBS OBJECT IDENTIFIER ::= { cevFan 368 } -- Cisco ISR 4460 series Fan Tray (reverse-flow) +cevFanASR1001PXFanTray OBJECT IDENTIFIER ::= { cevFan 369 } -- Fan Tray for asr1001 chassis cevFanN5604FANH OBJECT IDENTIFIER ::= { cevFan 370 } -- Cisco NCS 560-4 High Speed Fan Tray cevFanN5604FANHCC OBJECT IDENTIFIER ::= { cevFan 371 } -- Cisco NCS 560-4 High Speed Fan Tray, Conformal Coated cevFanN5604PWRFAN OBJECT IDENTIFIER ::= { cevFan 372 } -- Cisco NCS 560-4 High Speed Power Fan Tray -cevFanC9800LFanTray OBJECT IDENTIFIER ::= { cevFan 373 } -- FanTray for Katar PIDs, 2x blower. Front to rear airflow +cevFanC9800LFanTray OBJECT IDENTIFIER ::= { cevFan 373 } -- FanTray for C9800-L PIDs, 2x blower. Front to rear airflow +cevFanC9800LCK9FanTray OBJECT IDENTIFIER ::= { cevFan 374 } -- Fan Tray for C9800-L-C-K9 PID. Fan Module has 2x blower +cevFanC9800LFK9FanTray OBJECT IDENTIFIER ::= { cevFan 375 } -- Fan Tray for C9800-L-F-K9 PID. Fan Module has 2x blower cevFanN5604PWRFANCC OBJECT IDENTIFIER ::= { cevFan 376 } -- Cisco NCS 560-4 High Speed Power Fan Tray, Conformal Coated +cevFanNCS540L28Z4 OBJECT IDENTIFIER ::= { cevFan 377 } -- NCS540L series - NCS540L-28Z4 Fan Module +cevFanTrayNCS540L28Z4 OBJECT IDENTIFIER ::= { cevFan 378 } -- NCS540L series - NCS540L-28Z4 Fan Tray +cevFanNCS540L16Z4G8Q2C OBJECT IDENTIFIER ::= { cevFan 379 } -- NCS540L series - NCS540L-16Z4G8Q2C Fan Module +cevFanTrayNCS540L16Z4G8Q2C OBJECT IDENTIFIER ::= { cevFan 380 } -- NCS540L series - NCS540L-16Z4G8Q2C Fan Tray +cevFanNCS540L12Z20G OBJECT IDENTIFIER ::= { cevFan 381 } -- NCS540L series - NCS540L- 12Z20G Fan Module +cevFanTrayNCS540L12Z20G OBJECT IDENTIFIER ::= { cevFan 382 } -- NCS540L series - NCS540L- 12Z20G Fan Tray +cevFanNCS540L12Z16G OBJECT IDENTIFIER ::= { cevFan 383 } -- NCS540L series - NCS540L- 12Z16G Fan Module +cevFanTrayNCS540L12Z16G OBJECT IDENTIFIER ::= { cevFan 384 } -- NCS540L series - NCS540L- 12Z16G Fan Tray cevFanNXAFAN160CFM2PI OBJECT IDENTIFIER ::= { cevFan 387 } -- NXA-FAN-160CFM2PI Nexus 9000 port side intake fan cevFanNXAFAN160CFM2PE OBJECT IDENTIFIER ::= { cevFan 388 } -- NXA-FAN-160CFM2PE Nexus 9000 port side exhaust fan +cevFanUCSFAN64108 OBJECT IDENTIFIER ::= { cevFan 389 } -- Cisco UCS 64108 Fan Module cevFanNXAFAN300CFMPI OBJECT IDENTIFIER ::= { cevFan 392 } -- NXA-FAN-300CFM-PI Nexus Fan, 300CFM, port side intake airflow cevFanNXAFAN300CFMPE OBJECT IDENTIFIER ::= { cevFan 393 } -- NXA-FAN-300CFM-PE Nexus Fan, 300CFM, port side exhaust airflow +cevFanTrayC1100TG OBJECT IDENTIFIER ::= { cevFan 394 } -- Cisco C1100TG terminal server fantray with 2 fans +cevFanTrayC1100TGX OBJECT IDENTIFIER ::= { cevFan 395 } -- Cisco C1100TG plus terminal server fantray with 3 fans +cevFanTrayNCS540LFHCSR OBJECT IDENTIFIER ::= { cevFan 396 } -- NCS540L series - N540-FH-CSR-SYS Fan Tray +cevFanTrayNCS540LFHAGG OBJECT IDENTIFIER ::= { cevFan 397 } -- NCS540L series - N540-FH-AGG-SYS Fan Tray +cevFanTrayNCS540LFHIP65 OBJECT IDENTIFIER ::= { cevFan 398 } -- NCS540L series - N540-FH-IP65-SYS Fan Tray +cevFanNCS540LFHCSR OBJECT IDENTIFIER ::= { cevFan 399 } -- NCS540L series - N540-FH-CSR-SYS Fan Module +cevFanNCS540LFHAGG OBJECT IDENTIFIER ::= { cevFan 400 } -- NCS540L series - N540-FH-AGG-SYS Fan Module +cevFanNCS540LFHIP65 OBJECT IDENTIFIER ::= { cevFan 401 } -- NCS540L series - N540-FH-IP65-SYS Fan Module +cevFanN9KC9504FAN2 OBJECT IDENTIFIER ::= { cevFan 402 } -- N9K-C9504-FAN2 fan tray for Nexus 9504 chassis +cevFanN9KC9508FAN2 OBJECT IDENTIFIER ::= { cevFan 403 } -- N9K-C9508-FAN2 fan tray for Nexus 9508 chassis +cevFanTrayC83002N2S OBJECT IDENTIFIER ::= { cevFan 404 } -- Cisco C8300-2N2S-XX Fan Tray +cevFanTrayC83002N2SR OBJECT IDENTIFIER ::= { cevFan 405 } -- Cisco C8300-2N2S-XX NEBS Fan Tray +cevFanTrayC83001N1S OBJECT IDENTIFIER ::= { cevFan 406 } -- Cisco C8300-1N1S-XX Series Fan Tray +cevFanTrayC82001N4T OBJECT IDENTIFIER ::= { cevFan 407 } -- Cisco C8200-1N-4T Series Fan Tray +cevFanNC555504FAN2 OBJECT IDENTIFIER ::= { cevFan 408 } -- NCS 5504 Fan Tray version 2 module for 4 slot chassis +cevFanPERSHINGFANPE OBJECT IDENTIFIER ::= { cevFan 409 } -- PERSHING fan module - PORT side Exhaust +cevFanPERSHINGFANPI OBJECT IDENTIFIER ::= { cevFan 410 } -- PERSHING fan module - PORT side Intake +cevFanTTA1XFanTray OBJECT IDENTIFIER ::= { cevFan 411 } -- Cisco DNA Traffic Telemetry Appliance - Model 1X, Fan Tray +cevFanNXASFAN30CFMPI OBJECT IDENTIFIER ::= { cevFan 412 } -- Smart fan for n9k tor +cevFanNXASFAN30CFMPE OBJECT IDENTIFIER ::= { cevFan 413 } -- Smart fan for n9k tor +cevFanNXASFAN35CFMPE OBJECT IDENTIFIER ::= { cevFan 414 } -- Smart fan for n9k tor +cevFanNXASFAN35CFMPI OBJECT IDENTIFIER ::= { cevFan 415 } -- Smart fan for n9k tor +cevFanNXASFAN65CFMPI OBJECT IDENTIFIER ::= { cevFan 416 } -- Smart fan for n9k tor +cevFanNXASFAN65CFMPE OBJECT IDENTIFIER ::= { cevFan 417 } -- Smart fan for n9k tor +cevFanNXASFAN160CFMPI OBJECT IDENTIFIER ::= { cevFan 418 } -- Smart fan for n9k tor +cevFanNXASFAN300CFMPI OBJECT IDENTIFIER ::= { cevFan 419 } -- Smart fan for n9k tor +cevFanNXASFAN160CFMPE OBJECT IDENTIFIER ::= { cevFan 420 } -- Smart fan for n9k tor +cevFanNXASFAN300CFMPE OBJECT IDENTIFIER ::= { cevFan 421 } -- Smart fan for n9k tor +cevFanASR9903FanTray OBJECT IDENTIFIER ::= { cevFan 422 } -- ASR 9903 Fan Tray +cevFanC8500L8S4XFanTray OBJECT IDENTIFIER ::= { cevFan 423 } -- Cisco C8500L-8S4X Fan Tray +cevFanC8500FAN1RFanTray OBJECT IDENTIFIER ::= { cevFan 424 } -- Fan Tray for C8500-12X4QC chassis +cevFanDSC32SFANE OBJECT IDENTIFIER ::= { cevFan 425 } -- DS-C32S-FAN-E, Port Side Exhaust Fan unit for DS-C9220I-K9 +cevFanDSC32SFANI OBJECT IDENTIFIER ::= { cevFan 426 } -- DS-C32S-FAN-I, Port Side Intake Fan unit for DS-C9220I-K9 +cevFanFAN1RUPEV2 OBJECT IDENTIFIER ::= { cevFan 427 } -- Cisco 8000 Series 1RU Fan with Portside Air Exhaust Ver 2 +cevFanFAN1RUPIV2 OBJECT IDENTIFIER ::= { cevFan 428 } -- Cisco 8000 Series 1RU Fan with Port- side Air Intake Ver 2 +cevFanTray1RUC950056C16DF OBJECT IDENTIFIER ::= { cevFan 429 } -- Cisco Catalyst 9500 Series 1RU Fan Tray Forward +cevFanTray2RUC950056C16DF OBJECT IDENTIFIER ::= { cevFan 430 } -- Cisco Catalyst 9500 Series 2RU Fan Tray Forward +cevFanTray1RUC950056C16DR OBJECT IDENTIFIER ::= { cevFan 431 } -- Cisco Catalyst 9500 Series 1RU Fan Tray Reverse +cevFanTray2RUC950056C16DR OBJECT IDENTIFIER ::= { cevFan 432 } -- Cisco Catalyst 9500 Series 2RU Fan Tray Reverse +cevFanNC57C3FAN1FW OBJECT IDENTIFIER ::= { cevFan 433 } -- Eyrie 40 mm fan tray +cevFanNC57C3FAN2FW OBJECT IDENTIFIER ::= { cevFan 434 } -- Eyrie 60 mm fan tray +cevFanVG420Fan OBJECT IDENTIFIER ::= { cevFan 437 } -- Cisco VG420 Generic Fan +cevFanTray1RUC9500F OBJECT IDENTIFIER ::= { cevFan 438 } -- Cisco Catalyst 9500X Series 1RU Fan Tray Forward +cevFanTray1RUC9500R OBJECT IDENTIFIER ::= { cevFan 440} -- Cisco Catalyst 9500X Series 1RU Fan Tray Reverse +cevFanTrayNCS1010 OBJECT IDENTIFIER ::= { cevFan 442} -- Cisco Network Convergence System 1010 Fan Tray +cevFanN5604PWRFANR OBJECT IDENTIFIER ::= { cevFan 445 } -- Cisco NCS 560-4 High Speed Power Fan Tray(Reverse) +cevFanN5604FANR OBJECT IDENTIFIER ::= { cevFan 446 } -- Cisco NCS 560-4 High Speed Fan Tray(Reverse) +cevChassisFanFPR3105 OBJECT IDENTIFIER ::= { cevFan 447 } -- Cisco Firepower 3105 cooling Fan +cevFanDSC9148VK9FANE OBJECT IDENTIFIER ::= { cevFan 448 } -- FAN information of 48 port 8/16/32/64Gbps FC/Sup-4 Switch +cevFanDSC9124VK9FANE OBJECT IDENTIFIER ::= { cevFan 449 } -- FAN information of 24 port 8/16/32/64Gbps FC/Sup-4 Switch +cevFanN9KC9808FANTRAY OBJECT IDENTIFIER ::= { cevFan 450 } -- N9K-C9808-FAN-A fan tray for Nexus9808 chassis +cevFanN9KC9400FANPI OBJECT IDENTIFIER ::= { cevFan 453 } -- N9K-C9400-FAN-PI Nexus Fan, C9400, port side intake airflow +cevFanNC57D2FANFW OBJECT IDENTIFIER ::= { cevFan 454 } -- NCS 5700 Fan Tray 2RU Chassis Port-S Intake / Front-to-back +cevFanNC57D2FANRV OBJECT IDENTIFIER ::= { cevFan 455 } -- NCS 5700 Fan Tray 2RU Chassis Port-S Exhaust / Back-to-Front +cevFan8808FANV1 OBJECT IDENTIFIER ::= { cevFan 456 } -- Cisco 8808 Fan Tray V2 +cevFan8818FANV1 OBJECT IDENTIFIER ::= { cevFan 457 } -- Cisco 8818 Fan Tray V2 +cevFanDSC9396VK9FANI OBJECT IDENTIFIER ::= { cevFan 460 } -- Port-Side Intake FAN information of 96 port 8/16/32/64Gbps FC/Sup-4 Switch +cevFanDSC9396VK9FANE OBJECT IDENTIFIER ::= { cevFan 461 } -- Port-Side Exhaust FAN information of 96 port 8/16/32/64Gbps FC/Sup-4 Switch +cevFanA907FANH OBJECT IDENTIFIER ::= { cevFan 462 } -- ASR907-H Fan Tray +cevFanNCS1K14FAN OBJECT IDENTIFIER ::= { cevFan 463 } -- Network Convergence System 1014 FAN Module +cevFanC9610FAN OBJECT IDENTIFIER ::= { cevFan 464 } -- Cisco Catalyst 9600 Series 10 slot Chassis Fan Tray +cevFanNXASFAN39CFMPI OBJECT IDENTIFIER ::= { cevFan 467 } -- Nexus 9200 Fan (Port Side Intake) +cevFanCW9800MFanTray OBJECT IDENTIFIER ::= { cevFan 475 } -- Cisco Catalyst CW9800M Fan Tray +cevFanCW9800H1FanTray OBJECT IDENTIFIER ::= { cevFan 476 } -- Cisco Catalyst CW9800H1 Fan Tray +cevFanCW9800H2FanTray OBJECT IDENTIFIER ::= { cevFan 477 } -- Cisco Catalyst CW9800H2 Fan Tray +cevFanNCS1020FAN OBJECT IDENTIFIER ::= { cevFan 478 } -- NCS 1020 FAN Tray +cevFanC8530L8S8X4YFanTray OBJECT IDENTIFIER ::= { cevFan 479 } -- Cisco C8530L-8S8X4Y Fan Tray +cevFanC8530L8S2X2YFanTray OBJECT IDENTIFIER ::= { cevFan 480 } -- Cisco C8530L-8S2X2Y Fan Tray +cevFanNCS1010 OBJECT IDENTIFIER ::= { cevFan 481 } -- NCS1010 Fan Module + cevSensor OBJECT IDENTIFIER ::= { cevMIBObjects 8 } cevSensorMGX8800Temp OBJECT IDENTIFIER ::= { cevSensor 11 } -- Cabinet Temperature sensor device in MGX8800 Universal Chassis @@ -3236,7 +3809,7 @@ cevSensorPSFan OBJECT IDENTIFIER ::= { cevSensor 38 } -- Generic power suppl cevSensorPSOutput OBJECT IDENTIFIER ::= { cevSensor 39 } -- Generic power supply output sensor cevSensorPSInput OBJECT IDENTIFIER ::= { cevSensor 40 } -- Generic power supply input sensor cevSensorCrs1Voltage OBJECT IDENTIFIER ::= { cevSensor 41 } -- Cisco CRS1 voltage sensoro -cevSensorCrs1Temp OBJECT IDENTIFIER ::= { cevSensor 42 } -- Cisco CRS1 Temperature sensor +cevSensorCrs1Temp OBJECT IDENTIFIER ::= { cevSensor 42 } -- Cisco CRS1 Temperature sensor cevSensorCrs1Current OBJECT IDENTIFIER ::= { cevSensor 43 } -- Cisco CRS1 Current sensor cevSensorCrs1FanSpeed OBJECT IDENTIFIER ::= { cevSensor 44 } -- Cisco CRS1 Fan Speed sensor cevSensorModuleDeviceVoltage OBJECT IDENTIFIER ::= { cevSensor 45 } -- Generic Module Device Voltage Sensor @@ -3263,24 +3836,24 @@ cevSensorMXE5600Temp OBJECT IDENTIFIER ::= { cevSensor 67 } cevSensorMXE5600FanSpeed OBJECT IDENTIFIER ::= { cevSensor 68 } -- Generic MXE 5600 platform Fan Speed Sensor cevSensorMXE5600Voltage OBJECT IDENTIFIER ::= { cevSensor 69 } -- Generic MXE 5600 platform Voltage Sensor cevSensorMXE5600Current OBJECT IDENTIFIER ::= { cevSensor 70 } -- Generic MXE 5600 platform Current Sensor -cevSensorModuleDevicePower OBJECT IDENTIFIER ::= { cevSensor 132 } -- Generic Sensor for monitoring the Power Sensor -cevSensorModuleDeviceFanRotation OBJECT IDENTIFIER ::= { cevSensor 133 } -- Generic Sensor for monitoring the Fan Rotation Sensor -cevSensorModuleDevicePressure OBJECT IDENTIFIER ::= { cevSensor 134 } -- Generic Sensor for monitoring the Altitude Sensor -cevSensorVoltagesensor OBJECT IDENTIFIER ::= { cevSensor 135 } -- Voltage Sensor -cevSensorCursensor OBJECT IDENTIFIER ::= { cevSensor 136 } -- Current Sensor -cevSensorTempsensor OBJECT IDENTIFIER ::= { cevSensor 137 } -- Temperature Sensor -cevSensorLEDsensor OBJECT IDENTIFIER ::= { cevSensor 138 } -- LED Sensor -cevSensorFanSpeedsensor OBJECT IDENTIFIER ::= { cevSensor 139 } -- Fan Speed Sensor +cevSensorModuleDevicePower OBJECT IDENTIFIER ::= { cevSensor 132 } -- Generic Sensor for monitoring the Power Sensor +cevSensorModuleDeviceFanRotation OBJECT IDENTIFIER ::= { cevSensor 133 } -- Generic Sensor for monitoring the Fan Rotation Sensor +cevSensorModuleDevicePressure OBJECT IDENTIFIER ::= { cevSensor 134 } -- Generic Sensor for monitoring the Altitude Sensor +cevSensorVoltagesensor OBJECT IDENTIFIER ::= { cevSensor 135 } -- Voltage Sensor +cevSensorCursensor OBJECT IDENTIFIER ::= { cevSensor 136 } -- Current Sensor +cevSensorTempsensor OBJECT IDENTIFIER ::= { cevSensor 137 } -- Temperature Sensor +cevSensorLEDsensor OBJECT IDENTIFIER ::= { cevSensor 138 } -- LED Sensor +cevSensorFanSpeedsensor OBJECT IDENTIFIER ::= { cevSensor 139 } -- Fan Speed Sensor cevSensorMultiSensorModule OBJECT IDENTIFIER ::= { cevSensor 140 } -- Multiple Sensor Hosting Module l -cevSensorPowersensor OBJECT IDENTIFIER ::= { cevSensor 141 } -- Power Sensor -cevSensorModuleHotSpotTemp OBJECT IDENTIFIER ::= { cevSensor 142 } -- Generic module hotspot temperature sensor -cevSensorDiagStatus OBJECT IDENTIFIER ::= { cevSensor 143 } -- Generic diagnostics status sensor +cevSensorPowersensor OBJECT IDENTIFIER ::= { cevSensor 141 } -- Power Sensor +cevSensorModuleHotSpotTemp OBJECT IDENTIFIER ::= { cevSensor 142 } -- Generic module hotspot temperature sensor +cevSensorDiagStatus OBJECT IDENTIFIER ::= { cevSensor 143 } -- Generic diagnostics status sensor cevSensorNCS4KVol OBJECT IDENTIFIER ::= { cevSensor 144 } -- Cisco NCS 4000 Voltage Sensor cevSensorNCS4KCur OBJECT IDENTIFIER ::= { cevSensor 145 } -- Cisco NCS 4000 Current Sensor cevSensorNCS4KTemp OBJECT IDENTIFIER ::= { cevSensor 146 } -- Cisco NCS 4000 Temperature Sensor cevSensorNCS4KLED OBJECT IDENTIFIER ::= { cevSensor 147 } -- Cisco NCS 4000 LED Sensor cevSensorNCS4KFanSpeed OBJECT IDENTIFIER ::= { cevSensor 148 } -- Cisco NCS 4000 Fan Speed Sensor -cevSensorNCS4KMultiHostingMod OBJECT IDENTIFIER ::= { cevSensor 149 } -- Cisco NCS 4000 Multiple Sensor Hosting Module +cevSensorNCS4KMultiHostingMod OBJECT IDENTIFIER ::= { cevSensor 149 } -- Cisco NCS 4000 Multiple Sensor Hosting Module cevSensorNCS4KPressure OBJECT IDENTIFIER ::= { cevSensor 150 } -- Cisco NCS 4000 Pressure Sensor cevSensorASR5000CardTemp OBJECT IDENTIFIER ::= { cevSensor 151 } -- Temperature sensor on supported cards in ASR5000 chassis cevSensorASR5000CardVoltage OBJECT IDENTIFIER ::= { cevSensor 152 } -- Voltage sensor on supported cards in ASR5000 chassis @@ -3344,10 +3917,10 @@ cevSensorRAISA1783SAD4T0SPS OBJECT IDENTIFIER ::= { cevSensor 209 } cevSensorRAISA1783SAD2T2SPS OBJECT IDENTIFIER ::= { cevSensor 210 } -- Presence Sensor for Power Supply input for Cisco Rockwell ISA30002C2F Fiber SKU cevSensorModuleDeviceSNR OBJECT IDENTIFIER ::= { cevSensor 211 } -- Generic Sensor for monitoring the SNR Sensor cevSensorModuleDeviceISI OBJECT IDENTIFIER ::= { cevSensor 212 } -- Generic Sensor for monitoring the residual ISI Sensor -cevSensorModuleDevicePAM OBJECT IDENTIFIER ::= { cevSensor 213 } -- Generic Sensor for monitoring the rate of measured signal on the line that has an analog level near the cutoff for a PAM bit transition -cevSensorModuleDevicePreFECBER OBJECT IDENTIFIER ::= { cevSensor 214 } -- Generic Sensor for monitoring the Pre FEC BER -cevSensorModuleDeviceUncorrectedBER OBJECT IDENTIFIER ::= { cevSensor 215 } -- Generic Sensor for monitoring the Uncorrected BER -cevSensorModuleDeviceTECCurrent OBJECT IDENTIFIER ::= { cevSensor 216 } -- Generic Sensor for monitoring the TEC Current +cevSensorModuleDevicePAM OBJECT IDENTIFIER ::= { cevSensor 213 } -- Generic Sensor for monitoring the rate of measured signal on the line that has an analog level near the cutoff for a PAM bit transition +cevSensorModuleDevicePreFECBER OBJECT IDENTIFIER ::= { cevSensor 214 } -- Generic Sensor for monitoring the Pre FEC BER +cevSensorModuleDeviceUncorrectedBER OBJECT IDENTIFIER ::= { cevSensor 215 } -- Generic Sensor for monitoring the Uncorrected BER +cevSensorModuleDeviceTECCurrent OBJECT IDENTIFIER ::= { cevSensor 216 } -- Generic Sensor for monitoring the TEC Current cevSensorModuleDevDiffLaserFrequency OBJECT IDENTIFIER ::= { cevSensor 217 } -- Generic Sensor for monitoring the difference (in frequency units) between the target center frequency and the actual current center frequency cevSensorModuleDeviceDiffLaserTemp OBJECT IDENTIFIER ::= { cevSensor 218 } -- Generic Sensor for monitoring the difference (in Celsius units) between the target laser temperature for a cooled laser and the actual current temperature cevSensorFPR2KChassisFanSensor OBJECT IDENTIFIER ::= { cevSensor 219 } -- Chassis Cooling Fan Sensor for FPR2K @@ -3361,6 +3934,32 @@ cevFanFPR1KPSFanSensor OBJECT IDENTIFIER ::= { cevSensor 226 } cevFanFPR2KPSFanSensor OBJECT IDENTIFIER ::= { cevSensor 227 } -- Power Supply Fan Sensor in FPR2K cevFanFPR1KPSTempSensor OBJECT IDENTIFIER ::= { cevSensor 228 } -- Power Supply Temp Sensor in FPR1K cevFanFPR2KPSTempSensor OBJECT IDENTIFIER ::= { cevSensor 229 } -- Power Supply Temp Sensor in FPR2K +cevSensorTransceiverLane1TxPwr OBJECT IDENTIFIER ::= { cevSensor 232 } -- Transceiver Tx Lane 1 power sensor +cevSensorTransceiverLane2TxPwr OBJECT IDENTIFIER ::= { cevSensor 233 } -- Transceiver Tx Lane 2 power sensor +cevSensorTransceiverLane3TxPwr OBJECT IDENTIFIER ::= { cevSensor 234 } -- Transceiver Tx Lane 3 power sensor +cevSensorTransceiverLane4TxPwr OBJECT IDENTIFIER ::= { cevSensor 235 } -- Transceiver Tx Lane 4 power sensor +cevSensorTransceiverLane1RxPwr OBJECT IDENTIFIER ::= { cevSensor 236 } -- Transceiver Rx Lane 1 power sensor +cevSensorTransceiverLane2RxPwr OBJECT IDENTIFIER ::= { cevSensor 237 } -- Transceiver Rx Lane 2 power sensor +cevSensorTransceiverLane3RxPwr OBJECT IDENTIFIER ::= { cevSensor 238 } -- Transceiver Rx Lane 3 power sensor +cevSensorTransceiverLane4RxPwr OBJECT IDENTIFIER ::= { cevSensor 239 } -- Transceiver Rx Lane 4 power sensor +cevSensorModuleExternalTemp1 OBJECT IDENTIFIER ::= { cevSensor 240 } -- Generic module External temperature sensor 1 +cevSensorModuleExternalTemp2 OBJECT IDENTIFIER ::= { cevSensor 241 } -- Generic module External temperature sensor 2 +cevSensorTransceiverLane1Current OBJECT IDENTIFIER ::= { cevSensor 242 } -- cevSensorTransceiverLane1Current - "Lane 1 Bias Current Sensor" +cevSensorTransceiverLane2Current OBJECT IDENTIFIER ::= { cevSensor 243 } -- cevSensorTransceiverLane2Current - "Lane 2 Bias Current Sensor" +cevSensorTransceiverLane3Current OBJECT IDENTIFIER ::= { cevSensor 244 } -- cevSensorTransceiverLane3Current - "Lane 3 Bias Current Sensor" +cevSensorTransceiverLane4Current OBJECT IDENTIFIER ::= { cevSensor 245 } -- cevSensorTransceiverLane4Current - "Lane 4 Bias Current Sensor" +cevSensorTransceiverLane5Current OBJECT IDENTIFIER ::= { cevSensor 246 } -- cevSensorTransceiverLane5Current - "Lane 5 Bias Current Sensor" +cevSensorTransceiverLane6Current OBJECT IDENTIFIER ::= { cevSensor 247 } -- cevSensorTransceiverLane6Current - "Lane 6 Bias Current Sensor" +cevSensorTransceiverLane7Current OBJECT IDENTIFIER ::= { cevSensor 248 } -- cevSensorTransceiverLane7Current - "Lane 7 Bias Current Sensor" +cevSensorTransceiverLane8Current OBJECT IDENTIFIER ::= { cevSensor 249 } -- cevSensorTransceiverLane8Current - "Lane 8 Bias Current Sensor" +cevSensorTransceiverLane5TxPwr OBJECT IDENTIFIER ::= { cevSensor 250 } -- cevSensorTransceiverLane5TxPwr - "Transceiver Tx Lane 5 power sensor" +cevSensorTransceiverLane6TxPwr OBJECT IDENTIFIER ::= { cevSensor 251 } -- cevSensorTransceiverLane6TxPwr - "Transceiver Tx Lane 6 power sensor" +cevSensorTransceiverLane7TxPwr OBJECT IDENTIFIER ::= { cevSensor 252 } -- cevSensorTransceiverLane7TxPwr - "Transceiver Tx Lane 7 power sensor" +cevSensorTransceiverLane8TxPwr OBJECT IDENTIFIER ::= { cevSensor 253 } -- cevSensorTransceiverLane8TxPwr - "Transceiver Tx Lane 8 power sensor" +cevSensorTransceiverLane5RxPwr OBJECT IDENTIFIER ::= { cevSensor 254 } -- cevSensorTransceiverLane5RxPwr - "Transceiver Rx Lane 5 power sensor" +cevSensorTransceiverLane6RxPwr OBJECT IDENTIFIER ::= { cevSensor 255 } -- cevSensorTransceiverLane6RxPwr - "Transceiver Rx Lane 6 power sensor" +cevSensorTransceiverLane7RxPwr OBJECT IDENTIFIER ::= { cevSensor 256 } -- cevSensorTransceiverLane7RxPwr - "Transceiver Rx Lane 7 power sensor" +cevSensorTransceiverLane8RxPwr OBJECT IDENTIFIER ::= { cevSensor 257 } -- cevSensorTransceiverLane8RxPwr - "Transceiver Rx Lane 8 power sensor" cevModule OBJECT IDENTIFIER ::= { cevMIBObjects 9 } @@ -3409,9 +4008,9 @@ cevDfcNp108 OBJECT IDENTIFIER ::= { cevModuleCommonCards 27 } -- Nextport (np) cevWicSerial2as OBJECT IDENTIFIER ::= { cevModuleCommonCards 29 } -- Wan Interface Card with 2 low speed sync/async serial ports for 2600, 3600 series cevWicCsuDsuFT1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 30 } -- Wan Interface Card with 1 Fractional T1 DSU/CSU port for 2600, 3600 series cevIsaIpsecMppe OBJECT IDENTIFIER ::= { cevModuleCommonCards 31 } -- Integrated Service Port Adapter, used in the 7100 and 7200 series as a module, and in the 7500 series as a Port Adapter. Hardware Accelerator for IPSEC Encryption and Compression, and MPPE encryption. May not be used in slot 5 of the 7100. -cevWicDslsar20150 OBJECT IDENTIFIER ::= { cevModuleCommonCards 32 } -- DSLSAR ADSL WIC (Wan Interface Card) used in 1720, 1750, 2600 and 3600 series. DSLSAR - SAR (Segmentation & Reassembly) of ATM cells and can be used with any DSL (Digital Subscriber Line). Uses ADSL (Asymmetric Digital Subscriber Line) as the physical layer. -cevDfc2ce1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 35 } -- 2 Primary Rate Interface (PRI) Channelized E1 (ce1) Dial Feature Card used in AS5350 platform -cevDfcNp60 OBJECT IDENTIFIER ::= { cevModuleCommonCards 37 } -- Nextport (np) Dial Feature Card, supports a total of 60 universal ports per card +cevWicDslsar20150 OBJECT IDENTIFIER ::= { cevModuleCommonCards 32 } -- DSLSAR ADSL WIC (Wan Interface Card) used in 1720, 1750, 2600 and 3600 series. DSLSAR - SAR (Segmentation & Reassembly) of ATM cells and can be used with any DSL (Digital Subscriber Line). Uses ADSL (Asymmetric Digital Subscriber Line) as the physical layer. +cevDfc2ce1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 35 } -- 2 Primary Rate Interface (PRI) Channelized E1 (ce1) Dial Feature Card used in AS5350 platform +cevDfcNp60 OBJECT IDENTIFIER ::= { cevModuleCommonCards 37 } -- Nextport (np) Dial Feature Card, supports a total of 60 universal ports per card cevSpeNp6 OBJECT IDENTIFIER ::= { cevModuleCommonCards 43 } -- NextPort(np) SPE(DSP), supports 6 universal ports per spe cevWvic2dsuT1DIR OBJECT IDENTIFIER ::= { cevModuleCommonCards 47 } -- WAN Voice Interface Cards with a dual port T1 DSU with drop & insert and protection switching relay for MWR1900 cevWvic2dsuE1DIR OBJECT IDENTIFIER ::= { cevModuleCommonCards 48 } -- WAN Voice Interface Cards with a dual port E1 DSU with drop & insert and protection switching relay for MWR1900 @@ -3421,7 +4020,7 @@ cevVic4fxoM2M3 OBJECT IDENTIFIER ::= { cevModuleCommonCards 51 } -- Four port cevVic4fxoCAMA OBJECT IDENTIFIER ::= { cevModuleCommonCards 52 } -- Four port Foreign Exchange Office Voice Interface Card for US/North America with CAMA (Centralized Automated Message Accounting) 911 signalling support (software selectable per port basis) cevWicEthernet OBJECT IDENTIFIER ::= { cevModuleCommonCards 55 } -- WIC-1ENET card for 17xx platforms cevCeSA6DC OBJECT IDENTIFIER ::= { cevModuleCommonCards 56 } -- 6 Slot Storage Array disk shelf for Content Engines. 6 disks. DC power -cevCeSA6AC OBJECT IDENTIFIER ::= { cevModuleCommonCards 57 } -- 6 Slot Storage Array disk shelf for Content Engines. 6 disks. AC power +cevCeSA6AC OBJECT IDENTIFIER ::= { cevModuleCommonCards 57 } -- 6 Slot Storage Array disk shelf for Content Engines. 6 disks. AC power cevCeSA12AC OBJECT IDENTIFIER ::= { cevModuleCommonCards 58 } -- 12 Slot Storage Array disk shelf for Content Engines. 12 disks AC power cevC2610XM1Fe OBJECT IDENTIFIER ::= { cevModuleCommonCards 59 } -- Card with 1 integrated fast ethernet interface with SDRAM for Cisco 2610XM platform cevC2611XM2Fe OBJECT IDENTIFIER ::= { cevModuleCommonCards 60 } -- Card with 2 integrated fast ethernet interfaces with SDRAM for Cisco 2611XM platform @@ -3452,7 +4051,7 @@ cevSpa8pOc12Pos OBJECT IDENTIFIER ::= { cevModuleCommonCards 87 } -- 8-port O cevSpa4pFe7304 OBJECT IDENTIFIER ::= { cevModuleCommonCards 88 } -- 4-port 10/100 Ethernet Shared Port Adapter (SPA-4FE-7304) cevSpa2pGe7304 OBJECT IDENTIFIER ::= { cevModuleCommonCards 89 } -- 2 port 10/100/1000 Ethernet Shared Port Adapter (SPA-2GE-7304) cevWicEswitch4 OBJECT IDENTIFIER ::= { cevModuleCommonCards 90 } -- 4 Ports 10BaseT/100BaseTX Ethernet Switch card -cevWicBri3086u OBJECT IDENTIFIER ::= { cevModuleCommonCards 91 } -- BRI WIC U 3086 +cevWicBri3086u OBJECT IDENTIFIER ::= { cevModuleCommonCards 91 } -- BRI WIC U 3086 cevSpa1pOc192PosRprXfp OBJECT IDENTIFIER ::= { cevModuleCommonCards 92 } -- 1-port OC192c/STM64c POS/RPR XFP Optics Shared Port Adapter (SPA-OC192POS-XFP) cevSpa1pOc192PosRprSmLr OBJECT IDENTIFIER ::= { cevModuleCommonCards 94 } -- 1-port OC192c/STM64c POS/RPR SMLR Optics Shared Port Adapter (SPA-OC192POS-LR) cevSpa1pOc192PosRprVsr OBJECT IDENTIFIER ::= { cevModuleCommonCards 95 } -- 1-port OC192c/STM64c POS/RPR VSR Optics Shared Port Adapter (SPA-OC192POS-VSR) @@ -3473,8 +4072,8 @@ cevSpa5pGe OBJECT IDENTIFIER ::= { cevModuleCommonCards 109 } -- 5-port Gigabi -- Assignment Cancelled. Reuse the OID cevSpa4pOc48PosRprHH OBJECT IDENTIFIER ::= { cevModuleCommonCards 113 } 4-port OC48/STM16 POS/RPR Shared Port Adapter -- Assignment Cancelled. Reuse the OID cevSpa8pOc3Oc12Pos OBJECT IDENTIFIER ::= { cevModuleCommonCards 114 } 8-port OC3/STM1 OC12/STM4 POS Shared Port Adapter cevSpa2pGe OBJECT IDENTIFIER ::= { cevModuleCommonCards 115 } -- 2-port Gigabit Ethernet Shared Port Adapter (SPA-2X1GE) -cevCompactFlash64MB OBJECT IDENTIFIER ::= { cevModuleCommonCards 116 } -- 64MB compact flash disk -cevCompactFlash128MB OBJECT IDENTIFIER ::= { cevModuleCommonCards 117 } -- 128MB compact flash disk +cevCompactFlash64MB OBJECT IDENTIFIER ::= { cevModuleCommonCards 116 } -- 64MB compact flash disk +cevCompactFlash128MB OBJECT IDENTIFIER ::= { cevModuleCommonCards 117 } -- 128MB compact flash disk cevCompactFlash256MB OBJECT IDENTIFIER ::= { cevModuleCommonCards 118 } -- 256MB compact flash disk cevCompactFlash512MB OBJECT IDENTIFIER ::= { cevModuleCommonCards 119 } -- 512MB compact flash disk cevCompactFlash OBJECT IDENTIFIER ::= { cevModuleCommonCards 120 } -- Compact Flash @@ -3542,7 +4141,7 @@ cevHwicBri4bST OBJECT IDENTIFIER ::= { cevModuleCommonCards 184 } -- HWIC-4B-S cevModuleCrs1RPB OBJECT IDENTIFIER ::= { cevModuleCommonCards 185 } -- Cisco CRS-1 Series 16 Slots Route Processor revision B cevModuleCrs1FccSCGe OBJECT IDENTIFIER ::= { cevModuleCommonCards 186 } -- Cisco CRS-1 Series FCC Shelf Controller and GE Switch cevModuleCrs1SPAInfCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 187 } -- Cisco Carrier Routing System SPA Interface Processor Card -cevModule4OC192DptIr OBJECT IDENTIFIER ::= { cevModuleCommonCards 188 } -- Cisco CRS-1 4xOC-192/STM-64 DPT Interface Module/IR +cevModule4OC192DptIr OBJECT IDENTIFIER ::= { cevModuleCommonCards 188 } -- Cisco CRS-1 4xOC-192/STM-64 DPT Interface Module/IR cevModuleCrs116mFabricCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 189 } -- Cisco CRS-1 Series 16 Slots Fabric Card / Multi cevHwicAdslPotsAnnexM OBJECT IDENTIFIER ::= { cevModuleCommonCards 190 } -- ADSL Annex M over POTS cevSpa4pOc3PosV2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 191 } -- 4-port OC-3c/STM1c POS Shared Port Adapter (SPA-4XOC3-POS-V2) @@ -3562,10 +4161,10 @@ cevSpa1xOC3AtmV2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 204 } -- 1-p cevSpa2xOC3AtmV2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 205 } -- 2-port OC3c SFP Optics ATM Shared Port Adapter cevSpa3xOC3AtmV2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 206 } -- 3-port OC3c SFP Optics ATM Shared Port Adapter cevSpa1xOC12AtmV2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 207 } -- 1-port OC12c SFP Optics ATM Shared Port Adapter -cevNmTransOptSrvcEng1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 208 } -- Transport Performance Optimization NM Module (1GB DDRII) for Modular and Integrated Services Routers -cevAimTransOptSrvcEng1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 209 } -- Transport Performance Optimization AIM Module(512MB DDRII) for Modular and Integrated Services Routers -cevNmTransOptSrvcEng2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 210 } -- Transport Performance Optimization NM Module for Modular and Integrated Services Routers -cevAimTransOptSrvcEng2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 211 } -- Transport Performance Optimization AIM Module(1GB DDRII) for Modular and Integrated Services Routers +cevNmTransOptSrvcEng1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 208 } -- Transport Performance Optimization NM Module (1GB DDRII) for Modular and Integrated Services Routers +cevAimTransOptSrvcEng1 OBJECT IDENTIFIER ::= { cevModuleCommonCards 209 } -- Transport Performance Optimization AIM Module(512MB DDRII) for Modular and Integrated Services Routers +cevNmTransOptSrvcEng2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 210 } -- Transport Performance Optimization NM Module for Modular and Integrated Services Routers +cevAimTransOptSrvcEng2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 211 } -- Transport Performance Optimization AIM Module(1GB DDRII) for Modular and Integrated Services Routers cevOnboardSe OBJECT IDENTIFIER ::= { cevModuleCommonCards 212 } -- On-board Integrated Service Engine cevAimIpsK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 213 } -- Cisco Intrusion Proctection System AIM Adapter cevNmeApaModule OBJECT IDENTIFIER ::= { cevModuleCommonCards 214 } -- Integrated Service Engine for Application Performance Assurance. @@ -3606,13 +4205,13 @@ cevNmeVmssHp16 OBJECT IDENTIFIER ::= { cevModuleCommonCards 253 cevNmeVmss16 OBJECT IDENTIFIER ::= { cevModuleCommonCards 254 } -- Video Management and Storage System 16 streams 120GB HDD cevNamWaasVirtualBlade OBJECT IDENTIFIER ::= { cevModuleCommonCards 260 } -- Cisco Network Analysis Module (NAM) Virtual Blade on WAAS appliance cevSpaDsp OBJECT IDENTIFIER ::= { cevModuleCommonCards 273 } -- Digital Signal Processing Shared Port Adapter (SPA-DSP) -cevModuleCrs4S140GFabricCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 274 } -- Cisco CRS Series 4 Slots Fabric Card / Single (140G) +cevModuleCrs4S140GFabricCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 274 } -- Cisco CRS Series 4 Slots Fabric Card / Single (140G) cevModuleCrs8S140GFabricCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 275 } -- Cisco CRS Series 8 Slots Fabric Card / Single (140G) cevModuleCrs16S140GFabricCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 276 } -- Cisco CRS Series 16 Slots Fabric Card / Single (140G) cevModuleCrs16S140GFabricCardMulti OBJECT IDENTIFIER ::= { cevModuleCommonCards 277 } -- Cisco CRS Series 16 Slots Fabric Card / Multi (140G) cevModuleCrs1140GFCCSFC OBJECT IDENTIFIER ::= { cevModuleCommonCards 278 } -- Cisco CRS Series Fabric Card Chassis Switch Fabric Card (140G) -cevC3KxNm1g OBJECT IDENTIFIER ::= { cevModuleCommonCards 279 } -- 4-Port SFP FRULink Module -cevC3KxNm10g OBJECT IDENTIFIER ::= { cevModuleCommonCards 280 } -- 2-Port SFP + 2-Port SFP/SFP+ FRULink Module +cevC3KxNm1g OBJECT IDENTIFIER ::= { cevModuleCommonCards 279 } -- 4-Port SFP FRULink Module +cevC3KxNm10g OBJECT IDENTIFIER ::= { cevModuleCommonCards 280 } -- 2-Port SFP + 2-Port SFP/SFP+ FRULink Module cevHwic2tC OBJECT IDENTIFIER ::= { cevModuleCommonCards 282 } -- High speed Wan Interface Card - Serial (2T) cevHwic1tC OBJECT IDENTIFIER ::= { cevModuleCommonCards 283 } -- High speed Wan Interface Card - Serial (1T) cevHwic4fesC OBJECT IDENTIFIER ::= { cevModuleCommonCards 284 } -- HWIC 4 Port Fast Ethernet Switch Cards @@ -3699,27 +4298,27 @@ cevWaveSc10Ge4Sfp OBJECT IDENTIFIER ::= { cevModuleCommonCards 38 cevWaveApnvGe12T OBJECT IDENTIFIER ::= { cevModuleCommonCards 388 } -- AppNav IOM for WAVE - 12 port Gigabit Ethernet copper cevWaveApnvGe12Sfp OBJECT IDENTIFIER ::= { cevModuleCommonCards 389 } -- AppNav IOM for WAVE - 12 port Gigabit Ethernet SFP cevWaveApnv10Ge4Sfp OBJECT IDENTIFIER ::= { cevModuleCommonCards 390 } -- AppNav IOM for WAVE-594 - 4 port 10 Gigabit Ethernet SFP+ -cevModuleNCSFCS OBJECT IDENTIFIER ::= { cevModuleCommonCards 403 } -- NCS 6008 Fabric Card -cevModuleNCS10X100GMK OBJECT IDENTIFIER ::= { cevModuleCommonCards 404 } -- NCS 6000 10x100G Multi-Service CPAK -cevModuleNCS10X100GMP OBJECT IDENTIFIER ::= { cevModuleCommonCards 405 } -- NCS 6000 10x100G Multi-Service CXP +cevModuleNCSFCS OBJECT IDENTIFIER ::= { cevModuleCommonCards 403 } -- NCS 6008 Fabric Card +cevModuleNCS10X100GMK OBJECT IDENTIFIER ::= { cevModuleCommonCards 404 } -- NCS 6000 10x100G Multi-Service CPAK +cevModuleNCS10X100GMP OBJECT IDENTIFIER ::= { cevModuleCommonCards 405 } -- NCS 6000 10x100G Multi-Service CXP cevModuleNCSRP OBJECT IDENTIFIER ::= { cevModuleCommonCards 406 } -- NCS 6008 Route Processor cevIM14pSerial OBJECT IDENTIFIER ::= { cevModuleCommonCards 407 } -- 14 port serial interface module with 8 async and 6 sync/async ports -cevModuleNCSCRFT OBJECT IDENTIFIER ::= { cevModuleCommonCards 413 } -- NCS Craft Panel Display Kit -cevModuleCommonCardsPSEASIC OBJECT IDENTIFIER ::= { cevModuleCommonCards 414 } -- Cisco Linecard PSE ASIC -cevModuleCommonCardsFIA OBJECT IDENTIFIER ::= { cevModuleCommonCards 415 } -- Cisco Fabric Interface Access ASIC -cevModulePowerController OBJECT IDENTIFIER ::= { cevModuleCommonCards 418 } -- NCS 6008 Power Control Module -cevModuleDIMM OBJECT IDENTIFIER ::= { cevModuleCommonCards 419 } -- DIMM for CPU -cevModuleNCS10X100GLP OBJECT IDENTIFIER ::= { cevModuleCommonCards 420 } -- NCS 6000 10x100G LSR CXP -cevModuleNCS10X100GLK OBJECT IDENTIFIER ::= { cevModuleCommonCards 421 } -- NCS 6000 10x100G LSR CPAK +cevModuleNCSCRFT OBJECT IDENTIFIER ::= { cevModuleCommonCards 413 } -- NCS Craft Panel Display Kit +cevModuleCommonCardsPSEASIC OBJECT IDENTIFIER ::= { cevModuleCommonCards 414 } -- Cisco Linecard PSE ASIC +cevModuleCommonCardsFIA OBJECT IDENTIFIER ::= { cevModuleCommonCards 415 } -- Cisco Fabric Interface Access ASIC +cevModulePowerController OBJECT IDENTIFIER ::= { cevModuleCommonCards 418 } -- NCS 6008 Power Control Module +cevModuleDIMM OBJECT IDENTIFIER ::= { cevModuleCommonCards 419 } -- DIMM for CPU +cevModuleNCS10X100GLP OBJECT IDENTIFIER ::= { cevModuleCommonCards 420 } -- NCS 6000 10x100G LSR CXP +cevModuleNCS10X100GLK OBJECT IDENTIFIER ::= { cevModuleCommonCards 421 } -- NCS 6000 10x100G LSR CPAK cevModuleFPD OBJECT IDENTIFIER ::= { cevModuleCommonCards 422 } -- Field Programmable Device Module -cevModuleI2CMUX OBJECT IDENTIFIER ::= { cevModuleCommonCards 423 } -- Inter Integrated Circuit -cevModulePCIESwitch OBJECT IDENTIFIER ::= { cevModuleCommonCards 424 } -- Peripheral Component Interconnect Express Switch -cevModuleStorage OBJECT IDENTIFIER ::= { cevModuleCommonCards 425 } -- Data Storage Device -cevModuleControlSwitch OBJECT IDENTIFIER ::= { cevModuleCommonCards 426 } -- Control traffic Switch +cevModuleI2CMUX OBJECT IDENTIFIER ::= { cevModuleCommonCards 423 } -- Inter Integrated Circuit +cevModulePCIESwitch OBJECT IDENTIFIER ::= { cevModuleCommonCards 424 } -- Peripheral Component Interconnect Express Switch +cevModuleStorage OBJECT IDENTIFIER ::= { cevModuleCommonCards 425 } -- Data Storage Device +cevModuleControlSwitch OBJECT IDENTIFIER ::= { cevModuleCommonCards 426 } -- Control traffic Switch cevModuleC3KxNm4x10g OBJECT IDENTIFIER ::= { cevModuleCommonCards 427 } -- 4-Port SFP/SFP+ FRULink Module cevModuleNCS4K20TOS OBJECT IDENTIFIER ::= { cevModuleCommonCards 428 } -- NCS 4016 20x10GE OTN LC -cevModuleNC6410X100GMK OBJECT IDENTIFIER ::= { cevModuleCommonCards 429 } -- NCS 6000 4x100G Multi-Service CPAK PAYG (To 10-Port) -cevModuleNC6610X100GLK OBJECT IDENTIFIER ::= { cevModuleCommonCards 430 } -- NCS 6000 6x100G LSR CPAK PAYG (To 10-Port) +cevModuleNC6410X100GMK OBJECT IDENTIFIER ::= { cevModuleCommonCards 429 } -- NCS 6000 4x100G Multi-Service CPAK PAYG (To 10-Port) +cevModuleNC6610X100GLK OBJECT IDENTIFIER ::= { cevModuleCommonCards 430 } -- NCS 6000 6x100G LSR CPAK PAYG (To 10-Port) cevModuleNCS4KTSP OBJECT IDENTIFIER ::= { cevModuleCommonCards 431 } -- NCS 4016 Route Processor cevModuleNCS4KFCM OBJECT IDENTIFIER ::= { cevModuleCommonCards 432 } -- NCS 4016 Fabric Card Multi Chassis cevModuleNCS4KFCS OBJECT IDENTIFIER ::= { cevModuleCommonCards 433 } -- NCS 4016 Fabric Card Single Chassis @@ -3761,25 +4360,25 @@ cevPHwic2as OBJECT IDENTIFIER ::= { cevModuleCommonC cevPHwic2Fe OBJECT IDENTIFIER ::= { cevModuleCommonCards 478 } -- Two 10/100 routed port HWIC cevPHwic2t OBJECT IDENTIFIER ::= { cevModuleCommonCards 479 } -- 2-Port Serial WAN Interface Card cevPIsmSre300K9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 480 } -- Internal Services Module (ISM) with Services Ready Engine -cevSpa14pSaSerial OBJECT IDENTIFIER ::= { cevModuleCommonCards 481 } -- 14-port Sync/Async Serial Shared Port Adapter (SPA-14P-SA-SERIAL) +cevSpa14pSaSerial OBJECT IDENTIFIER ::= { cevModuleCommonCards 481 } -- 14-port Sync/Async Serial Shared Port Adapter (SPA-14P-SA-SERIAL) cevModuleCrs1FccSc22GeB OBJECT IDENTIFIER ::= { cevModuleCommonCards 483 } -- Cisco CRS Next Generation Fabric Chassis Integrated Switch Controller Card. -cevPEhwicVaMMDslA OBJECT IDENTIFIER ::= { cevModuleCommonCards 484 } -- Multi Mode Annex A DSL Card -cevPEhwicVaMMDslM OBJECT IDENTIFIER ::= { cevModuleCommonCards 485 } -- Multi Mode Annex M DSL Card -cevSPA1XOC12PS OBJECT IDENTIFIER ::= { cevModuleCommonCards 486 } -- 1-port OC12/STM-4 POS Shared Port Adapter +cevPEhwicVaMMDslA OBJECT IDENTIFIER ::= { cevModuleCommonCards 484 } -- Multi Mode Annex A DSL Card +cevPEhwicVaMMDslM OBJECT IDENTIFIER ::= { cevModuleCommonCards 485 } -- Multi Mode Annex M DSL Card +cevSPA1XOC12PS OBJECT IDENTIFIER ::= { cevModuleCommonCards 486 } -- 1-port OC12/STM-4 POS Shared Port Adapter cevModuleNCSFSCSW OBJECT IDENTIFIER ::= { cevModuleCommonCards 487 } -- Cisco PANINI Series FC Chassis Integrated Switch Controller cevModuleNCSFSC OBJECT IDENTIFIER ::= { cevModuleCommonCards 488 } -- Cisco PANINI Series FC Chassis Shelf Controller -cevModuleNCSFFC OBJECT IDENTIFIER ::= { cevModuleCommonCards 489 } -- Cisco PANINI Series FC Chassis S2 Fabric Card +cevModuleNCSFFC OBJECT IDENTIFIER ::= { cevModuleCommonCards 489 } -- Cisco PANINI Series FC Chassis S2 Fabric Card cevModuleNC6FCMC OBJECT IDENTIFIER ::= { cevModuleCommonCards 490 } -- NCS 6008 Fabric Card / Multi-Chassis cevModuleA900IMA8S1Z OBJECT IDENTIFIER ::= { cevModuleCommonCards 491 } -- 8-port Gigabit Ethernet & 1-port Ten Gigabit Ethernet SFP Interface Module cevModuleA900IMA8T1Z OBJECT IDENTIFIER ::= { cevModuleCommonCards 492 } -- 8-port Gigabit Ethernet & 1-port Ten Gigabit Ethernet CU Interface Module cevModuleA900IMA2Z OBJECT IDENTIFIER ::= { cevModuleCommonCards 493 } -- 2-port Ten Gigabit Ethernet XFP/SFP+ Interface Module -cevModuleNCS4009FCS OBJECT IDENTIFIER ::= { cevModuleCommonCards 494 } -- NCS 4009 Agnostic Cross connect - Single-chassis +cevModuleNCS4009FCS OBJECT IDENTIFIER ::= { cevModuleCommonCards 494 } -- NCS 4009 Agnostic Cross connect - Single-chassis cevModuleNCS4KEthContMod OBJECT IDENTIFIER ::= { cevModuleCommonCards 495 } -- NCS4k Ethernet Controller Module cevModuleNCS4KProcContHub OBJECT IDENTIFIER ::= { cevModuleCommonCards 496 } -- NCS4k Processor Controller Hub Module cevModuleNCS4KCPU OBJECT IDENTIFIER ::= { cevModuleCommonCards 497 } -- NCS4k CPU Module cevModuleNCS4KDaughterboard OBJECT IDENTIFIER ::= { cevModuleCommonCards 498 } -- NCS4k Daughterboard Module cevModuleNCS4KMotherboard OBJECT IDENTIFIER ::= { cevModuleCommonCards 499 } -- NCS4k Motherboard Module -cevModuleNCS4KASIC OBJECT IDENTIFIER ::= { cevModuleCommonCards 500 } -- NCS4k ASIC Module +cevModuleNCS4KASIC OBJECT IDENTIFIER ::= { cevModuleCommonCards 500 } -- NCS4k ASIC Module cevModuleNCS4KGENNUM OBJECT IDENTIFIER ::= { cevModuleCommonCards 501 } -- NCS4k GENNUM Module cevModuleNCS4KEAGLE OBJECT IDENTIFIER ::= { cevModuleCommonCards 502 } -- NCS4k Eagle Module cevModuleNCS4KGEARBOX OBJECT IDENTIFIER ::= { cevModuleCommonCards 503 } -- NCS4k GEARBOX Module @@ -3787,7 +4386,7 @@ cevModuleNCS4KCRFT OBJECT IDENTIFIER ::= { cevModuleCommonC cevModuleNCSFCB2B OBJECT IDENTIFIER ::= { cevModuleCommonCards 505 } -- It is Back-to-Back Fabric Card for NCS Chassis cevModuleNCSSfpPlusOpticsMod OBJECT IDENTIFIER ::= { cevModuleCommonCards 506 } -- Cisco NCS6K 10GE SFP+ Pluggable Optics Module cevModuleNCS6KSRTCAM OBJECT IDENTIFIER ::= { cevModuleCommonCards 507 } -- NCS6K Pat SFP Serial TCAM -cevModuleNCS6K210X100GMK OBJECT IDENTIFIER ::= { cevModuleCommonCards 508 } -- NCS6K 2X100GE MS PAYG Card with CPAK +cevModuleNCS6K210X100GMK OBJECT IDENTIFIER ::= { cevModuleCommonCards 508 } -- NCS6K 2X100GE MS PAYG Card with CPAK cevModuleNCS6K210X100GLK OBJECT IDENTIFIER ::= { cevModuleCommonCards 509 } -- NCS6K 2X100GE LSR PAYG Card with CPAK cevModuleNCS6K230X10GMS OBJECT IDENTIFIER ::= { cevModuleCommonCards 510 } -- NCS6K 30x10GE MS PAYG Card with SFPP cevModuleNCS6K230X10GLS OBJECT IDENTIFIER ::= { cevModuleCommonCards 511 } -- NCS6K 30x10GE LSR PAYG Card with SFPP @@ -3798,23 +4397,23 @@ cevModuleSPAETHER12xGE2x10GEDUAL OBJECT IDENTIFIER ::= { cevModuleCommonC cevModuleSPAETHER2xGE4x10GEDUAL OBJECT IDENTIFIER ::= { cevModuleCommonCards 516 } -- 2-port Gig & 4-port Ten Gig Dual Ethernet Interface Module cevModuleSPAETHER10xGE2x10GEDUAL OBJECT IDENTIFIER ::= { cevModuleCommonCards 517 } -- 10-port Gig & 2-port Ten Gig Dual Ethernet Interface Module cevModuleA900IMA32D OBJECT IDENTIFIER ::= { cevModuleCommonCards 518 } -- 32-port T1/E1 Interface Module -cevModuleA900IMA8D OBJECT IDENTIFIER ::= { cevModuleCommonCards 519 } -- 8-port T1/E1 Interface Module +cevModuleA900IMA8D OBJECT IDENTIFIER ::= { cevModuleCommonCards 519 } -- 8-port T1/E1 Interface Module cevModuleC3KxNm8x10g OBJECT IDENTIFIER ::= { cevModuleCommonCards 521 } -- 8-Port SFP/SFP+ FRULink Module cevModuleC3KxNm2x40g OBJECT IDENTIFIER ::= { cevModuleCommonCards 522 } -- 2-Port QSFP FRULink Module cevCVRCFP2CPAK10 OBJECT IDENTIFIER ::= { cevModuleCommonCards 530 } -- CFP2 to CPAK adapter for 10x10G interface cevCVRCFP2CPAK4 OBJECT IDENTIFIER ::= { cevModuleCommonCards 531 } -- CFP2 to CPAK adapter for 4x25G interface cevCVR4SFP10GQSFP OBJECT IDENTIFIER ::= { cevModuleCommonCards 532 } -- 4-port SFP+ to QSFP adapter cevModuleNC55RP OBJECT IDENTIFIER ::= { cevModuleCommonCards 533 } -- NCS-5508 chassis's RP (Supervisor) card -cevModuleNC55SC OBJECT IDENTIFIER ::= { cevModuleCommonCards 534 } -- NCS-5508 chassis's SC (System Controller) card +cevModuleNC55SC OBJECT IDENTIFIER ::= { cevModuleCommonCards 534 } -- NCS-5508 chassis's SC (System Controller) card cevModuleNC55LC36X100G OBJECT IDENTIFIER ::= { cevModuleCommonCards 535 } -- NCS 5500 36x100G Line Card -cevModuleNC55FC OBJECT IDENTIFIER ::= { cevModuleCommonCards 536 } -- NCS 5508 Fabric Card -cevModuleNCS4K2HOPWC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 537 } -- NCS 4000 200G WDM wPacket/OTN - 2xCFP2 based - Line Card +cevModuleNC55FC OBJECT IDENTIFIER ::= { cevModuleCommonCards 536 } -- NCS 5508 Fabric Card +cevModuleNCS4K2HOPWC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 537 } -- NCS 4000 200G WDM wPacket/OTN - 2xCFP2 based - Line Card cevMpa20X10GE OBJECT IDENTIFIER ::= { cevModuleCommonCards 545 } -- ASR 9000 20-port 10GE Modular Port Adapter cevModuleNC6FCU OBJECT IDENTIFIER ::= { cevModuleCommonCards 546 } -- NCS 6008 Fabric Card Universal cevModuleNcs5000RP OBJECT IDENTIFIER ::= { cevModuleCommonCards 547 } -- NCS 5000 series Route Processor cevModuleNcs4016FC2M OBJECT IDENTIFIER ::= { cevModuleCommonCards 548 } -- NCS 4016 Agnostic Cross Connect - Multichassis - V2 cevModuleNcs4K4HOPK OBJECT IDENTIFIER ::= { cevModuleCommonCards 549 } -- NCS 4000 4x100 CPAK OTN/Packet Line Card -cevModuleNC620x100GEMC OBJECT IDENTIFIER ::= { cevModuleCommonCards 550 } -- NCS6000 20x100GE MS Linecard Combo Optics. MS: Multi-Service NCS: Network Convergence System +cevModuleNC620x100GEMC OBJECT IDENTIFIER ::= { cevModuleCommonCards 550 } -- NCS6000 20x100GE MS Linecard Combo Optics. MS: Multi-Service NCS: Network Convergence System cevModuleNC6FanTray2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 551 } -- NCS6208 Chassis Fan Tray (2nd Gen support) NCS: Network Convergence System cevModuleCVRCPAKQSFP40 OBJECT IDENTIFIER ::= { cevModuleCommonCards 552 } -- CPAK to QSFP40G adapter cevModuleNCS4009FC2S OBJECT IDENTIFIER ::= { cevModuleCommonCards 553 } -- NCS4009 FC2 S123 card @@ -3846,28 +4445,29 @@ cevModuleNC55LC18X100GS OBJECT IDENTIFIER ::= { cevModuleCommonC cevModuleNCS42004T12GPS OBJECT IDENTIFIER ::= { cevModuleCommonCards 605 } -- NCS 4200 12-port Gig & 4-port Ten Gig Ethernet Interface Module cevModuleA900IMA1Z8SC OBJECT IDENTIFIER ::= { cevModuleCommonCards 607 } -- 8-port OCx48/1xGE and 1-port OCx192/10GE Interface Module cevModuleSPAETHER12XGE4X10GE OBJECT IDENTIFIER ::= { cevModuleCommonCards 608 } -- 12-port Gig & 4-port Ten Gig Dual Ethernet Interface Module -cevMpa20X10GECM OBJECT IDENTIFIER ::= { cevModuleCommonCards 609 } -- ASR 9000 20x10GE Consumption Model MPA -cevMpa2X100GECM OBJECT IDENTIFIER ::= { cevModuleCommonCards 610 } -- ASR 9000 2x100GE Consumption Model MPA +cevMpa20X10GECM OBJECT IDENTIFIER ::= { cevModuleCommonCards 609 } -- ASR 9000 20x10GE Consumption Model MPA +cevMpa2X100GECM OBJECT IDENTIFIER ::= { cevModuleCommonCards 610 } -- ASR 9000 2x100GE Consumption Model MPA cevModuleFprUS23070 OBJECT IDENTIFIER ::= { cevModuleCommonCards 612 } -- 8x1GE multi-mode copper EPM with programmable fail-to-wire (FTW) functionality -cevModuleFprUS23071 OBJECT IDENTIFIER ::= { cevModuleCommonCards 613 } -- 8x1GE SX Fiber EPM with programmable fail-to-wire (FTW) functionality -cevModuleNCS4K4HOPWQC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 614 } -- NCS 4000 400G Packet/OTN/WDM - QSFP28/CFP2 - Line Card -cevModuleNCS4K4HOPWLP OBJECT IDENTIFIER ::= { cevModuleCommonCards 615 } -- NCS 4000 400G Packet/OTN/WDM - QSFP28/CFP2 - Lic. 100G Packet -cevModuleNCS4K4HOPWL OBJECT IDENTIFIER ::= { cevModuleCommonCards 616 } -- NCS 4000 400G Packet/OTN/WDM - QSFP28/CFP2 - Lic. 100G OTN +cevModuleFprUS23071 OBJECT IDENTIFIER ::= { cevModuleCommonCards 613 } -- 8x1GE SX Fiber EPM with programmable fail-to-wire (FTW) functionality +cevModuleNCS4K4HOPWQC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 614 } -- NCS 4000 400G Packet/OTN/WDM - QSFP28/CFP2 - Line Card +cevModuleNCS4K4HOPWLP OBJECT IDENTIFIER ::= { cevModuleCommonCards 615 } -- NCS 4000 400G Packet/OTN/WDM - QSFP28/CFP2 - Lic. 100G Packet +cevModuleNCS4K4HOPWL OBJECT IDENTIFIER ::= { cevModuleCommonCards 616 } -- NCS 4000 400G Packet/OTN/WDM - QSFP28/CFP2 - Lic. 100G OTN +cevModuleNC55RPE OBJECT IDENTIFIER ::= { cevModuleCommonCards 617 } -- NCS 5500 Route Processor with SyncE cevModuleN9KX9636CR OBJECT IDENTIFIER ::= { cevModuleCommonCards 619 } -- Nexus 9000 series module with 36x100G ports cevModuleN9KX9636QR OBJECT IDENTIFIER ::= { cevModuleCommonCards 620 } -- Nexus 9000 series module with 36x40G ports cevModuleN9KC9508FMR OBJECT IDENTIFIER ::= { cevModuleCommonCards 621 } -- Nexus 9000 series fabric module for 8-slot chassis cevModuleN9KC9504FMR OBJECT IDENTIFIER ::= { cevModuleCommonCards 622 } -- Nexus 9000 series fabric module for 4-slot chassis -cevCVRQSFPSFP10G OBJECT IDENTIFIER ::= { cevModuleCommonCards 624 } -- QSFP to SFP10G adapter +cevCVRQSFPSFP10G OBJECT IDENTIFIER ::= { cevModuleCommonCards 624 } -- QSFP to SFP10G adapter cevModuleNCS5501A1SE OBJECT IDENTIFIER ::= { cevModuleCommonCards 625 } -- NC5501-2 SE Route Processor Card for Fixed Fretta router , contact team-padbalas -cevModuleC9500NM8X10G OBJECT IDENTIFIER ::= { cevModuleCommonCards 631 } -- Catalyst 9500 8P 10G Network Module -cevModuleC9500NM2X40G OBJECT IDENTIFIER ::= { cevModuleCommonCards 632 } -- Catalyst 9500 2P 40G Network Module -cevModuleNCS42003GMS OBJECT IDENTIFIER ::= { cevModuleCommonCards 633 } -- Combo 4 port DS3 12 DS1 and 4 OCx -cevModuleNCS4KFRPMC OBJECT IDENTIFIER ::= { cevModuleCommonCards 634 } -- NCS 4000 RP w/ Ethernet Switch for Multi-chassis Connect -cevModuleNCS4KFFC2C OBJECT IDENTIFIER ::= { cevModuleCommonCards 635 } -- NCS 4000 Centralised Agnostic Xross connect 24 CXP2 - 400G +cevModuleC9500NM8X10G OBJECT IDENTIFIER ::= { cevModuleCommonCards 631 } -- Catalyst 9500 8P 10G Network Module +cevModuleC9500NM2X40G OBJECT IDENTIFIER ::= { cevModuleCommonCards 632 } -- Catalyst 9500 2P 40G Network Module +cevModuleNCS42003GMS OBJECT IDENTIFIER ::= { cevModuleCommonCards 633 } -- Combo 4 port DS3 12 DS1 and 4 OCx +cevModuleNCS4KFRPMC OBJECT IDENTIFIER ::= { cevModuleCommonCards 634 } -- NCS 4000 RP w/ Ethernet Switch for Multi-chassis Connect +cevModuleNCS4KFFC2C OBJECT IDENTIFIER ::= { cevModuleCommonCards 635 } -- NCS 4000 Centralised Agnostic Xross connect 24 CXP2 - 400G cevModuleNCS4KFCraft OBJECT IDENTIFIER ::= { cevModuleCommonCards 636 } -- NCS 4000 Centralised Fabric Chassis Craft Panel -cevModuleA900IMA3GIMSG OBJECT IDENTIFIER ::= { cevModuleCommonCards 637 } -- ASR900 Combo 4 port DS3 12 DS1 and 4 OCx -cevModuleNCS1001EDFA OBJECT IDENTIFIER ::= { cevModuleCommonCards 638 } -- Cisco NCS1001 EDFA Optical Module -cevModuleNCS1001PSM OBJECT IDENTIFIER ::= { cevModuleCommonCards 639 } -- Cisco NCS1001 PSM Optical Module +cevModuleA900IMA3GIMSG OBJECT IDENTIFIER ::= { cevModuleCommonCards 637 } -- ASR900 Combo 4 port DS3 12 DS1 and 4 OCx +cevModuleNCS1001EDFA OBJECT IDENTIFIER ::= { cevModuleCommonCards 638 } -- Cisco NCS1001 EDFA Optical Module +cevModuleNCS1001PSM OBJECT IDENTIFIER ::= { cevModuleCommonCards 639 } -- Cisco NCS1001 PSM Optical Module cevModuleNCS1001InterBoard OBJECT IDENTIFIER ::= { cevModuleCommonCards 640 } -- Cisco NCS1001 Interconnected Card cevModuleNCS4KECU2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 641 } -- NCS 4000 External Connection Unit cevModuleNCS4009FC2SF OBJECT IDENTIFIER ::= { cevModuleCommonCards 642 } -- NCS4009 FC2 S123 card with Fan (Glaurung2) @@ -3882,10 +4482,28 @@ cevModuleNC55MODABM OBJECT IDENTIFIER ::= { cevModuleCommonC cevModuleNC55MODASM OBJECT IDENTIFIER ::= { cevModuleCommonCards 652 } -- NCS 5500 36X10G SFP & 2x40G QSFP & 2xMPA MACsec Base Scaled Line Card cevModuleSPAETHER4xGE4x10GEDUAL OBJECT IDENTIFIER ::= { cevModuleCommonCards 653 } -- 4-port Gig & 4-port Ten Gig Dual Ethernet Interface Module cevModuleSPAETHER20xGE4x10GEDUAL OBJECT IDENTIFIER ::= { cevModuleCommonCards 654 } -- 20-port Gig & 4-port Ten Gig Dual Ethernet Interface Module -cevModuleNC6FC2TMCRIGEL OBJECT IDENTIFIER ::= { cevModuleCommonCards 655 } -- NCS 6000 2T MC Rigel Fabric Card. NCS: Network Convergence System MC: Multi-Chassis +cevModuleNC6FC2TMCRIGEL OBJECT IDENTIFIER ::= { cevModuleCommonCards 655 } -- NCS 6000 2T MC Rigel Fabric Card. NCS: Network Convergence System MC: Multi-Chassis +cevModuleNC5516FC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 656 } -- NCS 5516 Fabric Card 2 NCS: Network Convergence System Fretta Fabric Card version 2 +cevModule8800LC36H4 OBJECT IDENTIFIER ::= { cevModuleCommonCards 657 } -- Cisco 8800 L36x400GE QSFP56-DD Line Card +cevModule8800LC48H OBJECT IDENTIFIER ::= { cevModuleCommonCards 658 } -- Cisco 8800 48x100GE QSFP28 Line Card +cevModule8818FC OBJECT IDENTIFIER ::= { cevModuleCommonCards 659 } -- Cisco 8818 Fabric Card +cevModule8812FC OBJECT IDENTIFIER ::= { cevModuleCommonCards 660 } -- Cisco 8812 Fabric Card +cevModule8808FC OBJECT IDENTIFIER ::= { cevModuleCommonCards 661 } -- Cisco 8808 Fabric Card +cevModule8800RP OBJECT IDENTIFIER ::= { cevModuleCommonCards 663 } -- Cisco 8800 Route Processor cevModuleN9KX96136YCR OBJECT IDENTIFIER ::= { cevModuleCommonCards 664 } -- Nexus 9000 series module with 16x10G SFP, 32x25G SFP ports and 4x100G QSFP ports +cevNC55MpaRainbow OBJECT IDENTIFIER ::= { cevModuleCommonCards 665 } -- NCS5500 1-port of 100GE or 200GE and 2 -port 40GE or 100GE Module Port Adapter with CFP2, QSFP28, MACsec support +cevNC55MpaColumbia OBJECT IDENTIFIER ::= { cevModuleCommonCards 666 } -- NCS5500 4-port 40GE or 100GE Module Port Adapter with QSFP28, MACsec support +cevNC55MpaCrowfoot OBJECT IDENTIFIER ::= { cevModuleCommonCards 667 } -- NCS5500 12-port 1GE or 10GE Module Port Adapter with OTN, WAN PHY, MACsec and DWDM support +cevNC55MpaBow OBJECT IDENTIFIER ::= { cevModuleCommonCards 668 } -- NCS5500 2-port 100GE or 200GE Module Port Adapter with port type CFP2_DCO or MACsec +cevNC5508FC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 669 } -- NCS 5508 Fabric Card 2(NC55-5508-FC2) NCS Fretta Fabric Card version 2 +cevN560IMA2C OBJECT IDENTIFIER ::= { cevModuleCommonCards 670 } -- Cisco NCS 560 2-port 100GE Interface Module, QSFP28 optics +cevN560RSP4E OBJECT IDENTIFIER ::= { cevModuleCommonCards 671 } -- Cisco NCS 560 Route Switch Processor 4 Enhanced - 800G, XL Scale +cevN560RSP4 OBJECT IDENTIFIER ::= { cevModuleCommonCards 672 } -- Cisco NCS 560 Route Switch Processor 4 - 800G, L Scale cevNCS1001OTDR OBJECT IDENTIFIER ::= { cevModuleCommonCards 673 } -- Cisco NCS1001 OTDR Optical Module +cevNC55MPA4HHDS OBJECT IDENTIFIER ::= { cevModuleCommonCards 674 } -- NCS: Network Convergence System COLUMBIA iTemp cevModuleQSFP40GCSRS OBJECT IDENTIFIER ::= { cevModuleCommonCards 676 } -- QSFP-40G-CSR-S +cevNCS5724DD OBJECT IDENTIFIER ::= { cevModuleCommonCards 677 } -- NCS 5500 24x400GE Line Card NC57-24DD - Vigor LC Network Convergence Services NCS5500 24x400GE Scale Base Line Card +cevNCS5718DDSE OBJECT IDENTIFIER ::= { cevModuleCommonCards 678 } -- NCS 5500 18x400GE Line Card with TCAM NC57-18DD-SE - Vigor SE Network Convergence Services NCS5500 18x400GE Scale Base Line Card with TCAM cevNCS10041200GLineCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 679 } -- Cisco NCS1004 1200G Non-CDR Line Card cevNCS10041200GCDRLineCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 680 } -- Cisco NCS1004 1200G CDR Line Card cevNCS10041200GLicensedCDRLineCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 681 } -- Cisco NCS1004 1200G Licensed CDR Line Card @@ -3894,19 +4512,114 @@ cevModuleC9200NM4X1G OBJECT IDENTIFIER ::= { cevModuleCommonC cevModuleC9200NM4X10G OBJECT IDENTIFIER ::= { cevModuleCommonCards 684 } -- Catalyst 9200 4P 10G Network Module cevModuleC9200NM2X25G OBJECT IDENTIFIER ::= { cevModuleCommonCards 685 } -- Catalyst 9200 2P 25G Network Module cevModuleC9200NM2X40G OBJECT IDENTIFIER ::= { cevModuleCommonCards 686 } -- Catalyst 9200 2P 40G Network Module +cevModuleNC55MPA2THHXS OBJECT IDENTIFIER ::= { cevModuleCommonCards 687 } -- NC55-MPA-2TH-HX-S BOW Itemp CC NCS-Network Convergence System +cevModuleNC55MPA4HHXS OBJECT IDENTIFIER ::= { cevModuleCommonCards 688 } -- NC55-MPA-4H-HX-S Columbia Itemp CC MPA Board NCS-Network Convergence System cevModuleNC55RPFIXED OBJECT IDENTIFIER ::= { cevModuleCommonCards 690 } -- NCS5500 Route Processor Card for Fixed fretta router , contact team-padbalas cevA900IMA1Z8SCXMS OBJECT IDENTIFIER ::= { cevModuleCommonCards 692 } -- ASR 900 8-port OCx48/1xGE and 1-port OCx192/10GE IM card -cevNCS1K4OTNXPL OBJECT IDENTIFIER ::= { cevModuleCommonCards 694 } -- NCS1004 OTN Xponder Licensed - 100G Client bandwidth -cevNCS1K4OTNXP OBJECT IDENTIFIER ::= { cevModuleCommonCards 695 } -- NCS1004 4xQSFPDD ,6xQSFP28, 2xCFP DCO OTN Xponder +cevMpa1X200GE OBJECT IDENTIFIER ::= { cevModuleCommonCards 693 } -- ASR 9000 1-port 200-Gigabit Ethernet Modular +cevNCS1K4OTNXPL OBJECT IDENTIFIER ::= { cevModuleCommonCards 694 } -- NCS1004 OTN Xponder Licensed - 100G Client bandwidth +cevNCS1K4OTNXP OBJECT IDENTIFIER ::= { cevModuleCommonCards 695 } -- NCS1004 4xQSFPDD ,6xQSFP28, 2xCFP DCO OTN Xponder cevModuleA900IMA8S1ZCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 696 } -- 8-port Gigabit Ethernet & 1-port Ten Gigabit Ethernet SFP Interface Module, Conformal Coated cevModuleA900IMA8T1ZCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 697 } -- 8-port Gigabit Ethernet & 1-port Ten Gigabit Ethernet CU Interface Module, Conformal Coated cevModuleA900IMA2ZCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 698 } -- 2-port Ten Gigabit Ethernet XFP/SFP+ Interface Module, Conformal Coated +cevModuleNC55RP2E OBJECT IDENTIFIER ::= { cevModuleCommonCards 699 } -- NCS 5500 Route Processor with SyncE, enhanced timing +cevModuleNC5532T16Q4HA OBJECT IDENTIFIER ::= { cevModuleCommonCards 700 } -- NCS 5500 32x10, 16x25 & 4x100 Line Card Base cevModuleA900IMA8ZCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 701 } -- ASR 900 8 port 10GE SFP+ Interface Module, Conformal Coated cevN560IMA2CCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 702 } -- Cisco NCS 560 2-port 100GE Interface Module, Conformal Coated cevModuleASR900IMA8CS1ZMCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 703 } -- ASR 900 16 port GE C-SFP + 1 port SFP+ IM with MACsec, Conformal Coated +cevModule8201SYS OBJECT IDENTIFIER ::= { cevModuleCommonCards 705 } -- Sherman 1RU Chassis with 24x400GE QSFP56-DD & 12x100G QSFP28 +cevModuleNC5536H3DBSSE OBJECT IDENTIFIER ::= { cevModuleCommonCards 707 } -- Vigor100-SE - NC55-36H3D-B-S-SE (36 port combo scale line card with 24x100 + 12 flex ports (3x400G or 12x100G) +cevModuleNC5536H6DBS OBJECT IDENTIFIER ::= { cevModuleCommonCards 708 } -- Vigor100 Base: NC55-36H6D-B-S (36 port combo base line card with 24x100 + 12 flex ports (6x400G or 12x100G) cevModuleNCS42002HPQ OBJECT IDENTIFIER ::= { cevModuleCommonCards 710 } -- NCS4200 2 port 100 GE QSFP28 port IM -cevModuleA900IMA2C OBJECT IDENTIFIER ::= { cevModuleCommonCards 711 } -- ASR 900 2 port 100 GE QSFP28 port IM - +cevModuleA900IMA2C OBJECT IDENTIFIER ::= { cevModuleCommonCards 711 } -- ASR 900 2 port 100 GE QSFP28 port IM +cevModuleNC5504FC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 712 } -- NCS 5504 Fabric Card 2(NC55-5504-FC2) NCS: Network Convergence System Fretta Fabric Card version 2 +cevModuleN560IMA2CL OBJECT IDENTIFIER ::= { cevModuleCommonCards 713 } -- Introducing new VE IM +cevModuleA900IMA8ZL OBJECT IDENTIFIER ::= { cevModuleCommonCards 714 } -- Introducing new VE IM +cevModuleNC5532T16Q4HAT OBJECT IDENTIFIER ::= { cevModuleCommonCards 716 } -- NCS 5500 32x10, 16x25 & 4x100 Line Card Base +cevModuleNC55A124Q6HSSRPFIXED OBJECT IDENTIFIER ::= { cevModuleCommonCards 717 } -- NC55A1 24Q6H SS Route Processor Card +cevCVRQSFP28SFP28 OBJECT IDENTIFIER ::= { cevModuleCommonCards 718 } -- SFP28 to QSFP28 pluggable adapter module +cevModuleC9300XNM8Y OBJECT IDENTIFIER ::= { cevModuleCommonCards 719 } -- Catalyst 9300X 8P 25G/10G/1G Network Module +cevModuleC9300XNM4C OBJECT IDENTIFIER ::= { cevModuleCommonCards 720 } -- Catalyst 9300X 4P 100G/40G Network Module +cevModuleC9300XNM2C OBJECT IDENTIFIER ::= { cevModuleCommonCards 721 } -- Catalyst 9300X 2P 100G/40G Network Module +cevModuleC9300XNM8M OBJECT IDENTIFIER ::= { cevModuleCommonCards 722 } -- Catalyst 9300X 8P mGig Network Module +cevModule88LC036FHM OBJECT IDENTIFIER ::= { cevModuleCommonCards 723 } -- Cisco 8800 88-LC0-36FH-M QSFP56-DD Line Card with MACsec +cevModule88LC036FH OBJECT IDENTIFIER ::= { cevModuleCommonCards 724 } -- Cisco 8800 88-LC0-36FH QSFP56-DD Line Card +cevNCS10041200GLCDRLineCard OBJECT IDENTIFIER ::= { cevModuleCommonCards 725 } -- Cisco NCS1004 1200G L-band CDR Line Card +cevModuleIR1100SSD OBJECT IDENTIFIER ::= { cevModuleCommonCards 726 } -- IR mSATA SSD +cevModuleIRMSSDMSATA100G OBJECT IDENTIFIER ::= { cevModuleCommonCards 727 } -- 100GB MSATA SSD Module +cevModuleNC57MODRP2E OBJECT IDENTIFIER ::= { cevModuleCommonCards 728 } -- cevModuleNC57MODRP2E Network Convergence System-57A3 Route Processor +cevModuleN560IMA8Q4L OBJECT IDENTIFIER ::= { cevModuleCommonCards 729 } -- Introducing new multirate 10G/25G IM for NCS560 +cevModuleC9KF1SSD960G OBJECT IDENTIFIER ::= { cevModuleCommonCards 731 } -- This is 960GB SSD used in starfleet c9500-H. this is fru'able ssd accessed through SATA +cevModuleC9KF1SSD480G OBJECT IDENTIFIER ::= { cevModuleCommonCards 732 } -- This is 480GB SSD used in starfleet c9500-H. this is fru'able ssd accessed through SATA +cevModuleC9KF1SSD240G OBJECT IDENTIFIER ::= { cevModuleCommonCards 733 } -- This is 240GB SSD used in starfleet c9500-H. this is fru'able ssd accessed through SATA +cevModuleNCS1K4OTNXP OBJECT IDENTIFIER ::= { cevModuleCommonCards 734 } -- NCS1K4 4xDD,8xQSFP28,2xCFP2 DCO OTNXponder +cevModuleNCS1K4OTNXPL OBJECT IDENTIFIER ::= { cevModuleCommonCards 735 } -- NCS1K4 4xDD,8xQSFP28,2xCFP2 DCO OTNXponder Licensed card +cevModuleC950056C16D OBJECT IDENTIFIER ::= { cevModuleCommonCards 737 } -- Module for Cisco Catalyst 9500X with 56-port x 100G + 16-port x 400G +cevModuleC950028C8D OBJECT IDENTIFIER ::= { cevModuleCommonCards 740 } -- Module for Cisco Catalyst 9500X with 28-port x 100G + 8-port x 400G +cevModuleNC57MPA2D4HS OBJECT IDENTIFIER ::= { cevModuleCommonCards 741 } -- 2X400G or 4X200/100G QSFP-DD MPA +cevModule810264H OBJECT IDENTIFIER ::= { cevModuleCommonCards 742 } -- Cisco 8100 64x100G QSFP28 2RU Fixed System w/o HBM +cevModule810232H OBJECT IDENTIFIER ::= { cevModuleCommonCards 743 } -- Cisco 8100 32x100G QSFP28 1RU Fixed System w/o HBM +cevModule8818FC0 OBJECT IDENTIFIER ::= { cevModuleCommonCards 744 } -- 8818-FC0 Fabric Card +cevModuleNC57MODS OBJECT IDENTIFIER ::= { cevModuleCommonCards 745 } -- Vigor-Mod-LC - NC57-MOD-S (NCS 5700 8X50, 2X400 & 2XMPA Line Card Base) +cevModuleEPA20x10GSFPPLUS OBJECT IDENTIFIER ::= { cevModuleCommonCards 746 } -- 20-port Ten Gig Ethernet SFP Module +cevModuleEPA6x100GQSFP OBJECT IDENTIFIER ::= { cevModuleCommonCards 747 } -- 6-port Hundred Gig Ethernet QSFP Module +cevModuleNC57MPA12LS OBJECT IDENTIFIER ::= { cevModuleCommonCards 748 } -- NCS 5500 12x10/25/50GE MPA +cevModuleIDPROM OBJECT IDENTIFIER ::= { cevModuleCommonCards 749 } -- identification Programmable Read-Only Memory (IDPROM) information for field-replaceable units (FRUs) +cevModule88LC034H14FH OBJECT IDENTIFIER ::= { cevModuleCommonCards 750 } -- Cisco 8800 48x100G or 34x100GE + 14x400GE QSFP28/DD LC +cevModuleNCS1010ILAC OBJECT IDENTIFIER ::= { cevModuleCommonCards 755 } -- Cisco Network Convergence System 1010 In-Line Amplifier - C-band +cevModuleNCS1010ILARC OBJECT IDENTIFIER ::= { cevModuleCommonCards 756 } -- Cisco Network Convergence System 1010 In-Line Amplifier with 1x Raman - C-band +cevModuleNCS1010ILA2RC OBJECT IDENTIFIER ::= { cevModuleCommonCards 757 } -- Cisco Network Convergence System 1010 In-Line Amplifier with 2x Raman - C-band +cevModuleNCS1010OLTC OBJECT IDENTIFIER ::= { cevModuleCommonCards 758 } -- Cisco Network Convergence System 1010 Optical Line Terminal - C-band +cevModuleNCS1010OLTRC OBJECT IDENTIFIER ::= { cevModuleCommonCards 759 } -- : Cisco Network Convergence System 1010 Optical Line Terminal with Raman - C-band +cevModuleNCS1010ILAL OBJECT IDENTIFIER ::= { cevModuleCommonCards 766 } -- Cisco Network Convergence System 1010 In-Line Amplifier - L-bandCisco Network Convergence System 1010 In-Line Amplifier - L-band +cevModuleNCS1010OLTL OBJECT IDENTIFIER ::= { cevModuleCommonCards 767 } -- Cisco Network Convergence System 1010 Optical Line Terminal - L-band +cevModuleNC5748Q2DS OBJECT IDENTIFIER ::= { cevModuleCommonCards 769 } -- Vigor-LS-Non-SE: NC57-48Q2D-S. 32x1/10/25G + 16x1/10/25/50G + 2x400G +cevModuleNC5748Q2DSES OBJECT IDENTIFIER ::= { cevModuleCommonCards 770 } -- Vigor-LS-SE: NC57-48Q2D-SE-S. 32x1/10/25G + 16x1/10/25/50G + 2x400G +cevModuleNCS1KQXPK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 771 } -- NCS1004 Skinny BO 3.2T QSFP-DD DCO Transponder Linecard +cevModuleNCS1KQXPLK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 772 } -- NCS1004 Skinny BO 3.2T QSFP-DD DCO Transponder Licensed Linecard +cevModuleNCS1K4QXPK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 775 } -- NCS1004 Skinny BO 3.2T QSFP-DD DCO Transponder Linecard +cevModuleNCS1K4QXPLK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 776 } -- NCS1004 Skinny BO 3.2T QSFP-DD DCO Transponder Licensed Linecard +cevModule8800RP2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 777 } -- Route Processor Card (RP2) for spitfire modular chassis +cevModule8800RP2E OBJECT IDENTIFIER ::= { cevModuleCommonCards 778 } -- Cisco 8800 Route Processor V2 Edge +cevModuleA900IMA8ZLCC OBJECT IDENTIFIER ::= { cevModuleCommonCards 779 } -- ASR 900 8 port 10GE SFP+ Lite Interface Module, Conformal Coated +cevModuleNC57MPA1FH1DS OBJECT IDENTIFIER ::= { cevModuleCommonCards 780 } -- NCS 5700 1 x 400G CFP2 DCO + 1 x 400G QSFP-DD MPA +cevModuleNC55OIP02 OBJECT IDENTIFIER ::= { cevModuleCommonCards 785 } -- NCS 5500, 8 ports OTU2/2e/OC192/OC48/FC MPA +cevModuleNCS4216RSP800 OBJECT IDENTIFIER ::= { cevModuleCommonCards 788 } -- NCS4216 RSP 800 System (14RU and 16 SLOT) +cevModuleNCS4K4H4QDD OBJECT IDENTIFIER ::= { cevModuleCommonCards 789 } -- Second generation NCS4K 400G Packet/WDM Sauron Line card based on 4xQSFP+/QSFP28/QSFP-DD/SFP25/Bright QDD ZR+ +cevModuleNCS1010BRK OBJECT IDENTIFIER ::= { cevModuleCommonCards 790 } -- This card name is for breakout optical module on ncs1010 which has following PIDs: NCS1K-BRK-8 NCS1K-BRK-16 NCS1K-BRK-24 +cevModuleNCS1010MD32 OBJECT IDENTIFIER ::= { cevModuleCommonCards 791 } -- This card name is for mux-demux optical module on ncs1010 which has following PIDs: NCS1K-MD-32E-C NCS1K-MD-32O-C +cevModuleNCS1K14CCMD16C OBJECT IDENTIFIER ::= { cevModuleCommonCards 796 } -- NCS 1014 16 port Colorless Direct attach LC with EDFA C-band +cevModuleNCS1K14CCMD16L OBJECT IDENTIFIER ::= { cevModuleCommonCards 797 } -- NCS 1014 16 port Colorless Direct attach LC with EDFA L-band +cevModuleNCS1K1424TK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 798 } -- Network Convergence System 1014 2.4T Line Card +cevModuleNCS1K1424TLK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 799 } -- Network Convergence System 1014 2.4T Line Card Licensed +cevModuleNCS1010BRK8 OBJECT IDENTIFIER ::= { cevModuleCommonCards 800 } -- This card name is for breakout optical module on ncs1010 which has following PID: NCS1K-BRK-8 +cevModuleNCS1010BRK16 OBJECT IDENTIFIER ::= { cevModuleCommonCards 801 } -- This card name is for breakout optical module on ncs1010 which has following PID: NCS1K-BRK-16 +cevModuleNCS1010BRK24 OBJECT IDENTIFIER ::= { cevModuleCommonCards 802 } -- This card name is for breakout optical module on ncs1010 which has following PID: NCS1K-BRK-24 +cevModuleNCS1010BRKSA OBJECT IDENTIFIER ::= { cevModuleCommonCards 803 } -- This card name is for breakout optical module on ncs1010 which has following PID: NCS1K-BRK-SA +cevModuleNCS1010MD32O OBJECT IDENTIFIER ::= { cevModuleCommonCards 804 } -- This card name is for mux-demux optical module on ncs1010 which has following PID: NCS1K-MD-32O-C +cevModuleNCS1010MD32E OBJECT IDENTIFIER ::= { cevModuleCommonCards 805 } -- This card name is for mux-demux optical module on ncs1010 which has following PID: NCS1K-MD-32E-C +cevModuleEPA8x10GSFPPLUS OBJECT IDENTIFIER ::= { cevModuleCommonCards 810 } -- 8-port Ten Gig Ethernet SFP Module +cevModuleEPA2x40GSFPPLUS OBJECT IDENTIFIER ::= { cevModuleCommonCards 811 } -- 2-port 40gig Gig Ethernet SFP Module +cevModuleEPA1x25GSFP28 OBJECT IDENTIFIER ::= { cevModuleCommonCards 812 } -- 1-port 25gig Gig Ethernet SFP Module +cevModuleEPA2x25GSFP28 OBJECT IDENTIFIER ::= { cevModuleCommonCards 813 } -- 2-port 25gig Gig Ethernet SFP Module +cevModuleEPA3x25GSFP28 OBJECT IDENTIFIER ::= { cevModuleCommonCards 814 } -- 3-port 25gig Gig Ethernet SFP Module +cevModuleCIM8LType OBJECT IDENTIFIER ::= { cevModuleCommonCards 815 } -- Coherent Interconnect Module 8 (CIM 8) is having 1.2T faceplate pluggable coherent solution. PID: CIM8-L-K9 +cevModuleCIM8CType OBJECT IDENTIFIER ::= { cevModuleCommonCards 816 } -- Coherent Interconnect Module 8 (CIM 8) is having 1.2T faceplate pluggable coherent solution. PID: CIM8-C-K9 +cevModuleNCS1K1424TXK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 817 } -- NCS 1014 2.4T Line Card-crossconnect modes +cevModuleNCS1K1424TXLK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 818 } -- NCS 1014 2.4T licensed card-crossconnect modes +cevModuleNCS1K14EDFA2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 819 } -- NCS1K14 EDFA amplifier OLS card +cevModuleNCS1KEOLTC OBJECT IDENTIFIER ::= { cevModuleCommonCards 821 } -- NCS 1010 Optical Line Terminal - C-band, enhanced +cevModuleNCS1KEOLTRC OBJECT IDENTIFIER ::= { cevModuleCommonCards 822 } -- NCS 1010 Optical Line Terminal with Raman - C-band, enhanced +cevModuleNCS1KEOLTL OBJECT IDENTIFIER ::= { cevModuleCommonCards 823 } -- NCS 1010 Optical Line Terminal - L-band, enhanced +cevModuleNCS1KEILARC OBJECT IDENTIFIER ::= { cevModuleCommonCards 824 } -- NCS 1010 In-Line Amplifier with 1x Raman - C-band, enhanced +cevModuleNCS1KEILA2RC OBJECT IDENTIFIER ::= { cevModuleCommonCards 825 } -- NCS 1010 In-Line Amplifier with 2x Raman - C-band, enhanced +cevModuleNCS1KEILARC2 OBJECT IDENTIFIER ::= { cevModuleCommonCards 826 } -- NCS 1010 In-Line Amplifier with 1x Raman west facing - C-band, enhanced +cevModuleCIM8CEK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 830 } -- Coherent Interconnect Module 8 (CIM 8) is having 1.2T faceplate pluggable coherent Enhanced solution. PID: CIM8-CE-K9 +cevModuleCIM8LEK9 OBJECT IDENTIFIER ::= { cevModuleCommonCards 831 } -- Coherent Interconnect Module 8 (CIM 8) is having 1.2T faceplate pluggable coherent Enhanced solution. PID: CIM8-LE-K9 +cevModuleNCS1KMD32ECE OBJECT IDENTIFIER ::= { cevModuleCommonCards 834 } -- NCS 1000 32chs Even Mux/Demux-150GHz-C-band Enhanced - PID: NCS1K-MD-32E-CE +cevModuleNCS1KMD32OCE OBJECT IDENTIFIER ::= { cevModuleCommonCards 835 } -- NCS 1000 32chs Odd Mux/Demux-150GHz-C-band Enhanced - PID: NCS1K-MD-32O-CE +cevModuleC9610SSD480GB OBJECT IDENTIFIER ::= { cevModuleCommonCards 836 } -- This is 480GB SSD used in Catalyst 9610 switch. This is fruable ssd accessed through SATA +cevModuleN9KC92348GCFX3 OBJECT IDENTIFIER ::= { cevModuleCommonCards 837 } -- Cisco Nexus 9200 Series fixed switch with 48x100M/1G BASE-T + 4x10/25 Gbps SFP28 + 2x40/100-Gbps QSFP28 ports --cevModuleC36xxType cards are slot-cards specific to the c36xx platforms cevModuleC36xxType OBJECT IDENTIFIER ::= { cevModule 3 } @@ -3947,21 +4660,21 @@ cevPm1fe1e1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 35 } cevPm1fe2e1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 36 } cevPm1fe1t1Csu OBJECT IDENTIFIER ::= { cevModuleC36xxType 37 } cevPm1fe2t1Csu OBJECT IDENTIFIER ::= { cevModuleC36xxType 38 } -cevC36xx2feTx OBJECT IDENTIFIER ::= { cevModuleC36xxType 39 } -- Onboard 2FE Interfaces for c3660 chassis +cevC36xx2feTx OBJECT IDENTIFIER ::= { cevModuleC36xxType 39 } -- Onboard 2FE Interfaces for c3660 chassis cevPmOc3mm OBJECT IDENTIFIER ::= { cevModuleC36xxType 40 } -- ATM OC3 multimode Port Module cevPmOc3mmVpd OBJECT IDENTIFIER ::= { cevModuleC36xxType 41 } -- ATM OC3 multimode Port Module with Voice Processing Deck cevPmOc3smiVpd OBJECT IDENTIFIER ::= { cevModuleC36xxType 42 } -- ATM OC3 single mode intermediate reach Port Module with Voice Processing Deck -cevPmOc3smlVpd OBJECT IDENTIFIER ::= { cevModuleC36xxType 43 } -- ATM OC3 single mode long reach Port Module with Voice Processing Deck +cevPmOc3smlVpd OBJECT IDENTIFIER ::= { cevModuleC36xxType 43 } -- ATM OC3 single mode long reach Port Module with Voice Processing Deck cevPmOc3sml OBJECT IDENTIFIER ::= { cevModuleC36xxType 44 } -- ATM OC3 single mode long reach Port Module cevPmOc3smi OBJECT IDENTIFIER ::= { cevModuleC36xxType 45 } -- ATM OC3 single mode intermediate reach Port Module cevVic2fxoEu OBJECT IDENTIFIER ::= { cevModuleC36xxType 46 } -- 2 port Foreign eXchange Office Voice Interface Cards for most of Europe cevVic2fxoM3 OBJECT IDENTIFIER ::= { cevModuleC36xxType 47 } -- 2 port Foreign eXchange Office Voice Interface Cards for Australia -cevVic2fxoM4 OBJECT IDENTIFIER ::= { cevModuleC36xxType 48 } -- 2 port Foreign eXchange Office Voice Interface Cards for Germany -cevVic2fxoM5 OBJECT IDENTIFIER ::= { cevModuleC36xxType 49 } -- 2 port Foreign eXchange Office Voice Interface Cards for France -cevVic2fxoM6 OBJECT IDENTIFIER ::= { cevModuleC36xxType 50 } -- 2 port Foreign eXchange Office Voice Interface Cards for Italy -cevVic2fxoM7 OBJECT IDENTIFIER ::= { cevModuleC36xxType 51 } -- 2 port Foreign eXchange Office Voice Interface Cards for Portugal -cevVic2fxoM8 OBJECT IDENTIFIER ::= { cevModuleC36xxType 52 } -- 2 port Foreign eXchange Office Voice Interface Cards for Singapore -cevVic2ST2086 OBJECT IDENTIFIER ::= { cevModuleC36xxType 53 } -- 2 port Terminal Endpoint BRI S/T Voice interface daughter card +cevVic2fxoM4 OBJECT IDENTIFIER ::= { cevModuleC36xxType 48 } -- 2 port Foreign eXchange Office Voice Interface Cards for Germany +cevVic2fxoM5 OBJECT IDENTIFIER ::= { cevModuleC36xxType 49 } -- 2 port Foreign eXchange Office Voice Interface Cards for France +cevVic2fxoM6 OBJECT IDENTIFIER ::= { cevModuleC36xxType 50 } -- 2 port Foreign eXchange Office Voice Interface Cards for Italy +cevVic2fxoM7 OBJECT IDENTIFIER ::= { cevModuleC36xxType 51 } -- 2 port Foreign eXchange Office Voice Interface Cards for Portugal +cevVic2fxoM8 OBJECT IDENTIFIER ::= { cevModuleC36xxType 52 } -- 2 port Foreign eXchange Office Voice Interface Cards for Singapore +cevVic2ST2086 OBJECT IDENTIFIER ::= { cevModuleC36xxType 53 } -- 2 port Terminal Endpoint BRI S/T Voice interface daughter card cevHdv OBJECT IDENTIFIER ::= { cevModuleC36xxType 54 } -- High Density Voice over IP network module cevNm1fe2w OBJECT IDENTIFIER ::= { cevModuleC36xxType 59 } -- Network Module with 1 Fast Ethernet and 2 WIC/VIC interfaces cevNm2fe2w OBJECT IDENTIFIER ::= { cevModuleC36xxType 60 } -- Network Module with 2 Fast Ethernet and 2 WIC/VIC interfaces @@ -3988,13 +4701,13 @@ cevNm1ct3e3 OBJECT IDENTIFIER ::= { cevModuleC36xxType 92 } -- One port Channel cevNm8ct1e1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 93 } -- Eight port Channelized T1/E1 Network Module cevHdaEm4fxo OBJECT IDENTIFIER ::= { cevModuleC36xxType 94 } -- 4-port FXO Expansion Module for High Density Analog Voice Interface Daughtercard cevNm16AS OBJECT IDENTIFIER ::= { cevModuleC36xxType 95 } -- 16 port Async/Sync Network Module provides low speed serial interface for the MAR's family of platforms -cevNm1ct1e1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 102 } -- One port Primary Rate Interface (PRI) Channelized T1/E1 Network Module -cevNm2ct1e1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 103 } -- Two port Primary Rate Interface (PRI) Channelized T1/E1 Network Module +cevNm1ct1e1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 102 } -- One port Primary Rate Interface (PRI) Channelized T1/E1 Network Module +cevNm2ct1e1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 103 } -- Two port Primary Rate Interface (PRI) Channelized T1/E1 Network Module cevNmCeoip4t1e1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 104 } -- Four port T1/E1 Circuit Emulation over IP network module cevNmCeoip4Serial OBJECT IDENTIFIER ::= { cevModuleC36xxType 105 } -- Four port Serial Interface Circuit Emulation over IP network module cevNm1aOc3mmEp OBJECT IDENTIFIER ::= { cevModuleC36xxType 106 } -- Enhanced Performance ATM OC3, multimode network module cevNm1aOc3smiEp OBJECT IDENTIFIER ::= { cevModuleC36xxType 107 } -- Enhanced Performance ATM OC3, intermediate reach single mode network module -cevNm1aOc3smlEp OBJECT IDENTIFIER ::= { cevModuleC36xxType 108 } -- Enhanced Performance ATM OC3, long reach single mode network module +cevNm1aOc3smlEp OBJECT IDENTIFIER ::= { cevModuleC36xxType 108 } -- Enhanced Performance ATM OC3, long reach single mode network module cevNmCids OBJECT IDENTIFIER ::= { cevModuleC36xxType 109 } -- Intrusion Detection Sensor Module in NM form factor for 36xx/37xx/26xx family branch routers cevHwic1GeSfp OBJECT IDENTIFIER ::= { cevModuleC36xxType 119 } -- Single port Gigabit Ethernet high-speed WAN interface card (HWIC) with Small Formfactor Pluggable (SFP) transceiver cevPortHdDsp OBJECT IDENTIFIER ::= { cevModuleC36xxType 120 } -- 5510 Digital Signal Processor on NM-HD-1V,NM-HD-2V and NM-HD-2VE @@ -4003,7 +4716,7 @@ cevHdv2port2 OBJECT IDENTIFIER ::= { cevModuleC36xxType 122 } -- High Density cevHdv2port1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 123 } -- High Density Network module-2 with onboard one port T1/E1 interface cevNmAtm25 OBJECT IDENTIFIER ::= { cevModuleC36xxType 124 } -- 25 Mbits/sec ATM Port Module cevNmNam OBJECT IDENTIFIER ::= { cevModuleC36xxType 125 } -- Network Analysis Module (NAM) network module for the 2600/3600/3700 router families -cevNm8amV2 OBJECT IDENTIFIER ::= { cevModuleC36xxType 126 } -- 8 Port Analog Modem Network Module Version 2 +cevNm8amV2 OBJECT IDENTIFIER ::= { cevModuleC36xxType 126 } -- 8 Port Analog Modem Network Module Version 2 cevNm16amV2 OBJECT IDENTIFIER ::= { cevModuleC36xxType 127 } -- 16 Port Analog Modem Network Module Version 2 cevCpuC28112fe OBJECT IDENTIFIER ::= { cevModuleC36xxType 129 } -- 2811 Motherboard with two integrated fast ethernets and integrated VPN cevCpuC28212ge OBJECT IDENTIFIER ::= { cevModuleC36xxType 130 } -- 2821 Motherboard with two integrated gigabit ethernets and integrated VPN @@ -4015,8 +4728,8 @@ cevHWicSerial8a OBJECT IDENTIFIER ::= { cevModuleC36xxType 135 } -- High Speed cevHWicSerial16a OBJECT IDENTIFIER ::= { cevModuleC36xxType 136 } -- High Speed Wan Interface card with 16 RS232 async ports(HWIC-16A) cevNm1AOc3Pom OBJECT IDENTIFIER ::= { cevModuleC36xxType 137 } -- Single port ATM OC3 network module with POM cevHWic1DOCSIS20CableModem OBJECT IDENTIFIER ::= { cevModuleC36xxType 146 } -- High Speed Wan Interface card with 1 DOCSIS 2.0 cable modem port(HWIC-1CM) -cevNm8ce1t1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 148 } -- 8 port T1/E1 clear channel and channelized NM -cevHWic4t1e1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 149 } -- 4 port T1/E1 clear channel HWIC +cevNm8ce1t1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 148 } -- 8 port T1/E1 clear channel and channelized NM +cevHWic4t1e1 OBJECT IDENTIFIER ::= { cevModuleC36xxType 149 } -- 4 port T1/E1 clear channel HWIC cevHWic2ce1t1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 150 } -- 2 port T1/E1 channelized/PRI HWIC cevHWic1ce1t1Pri OBJECT IDENTIFIER ::= { cevModuleC36xxType 151 } -- 1 port T1/E1 channelized/PRI HWIC cevHWic1DOCSIS20CableModemEJ OBJECT IDENTIFIER ::= { cevModuleC36xxType 152 } -- High Speed Wan Interface card with 1 Euro-DOCSIS/J-DOCSIS 2.0 cable modem port(HWIC-1CM) @@ -4056,7 +4769,7 @@ cevEhwic3gHspa7A OBJECT IDENTIFIER ::= { cevModuleC36xxType 191 } -- 3G W cevEhwic3gMm OBJECT IDENTIFIER ::= { cevModuleC36xxType 192 } -- 3G WWAN EHWIC - Multimode HSPA+/HSPA/UMTS/EDGE/GPRS EVDO RevA/Rev0/1xRTT cevEhwic4gLteA OBJECT IDENTIFIER ::= { cevModuleC36xxType 193 } -- 4G WWAN EHWIC - North America Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS cevEhwic4gLteG OBJECT IDENTIFIER ::= { cevModuleC36xxType 194 } -- 4G WWAN EHWIC - Global Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS -cevEhwic4gLteV OBJECT IDENTIFIER ::= { cevModuleC36xxType 195 } -- 4G WWAN EHWIC - Verizon Multimode LTE/eHRPD/EVDO RevA/Rev0/1xRTT +cevEhwic4gLteV OBJECT IDENTIFIER ::= { cevModuleC36xxType 195 } -- 4G WWAN EHWIC - Verizon Multimode LTE/eHRPD/EVDO RevA/Rev0/1xRTT cevSm1T3E3 OBJECT IDENTIFIER ::= { cevModuleC36xxType 196 } -- 1 port clear channel T3/E3 SM cevSM32A OBJECT IDENTIFIER ::= { cevModuleC36xxType 197 } -- 32-port Asynchronous Interface Service Module for ISR G2s (c39XX) cevSmD48FxsE OBJECT IDENTIFIER ::= { cevModuleC36xxType 202 } -- SM-D-48FXS-E is a double-wide service module with 48 OPX Lite FXS analog ports @@ -4090,7 +4803,7 @@ cevPSm2k23Es1GePoe OBJECT IDENTIFIER ::= { cevModuleC36xxTy cevPSm3k15Es1GePoe OBJECT IDENTIFIER ::= { cevModuleC36xxType 232 } -- Enhanced EtherSwitch, L2/L3, SM, 15 FE, 1 GE, POE cevPSm3k23Es1GePoe OBJECT IDENTIFIER ::= { cevModuleC36xxType 233 } -- Enhanced EtherSwitch, L2/L3, SM, 23 FE, 1 GE, POE cevPSm3k24GePoe OBJECT IDENTIFIER ::= { cevModuleC36xxType 234 } -- Enhanced EtherSwitch, L2/L3, SM, 24 GE, POE -cevPSm1nm OBJECT IDENTIFIER ::= { cevModuleC36xxType 235 } -- Network Module Adapter for SM Slot on Router 2200, 3200 +cevPSm1nm OBJECT IDENTIFIER ::= { cevModuleC36xxType 235 } -- Network Module Adapter for SM Slot on Router 2200, 3200 cevPHdv2port2 OBJECT IDENTIFIER ::= { cevModuleC36xxType 236 } -- IP Communications High-Density Digital Voice NM with 2 T1/E1 cevEhwic4gLteLA OBJECT IDENTIFIER ::= { cevModuleC36xxType 246 } -- 4G WWAN EHWIC - Latin America Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS cevEhwic4gLteCI OBJECT IDENTIFIER ::= { cevModuleC36xxType 247 } -- 4G WWAN EHWIC - China and India Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS @@ -4138,11 +4851,11 @@ cevPa4me1Bal OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 33 } cevPa2ce1Balanced OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 34 } cevPa2ct1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 35 } cevPa1vg OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 36 } -cevPaAtmdxDs3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 37 } +cevPaAtmdxDs3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 37 } cevPaAtmdxE3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 38 } cevPaAtmdxSmlOc3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 39 } cevPaAtmdxSmiOc3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 40 } -cevPaAtmdxMmOc3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 41 } +cevPaAtmdxMmOc3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 41 } cevPaA8tX21 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 42 } cevPaA8tRs232 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 43 } cevPa4me1Unbal OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 44 } @@ -4171,7 +4884,7 @@ cevPaVxc2t1e1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 67 } -- 2 port cevPaVxb2t1e1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 68 } -- 2 port T1/E1 voice port adapter with 12 DSP's cevPaAtmOc12Mm OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 69 } -- Multimode ATM OC-12 Port Adapter cevPaAtmOc12Smi OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 70 } -- Singlemode ATM OC-12 Intermediate reach Port Adapter -cevPaMct3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 71 } -- Multichannel DS3 single port adapter +cevPaMct3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 71 } -- Multichannel DS3 single port adapter cevPaMc2t3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 72 } -- Multichannel DS3 dual port adapter cevPa1t3Plus OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 73 } -- Improved one port serial T3 plus port adapter cevPa2t3Plus OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 74 } -- Improved 2 port serial T3 plus port adapter @@ -4180,26 +4893,26 @@ cevPaPosOc12Sm OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 76 } -- OC-12 P cevPaImaT1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 77 } -- Implements IMA functionality for the 7200/7500 platform for a T1 cevPaImaE1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 78 } -- Implements IMA functionality for the 7200/7500 platform for an E1 cevSrpPaOc12Mm OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 79 } -- SRP OC-12/STM-4 Multimode Port Adapter for 7000 series -cevSrpPaOc12SmIr OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 80 } -- SRP OC-12/STM-4 Single Mode Intermediate Reach Port Adapter for 7000 series +cevSrpPaOc12SmIr OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 80 } -- SRP OC-12/STM-4 Single Mode Intermediate Reach Port Adapter for 7000 series cevSrpPaOc12Lr OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 81 } -- SRP OC-12/STM-4 Single Mode Long Reach Port Adapter for 7000 series -cevPa2ct1Csu OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 82 } -- 2 port multichannel T1 port adapter with built in csu/dsu for the 7200, 7500, and rsp7000 platforms -cevPa2ce1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 83 } -- 2 port multichannel E1 port adapter for the 7200, 7500, and rsp7000 platforms +cevPa2ct1Csu OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 82 } -- 2 port multichannel T1 port adapter with built in csu/dsu for the 7200, 7500, and rsp7000 platforms +cevPa2ce1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 83 } -- 2 port multichannel E1 port adapter for the 7200, 7500, and rsp7000 platforms cevPaMcx2te1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 84 } -- 2 port, software configurable Multichannel T1/E1 with TDM Port Adapter cevPaMcx4te1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 85 } -- 4 port, software configurable Multichannel T1/E1 with TDM Port Adapter -cevPaMcx8te1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 86 } -- 8 port, software configurable Multichannel T1/E1 with TDM Port Adapter +cevPaMcx8te1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 86 } -- 8 port, software configurable Multichannel T1/E1 with TDM Port Adapter cevSrpPaOc12SmXr OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 87 } -- SRP OC-12/STM-4 Single Mode Extended Reach Port Adapter for 7000 series cevPaMcStm1Smi OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 90 } -- channelized STM-1 PA for 7500/7200(single mode intermediate reach) cevPaMcStm1Mm OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 91 } -- channelized STM-1 PA for 7500/7200(multimode) cevPa2feTxI82543 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 92 } -- 2 port Fast Ethernet 100TX Intel I82543 cevPa2feFxI82543 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 93 } -- 2 port Fast Ethernet 100FX (MMF) Intel I82543 cevPaDualWideGe OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 94 } -- Dual Wide Enhanced Gigabit Ethernet Port Adapter -cevPaVxa1T1E124 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 95 } -- 1 port T1/E1 voice port adapter w/ 7 DSPs +cevPaVxa1T1E124 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 95 } -- 1 port T1/E1 voice port adapter w/ 7 DSPs cevPaVxa1T1E130 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 96 } -- 1 port T1/E1 voice port adapter w/ 8 DSPs cevPaMcT1E1 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 97 } -- Multichannel T1/E1 (without TDM) Port Adapter cevPaMcx8te1M OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 99 } -- 8 port, software configurable Multichannel T1/E1 SS7 with TDM Port Adapter cevPa1ce3 OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 100 } -- 1 port, Multichannel E1 Port Adapter cevPa2OC3PosSw OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 101 } -- Dual Port OC-3c Packet Over Sonet(POS) Single Wide Adapter -cevPa2feFxIsl OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 102 } -- PA-2feisl-fx fast ethernet 2 port adapter card +cevPa2feFxIsl OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 102 } -- PA-2feisl-fx fast ethernet 2 port adapter card cevPa4Dtr OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 103 } -- Four port dedicated tokenring adapter cevPaVmHda8FxsDid OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 104 } -- High density analog voice/fax voice module with 8 FXS/DID cevPa1OC3PosSw OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 105 } -- Single port OC-3c Packet over Sonet (POS) Single Wide Port Adapter Card @@ -4212,7 +4925,7 @@ cevPaMcx4te1Q OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 111 } -- 4 por cevPaMct3ec OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 112 } -- Enhanced 1 port multichannel PA cevPaMc2t3ec OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 113 } -- Enhanced 2 port multichannel PA cevPa1t3e3ec OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 114 } -- Enhanced 1 port T3/E3 clear channel PA -cevPa2t3e3ec OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 115 } -- Enhanced 2 port T3/E3 clear channel PA +cevPa2t3e3ec OBJECT IDENTIFIER ::= { cevModuleVipPortAdapters 115 } -- Enhanced 2 port T3/E3 clear channel PA cevModuleCpuType OBJECT IDENTIFIER ::= { cevModule 5 } cevC7200Io1fe OBJECT IDENTIFIER ::= { cevModuleCpuType 1 } @@ -4221,7 +4934,7 @@ cevCpuAS5300 OBJECT IDENTIFIER ::= { cevModuleCpuType 3 } cevCpuRpm OBJECT IDENTIFIER ::= { cevModuleCpuType 7 } -- Router Processor Module cevCpu2600 OBJECT IDENTIFIER ::= { cevModuleCpuType 8 } -- c2600 chassis CPU cevCpu7200Npe300 OBJECT IDENTIFIER ::= { cevModuleCpuType 9 } -- Network processing engine (CPU card) for 7200 series -cevCpu1400 OBJECT IDENTIFIER ::= { cevModuleCpuType 10 } -- CPU for Cisco 1400 series products +cevCpu1400 OBJECT IDENTIFIER ::= { cevModuleCpuType 10 } -- CPU for Cisco 1400 series products cevCpu800 OBJECT IDENTIFIER ::= { cevModuleCpuType 11 } -- CPU for Cisco 800 series products cevCpuPSM1Gbps OBJECT IDENTIFIER ::= { cevModuleCpuType 12 } -- Processor Switch Module with 1.2Gbps switching capacity for MGX8800 series chassis cevCpu7200Npe175 OBJECT IDENTIFIER ::= { cevModuleCpuType 14 } -- Network processing engine (CPU card) for 7200 series @@ -4245,25 +4958,25 @@ cevCpuGrp OBJECT IDENTIFIER ::= { cevModuleCpuType 35 } -- GSR Route Processor cevCpuMc3810V3 OBJECT IDENTIFIER ::= { cevModuleCpuType 36 } -- CPU card for the MC3810-V3; higher performance than MC3810 with NEBs compliant changes. cevCpuAs5850 OBJECT IDENTIFIER ::= { cevModuleCpuType 38 } -- High End Dial Access Platform cevCpu7200Npe400 OBJECT IDENTIFIER ::= { cevModuleCpuType 39 } -- Network processing engine (CPU card) for 7200 series -cevCpuAs5350 OBJECT IDENTIFIER ::= { cevModuleCpuType 40 } -- CPU card for AS5350 +cevCpuAs5350 OBJECT IDENTIFIER ::= { cevModuleCpuType 40 } -- CPU card for AS5350 cevCpuRsp4Plus OBJECT IDENTIFIER ::= { cevModuleCpuType 41 } -- RSP4+ is ECC capable RSP4, ie. With a Tiger5 asic cevCpuUbr91x OBJECT IDENTIFIER ::= { cevModuleCpuType 42 } -- CPU card for the UBR91X family of Cable Modems (912-c, 912-s, 914) cevCpu7150 OBJECT IDENTIFIER ::= { cevModuleCpuType 43 } -- CPU for the 7150 series cevCpuPXMB45Gbps OBJECT IDENTIFIER ::= { cevModuleCpuType 44 } -- PXM45B Processor Module with R7K Processor cevCpuONS15540 OBJECT IDENTIFIER ::= { cevModuleCpuType 47 } -- ONS 15540 ESP Processor Board without Switch Fabric cevCpuRsp16 OBJECT IDENTIFIER ::= { cevModuleCpuType 48 } -- RSP16 board processor -cevCpuPrp1 OBJECT IDENTIFIER ::= { cevModuleCpuType 49 } -- GSR Performance Route Processor 1 +cevCpuPrp1 OBJECT IDENTIFIER ::= { cevModuleCpuType 49 } -- GSR Performance Route Processor 1 cevCpuC7300Nse100 OBJECT IDENTIFIER ::= { cevModuleCpuType 50 } -- Network Service Engine 100 (CPU card) for Cisco 7300 platform cevCpuPXM1E1Gbps OBJECT IDENTIFIER ::= { cevModuleCpuType 51 } -- Cisco MGX88XX Processor Switch Module 1 Enhancement version cevCpuPXM1E2Oc12 OBJECT IDENTIFIER ::= { cevModuleCpuType 52 } -- Cisco MGX88XX Processor Switch Module 1, 2 OC12 ports, Enhanced version with PNNI support cevCpuPXM1E8Oc3 OBJECT IDENTIFIER ::= { cevModuleCpuType 53 } -- Cisco MGX88XX Processor Switch Module 1 Enhancement version with PNNI support cevCpuPXM1E8T3E3 OBJECT IDENTIFIER ::= { cevModuleCpuType 54 } -- Cisco MGX88XX Processor Switch Module 1 Enhanced version with 8 T3/E3 ports cevCpuPXM1EComboT3E3Oc3 OBJECT IDENTIFIER ::= { cevModuleCpuType 55 } -- Cisco MGX88XX Processor Switch Module 1 Enhancement version combo card with 8 T3/E3 and 4 OC3 ports -cevCpu7200Npeg1 OBJECT IDENTIFIER ::= { cevModuleCpuType 56 } -- Network Processing Engine (CPU card) for 7200VXR series +cevCpu7200Npeg1 OBJECT IDENTIFIER ::= { cevModuleCpuType 56 } -- Network Processing Engine (CPU card) for 7200VXR series cevCpu26912fe OBJECT IDENTIFIER ::= { cevModuleCpuType 57 } -- c2691 Motherboard with Fast Ethernet -cevCpu37452fe OBJECT IDENTIFIER ::= { cevModuleCpuType 58 } -- c3745 Motherboard with Fast Ethernet -cevCpu37252fe OBJECT IDENTIFIER ::= { cevModuleCpuType 59 } -- c3725 Motherboard with Fast Ethernet -cevCpu36311fe OBJECT IDENTIFIER ::= { cevModuleCpuType 60 } -- c3631 Motherboard with Fast Ethernet +cevCpu37452fe OBJECT IDENTIFIER ::= { cevModuleCpuType 58 } -- c3745 Motherboard with Fast Ethernet +cevCpu37252fe OBJECT IDENTIFIER ::= { cevModuleCpuType 59 } -- c3725 Motherboard with Fast Ethernet +cevCpu36311fe OBJECT IDENTIFIER ::= { cevModuleCpuType 60 } -- c3631 Motherboard with Fast Ethernet cevCpu19002fe OBJECT IDENTIFIER ::= { cevModuleCpuType 61 } -- MWR 1900 Motherboard with Fast Ethernet cevCpuONS15530SW OBJECT IDENTIFIER ::= { cevModuleCpuType 62 } -- Cisco ONS 15530 CPU and Switch Board cevCpu6400Nsp OBJECT IDENTIFIER ::= { cevModuleCpuType 63 } -- Cisco 6400 Node Switch Processor @@ -4317,7 +5030,7 @@ cevCpuCat6kWsSup3210ge OBJECT IDENTIFIER ::= { cevModuleCpuType 112 } -- CPU for cevCpuAs5400XM OBJECT IDENTIFIER ::= { cevModuleCpuType 113 } -- CPU card for AS5400XM cevCpuAs5350XM OBJECT IDENTIFIER ::= { cevModuleCpuType 114 } -- CPU card for AS5350XM cevCpu1800 OBJECT IDENTIFIER ::= { cevModuleCpuType 115 } -- CPU for the 1800 fixed-configuration series. -cevCpu7200Npeg2 OBJECT IDENTIFIER ::= { cevModuleCpuType 118 } -- Network Processing Engine 2 (CPU card) for 7200VXR series +cevCpu7200Npeg2 OBJECT IDENTIFIER ::= { cevModuleCpuType 118 } -- Network Processing Engine 2 (CPU card) for 7200VXR series cevCpuCat6kMsfc2a OBJECT IDENTIFIER ::= { cevModuleCpuType 119 } -- CPU for Catalyst 6000 Msfc2A module cevCpuC28012fe OBJECT IDENTIFIER ::= { cevModuleCpuType 120 } -- 2801 Motherboard with two integrated fast ethernets cevCpuIXP2350WestportNP OBJECT IDENTIFIER ::= { cevModuleCpuType 121 } -- Processor used for Paldron development platform @@ -4329,12 +5042,12 @@ cevCpuCre1Fp OBJECT IDENTIFIER ::= { cevModuleCpuType 126 } -- Central Routing cevCpuCre2Fp OBJECT IDENTIFIER ::= { cevModuleCpuType 127 } -- Central Routing Engine 2 - Forwarding Processor for Cisco 10000 series cevCpuCre3Fp OBJECT IDENTIFIER ::= { cevModuleCpuType 128 } -- Central Routing Engine 3 - Forwarding Processor for Cisco 10000 series cevCpu7600Sip600DC OBJECT IDENTIFIER ::= { cevModuleCpuType 130 } -- CPU for 7600 SIP 600 DC module -cevCpuCat6kVsF6kMsfc3 OBJECT IDENTIFIER ::= { cevModuleCpuType 131 } -- CPU for Catalyst 6500 Supervisor VS-F6K-MSFC3 Module -cevCpuCat6kVsS72010G OBJECT IDENTIFIER ::= { cevModuleCpuType 132 } -- CPU for Catalyst 6500 Supervisor VS-S720-10G Module +cevCpuCat6kVsF6kMsfc3 OBJECT IDENTIFIER ::= { cevModuleCpuType 131 } -- CPU for Catalyst 6500 Supervisor VS-F6K-MSFC3 Module +cevCpuCat6kVsS72010G OBJECT IDENTIFIER ::= { cevModuleCpuType 132 } -- CPU for Catalyst 6500 Supervisor VS-S720-10G Module cevCpu7201Npeg2 OBJECT IDENTIFIER ::= { cevModuleCpuType 133 } -- Network Processing Engine 2 (CPU card) for 7201 series cevCpuSamiDc8548H OBJECT IDENTIFIER ::= { cevModuleCpuType 134 } -- CPU on the daughter cards on Service and Application Module for IP cevCpuUC500 OBJECT IDENTIFIER ::= { cevModuleCpuType 135 } -- Processor -cevCpuBroadcomSB1A OBJECT IDENTIFIER ::= { cevModuleCpuType 138 } -- Broadcom SB-1A high performance MIPS64 CPU +cevCpuBroadcomSB1A OBJECT IDENTIFIER ::= { cevModuleCpuType 138 } -- Broadcom SB-1A high performance MIPS64 CPU cevCpuCrs1SPLCB OBJECT IDENTIFIER ::= { cevModuleCpuType 139 } -- Cisco CRS-1 Modular Services Card Rev B cevCpuUc520s OBJECT IDENTIFIER ::= { cevModuleCpuType 140 } -- CPU card for the UC520 UCSO fixed-configuration series cevCpuUc520m OBJECT IDENTIFIER ::= { cevModuleCpuType 141 } -- CPU card for the 19 inch rack-mount model of UC520 series @@ -4349,7 +5062,7 @@ cevCpuVG204 OBJECT IDENTIFIER ::= { cevModuleCpuType 154 } -- Line cevCpuVG202 OBJECT IDENTIFIER ::= { cevModuleCpuType 155 } -- Line Side Analog Gateway with 2FXS Analog ports cevCpu2941 OBJECT IDENTIFIER ::= { cevModuleCpuType 157 } -- CPU for MWR-2941-DC cevCPU8641D OBJECT IDENTIFIER ::= { cevModuleCpuType 158 } -- Cisco ASR9K RSP, LC CPU Type -cevCpuCat6kVsSup2t10g OBJECT IDENTIFIER ::= { cevModuleCpuType 159 } -- CPU for Catalyst 6500 Supervisor Module VS-SUP2T-10G +cevCpuCat6kVsSup2t10g OBJECT IDENTIFIER ::= { cevModuleCpuType 159 } -- CPU for Catalyst 6500 Supervisor Module VS-SUP2T-10G cevCpu19412ge OBJECT IDENTIFIER ::= { cevModuleCpuType 160 } -- Cisco 1941 Motherboard with 2 GE cevCpu29012ge OBJECT IDENTIFIER ::= { cevModuleCpuType 161 } -- Cisco 2901 Motherboard with 2 GE cevCpu29113ge OBJECT IDENTIFIER ::= { cevModuleCpuType 162 } -- Cisco 2911 Motherboard with 3 GE @@ -4405,18 +5118,19 @@ cevCpuCgrSup OBJECT IDENTIFIER ::= { cevModuleCpuType 266 } -- Connec cevCpu86xVAEW OBJECT IDENTIFIER ::= { cevModuleCpuType 267 } -- CPU for Cisco 86xVAEW series products cevCpuvg202xm OBJECT IDENTIFIER ::= { cevModuleCpuType 268 } -- Line side Analog Gateway VG202XM with 2FXS Analog ports cevCpuvg204xm OBJECT IDENTIFIER ::= { cevModuleCpuType 269 } -- Line side Analog Gateway VG204XM with 4FXS Analog ports -cevCpuC6880x OBJECT IDENTIFIER ::= { cevModuleCpuType 270 } -- Catalyst 6880 CPU +cevCpuC6880x OBJECT IDENTIFIER ::= { cevModuleCpuType 270 } -- Catalyst 6880 CPU cevCpu1783SR OBJECT IDENTIFIER ::= { cevModuleCpuType 280 } -- CPU for C819H-K9 Hardened Router for Rockwell Automation with 1 Gigabit Ethernet WAN, 4 Fast Ethernet LAN, 1 Serial, 1 Console/Aux port, 256MB flash memory and 256MB DRAM -cevCpuTypeCPU OBJECT IDENTIFIER ::= { cevModuleCpuType 281 } -- CPU +cevCpuTypeCPU OBJECT IDENTIFIER ::= { cevModuleCpuType 281 } -- CPU cevCpuC881 OBJECT IDENTIFIER ::= { cevModuleCpuType 282 } -- C881 router with 1 Fast Ethernet Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevCpuC886VA OBJECT IDENTIFIER ::= { cevModuleCpuType 283 } -- C886VA router with 1 VDSL2/ADSL2+ Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevCpuC887VA OBJECT IDENTIFIER ::= { cevModuleCpuType 284 } -- C887VA router with 1 VDSL2/ADSL2+ Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevCpuC886VA OBJECT IDENTIFIER ::= { cevModuleCpuType 283 } -- C886VA router with 1 VDSL2/ADSL2+ Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevCpuC887VA OBJECT IDENTIFIER ::= { cevModuleCpuType 284 } -- C887VA router with 1 VDSL2/ADSL2+ Primary WAN, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevCpuC888 OBJECT IDENTIFIER ::= { cevModuleCpuType 285 } -- C888 router with 1 EFM/ATM over G.SHDSL Primary WAN, 1 ISDN BRI S/T interface, 4 Fast Ethernet LAN, 2 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevCpuC891F OBJECT IDENTIFIER ::= { cevModuleCpuType 286 } -- C891F router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM +cevCpuC891F OBJECT IDENTIFIER ::= { cevModuleCpuType 286 } -- C891F router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevCpuC891FW OBJECT IDENTIFIER ::= { cevModuleCpuType 287 } -- C891FW router with 1 Giga Ethernet Primary WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 1 Fast Ethernet WAN, 1 V.92, 1 ISDN BRI S/T interface, 1 Dual 2.4/5GHz Wireless LAN, 8 Giga Ethernet LAN, 4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM cevCpuVG310 OBJECT IDENTIFIER ::= { cevModuleCpuType 288 } -- VG310 Medium Density Voice Gateway cevCpuVG320 OBJECT IDENTIFIER ::= { cevModuleCpuType 289 } -- VG320 Medium Density Voice Gateway -cevCpuCat6kSup OBJECT IDENTIFIER ::= { cevModuleCpuType 290 } -- Generic Supervisor CPU for Catalyst 6000 families +cevCpuCat6kSup OBJECT IDENTIFIER ::= { cevModuleCpuType 290 } -- Generic Supervisor CPU for Catalyst 6000 families +cevCpuNCS4KRPCPU OBJECT IDENTIFIER ::= { cevModuleCpuType 291 } -- Cisco NCS 4000 Series RP CPU cevCPURT1081K9 OBJECT IDENTIFIER ::= { cevModuleCpuType 293 } -- Router 1081 Fast Ethernet Router cevCPURT1091K9 OBJECT IDENTIFIER ::= { cevModuleCpuType 294 } -- Router 1091 GigaE SecRouter cevCpuRT2241K9 OBJECT IDENTIFIER ::= { cevModuleCpuType 295 } -- Router 2241 w/2 GE,2 EHWIC slots,256MB CF,512MB DRAM,IP Base @@ -4426,21 +5140,21 @@ cevCpuRT3211K9 OBJECT IDENTIFIER ::= { cevModuleCpuType cevCpuRT3221K9 OBJECT IDENTIFIER ::= { cevModuleCpuType 299 } -- Router 3221 w/3 GE,4 EHWIC,3 DSP,1 SM,256MB CF,512MB DRAM,IPB cevCpuRT3201K9 OBJECT IDENTIFIER ::= { cevModuleCpuType 300 } -- Router 3201 w/2 GE,4 EHWIC,2 DSP,256MB CF,512MB DRAM,IP Base cevCpu897VAB OBJECT IDENTIFIER ::= { cevModuleCpuType 306 } -- C897VAB-K9 router with 1 VDSL2 with bonding/ADSL2+ WAN , 1 Giga Ethernet WAN, 1 SFP (Small Form-factor Pluggable) Giga Ethernet Primary WAN, 8 Giga Ethernet LAN,4 PoE Optional, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 1GB DRAM -cevCpuCrs1LSPX OBJECT IDENTIFIER ::= { cevModuleCpuType 307 } -- Cisco CRS Label Switch Processor Card 400G -cevCpuCrs1FPX OBJECT IDENTIFIER ::= { cevModuleCpuType 308 } -- Cisco CRS Forwarding Processor Card 400G +cevCpuCrs1LSPX OBJECT IDENTIFIER ::= { cevModuleCpuType 307 } -- Cisco CRS Label Switch Processor Card 400G +cevCpuCrs1FPX OBJECT IDENTIFIER ::= { cevModuleCpuType 308 } -- Cisco CRS Forwarding Processor Card 400G cevCpuCrs1MSCX OBJECT IDENTIFIER ::= { cevModuleCpuType 309 } -- Cisco CRS Series Modular Services Card 400G cevCpuAsa5506 OBJECT IDENTIFIER ::= { cevModuleCpuType 312 } -- Central Processing Unit for 5506 Adaptive Security Appliance cevCpuAsa5506W OBJECT IDENTIFIER ::= { cevModuleCpuType 313 } -- Central Processing Unit for 5506W Adaptive Security Appliance cevCpuAsa5508 OBJECT IDENTIFIER ::= { cevModuleCpuType 314 } -- Central Processing Unit for 5508 Adaptive Security Appliance cevCpuAsa5506K7 OBJECT IDENTIFIER ::= { cevModuleCpuType 315 } -- Central Processing Unit for 5506 with No Payload Encryption Adaptive Security Appliance cevCpuAsa5508K7 OBJECT IDENTIFIER ::= { cevModuleCpuType 316 } -- Central Processing Unit for 5508 with No Payload Encryption Adaptive Security Appliance -cevCpu2911T OBJECT IDENTIFIER ::= { cevModuleCpuType 317 } -- CISCO2911-T/K9 with 3 GE, 4 EHWIC, 2 DSP, 1 SM , 256 MB CF, 512 MB DRAM, IPB, extended temperature range from -5 to 60 C +cevCpu2911T OBJECT IDENTIFIER ::= { cevModuleCpuType 317 } -- CISCO2911-T/K9 with 3 GE, 4 EHWIC, 2 DSP, 1 SM , 256 MB CF, 512 MB DRAM, IPB, extended temperature range from -5 to 60 C cevCpu891x24X OBJECT IDENTIFIER ::= { cevModuleCpuType 318 } -- C891-24X Router series with 2 Giga Ethernet WAN Xor'ed with SFP (Small Form-factor Pluggable), 24 Giga Ethernet LAN with 8 PoE, 1 USB 2.0 port, 1 Console/Aux port, 256MB flash memory and 512MB/1GB DRAM cevCpu841Mx4X OBJECT IDENTIFIER ::= { cevModuleCpuType 321 } -- CPU for C841M-4X/K9 router cevCpu841Mx8X OBJECT IDENTIFIER ::= { cevModuleCpuType 322 } -- CPU for C841M-8X/K9 router cevCpuCrs1MSCXL OBJECT IDENTIFIER ::= { cevModuleCpuType 323 } -- Cisco CRS Series Modular Services Card 200G -cevCpuCrs1FPXL OBJECT IDENTIFIER ::= { cevModuleCpuType 324 } -- Cisco CRS Forwarding Processor Card 200G -cevCpuN9kCpu OBJECT IDENTIFIER ::= { cevModuleCpuType 325 } -- The CPU for N9K SUP/Linecard +cevCpuCrs1FPXL OBJECT IDENTIFIER ::= { cevModuleCpuType 324 } -- Cisco CRS Forwarding Processor Card 200G +cevCpuN9kCpu OBJECT IDENTIFIER ::= { cevModuleCpuType 325 } -- The CPU for N9K SUP/Linecard cevCpuAsa5506H OBJECT IDENTIFIER ::= { cevModuleCpuType 326 } -- Central Processing Unit for 5506H Adaptive Security Appliance cevCpuAsa5516 OBJECT IDENTIFIER ::= { cevModuleCpuType 327 } -- Central Processing Unit for 5516 Adaptive Security Appliance cevCpuC819GWLTE OBJECT IDENTIFIER ::= { cevModuleCpuType 328 } -- C819GWLTE router with 1 4G LTE interface, 4 Fast Ethernet LAN interfaces, 1GE WAN, 1 Serial(sync/async) interface, 2 terminal lines, 1 Virtual Private Network (VPN) Module, 1 cisco Embedded AP, 1 Console/Aux port, and 1GB FLASH @@ -4450,42 +5164,51 @@ cevCpuRAISA1783SAD4T0S OBJECT IDENTIFIER ::= { cevModuleCpuType cevCpuRAISA1783SAD2T2S OBJECT IDENTIFIER ::= { cevModuleCpuType 332 } -- Cisco Rockwell ISA 30002C2F Fiber SKU's Central Processing Unit cevCpuISA4000 OBJECT IDENTIFIER ::= { cevModuleCpuType 333 } -- Central Processing Unit for ISA4000 SKU cevCpu86xVAEV2 OBJECT IDENTIFIER ::= { cevModuleCpuType 334 } -- CPU for C86xVAE series products -cevCpu2911A3ge OBJECT IDENTIFIER ::= { cevModuleCpuType 335 } -- Cisco 2911A Motherboard with 3 GE +cevCpu2911A3ge OBJECT IDENTIFIER ::= { cevModuleCpuType 335 } -- Cisco 2911A Motherboard with 3 GE cevCpu807 OBJECT IDENTIFIER ::= { cevModuleCpuType 336 } -- CPU for Cisco 807 series products cevCpuAsa1000V OBJECT IDENTIFIER ::= { cevModuleCpuType 337 } -- Central Processing Unit for Adaptive Security Appliance 1000V cevCpuVAsa OBJECT IDENTIFIER ::= { cevModuleCpuType 338 } -- Central Processing Unit for Adaptive Security Appliance -cevCpuC941J4P OBJECT IDENTIFIER ::= { cevModuleCpuType 339 } -- C941J-4P Router with 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 2GB DDR4 DRAM(x64) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevCpuC941J4P OBJECT IDENTIFIER ::= { cevModuleCpuType 339 } -- C941J-4P Router with 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 2GB DDR4 DRAM(x64) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevCpuC9214P OBJECT IDENTIFIER ::= { cevModuleCpuType 340 } -- C921-4P Router with 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevCpuC9314P OBJECT IDENTIFIER ::= { cevModuleCpuType 341 } -- C931-4P Router with Internal Power supply, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevCpuC941J4PLTEJN OBJECT IDENTIFIER ::= { cevModuleCpuType 342 } -- C941J-4PLTEJN Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 2GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevCpuC9214PLTE OBJECT IDENTIFIER ::= { cevModuleCpuType 343 } -- C921-4PLTE Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevCpuC921J4P OBJECT IDENTIFIER ::= { cevModuleCpuType 344 } -- C921J-4P Router with, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevCpuC9274P OBJECT IDENTIFIER ::= { cevModuleCpuType 345 } -- C927-4P Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevCpuC9214PLTE OBJECT IDENTIFIER ::= { cevModuleCpuType 343 } -- C921-4PLTE Router with 1 4G LTE interface, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM (x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash +cevCpuC921J4P OBJECT IDENTIFIER ::= { cevModuleCpuType 344 } -- C921J-4P Router with, 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevCpuC9274P OBJECT IDENTIFIER ::= { cevModuleCpuType 345 } -- C927-4P Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevCpuC9274PM OBJECT IDENTIFIER ::= { cevModuleCpuType 346 } -- C927-4PM Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevCpuC9264P OBJECT IDENTIFIER ::= { cevModuleCpuType 347 } -- C926-4P Router with, 1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash -cevCpuC9274PLTE OBJECT IDENTIFIER ::= { cevModuleCpuType 348 } -- C927-4PLTE Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash -cevCpuC9274PMLTEGB OBJECT IDENTIFIER ::= { cevModuleCpuType 349 } -- C927-4PMLTEGB Router with 1 Eth+DSL with Annex M, 1 LTE interface,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevCpuC9274PLTE OBJECT IDENTIFIER ::= { cevModuleCpuType 348 } -- C927-4PLTE Router with, 1 LTE interface ,1 Eth+DSL,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevCpuC9274PMLTEGB OBJECT IDENTIFIER ::= { cevModuleCpuType 349 } -- C927-4PMLTEGB Router with 1 Eth+DSL with Annex M, 1 LTE interface,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash cevCpuC9264PLTEGB OBJECT IDENTIFIER ::= { cevModuleCpuType 350 } -- C926-4PLTEGB Router with 1 Eth+DSL, 1 LTE interface,4 GE LAN interface, 1GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Bootflash cevCPUC931J4P OBJECT IDENTIFIER ::= { cevModuleCpuType 354 } -- C931J-4P Router with External Power Supply 4 GE LAN interface, 2GE WAN interface, 1 USB 3.0, 1GB DDR4 DRAM(x32) with ECC, 2GB eMMC pSLC, Dual 16MB NOR Boot flash +cevCpuFPR1140 OBJECT IDENTIFIER ::= { cevModuleCpuType 355 } -- Central Processing Unit for Cisco Firepower 1140 Security Appliance +cevCpuFPR1120 OBJECT IDENTIFIER ::= { cevModuleCpuType 356 } -- Central Processing Unit for Cisco Firepower 1120 Security Appliance +cevCpuFPR1010 OBJECT IDENTIFIER ::= { cevModuleCpuType 357 } -- Central Processing Unit for Cisco Firepower 1010 Security Appliance cevCpuFPR2140 OBJECT IDENTIFIER ::= { cevModuleCpuType 358 } -- Central Processing Unit for Cisco Firepower 2140 Security Appliance -cevCpuFPR2120 OBJECT IDENTIFIER ::= { cevModuleCpuType 359 } -- Central Processing Unit for Cisco Firepower 2120 Security Appliance +cevCpuFPR2120 OBJECT IDENTIFIER ::= { cevModuleCpuType 359 } -- Central Processing Unit for Cisco Firepower 2120 Security Appliance cevCpuFPR2110 OBJECT IDENTIFIER ::= { cevModuleCpuType 360 } -- Central Processing Unit for Cisco Firepower 2110 Security Appliance cevCpuFPR2130 OBJECT IDENTIFIER ::= { cevModuleCpuType 361 } -- Central Processing Unit for Cisco Firepower 2130 Security Appliance cevCpuFPR2140N OBJECT IDENTIFIER ::= { cevModuleCpuType 362 } -- Network Processing Unit for Cisco Firepower 2140 Security Appliance -cevCpuFPR2120N OBJECT IDENTIFIER ::= { cevModuleCpuType 363 } -- Network Processing Unit for Cisco Firepower 2120 Security Appliance +cevCpuFPR2120N OBJECT IDENTIFIER ::= { cevModuleCpuType 363 } -- Network Processing Unit for Cisco Firepower 2120 Security Appliance cevCpuFPR2110N OBJECT IDENTIFIER ::= { cevModuleCpuType 364 } -- Network Processing Unit for Cisco Firepower 2110 Security Appliance cevCpuFPR2130N OBJECT IDENTIFIER ::= { cevModuleCpuType 365 } -- Network Processing Unit for Cisco Firepower 2130 Security Appliance +cevCpuFPR1150 OBJECT IDENTIFIER ::= { cevModuleCpuType 366 } -- Central Processing Unit for Cisco Firepower 1150 Security Appliance +cevCpuFPR3110 OBJECT IDENTIFIER ::= { cevModuleCpuType 370 } -- Central Processing Unit for Cisco Firepower 3110 Security Appliance +cevCpuFPR3120 OBJECT IDENTIFIER ::= { cevModuleCpuType 371 } -- Central Processing Unit for Cisco Firepower 3120 Security Appliance +cevCpuFPR3130 OBJECT IDENTIFIER ::= { cevModuleCpuType 372 } -- Central Processing Unit for Cisco Firepower 3130 Security Appliance +cevCpuFPR3140 OBJECT IDENTIFIER ::= { cevModuleCpuType 373 } -- Central Processing Unit for Cisco Firepower 3140 Security Appliance +cevCpuFPR1010E OBJECT IDENTIFIER ::= { cevModuleCpuType 375 } -- Central Processing Unit for Cisco Firepower 1010E Security Appliance cevModuleCscType OBJECT IDENTIFIER ::= { cevModule 6 } cevModuleC7xxxType OBJECT IDENTIFIER ::= { cevModule 7 } -cevC7xxxMc14a OBJECT IDENTIFIER ::= { cevModuleC7xxxType 1 } -- cable card 1 downstream 4 upstream -cevC7xxxMc16a OBJECT IDENTIFIER ::= { cevModuleC7xxxType 2 } -- cable card 1 downstream 6 upstream -cevC7xxxMc11 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 3 } -- cable card 1 downstream 1 upstream +cevC7xxxMc14a OBJECT IDENTIFIER ::= { cevModuleC7xxxType 1 } -- cable card 1 downstream 4 upstream +cevC7xxxMc16a OBJECT IDENTIFIER ::= { cevModuleC7xxxType 2 } -- cable card 1 downstream 6 upstream +cevC7xxxMc11 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 3 } -- cable card 1 downstream 1 upstream cevC7xxxMc12a OBJECT IDENTIFIER ::= { cevModuleC7xxxType 4 } -- cable card 1 downstream 2 upstream cevC7xxxMc11a OBJECT IDENTIFIER ::= { cevModuleC7xxxType 5 } -- modem card 1 downstream 1 upstream (ASIC) cevC7xxxIo1feTxIsl OBJECT IDENTIFIER ::= { cevModuleC7xxxType 6 } -- Fast Ethernet I/O Controller which provides RJ45 and MII Connectors -cevC7xxxMc28 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 8 } -- cable card 2 downstream 8 upstream +cevC7xxxMc28 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 8 } -- cable card 2 downstream 8 upstream cevVip480 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 9 } -- 4th Generation Versatile Interface Processor for the c7500 router cevVip450 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 10 } -- 4th Generation Versatile Interface Processor for the c7500 router, lower performance than cevVip480 card cevC7xxxIoEGE OBJECT IDENTIFIER ::= { cevModuleC7xxxType 11 } -- C7200 I/O Controller with GE(1000Mbps) + E(10Mbps) interface @@ -4524,12 +5247,12 @@ cevC7411 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 66 } -- Cisco 7400 Family, cevC7411IoGE OBJECT IDENTIFIER ::= { cevModuleC7xxxType 67 } -- Cisco 7411 I/O Controller with three 10/100/1000Mbps GE interfaces cevC7301 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 68 } -- Cisco 7300 Family, 1 sLOT rOUTER cevC7301IoGE OBJECT IDENTIFIER ::= { cevModuleC7xxxType 69 } -- Cisco 7301 I/O Controller with three 10/100/1000Mbps GE interfaces -cevVip680 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 70 } --A new VIP card to be used in 7500 box. this card is same as VIP4-80 but with a higher speed CPU. +cevVip680 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 70 } --A new VIP card to be used in 7500 box. this card is same as VIP4-80 but with a higher speed CPU. cevC7300CCPA OBJECT IDENTIFIER ::= { cevModuleC7xxxType 76 } -- Port Adaptor Carrier Card for Cisco 7304 cevC7304MSC100 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 77 } -- C7304-MSC-100 is a carrier card for 7304. it can carry up to 2 VPA (Versatile Port Adaptor) cards cevC73006E3 OBJECT IDENTIFIER ::= { cevModuleC7xxxType 78 } -- 6-port E3 interface line card for Cisco 7300 cevC73001Oc12Atm OBJECT IDENTIFIER ::= { cevModuleC7xxxType 79 } -- 1-port OC12 ATM line card for Cisco 7300 -cevC7200Vsa OBJECT IDENTIFIER ::= { cevModuleC7xxxType 81 } -- C7200 VPN Services Adapter +cevC7200Vsa OBJECT IDENTIFIER ::= { cevModuleC7xxxType 81 } -- C7200 VPN Services Adapter cevModuleC4xxxType OBJECT IDENTIFIER ::= { cevModule 8 } cevC4xxxUnknown OBJECT IDENTIFIER ::= { cevModuleC4xxxType 1 } @@ -4542,11 +5265,11 @@ cevNIM4gLteNA7354 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 7 } -- 4G WW cevNIM4gLteGA7304 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 8 } -- 4G WWAN NIM - Global Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS cevNIM4gLteVZ7350 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 9 } -- 4G WWAN NIM - Verizon Multimode LTE/eHRPD/EVDO RevA/Rev0/1xRTT cevNIM4gLteST7350 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 10 } -- 4G WWAN NIM - Sprint Multimode LTE/eHRPD/EVDO RevA/Rev0/1xRTT -cevCat4kWsx45Sup8LE OBJECT IDENTIFIER ::= { cevModuleC4xxxType 11 } -- Catalyst 4500 Sup 8L-E, 560 Gbps Wired, 4x10Gbps SFP+ uplink ports +cevCat4kWsx45Sup8LE OBJECT IDENTIFIER ::= { cevModuleC4xxxType 11 } -- Catalyst 4500 Sup 8L-E, 560 Gbps Wired, 4x10Gbps SFP+ uplink ports cevNIM4gLteLA7430 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 13 } -- 4G WWAN NIM - Latin America Multimode and Asia Pacific LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS cevNIM4gLteALA7430 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 14 } -- 4G WWAN NIM - Latin America Multimode and Asian Pacific Advanced LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS cevNIM4gLteAEA7455 OBJECT IDENTIFIER ::= { cevModuleC4xxxType 15 } -- 4G WWAN NIM - Europe Multimode and North America Advanced LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS -cevCat4kWsx45Sup9e OBJECT IDENTIFIER ::= { cevModuleC4xxxType 19 } -- Catalyst 4500 Sup 9-E Wired Wireless Convergence, 492 Gbps Wired, 4x10G/1G SFP+ or 2x40G QSFP uplink ports +cevCat4kWsx45Sup9e OBJECT IDENTIFIER ::= { cevModuleC4xxxType 19 } -- Catalyst 4500 Sup 9-E Wired Wireless Convergence, 492 Gbps Wired, 4x10G/1G SFP+ or 2x40G QSFP uplink ports cevModuleAS5200Type OBJECT IDENTIFIER ::= { cevModule 9 } @@ -4568,11 +5291,11 @@ cevAS5300VoiceCarrierCard OBJECT IDENTIFIER ::= { cevModuleAS5300Type 7 } cevAS5300Dspmc542 OBJECT IDENTIFIER ::= { cevModuleAS5300Type 8 } -- DSP (Digital Signal Processor) C542 module for the AS5300 and AS5800 series cevAS5300Dsp OBJECT IDENTIFIER ::= { cevModuleAS5300Type 9 } cevAS5300PmDtd12m OBJECT IDENTIFIER ::= { cevModuleAS5300Type 10 } -- Mica 12 modem module -cevAS53008ct14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 11 } -- Channelized Octal T1 and 4 serial card +cevAS53008ct14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 11 } -- Channelized Octal T1 and 4 serial card cevAS53008ce14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 12 } -- Channelized Octal E1 and 4 serial card -cevAS53004ct14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 13 } -- Channelized Quad T1 and 4 serial card -cevAS53004ce14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 14 } -- Channelized Quad E1 and 4 serial card -cevAS5300Amazon2Carrier OBJECT IDENTIFIER ::= { cevModuleAS5300Type 15 } -- Amazon II mica carrier card +cevAS53004ct14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 13 } -- Channelized Quad T1 and 4 serial card +cevAS53004ce14t OBJECT IDENTIFIER ::= { cevModuleAS5300Type 14 } -- Channelized Quad E1 and 4 serial card +cevAS5300Amazon2Carrier OBJECT IDENTIFIER ::= { cevModuleAS5300Type 15 } -- Amazon II mica carrier card cevAS5300Dspm6c549 OBJECT IDENTIFIER ::= { cevModuleAS5300Type 16 } -- DSP (Digital Signal Processor) module that contains 6 C549 DSPs, used in AS5300 and AS5800 cevModuleAS5800Type OBJECT IDENTIFIER ::= { cevModule 12 } @@ -4582,7 +5305,7 @@ cevMAs5800T1 OBJECT IDENTIFIER ::= { cevModuleAS5800Type 3 } cevMAs5800MicaHmm OBJECT IDENTIFIER ::= { cevModuleAS5800Type 4 } cevMAs5800T3 OBJECT IDENTIFIER ::= { cevModuleAS5800Type 5 } -- T3 Trunk Card cevMAs5800FeDsi OBJECT IDENTIFIER ::= { cevModuleAS5800Type 6 } -cevMAs5800MicaDmm OBJECT IDENTIFIER ::= { cevModuleAS5800Type 7 } -- Mica Double Density Modem Module +cevMAs5800MicaDmm OBJECT IDENTIFIER ::= { cevModuleAS5800Type 7 } -- Mica Double Density Modem Module cevMAs5800Vcc OBJECT IDENTIFIER ::= { cevModuleAS5800Type 8 } -- Voice Carrier Card cevMAs5800Dspm6c549 OBJECT IDENTIFIER ::= { cevModuleAS5800Type 9 } -- Digital Signal Processor Module with 6 C549's Voice Feature Card cevMAs5800Dsp OBJECT IDENTIFIER ::= { cevModuleAS5800Type 10 } -- Digital Signal Processor Module Voice Feature Card @@ -4594,7 +5317,7 @@ cev12012Csc OBJECT IDENTIFIER ::= { cevModuleFabricType 4 } -- 12012 Clock Sche cev12008Sfc8 OBJECT IDENTIFIER ::= { cevModuleFabricType 5 } -- 12008 Switch Fabric Card cev12008Csc8 OBJECT IDENTIFIER ::= { cevModuleFabricType 6 } -- 12008 Clock Scheduler Card cev12016Sfc16 OBJECT IDENTIFIER ::= { cevModuleFabricType 7 } -- GSR 12016 Switch Fabric Card -cev12016Csc16 OBJECT IDENTIFIER ::= { cevModuleFabricType 8 } -- GSR 12016 Clock Scheduler Card +cev12016Csc16 OBJECT IDENTIFIER ::= { cevModuleFabricType 8 } -- GSR 12016 Clock Scheduler Card cev12016Sfc16Oc192 OBJECT IDENTIFIER ::= { cevModuleFabricType 9 } -- GSR 12016 OC192 Switch Fabric Card cev12016Csc16Oc192 OBJECT IDENTIFIER ::= { cevModuleFabricType 10 } -- GSR 12016 OC192 Clock Scheduler Card cev12010Sfc10 OBJECT IDENTIFIER ::= { cevModuleFabricType 11 } -- GSR 12010 Switch Fabric Card @@ -4617,7 +5340,8 @@ cev12016SfcAdvncd OBJECT IDENTIFIER ::= { cevModuleFabricType 27 } -- GSR 12016/ cev12004FabAdvncd OBJECT IDENTIFIER ::= { cevModuleFabricType 28 } -- GSR 12004/12404 Advanced Collapsed Fabric/Alarm card cev12816Csc16Oc768B OBJECT IDENTIFIER ::= { cevModuleFabricType 29 } -- GSR 12816 Enhanced Clock Scheduler Card cev12810Csc10Oc768B OBJECT IDENTIFIER ::= { cevModuleFabricType 30 } -- GSR 12810 Enhanced Clock Scheduler Card -cevModuleFabricTypeAsic OBJECT IDENTIFIER ::= { cevModuleFabricType 45 } -- Cisco Fabric SFE ASIC +cevModuleFabricTypeAsic OBJECT IDENTIFIER ::= { cevModuleFabricType 45 } -- Cisco Fabric SFE ASIC +cevModuleFabricTypeNCS4KLCFASIC OBJECT IDENTIFIER ::= { cevModuleFabricType 46 } -- Cisco NCS 4000 Series Linecard Chassis Fabric ASIC cevModuleDaughterCard OBJECT IDENTIFIER ::= { cevModule 15 } @@ -4636,10 +5360,10 @@ cevCeScsi2636 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 24 } -- SCSI daught cevCeIde2636 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 25 } -- IDE daughter card used by Content Engine Modules for 26xx and 36xx series platforms cevVic4vpFxs4Did OBJECT IDENTIFIER ::= { cevModuleDaughterCard 26 } -- 4-port Direct Inward Dialing (DID) and 4-port Foreign Exchange Station (FXS) Voice Interface Daughtercard cevC7300Nse100PlusDb OBJECT IDENTIFIER ::= { cevModuleDaughterCard 27 } -- Network Service Engine 100+ Daughtercard for Cisco 7300 platform -cevModuleCat4000DaughterCardType OBJECT IDENTIFIER ::= { cevModuleDaughterCard 28 } -- Catalyst 4000 Daughter Cards +cevModuleCat4000DaughterCardType OBJECT IDENTIFIER ::= { cevModuleDaughterCard 28 } -- Catalyst 4000 Daughter Cards -cevCat4kDCWsf4531 OBJECT IDENTIFIER ::= { cevModuleCat4000DaughterCardType 1 } --NFFC(Netflow Feature Card) supervisor daughter card -cevCat4kDCWsu4504FxMt OBJECT IDENTIFIER ::= { cevModuleCat4000DaughterCardType 2 } -- Daughter Card with 4 100-Base FX uplink ports +cevCat4kDCWsf4531 OBJECT IDENTIFIER ::= { cevModuleCat4000DaughterCardType 1 } --NFFC(Netflow Feature Card) supervisor daughter card +cevCat4kDCWsu4504FxMt OBJECT IDENTIFIER ::= { cevModuleCat4000DaughterCardType 2 } -- Daughter Card with 4 100-Base FX uplink ports cevVwic2Mft1T1E1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 29 } -- VWIC2-1MFT-T1E1 (1 Port) RJ-48 Multi-Flex Trunk -T1/E1 cevVwic2Mft1G703 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 30 } -- VWIC2-1MFT-G703 (1 Port) RJ-48 Multi-Flex Trunk - G.703 cevVwic2Mft2T1E1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 31 } -- VWIC2-2MFT-T1E1 (2 Port) RJ-48 Multi-Flex Trunk - T1/E1 @@ -4660,7 +5384,7 @@ cevpvdm2hwecan1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 45 } -- Packet Vo cevNetworkProcessor OBJECT IDENTIFIER ::= { cevModuleDaughterCard 46 } -- Network Processor card cevVic2Mft1T1E1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 47 } -- 1-Port RJ-48 Multiflex Voice Trunk - T1/E1 cevVic2Mft2T1E1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 48 } -- 2-Port RJ-48 Multiflex Voice Trunk - T1/E1 -cevEm2Hda4Fxo OBJECT IDENTIFIER ::= { cevModuleDaughterCard 49 } -- 4-port voice/fax expansion module - FXO +cevEm2Hda4Fxo OBJECT IDENTIFIER ::= { cevModuleDaughterCard 49 } -- 4-port voice/fax expansion module - FXO cevVic1J1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 50 } -- VIC-1J1,Digital Voice J1 Interface with a single port DB-15 Connector for 2600, 3600 and 3700 series cevWic1amV2 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 51 } -- WAN Interface Card - 1 Port Analog Modem cevWic2amV2 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 52 } -- WAN Interface Card - 2 port Analog Modem @@ -4690,9 +5414,9 @@ cevVwic3Mft1G703 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 84 } cevVwic3Mft2T1E1 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 85 } -- VWIC3-2MFT-T1E1 (2 Port) RJ-48 Multi-Flex Trunk -T1/E1 cevVwic3Mft2G703 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 86 } -- VWIC3-2MFT-G703 (2 Port) RJ-48 Multi-Flex Trunk - G.703 cevPrp3Smdc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 87 } -- New daughter card for the route processor card on c12000. Please refer to EDCS-883053 for more details -cevModemWan4g OBJECT IDENTIFIER ::= { cevModuleDaughterCard 88 } -- 4G WAN Modem Card -cevMdcC6880xPfc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 89 } -- Catalyst 6880 Policy Feature Card -cevMdcC6880xlePfc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 90 } -- Catalyst 6880 Policy Feature Card LE +cevModemWan4g OBJECT IDENTIFIER ::= { cevModuleDaughterCard 88 } -- 4G WAN Modem Card +cevMdcC6880xPfc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 89 } -- Catalyst 6880 Policy Feature Card +cevMdcC6880xlePfc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 90 } -- Catalyst 6880 Policy Feature Card LE cevMdcC6880xDfc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 91 } -- Catalyst 6880 Distributed Forwarding Card cevMdcC6880xleDfc OBJECT IDENTIFIER ::= { cevModuleDaughterCard 92 } -- Catalyst 6880 Distributed Forwarding Card LE cevPWic1AmV2 OBJECT IDENTIFIER ::= { cevModuleDaughterCard 93 } -- one-port Analog Modem Interface card @@ -4775,12 +5499,12 @@ cevMGBICDWDM3346 OBJECT IDENTIFIER ::= { cevModuleGBICs 58 } -- DWDM cevModuleC6xxxType OBJECT IDENTIFIER ::= { cevModule 17 } cevC6xxxSlcCap8 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 1 } -- Subscriber line card for c6200 - Carrierless Amplitude and Phase modulation, 8 port variation cevC6xxxNtcOc3si OBJECT IDENTIFIER ::= { cevModuleC6xxxType 2 } -- Network Trunk card for c6200 - Optical Carrier 3, single-mode, intermediate reach variation -cevC6xxxNtcOc3mm OBJECT IDENTIFIER ::= { cevModuleC6xxxType 3 } -- Network Trunk Card for c6200 - Optical Carrier 3, multi-mode variation +cevC6xxxNtcOc3mm OBJECT IDENTIFIER ::= { cevModuleC6xxxType 3 } -- Network Trunk Card for c6200 - Optical Carrier 3, multi-mode variation cevC6xxxNtcStm1si OBJECT IDENTIFIER ::= { cevModuleC6xxxType 4 } -- Network Trunk Card for c6200 - Synchronous Transport Module level 1, single-mode, intermediate reach variation cevC6xxxNtcStm1mm OBJECT IDENTIFIER ::= { cevModuleC6xxxType 5 } -- Network Trunk Card for c6200 - Synchronous Transport Module level 1, multi-mode variation -cevC6xxxSlcDmt8 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 6 } -- Subscriber line card for c6200 - Discrete Multi-Tone, 8 port variation +cevC6xxxSlcDmt8 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 6 } -- Subscriber line card for c6200 - Discrete Multi-Tone, 8 port variation cevC6xxxSlcDmt16 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 7 } -- Subscriber line card for c6200 - Discrete Multi-Tone, 16 port variation -cevC6xxxNtcDs3 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 8 } -- Network Trunk card for c6200 - DS3 +cevC6xxxNtcDs3 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 8 } -- Network Trunk card for c6200 - DS3 cevC6xxxOsm1Oc48PosSs OBJECT IDENTIFIER ::= { cevModuleC6xxxType 10 } -- Optical Service Module, 1-Port OC48 POS SS w/ 4 GE cevC6xxxOsm1Oc48PosSl OBJECT IDENTIFIER ::= { cevModuleC6xxxType 11 } -- Optical Service Module, 1-Port OC48 POS SL w/ 4 GE cevC6xxxOsm1Oc48PosSi OBJECT IDENTIFIER ::= { cevModuleC6xxxType 12 } -- Optical Service Module, 1-Port OC48 POS SI w/ 4 GE @@ -4813,20 +5537,20 @@ cevC6xxxOsm1Oc48PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 44 } -- En cevC6xxxOsm1Oc48PosSlPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 45 } -- Enhanced Optical Service Module, 1-Port OC48 POS SL w/ 4 GE cevC6xxxOsm4Oc12PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 46 } -- Enhanced Optical Service Module, 4-Port OC12 POS SI w/ 4 GE cevC6xxxOsm2Oc12PosMmPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 47 } -- Enhanced Optical Service Module, 2-Port OC12 POS MM w/ 4 GE -cevC6xxxOsm4Oc3PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 48 } -- Enhanced Optical Service Module, 4-Port OC3 POS SI w/ 4 GE +cevC6xxxOsm4Oc3PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 48 } -- Enhanced Optical Service Module, 4-Port OC3 POS SI w/ 4 GE cevC6xxxOsm8Oc3PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 49 } -- Enhanced Optical Service Module, 8-Port OC3 POS SI w/ 4 GE cevC6xxxOsm8Oc3PosSlPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 50 } -- Enhanced Optical Service Module, 8-Port OC3 POS SL w/ 4 GE cevC6xxxOsm16Oc3PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 51 } -- Enhanced Optical Service Module, 16-Port OC3 POS SI w/ 4 GE -cevC6xxxOsm12Ct3T1 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 52 } -- Optical Service Module, 12-Port DS3 Channelized T1/E1 +cevC6xxxOsm12Ct3T1 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 52 } -- Optical Service Module, 12-Port DS3 Channelized T1/E1 cevC6xxxCwpa2 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 53 } -- Flexwan2 Linecard cevC6xxxSIP200 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 54 } -- SIP1/SIP200 LC which holds the SPAs. cevC6xxxSIP400 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 55 } -- SIP2/SIP400 LC which holds SPAs cevC6xxxSIP600 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 56 } -- SIP2-10G/SIP600 LC which holds SPAs -cevC6xxxOsm2Oc12PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 57 } -- Enhanced Optical Service Module, 2 port OC12 Pos SI w/4 GE -cevC6xxxOsm4Oc3PosSi OBJECT IDENTIFIER ::= { cevModuleC6xxxType 58 } -- Optical Service Module, 4 port OC3 POS SI w/ 4 GE -cevC6xxxOsm4Oc3PosSl OBJECT IDENTIFIER ::= { cevModuleC6xxxType 59 } -- Optical Service Module, 4 port OC3 POS SL w/ 4 GE -cevC6xxxOsm4Oc3PosMm OBJECT IDENTIFIER ::= { cevModuleC6xxxType 60 } -- Optical Service Module, 4 port OC3 POS MM w/ 4 GE -cevC6xxxOsm24Ct3T1 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 61 } -- Optical Service Module, 24 port DS3 Channelized T1/E1 +cevC6xxxOsm2Oc12PosSiPlus OBJECT IDENTIFIER ::= { cevModuleC6xxxType 57 } -- Enhanced Optical Service Module, 2 port OC12 Pos SI w/4 GE +cevC6xxxOsm4Oc3PosSi OBJECT IDENTIFIER ::= { cevModuleC6xxxType 58 } -- Optical Service Module, 4 port OC3 POS SI w/ 4 GE +cevC6xxxOsm4Oc3PosSl OBJECT IDENTIFIER ::= { cevModuleC6xxxType 59 } -- Optical Service Module, 4 port OC3 POS SL w/ 4 GE +cevC6xxxOsm4Oc3PosMm OBJECT IDENTIFIER ::= { cevModuleC6xxxType 60 } -- Optical Service Module, 4 port OC3 POS MM w/ 4 GE +cevC6xxxOsm24Ct3T1 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 61 } -- Optical Service Module, 24 port DS3 Channelized T1/E1 cevCat6kWsx6600 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 62 } -- Catalyst 6000 Acess Gateway line card supporting voice and WAN (Wide Area Network)interfaces as well as conferencing and transcoding services cevC6xxxSSC600 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 63 } -- SSC600 LC which holds the SPAs cevC6xxxSSC400 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 64 } -- SSC400 LC which holds the SPAs @@ -4836,8 +5560,8 @@ cevC6xxxRSP3210GEBase OBJECT IDENTIFIER ::= { cevModuleC6xxxType 67 } -- C760 cevC6xxxRSP720 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 68 } -- C7600 Route Switch Processor Module 720 CPU board cevC6xxxRSP32 OBJECT IDENTIFIER ::= { cevModuleC6xxxType 69 } -- C7600 Route Switch Processor Module 32 CPU board cevC6xxxSIP600DC OBJECT IDENTIFIER ::= { cevModuleC6xxxType 71 } -- SIP 600 Distributed Forwarding Card -cevC6xxxRSP720MsfcNaboo OBJECT IDENTIFIER ::= { cevModuleC6xxxType 72 } -- RSP720 Multilevel Switching Feature Card -cevC6xxxRSP720PfcGanges OBJECT IDENTIFIER ::= { cevModuleC6xxxType 73 } -- RSP720 Policy Feature Card +cevC6xxxRSP720MsfcNaboo OBJECT IDENTIFIER ::= { cevModuleC6xxxType 72 } -- RSP720 Multilevel Switching Feature Card +cevC6xxxRSP720PfcGanges OBJECT IDENTIFIER ::= { cevModuleC6xxxType 73 } -- RSP720 Policy Feature Card cevC6xxxEsm20G OBJECT IDENTIFIER ::= { cevModuleC6xxxType 74 } -- 2x10G or 20x1G Ethernet Distributed Forwarding Line Card on Cisco 7600 cevC6xxxEsm20GCpuDc OBJECT IDENTIFIER ::= { cevModuleC6xxxType 75 } -- ESM20G CPU Daughter Card cevC6xxxEsm20GPfc3CxlDc OBJECT IDENTIFIER ::= { cevModuleC6xxxType 76 } -- ESM20G Policy Forwarding 3CXL Daughter Card @@ -4903,10 +5627,10 @@ cevPos8oc3Mm OBJECT IDENTIFIER ::= { cevModuleGsrType 7 } -- GSR 8 port OC3 Mul cevPos8oc3Ir OBJECT IDENTIFIER ::= { cevModuleGsrType 8 } -- GSR 8 port OC3 SM intermediate reach POS cevPos8oc3Lr OBJECT IDENTIFIER ::= { cevModuleGsrType 9 } -- GSR 8 port OC3 SM long reach POS cevPos16oc3Mm OBJECT IDENTIFIER ::= { cevModuleGsrType 10 } -- GSR 16 port OC3 multimode POS -cevPos16oc3Ir OBJECT IDENTIFIER ::= { cevModuleGsrType 11 } -- GSR 16 port OC3 SM intermediate reach POS +cevPos16oc3Ir OBJECT IDENTIFIER ::= { cevModuleGsrType 11 } -- GSR 16 port OC3 SM intermediate reach POS cevPos16oc3Lr OBJECT IDENTIFIER ::= { cevModuleGsrType 12 } -- GSR 16 port OC3 SM long reach POS -cevGsr8feTx OBJECT IDENTIFIER ::= { cevModuleGsrType 13 } -- GSR 8 port Fast Ethernet card with copper interface -cevGsr8feFx OBJECT IDENTIFIER ::= { cevModuleGsrType 14 } -- GSR 8 port Fast Ethernet card with fiber interface +cevGsr8feTx OBJECT IDENTIFIER ::= { cevModuleGsrType 13 } -- GSR 8 port Fast Ethernet card with copper interface +cevGsr8feFx OBJECT IDENTIFIER ::= { cevModuleGsrType 14 } -- GSR 8 port Fast Ethernet card with fiber interface cevSsrpOc48SmSr OBJECT IDENTIFIER ::= { cevModuleGsrType 15 } -- GSR 1 port SONET based SRP OC-48c/STM-16 Single Mode, Short Reach cevSsrpOc48SmLr OBJECT IDENTIFIER ::= { cevModuleGsrType 16 } -- GSR 1 port SONET based SRP OC-48c/STM-16 Single Mode, Long Reach cevPosQoc12SmLr OBJECT IDENTIFIER ::= { cevModuleGsrType 17 } -- GSR 4 port (Quad) OC-12 POS cards, single mode, long reach @@ -4941,7 +5665,7 @@ cevAtm4Oc3Mm OBJECT IDENTIFIER ::= { cevModuleGsrType 45 } -- 4 port OC3 ATM mu cevOc12ChDs3Mm OBJECT IDENTIFIER ::= { cevModuleGsrType 46 } -- OC12 Channelized DS3 multimode linecard cevOc12ChDs3Sm OBJECT IDENTIFIER ::= { cevModuleGsrType 47 } -- OC12 Channelized DS3 single mode linecard cevGsrGe OBJECT IDENTIFIER ::= { cevModuleGsrType 48 } -- 1 port Gigabit Ethernet line card -cevGsr3ge OBJECT IDENTIFIER ::= { cevModuleGsrType 49 } -- GSR 3 Port Gigabit Ethernet Line Card +cevGsr3ge OBJECT IDENTIFIER ::= { cevModuleGsrType 49 } -- GSR 3 Port Gigabit Ethernet Line Card cevGsrAlarm16 OBJECT IDENTIFIER ::= { cevModuleGsrType 50 } -- GSR Alarm Module cevGsrBusBoard16 OBJECT IDENTIFIER ::= { cevModuleGsrType 51 } -- GSR Bus Board for power distribution cevSrpOc12SmXr OBJECT IDENTIFIER ::= { cevModuleGsrType 52 } -- GSR 1 port single mode SRP OC-12/STM-4 extended reach module @@ -4950,7 +5674,7 @@ cevPosEnQoc48SmSrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 54 } -- GSR enhance cevPosEnQoc48SmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 55 } -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Short Reach, SC Connector Card cevPosEnQoc48SmLrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 56 } -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Long Reach, SC Connector Card cevPosEnQoc48SmLrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 57 } -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Long Reach, FC Connector Card -cevGsr6Ct3 OBJECT IDENTIFIER ::= { cevModuleGsrType 58 } -- GSR 6 Port Channelized T3 Line Card +cevGsr6Ct3 OBJECT IDENTIFIER ::= { cevModuleGsrType 58 } -- GSR 6 Port Channelized T3 Line Card cevPosEnOc192SmLrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 59 } -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Long Reach, FC Connector Card cevPosEnOc192SmLrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 60 } -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Long Reach, SC Connector Card cevPosEnOc192SmVsrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 61 } -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Very Short Reach, SC Connector Card @@ -4974,14 +5698,14 @@ cevGsrBusBoard10 OBJECT IDENTIFIER ::= { cevModuleGsrType 82 } -- GSR Bus Board cevGsrOc48Chstsds3SmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 83 } -- GSR 1-port-OC48, channelized to STS-48c/STM-16, STS-12c/STM-4, STS-3c/STM-1 or DS3, single mode, short-reach, SC connector cevGsrE48PosOc48SmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 84 } -- GSR, Edge Engine 48, (concatenated) 1 port OC48 POS, single mode, short-reach, SC connector cevGsrE48PosOc48SmLrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 85 } -- GSR, Edge Engine 48, (concatenated) 1 port OC48 POS, single mode, long-reach, SC connector -cevGsrE48PosQoc12SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 86 } -- GSR, Edge Engine 48, 4 port (concatenated) OC12 POS, single mode, intermediate reach, SC connector +cevGsrE48PosQoc12SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 86 } -- GSR, Edge Engine 48, 4 port (concatenated) OC12 POS, single mode, intermediate reach, SC connector cevGsrE48Pos16oc3SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 87 } -- GSR, Edge Engine 48, 16 port (concatenated) OC3 POS, single mode, intermediate reach, SC connector cevCopper6e3 OBJECT IDENTIFIER ::= { cevModuleGsrType 88 } -- GSR 6 port copper E3 interface line card cevCopper12e3 OBJECT IDENTIFIER ::= { cevModuleGsrType 89 } -- GSR 12 port copper E3 interface line card cevGsrE48Pos16oc3SmIrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 93 } -- GSR, Edge Engine 48, 16 port (concatenated) OC3 POS, single mode, intermediate reach, LC connector cevGsr16oc3Chstsds3SmIrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 94 } -- GSR 16 port OC3 channelized to STS-3c/STM-1 or DS-3; single mode fiber, intermediate reach, LC connector cevGsrOc12ChDs1SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 95 } -- GSR 1 port OC12 channelized to DS1, single-mode intermediate reach line card with SC connector -cevGsrAlarm6 OBJECT IDENTIFIER ::= { cevModuleGsrType 96 } -- GSR 12406 Alarm Module +cevGsrAlarm6 OBJECT IDENTIFIER ::= { cevModuleGsrType 96 } -- GSR 12406 Alarm Module cevPosEnQoc48Vsr OBJECT IDENTIFIER ::= { cevModuleGsrType 97 } -- GSR enhanced 4 Port Packet Over Sonet OC-48, Very Short Reach Card cevPosEnQoc48MmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 98 } -- GSR enhanced 4 Port Packet Over Sonet OC-48, Multi Mode, Short Reach, SC Connector Card cevPosEnQoc48SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 99 } -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Intermediate Reach, SC Connector Card @@ -4997,7 +5721,7 @@ cevPosEnOc192SmVlrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 108 } -- GSR enhan cevPosEnOc192SmVlrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 109 } -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Very Long Reach, FC Connector Card cevPosEnOc192SmElrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 110 } -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Extremely Long Reach, SC Connector Card cevPosEnOc192SmElrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 111 } -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Extremely Long Reach, FC Connector Card -cevGsrEn8Oc3 OBJECT IDENTIFIER ::= { cevModuleGsrType 112 } -- GSR enhanced 8 port OC3c/STM-1 ATM LC +cevGsrEn8Oc3 OBJECT IDENTIFIER ::= { cevModuleGsrType 112 } -- GSR enhanced 8 port OC3c/STM-1 ATM LC cevGsr1p10ge OBJECT IDENTIFIER ::= { cevModuleGsrType 113 } -- One Port 10 Gigabit Ethernet Card for the 12000 series routers cevGsrE48PosOc48SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 114 } -- GSR, Edge Engine, OC48 POS, Single Mode, Intermediate Reach, SC Connector cevGsrEOc192SmLrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 116 } -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Long Reach, SC Connector card @@ -5039,19 +5763,19 @@ cevSsrp2Oc48PosSmSrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 151 } -- GSR 2 p cevSsrp2Oc48PosSmIrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 152 } -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, POS Mode, Single Mode, Intermediate Reach, LC Connector card cevSsrp2Oc48PosSmLrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 153 } -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, POS Mode, Single Mode, Long Reach, LC Connector card cevGsrE48PosQoc12MmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 155 } -- GSR edge48 Quad OC-12 (concanenated) POS card, Multi Mode (fiber), Short Reach, SC connector -cevGsrGeFe OBJECT IDENTIFIER ::= { cevModuleGsrType 156 } -- Modular Gigabit/Fast Ethernet card for GSR +cevGsrGeFe OBJECT IDENTIFIER ::= { cevModuleGsrType 156 } -- Modular Gigabit/Fast Ethernet card for GSR cevGsrE48Atm4oc12SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 157 } -- Edge Engine 48, ATM, 4 ports OC12/STM4, Single Mode, Intermediate Reach, SC connector cevGsrE48Atm4oc12MmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 158 } -- GSR, Edge Engine 48, ATM, 4 ports OC12/STM4, Multi Mode, Short Reach, SC connector cevGsrE48Atm4oc3SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 159 } -- GSR, Edge Engine 48, ATM, 4 ports OC3/STM1, Single Mode, Intermediate reach, SC connector cevGsrE48Atm4oc3MmSrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 160 } -- GSR, Edge Engine 48, ATM, 4 ports OC3/STM1, Multi Mode, Short Reach, SC connector cevGsrE48Pos4oc3SmIrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 162 } -- GSR, Edge Engine 48, 4 port concatenated OC3 POS, Single mode, Intermediate reach, LC connector -cevGsrE48Pos8oc3SmIrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 166 } -- GSR, Edge Engine 48, 8 port concatenated OC3 POS, Single mode, Intermediate reach, LC connector -cevSsrp2Oc12E48SmIr OBJECT IDENTIFIER ::= { cevModuleGsrType 167 } -- GSR 2 port SONET based SRP OC-12c/STM-4 Single mode Intermediate reach line card -cevSsrp2Oc12E48SmXr OBJECT IDENTIFIER ::= { cevModuleGsrType 168 } -- GSR 2 port SONET based SRP OC-12c/STM-4 Single mode Extented reach line card -cevSsrp1Oc12E48SmIr OBJECT IDENTIFIER ::= { cevModuleGsrType 169 } -- GSR 1 port SONET based SRP OC-12c/STM-4 Single mode Intermediate reach line card -cevSsrp1Oc12E48SmXr OBJECT IDENTIFIER ::= { cevModuleGsrType 170 } -- GSR 1 port SONET based SRP OC-12c/STM-4 Single mode Extented reach line card +cevGsrE48Pos8oc3SmIrLc OBJECT IDENTIFIER ::= { cevModuleGsrType 166 } -- GSR, Edge Engine 48, 8 port concatenated OC3 POS, Single mode, Intermediate reach, LC connector +cevSsrp2Oc12E48SmIr OBJECT IDENTIFIER ::= { cevModuleGsrType 167 } -- GSR 2 port SONET based SRP OC-12c/STM-4 Single mode Intermediate reach line card +cevSsrp2Oc12E48SmXr OBJECT IDENTIFIER ::= { cevModuleGsrType 168 } -- GSR 2 port SONET based SRP OC-12c/STM-4 Single mode Extented reach line card +cevSsrp1Oc12E48SmIr OBJECT IDENTIFIER ::= { cevModuleGsrType 169 } -- GSR 1 port SONET based SRP OC-12c/STM-4 Single mode Intermediate reach line card +cevSsrp1Oc12E48SmXr OBJECT IDENTIFIER ::= { cevModuleGsrType 170 } -- GSR 1 port SONET based SRP OC-12c/STM-4 Single mode Extented reach line card cevGsrSIP600 OBJECT IDENTIFIER ::= { cevModuleGsrType 171 } -- ISE 10G SPA Interface Card -cevGsr4pge OBJECT IDENTIFIER ::= { cevModuleGsrType 173 } -- Tetra card Edge engine 3 - 4 port Gigabit Ethernet card +cevGsr4pge OBJECT IDENTIFIER ::= { cevModuleGsrType 173 } -- Tetra card Edge engine 3 - 4 port Gigabit Ethernet card cevGsrAtmEn8Oc3Mm OBJECT IDENTIFIER ::= { cevModuleGsrType 174 } -- GSR enhanced 8 port OC3c/STM-1 Multimode ATM LC cevGsr2Oc192Pos OBJECT IDENTIFIER ::= { cevModuleGsrType 175 } -- GSR 2 Port Packet Over Sonet OC-192c/STM-64 line card cevGsr8Oc48Pos OBJECT IDENTIFIER ::= { cevModuleGsrType 176 } -- GSR 8 Port Packet Over Sonet OC-48c/STM-16 line card @@ -5070,41 +5794,41 @@ cevPosE2Oc192SmVlrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 188 } -- GSR Edge cevPosE2Oc192SmElrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 189 } -- GSR Edge 2 Port Packet Over Sonet OC-192, Single Mode, Extremely Long Reach, SC Connector Card cevPosE2Oc192SmElrFc OBJECT IDENTIFIER ::= { cevModuleGsrType 190 } -- GSR Edge 2 Port Packet Over Sonet OC-192, Single Mode, Extremely Long Reach, FC Connector Card cevGsr6Ds3e3Smb OBJECT IDENTIFIER ::= { cevModuleGsrType 191 } -- GSR 6 Port DS3/E3 Clear Channel, SMB Connector line card -cevGsr6Ds3e3Ct3Smb OBJECT IDENTIFIER ::= { cevModuleGsrType 192 } -- GSR 6 Port DS3/E3 Clear channel and/or Channelized to DS1/E1, SMB Connector line card +cevGsr6Ds3e3Ct3Smb OBJECT IDENTIFIER ::= { cevModuleGsrType 192 } -- GSR 6 Port DS3/E3 Clear channel and/or Channelized to DS1/E1, SMB Connector line card cevGsr2Oc3Chds1ds3e3SmIrSc OBJECT IDENTIFIER ::= { cevModuleGsrType 193 } -- GSR 2 Port STM-1/OC-3 Channelized to DS3/E3/DS1/E1, Single Mode, Intermediate Reach and SC Connector line card cevGsrService OBJECT IDENTIFIER ::= { cevModuleGsrType 194 } -- GSR Service Card -cevGsrSIP601 OBJECT IDENTIFIER ::= { cevModuleGsrType 195 } -- ISE 10G SPA Interface Card +cevGsrSIP601 OBJECT IDENTIFIER ::= { cevModuleGsrType 195 } -- ISE 10G SPA Interface Card cevGsrSIP501 OBJECT IDENTIFIER ::= { cevModuleGsrType 196 } -- ISE 5G SPA Interface Card cevGsrSIP401 OBJECT IDENTIFIER ::= { cevModuleGsrType 197 } -- ISE 2.5G SPA Interface Card -cevGsrSsrp2Oc48Lc OBJECT IDENTIFIER ::= { cevModuleGsrType 198 } -- GSR 2 port SONET based SRP OC-48c/STM-16 (SFP) LC +cevGsrSsrp2Oc48Lc OBJECT IDENTIFIER ::= { cevModuleGsrType 198 } -- GSR 2 port SONET based SRP OC-48c/STM-16 (SFP) LC cevGsrE384Cec OBJECT IDENTIFIER ::= { cevModuleGsrType 200 } -- Cisco 12000 Series SPA nterface Processor-701 -- cevModuleRpmType cards are slot-cards specific to the RPM platform cevModuleRpmType OBJECT IDENTIFIER ::= { cevModule 19 } -cevAtmdxRpm OBJECT IDENTIFIER ::= { cevModuleRpmType 1 } -- RPM Cell Bus Interface +cevAtmdxRpm OBJECT IDENTIFIER ::= { cevModuleRpmType 1 } -- RPM Cell Bus Interface -- cevModuleCat8500Type cards are slot cards specific to the Catalyst 85xx MSR/CSR family cevModuleCat8500Type OBJECT IDENTIFIER ::= { cevModule 20 } -cevCat8500CpuSwitch OBJECT IDENTIFIER ::= { cevModuleCat8500Type 1 } -- Switch Processor -cevCat8500FeatureFpga OBJECT IDENTIFIER ::= { cevModuleCat8500Type 2 } -- FPGA feature card -cevCat8500FeatureAsic OBJECT IDENTIFIER ::= { cevModuleCat8500Type 3 } -- ASIC feature card -cevCat8500FeaturePVC OBJECT IDENTIFIER ::= { cevModuleCat8500Type 4 } -- PVC feature card -cevCat8500FeUTP8p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 5 } -- 8 port 16k memory fast ethernet UTP card -cevCat8500FeUTP8p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 6 } -- 8 port 64k memory fast ethernet UTP card -cevCat8500FeMMF8p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 7 } -- 8 port 16k memory fast ethernet fiber card -cevCat8500FeMMF8p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 8 } -- 8 port 64k memory fast ethernet fiber card -cevCat8500FeUTP16p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 9 } -- 16 port 16k memory fast ethernet UTP card -cevCat8500FeUTP16p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 10 } -- 16 port 64k memory fast ethernet UTP card -cevCat8500FeMMF16p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 11 } -- 16 port 16k memory fast ethernet fiber card -cevCat8500FeMMF16p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 12 } -- 16 port 64k memory fast ethernet fiber card -cevCat8500GeF1p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 13 } -- 1 port 16k memory gigabit ethernet fiber card -cevCat8500GeF1p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 14 } -- 1 port 64k memory gigabit ethernet fiber card -cevCat8500GeF2p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 15 } -- 2 port 16k memory gigabit ethernet fiber card -cevCat8500GeF2p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 16 } -- 2 port 64k memory gigabit ethernet fiber card -cevCat8500FeBridge4p OBJECT IDENTIFIER ::= { cevModuleCat8500Type 17 } -- 4 port fast ethernet bridge card -cevCat8500RouteProc OBJECT IDENTIFIER ::= { cevModuleCat8500Type 18 } -- Routing Processor -cevCat8500Switch10GProc OBJECT IDENTIFIER ::= { cevModuleCat8500Type 19 } -- 10G switching processor -cevCat8500FeatureNetClock OBJECT IDENTIFIER ::= { cevModuleCat8500Type 20 } -- Network Clock feature card +cevCat8500CpuSwitch OBJECT IDENTIFIER ::= { cevModuleCat8500Type 1 } -- Switch Processor +cevCat8500FeatureFpga OBJECT IDENTIFIER ::= { cevModuleCat8500Type 2 } -- FPGA feature card +cevCat8500FeatureAsic OBJECT IDENTIFIER ::= { cevModuleCat8500Type 3 } -- ASIC feature card +cevCat8500FeaturePVC OBJECT IDENTIFIER ::= { cevModuleCat8500Type 4 } -- PVC feature card +cevCat8500FeUTP8p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 5 } -- 8 port 16k memory fast ethernet UTP card +cevCat8500FeUTP8p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 6 } -- 8 port 64k memory fast ethernet UTP card +cevCat8500FeMMF8p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 7 } -- 8 port 16k memory fast ethernet fiber card +cevCat8500FeMMF8p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 8 } -- 8 port 64k memory fast ethernet fiber card +cevCat8500FeUTP16p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 9 } -- 16 port 16k memory fast ethernet UTP card +cevCat8500FeUTP16p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 10 } -- 16 port 64k memory fast ethernet UTP card +cevCat8500FeMMF16p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 11 } -- 16 port 16k memory fast ethernet fiber card +cevCat8500FeMMF16p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 12 } -- 16 port 64k memory fast ethernet fiber card +cevCat8500GeF1p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 13 } -- 1 port 16k memory gigabit ethernet fiber card +cevCat8500GeF1p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 14 } -- 1 port 64k memory gigabit ethernet fiber card +cevCat8500GeF2p16k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 15 } -- 2 port 16k memory gigabit ethernet fiber card +cevCat8500GeF2p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 16 } -- 2 port 64k memory gigabit ethernet fiber card +cevCat8500FeBridge4p OBJECT IDENTIFIER ::= { cevModuleCat8500Type 17 } -- 4 port fast ethernet bridge card +cevCat8500RouteProc OBJECT IDENTIFIER ::= { cevModuleCat8500Type 18 } -- Routing Processor +cevCat8500Switch10GProc OBJECT IDENTIFIER ::= { cevModuleCat8500Type 19 } -- 10G switching processor +cevCat8500FeatureNetClock OBJECT IDENTIFIER ::= { cevModuleCat8500Type 20 } -- Network Clock feature card cevCat8500FeatureABR OBJECT IDENTIFIER ::= { cevModuleCat8500Type 21 } -- ABR relative rate feature card cevCat8500FeatureLite OBJECT IDENTIFIER ::= { cevModuleCat8500Type 22 } -- Feature Card for Catalyst8540MSR cevCat8500m16pOC3Mm OBJECT IDENTIFIER ::= { cevModuleCat8500Type 23 } -- 16-port OC3 Multimode @@ -5116,19 +5840,19 @@ cevCat8500m4pOC3Mixed OBJECT IDENTIFIER ::= { cevModuleCat8500Type 28 } -- 4-po cevCat8500m4pOC3Sm OBJECT IDENTIFIER ::= { cevModuleCat8500Type 29 } -- 4-port OC3 Singlemode cevCat8500m4pOC3Mm OBJECT IDENTIFIER ::= { cevModuleCat8500Type 30 } -- 4-port OC3 Multimode cevCat8500mATM25 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 31 } -- 25Mbps ATM port adapter module -cevCat8500m4pE3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 32 } -- Quad E3 -cevCat8500m4pDs3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 33 } -- Quad DS3 +cevCat8500m4pE3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 32 } -- Quad E3 +cevCat8500m4pDs3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 33 } -- Quad DS3 cevCat8500mCbr75E1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 34 } -- Circuit Emulation E1 (75ohm) cevCat8500mCbr120E1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 35 } -- Circuit Emulation E1 (120ohm) cevCat8500mCbrT1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 36 } -- Circuit Emulation T1 -cevCat8500mE1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 37 } -- E1 ATM +cevCat8500mE1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 37 } -- E1 ATM cevCat8500mT1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 38 } -- T1 ATM cevCat8500mE1Bnc OBJECT IDENTIFIER ::= { cevModuleCat8500Type 39 } -- E1 ATM with BNC connector -cevCat8500mE3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 40 } -- E3 ATM +cevCat8500mE3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 40 } -- E3 ATM cevCat8500mDs3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 41 } -- DS3 ATM cevCat8500m4pFrCE1 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 42 } -- 4-port Channelized E1, Frame-based -cevCat8500m1pFrCT3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 43 } -- Channelized T3, Frame-based -cevCat8500GeF8p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 44 } -- 8 port 64k memory Gigabit Ethernet fiber card +cevCat8500m1pFrCT3 OBJECT IDENTIFIER ::= { cevModuleCat8500Type 43 } -- Channelized T3, Frame-based +cevCat8500GeF8p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 44 } -- 8 port 64k memory Gigabit Ethernet fiber card cevCat8500mArm1p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 45 } -- 1 port ATM router module with 64K memory cevCat8500mArm2p64k OBJECT IDENTIFIER ::= { cevModuleCat8500Type 46 } -- 2 port ATM router module with 64K memory cevCat8500mOC48c1pSm OBJECT IDENTIFIER ::= { cevModuleCat8500Type 47 } -- 1 port OC48c Single Mode module @@ -5156,7 +5880,7 @@ cevCat8500Pos1pXpif256kOc12SmIr OBJECT IDENTIFIER ::= { cevModuleCat8500Type 68 cevCat8500Pos1pXpif64kOc12SmLr OBJECT IDENTIFIER ::= { cevModuleCat8500Type 69 } -- 1 port 64k memory POS OC12 Single Mode Long Reach XPIF PM card cevCat8500Pos1pXpif256kOc12SmLr OBJECT IDENTIFIER ::= { cevModuleCat8500Type 70 } -- 1 port 256k memory POS OC12 Single Mode Long Reach XPIF PM card -cevModuleWASCommonCards OBJECT IDENTIFIER ::= { cevModule 21 } -- These cards can be used in multiple MGX and IGX series Wide Area Edge Switches, but not necessarily all of them. +cevModuleWASCommonCards OBJECT IDENTIFIER ::= { cevModule 21 } -- These cards can be used in multiple MGX and IGX series Wide Area Edge Switches, but not necessarily all of them. cevAusm8t1 OBJECT IDENTIFIER ::= { cevModuleWASCommonCards 1 } -- ATM User Network Interface Service Module with 8 T1 ports cevAusm8e1 OBJECT IDENTIFIER ::= { cevModuleWASCommonCards 2 } -- ATM User Network Interface Service Module with 8 E1 ports cevCesm8t1 OBJECT IDENTIFIER ::= { cevModuleWASCommonCards 3 } -- Circuit Emulation Service Module with 8 T1 ports @@ -5246,14 +5970,14 @@ cevMpsm16t1e1Ppp OBJECT IDENTIFIER ::= { cevModuleWASCommonCards 107 } -- Multi cevMpsm155t3e3Ppp OBJECT IDENTIFIER ::= { cevModuleWASCommonCards 108 } -- Multi protocol service module having t3/e3/oc3 interfaces and supporitng only PPP service cevModule38xxType OBJECT IDENTIFIER ::= { cevModule 22 } -- These cards are used in the Cisco 3800 and MC3800 series. -cevMc3810Vcm3 OBJECT IDENTIFIER ::= { cevModule38xxType 1 } -- MC3810 Voice Compression Module with 3 DSPs (Digital Signal Processor) -cevMc3810Bvm OBJECT IDENTIFIER ::= { cevModule38xxType 2 } -- MC3810 Basic Voice Module -cevMc3810AvmFxoUk OBJECT IDENTIFIER ::= { cevModule38xxType 3 } -- MC3810 Analog Voice Module UK Foreign eXchange Office -cevMc3810AvmFxoGer OBJECT IDENTIFIER ::= { cevModule38xxType 4 } -- MC3810 Analog Voice Module Germany Foreign eXchange Office -cevMc3810Hcm2 OBJECT IDENTIFIER ::= { cevModule38xxType 5 } -- MC3810 High (Voice) Capacity Module with 2 DSPs (Digital Signal Processor) -cevMc3810Hcm6 OBJECT IDENTIFIER ::= { cevModule38xxType 6 } -- MC3810 High (Voice) Capacity Module with 6 DSPs (Digital Signal Processor) -cevMc3810AvmFxoPr3 OBJECT IDENTIFIER ::= { cevModule38xxType 7 } -- MC3810 Analog Voice Module Singapore or Japan Foreign eXchange Office -cevMc3810AvmFxoPr2 OBJECT IDENTIFIER ::= { cevModule38xxType 8 } -- MC3810 Analog Voice Module Australia or New Zealand Foreign eXchange Office +cevMc3810Vcm3 OBJECT IDENTIFIER ::= { cevModule38xxType 1 } -- MC3810 Voice Compression Module with 3 DSPs (Digital Signal Processor) +cevMc3810Bvm OBJECT IDENTIFIER ::= { cevModule38xxType 2 } -- MC3810 Basic Voice Module +cevMc3810AvmFxoUk OBJECT IDENTIFIER ::= { cevModule38xxType 3 } -- MC3810 Analog Voice Module UK Foreign eXchange Office +cevMc3810AvmFxoGer OBJECT IDENTIFIER ::= { cevModule38xxType 4 } -- MC3810 Analog Voice Module Germany Foreign eXchange Office +cevMc3810Hcm2 OBJECT IDENTIFIER ::= { cevModule38xxType 5 } -- MC3810 High (Voice) Capacity Module with 2 DSPs (Digital Signal Processor) +cevMc3810Hcm6 OBJECT IDENTIFIER ::= { cevModule38xxType 6 } -- MC3810 High (Voice) Capacity Module with 6 DSPs (Digital Signal Processor) +cevMc3810AvmFxoPr3 OBJECT IDENTIFIER ::= { cevModule38xxType 7 } -- MC3810 Analog Voice Module Singapore or Japan Foreign eXchange Office +cevMc3810AvmFxoPr2 OBJECT IDENTIFIER ::= { cevModule38xxType 8 } -- MC3810 Analog Voice Module Australia or New Zealand Foreign eXchange Office cevMc3810Vdm OBJECT IDENTIFIER ::= { cevModule38xxType 9 } -- MC3810 Video Dial-up Module enables MC3810 video call management via ATM signaling Subsystem through RS366 or V.35 interface cevMc3810ApmFxsDid OBJECT IDENTIFIER ::= { cevModule38xxType 10 } -- MC3810 Foreign Exchange Station (FXS) Direct Inward Dialing (DID) Analog Personality Module cevMc3810BvmNtTe OBJECT IDENTIFIER ::= { cevModule38xxType 11 } -- 4 ports NT or TE BRI Voice Module on MC3810 @@ -5263,7 +5987,7 @@ cevMc3810Hcm4 OBJECT IDENTIFIER ::= { cevModule38xxType 14 } -- High performanc cevMc3810Hcm5 OBJECT IDENTIFIER ::= { cevModule38xxType 15 } -- High performance compression module for the MC3810 platform equipped with five TI 549 DSPs cevSmSre710K9 OBJECT IDENTIFIER ::= { cevModule38xxType 17 } -- SM-SRE-710-K9: Service Module for Modular and Integrated Services Routers cevSmSre910K9 OBJECT IDENTIFIER ::= { cevModule38xxType 18 } -- SM-SRE-910-K9: Service Module for Modular and Integrated Services Routers -cevPSmSre710K9 OBJECT IDENTIFIER ::= { cevModule38xxType 19 } -- SRE 710 (4GB MEM,500GB 7K HDD,1C CPU) for router bundle +cevPSmSre710K9 OBJECT IDENTIFIER ::= { cevModule38xxType 19 } -- SRE 710 (4GB MEM,500GB 7K HDD,1C CPU) for router bundle cevPSmSre910K9 OBJECT IDENTIFIER ::= { cevModule38xxType 20 } -- SRE 910 (4-8GB MEM,2x500GB 7k HDD,2C CPU) for router bundle cevModuleCat29xxType OBJECT IDENTIFIER ::= { cevModule 23 } -- These are modules that are used in Catalyst 2900 series switches. @@ -5272,11 +5996,11 @@ cevX2922 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 2 } -- 2 port 100BaseFX mo cevX2914V OBJECT IDENTIFIER ::= { cevModuleCat29xxType 3 } -- 4 port 10/100BaseTX ISL module cevX2922V OBJECT IDENTIFIER ::= { cevModuleCat29xxType 4 } -- 2 port 100BaseFX ISL module cevX2924V OBJECT IDENTIFIER ::= { cevModuleCat29xxType 5 } -- 4 port 100BaseFX module -cevX2951 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 6 } -- ATM UTP module -cevX2961 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 7 } -- ATM MMF module -cevX2971 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 8 } -- ATM SMF-MR module -cevX2972 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 9 } -- ATM SMF-LR module -cevX2931 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 10 } -- GBIC Gigabit module +cevX2951 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 6 } -- ATM UTP module +cevX2961 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 7 } -- ATM MMF module +cevX2971 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 8 } -- ATM SMF-MR module +cevX2972 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 9 } -- ATM SMF-LR module +cevX2931 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 10 } -- GBIC Gigabit module cevModuleCat297024 OBJECT IDENTIFIER ::= { cevModuleCat29xxType 12 } -- Catalyst 2970 24 Ethernet 10/100/1000 port module. cevModuleCat297024TS OBJECT IDENTIFIER ::= { cevModuleCat29xxType 13 } -- Catalyst 2970 24 Ethernet 10/100/1000 ports + 4 Ethernet Gigabit SFP ports module.(SFP: Small Form factor Pluggable) cevModuleCat297048TS OBJECT IDENTIFIER ::= { cevModuleCat29xxType 14 } -- Catalyst 2970 48 Ethernet 10/100/1000 ports + 4 Ethernet Gigabit SFP ports module.(SFP: Small Form factor Pluggable) @@ -5292,7 +6016,7 @@ cevModuleCat296048TCS OBJECT IDENTIFIER ::= { cevModuleCat29xxType 23 cevModuleCat296024TCS OBJECT IDENTIFIER ::= { cevModuleCat29xxType 24 } -- Catalyst 2960 24 10/100 2T/SFP cevModuleCat296024S OBJECT IDENTIFIER ::= { cevModuleCat29xxType 25 } -- Catalyst 2960 24 10/100 cevModuleCat296024PC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 26 } -- Catalyst 2960 24 10/100 PoE, 2 T/SFP -cevModuleCat296024LT OBJECT IDENTIFIER ::= { cevModuleCat29xxType 27 } -- Catalyst 2960 24 10/100, 8 PoE, 2 T +cevModuleCat296024LT OBJECT IDENTIFIER ::= { cevModuleCat29xxType 27 } -- Catalyst 2960 24 10/100, 8 PoE, 2 T cevModuleCat2960PD8TT OBJECT IDENTIFIER ::= { cevModuleCat29xxType 28 } -- Catalyst 2960 8 10/100, 1 T PD cevModuleCat291824TT OBJECT IDENTIFIER ::= { cevModuleCat29xxType 29 } -- Catalyst 2918 24 10/100 + 2 10/100/1000 Ethernet ports module cevModuleCat291824TC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 30 } -- Catalyst 2918 24 10/100 + 2 dual purpose Gigabit Ethernet ports module @@ -5317,7 +6041,7 @@ cevModuleWsC2960s24psL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 48 cevModuleWsC2960s48tsL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 49 } -- Catalyst 2960S 48 Gig Downlinks and 4 SFP uplink with support for a 2 x 10G stacking module cevModuleWsC2960S24tsL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 50 } -- Catalyst2960S 24 Gig Downlinks and 4 SFP uplink with support for a 2 x 10G stacking module cevModuleCat2960cPD8TT OBJECT IDENTIFIER ::= { cevModuleCat29xxType 51 } -- Catalyst 2960c 8 10/100 ports + 2 Gigabit Ethernet PD ports -cevModuleCat2960cG8TC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 53 } -- Catalyst 2960c 8 10/100/1000 ports + 2 dual purpose Gigabit Ethernet ports module +cevModuleCat2960cG8TC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 53 } -- Catalyst 2960c 8 10/100/1000 ports + 2 dual purpose Gigabit Ethernet ports module cevModuleCat292824TCC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 54 } -- Catalyst 2928 24 10/100 + 2 10/100/1000 Ethernet ports module cevModuleCat292824LTC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 55 } -- Catalyst 24 10/100 ports with 8 POE ports + 2 10/100/1000 Ethernet ports. POE support for 123 W cevModuleCat292848TCC OBJECT IDENTIFIER ::= { cevModuleCat29xxType 56 } -- Catalyst 2928 48 10/100 + 2 10/100/1000 Ethernet ports module @@ -5363,8 +6087,8 @@ cevModuleWsC2960XR48LpsI OBJECT IDENTIFIER ::= { cevModuleCat29xxType 102 cevModuleWsC2960XR48TsI OBJECT IDENTIFIER ::= { cevModuleCat29xxType 103 } -- Catalyst 2960XR 48 Gig Downlinks and 4 SFP uplinks IP Lite Stackable cevModuleWsC2960XR24PsI OBJECT IDENTIFIER ::= { cevModuleCat29xxType 104 } -- Catalyst 2960XR 24 Gig Downlinks and 4 SFP uplinks IP Lite Stackable with POE support for 370W cevModuleWsC2960XR24TsI OBJECT IDENTIFIER ::= { cevModuleCat29xxType 105 } -- Catalyst 2960XR 24 Gig Downlinks and 4 SFP uplinks IP Lite Stackable -cevModuleWsC2960CX8TCL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 142 } -- Smirnoff catalyst 2960CX 8x GE downlink, 2 Copper, 2 SFP uplink -cevModuleC2960XHybridStack OBJECT IDENTIFIER ::= { cevModuleCat29xxType 144 } -- Arcadia Stacking module for 2960x, 1 Copper stack port, 1 Fiber/SFP stack port +cevModuleWsC2960CX8TCL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 142 } -- Smirnoff catalyst 2960CX 8x GE downlink, 2 Copper, 2 SFP uplink +cevModuleC2960XHybridStack OBJECT IDENTIFIER ::= { cevModuleCat29xxType 144 } -- Arcadia Stacking module for 2960x, 1 Copper stack port, 1 Fiber/SFP stack port cevModuleC2960XFiberStack OBJECT IDENTIFIER ::= { cevModuleCat29xxType 145 } -- Arcadia Stacking module for 2960x, 2 Fiber/SFP stack ports cevModuleCat2960L24TSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 146 } -- Catalyst 2960L 24 x GE downlinks, 4 x GE (4 SFP) uplinks cevModuleCat2960L8TSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 147 } -- Catalyst 2960L 8 x GE downlinks, 2 x GE (2 SFP) uplinks @@ -5374,10 +6098,10 @@ cevModuleCat2960L48PSLL OBJECT IDENTIFIER ::= { cevModuleCat29xx cevModuleCat2960L16PSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 151 } -- Catalyst 2960L 16 x GE downlinks, POE support, 2 x GE (2 SFP) uplinks cevModuleCat2960L8PSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 152 } -- Catalyst 2960L 8 x GE downlinks, POE support, 2 x GE (2 SFP) uplinks cevModuleCat2960L24PSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 153 } -- Catalyst 2960L 24 x GE downlinks, POE support, 4 x GE (4 SFP) uplinks -cevModuleCat2960L24TQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 154 } -- Catalyst 2960L 24 x GE downlinks, 4 x 10GE (4 SFP+) uplinks -cevModuleCat2960L24PQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 155 } -- Catalyst 2960L 24 x GE downlinks, 4 x 10GE (4 SFP+) uplinks, POE support -cevModuleCat2960L48TQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 156 } -- Catalyst 2960L 48 x GE downlinks, 4 x 10GE (4 SFP+) uplinks -cevModuleCat2960L48PQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 157 } -- Catalyst 2960L 48 x GE downlinks, 4 x 10GE (4 SFP+) uplinks, POE support +cevModuleCat2960L24TQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 154 } -- Catalyst 2960L 24 x GE downlinks, 4 x 10GE (4 SFP+) uplinks +cevModuleCat2960L24PQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 155 } -- Catalyst 2960L 24 x GE downlinks, 4 x 10GE (4 SFP+) uplinks, POE support +cevModuleCat2960L48TQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 156 } -- Catalyst 2960L 48 x GE downlinks, 4 x 10GE (4 SFP+) uplinks +cevModuleCat2960L48PQLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 157 } -- Catalyst 2960L 48 x GE downlinks, 4 x 10GE (4 SFP+) uplinks, POE support cevModuleCat2960LSM24TS OBJECT IDENTIFIER ::= { cevModuleCat29xxType 158 } -- Catalyst C2960L-SM 24 x GE downlinks, 4 x GE (4 SFP) uplinks cevModuleCat2960LSM8TSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 159 } -- Catalyst C2960L-SM 8 x GE downlinks, 2 x GE (2 SFP) uplinks cevModuleCat2960LSM16TSLL OBJECT IDENTIFIER ::= { cevModuleCat29xxType 160 } -- Catalyst C2960L-SM 16 x GE downlinks, 2 x GE (2 SFP) uplinks @@ -5426,12 +6150,12 @@ cevIo6160DS3 OBJECT IDENTIFIER ::= { cevModuleDslamType 44 } -- 6160 Network I cevIo6260OC3 OBJECT IDENTIFIER ::= { cevModuleDslamType 45 } -- 6260 Network I/O module (2 OC3) cevIo6260Ds3T1 OBJECT IDENTIFIER ::= { cevModuleDslamType 46 } -- 6260 Network I/O module (DS3, 8 T1) --- These back cards defined under "cevModuleWASBackCards" are also called --- Line Modules. These Line Modules can be plugged into the connectors on --- Service Modules defined under "cevWASCommonCards". The same back card --- can be used under multiple Service Module types. +-- These back cards defined under "cevModuleWASBackCards" are also called +-- Line Modules. These Line Modules can be plugged into the connectors on +-- Service Modules defined under "cevWASCommonCards". The same back card +-- can be used under multiple Service Module types. -cevModuleWASBackCards OBJECT IDENTIFIER ::= { cevModule 26 } +cevModuleWASBackCards OBJECT IDENTIFIER ::= { cevModule 26 } cevLmBnc2t3 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 1 } -- Two T3 75-ohm BNC back card cevLmBnc2e3 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 2 } -- Two E3 75-ohm BNC back card cevLmDb154x21 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 3 } -- Four X.21 DB-15 back card @@ -5495,7 +6219,7 @@ cevLmMcc16e1 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 69 } -- 16 E1 Port M cevLmRj4816t1e1 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 70 } -- Sixteen T1/E1 RJ-48 Back Card cevLmSmfIr2Oc12c OBJECT IDENTIFIER ::= { cevModuleWASBackCards 71 } -- 2 port, 622Mbps, SMFIR-2-622LC/C (Intermediate Reach) Back Card, LC Connector cevLmSmfLr2Oc12c OBJECT IDENTIFIER ::= { cevModuleWASBackCards 72 } -- 2 port, 622Mbps, SMFLR-2-622LC/C (Long Reach) Back Card, LC Connector -cevLmSmb8Stm1 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 82 } -- 8 port 155-mbps Electrical Back Card, SMB Connector +cevLmSmb8Stm1 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 82 } -- 8 port 155-mbps Electrical Back Card, SMB Connector cevLmSmf8Oc3Sfp OBJECT IDENTIFIER ::= { cevModuleWASBackCards 83 } -- SMF-8-155-SFP SMF(Single Mode Fiber) 8 OC3 Small Form Factor Pluggable(SFP) backcard cevLmRbbn16t1e1 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 84 } -- RBBN-16-T1E1 A "Ribbon" type connector supporting 16 T1 or E1 ports. cevLmSmfSr1Oc192 OBJECT IDENTIFIER ::= { cevModuleWASBackCards 85 } -- Line Module with 1 OC192 SMF SR(short reach) port @@ -5525,7 +6249,7 @@ cevLm5efegeTx OBJECT IDENTIFIER ::= { cevModuleWASBackCards 110 } -- 5 port Eth cevLmPsmHDV OBJECT IDENTIFIER ::= { cevModuleWASBackCards 111 } -- Hard Disk V back card for Processor Service Module -cevModuleUbrType OBJECT IDENTIFIER ::= { cevModule 27 } -- Cards that go into UBR chassis +cevModuleUbrType OBJECT IDENTIFIER ::= { cevModule 27 } -- Cards that go into UBR chassis cevUbrMc16s OBJECT IDENTIFIER ::= { cevModuleUbrType 2 } -- Cable card, 1 downstream 6 upstream for Spectrum Management cevUbrMc11 OBJECT IDENTIFIER ::= { cevModuleUbrType 3 } -- Cable linecard 1 downstream, 1 upstream, FPGA cevUbrMc11c OBJECT IDENTIFIER ::= { cevModuleUbrType 4 } -- Cable linecard 1 downstream, 1 upstream, ASIC C @@ -5535,14 +6259,14 @@ cevUbrMc16a OBJECT IDENTIFIER ::= { cevModuleUbrType 7 } -- Cable linecard 1 do cevUbrMc16b OBJECT IDENTIFIER ::= { cevModuleUbrType 8 } -- Cable linecard 1 downstream, 6 upstream, ASIC B cevUbrMc16c OBJECT IDENTIFIER ::= { cevModuleUbrType 9 } -- Cable linecard 1 downstream, 6 upstream, ASIC C cevUbrMc16e OBJECT IDENTIFIER ::= { cevModuleUbrType 10 } -- Cable linecard 1 downstream, 6 upstream, ASIC for Europe -cevUbrMc28c OBJECT IDENTIFIER ::= { cevModuleUbrType 11 } -- Cable linecard 2 downstream, 8 upstream -cevUbrMc26 OBJECT IDENTIFIER ::= { cevModuleUbrType 12 } -- Cable linecard 2 downstream, 6 upstream +cevUbrMc28c OBJECT IDENTIFIER ::= { cevModuleUbrType 11 } -- Cable linecard 2 downstream, 8 upstream +cevUbrMc26 OBJECT IDENTIFIER ::= { cevModuleUbrType 12 } -- Cable linecard 2 downstream, 6 upstream cevUbr912C OBJECT IDENTIFIER ::= { cevModuleUbrType 13 } -- Cisco uBR912-C Cable Modem Card with CSU/DSU WIC cevUbr912S OBJECT IDENTIFIER ::= { cevModuleUbrType 14 } -- Cisco uBR912-S Cable Modem Card with Serial WIC cevUbr914R OBJECT IDENTIFIER ::= { cevModuleUbrType 15 } -- Cisco uBR914 Cable Modem Card with removable WIC cevUbrClk OBJECT IDENTIFIER ::= { cevModuleUbrType 16 } -- Cisco Cable Clock Card that provides the national clock signal to Cisco uBR7200 VXR cevUbr925 OBJECT IDENTIFIER ::= { cevModuleUbrType 17 } -- Cisco UBR925 Cable Modem/Router with VOIP and hardware accelerated IPSEC -cevUbrMc26c OBJECT IDENTIFIER ::= { cevModuleUbrType 18 } -- Cable linecard 2 downstream, 6 upstream +cevUbrMc26c OBJECT IDENTIFIER ::= { cevModuleUbrType 18 } -- Cable linecard 2 downstream, 6 upstream cevUbrMc28cf OBJECT IDENTIFIER ::= { cevModuleUbrType 21 } -- Cable linecard 2 downstream, 8 upstream, with F connector cevUbrMc28cBnc OBJECT IDENTIFIER ::= { cevModuleUbrType 22 } -- Cable linecard 2 downstream, 8 upstream, with BNC connector cevUbrMc26cf OBJECT IDENTIFIER ::= { cevModuleUbrType 23 } -- Cable linecard 2 downstream, 6 upstream, with F connector @@ -5565,21 +6289,22 @@ cevUbrMc3g60Mha OBJECT IDENTIFIER ::= { cevModuleUbrType 48 } -- C-DOC cevUbrMc3g60rphy OBJECT IDENTIFIER ::= { cevModuleUbrType 49 } -- C-DOCSIS compliant intelligent coax cable line card with 72 downstream and 60 upstream ports for uBR10000 series cable router cevUbrcBR8 OBJECT IDENTIFIER ::= { cevModuleUbrType 50 } -- Cisco cBR-8 CCAP(Converged Cable Access Platform) platform with 8 subscriber slots and 2 Supervisor slots (including WAN) -cevModuleCmccType OBJECT IDENTIFIER ::= { cevModule 28 } -- Cisco Mainframe Channel Connection Cards +cevModuleCmccType OBJECT IDENTIFIER ::= { cevModule 28 } -- Cisco Mainframe Channel Connection Cards cevCmccCip OBJECT IDENTIFIER ::= { cevModuleCmccType 1 } -- Channel Interface Processor for the C75xx platform -cevCmccCip2 OBJECT IDENTIFIER ::= { cevModuleCmccType 2 } -- Channel Interface Processor 2 for the C75xx platform +cevCmccCip2 OBJECT IDENTIFIER ::= { cevModuleCmccType 2 } -- Channel Interface Processor 2 for the C75xx platform cevCmccPa1ec OBJECT IDENTIFIER ::= { cevModuleCmccType 3 } -- Escon Channel Port Adapter (Supports single ESCON interface) cevCmccPa1pc OBJECT IDENTIFIER ::= { cevModuleCmccType 4 } -- Parallel (Bus & Tag) Channel Port Adapter (Supports single parallel interface) cevCmccPa1ec4 OBJECT IDENTIFIER ::= { cevModuleCmccType 5 } -- High Performance ESCON Channel Port Adapter Version 4 +cevCmccC9610R OBJECT IDENTIFIER ::= { cevModuleCmccType 7 } -- Cisco Catalyst 9600 Series Carrier Card Module Container cevModuleCat6000Type OBJECT IDENTIFIER ::= { cevModule 29 } -- Catalyst 6000 Cards -cevCat6kWsxSup12ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 2 } -- Supervisor with 2 Gigabit Ethernet ports -cevCat6kWsx6408Gbic OBJECT IDENTIFIER ::= { cevModuleCat6000Type 3 } -- Card with 8 Gigabit Ethernet ports +cevCat6kWsxSup12ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 2 } -- Supervisor with 2 Gigabit Ethernet ports +cevCat6kWsx6408Gbic OBJECT IDENTIFIER ::= { cevModuleCat6000Type 3 } -- Card with 8 Gigabit Ethernet ports cevCat6kWsx6224Fx100Mt OBJECT IDENTIFIER ::= { cevModuleCat6000Type 4 } -- Card with 24 port 100BaseFX MM (MT-RJ) for the Catalyst 6000 series -cevCat6kWsx6248Rj45 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 5 } -- Card with 48 10/100 RJ45 Fast Ethernet ports -cevCat6kWsx6248Tel OBJECT IDENTIFIER ::= { cevModuleCat6000Type 6 } -- Card with 48 10/100 RJ21 Fast Ethernet ports +cevCat6kWsx6248Rj45 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 5 } -- Card with 48 10/100 RJ45 Fast Ethernet ports +cevCat6kWsx6248Tel OBJECT IDENTIFIER ::= { cevModuleCat6000Type 6 } -- Card with 48 10/100 RJ21 Fast Ethernet ports cevCat6kWsx6302Msm OBJECT IDENTIFIER ::= { cevModuleCat6000Type 7 } -- Multilayer Switch Module for the Catalyst 6000 series -cevCat6kWsx6024Mtrj OBJECT IDENTIFIER ::= { cevModuleCat6000Type 9 } -- Card with 24 10/100 MTRJ Fast Ethernet ports +cevCat6kWsx6024Mtrj OBJECT IDENTIFIER ::= { cevModuleCat6000Type 9 } -- Card with 24 10/100 MTRJ Fast Ethernet ports cevCat6kMsfc2 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 10 } -- Multilevel Switching Feature Card Version 2 for Catalyst 6000 that is treated as a standalone system by the NMS cevCat6kWsx6316GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 11 } -- 16-port RJ-45 Gigabit ethernet module cevCat6kWsx6416Gbic OBJECT IDENTIFIER ::= { cevModuleCat6000Type 12 } -- 16-port GBIC Gigabit ethernet module @@ -5590,7 +6315,7 @@ cevCat6kWsx6066SlbApc OBJECT IDENTIFIER ::= { cevModuleCat6000Type 16 } -- Venus cevCat6kWsx6548Rj45 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 18 } -- 48 port 10/100 Hydra2+/Hydra2V+ cevCat6kWsx6248aTel OBJECT IDENTIFIER ::= { cevModuleCat6000Type 19 } -- Card for C6K with 48 10/100 RJ21 ports with enhanched QoS a.k.a Indus w/ Enhanced QoS cevCat6kWsxSup22ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 20 } -- Supervisor 2 with 2 Gigabit Ethernet ports -cevCat6kWsc6500SFM OBJECT IDENTIFIER ::= { cevModuleCat6000Type 21 } -- Catalyst 6500 Switch Fabric Module +cevCat6kWsc6500SFM OBJECT IDENTIFIER ::= { cevModuleCat6000Type 21 } -- Catalyst 6500 Switch Fabric Module cevCat6kWsc6500SFM2 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 22 } -- Catalyst 6500 Switch Fabric Module II cevCat6kWsx6816GBIC OBJECT IDENTIFIER ::= { cevModuleCat6000Type 23 } -- Catalyst 6500 16 port 1000BaseX (Layer 3) cevCat6kWsx6600Audio OBJECT IDENTIFIER ::= { cevModuleCat6000Type 27 } -- Catalyst 6000 256-Audio Services Module @@ -5604,10 +6329,10 @@ cevCat6kWsx6248aRJ45 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 34 } -- Cataly cevCat6kWsx6408aGbic OBJECT IDENTIFIER ::= { cevModuleCat6000Type 35 } -- Catalyst 6500 8 port 1000BaseX (GBIC), Enhanced QoS module cevCat6kWsx6381IDS OBJECT IDENTIFIER ::= { cevModuleCat6000Type 36 } -- Catalyst 6500 Intrusion Detection module cevCat6kWsx6524MmMT OBJECT IDENTIFIER ::= { cevModuleCat6000Type 37 } -- Catalyst 6500 24 port 100BaseX MM (MT-RJ) module -cevCat6kWsx6516GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 38 } -- Catalyst 6500 16 port 10/100/1000BaseT (RJ-45) module +cevCat6kWsx6516GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 38 } -- Catalyst 6500 16 port 10/100/1000BaseT (RJ-45) module cevCat6kWsx650110Gex4 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 39 } -- Catalyst 6500 1 port 10 Gigabit Ethernet (EX4) module cevCat6kWsx6816Oc3Mm OBJECT IDENTIFIER ::= { cevModuleCat6000Type 40 } -- Catalyst 6500 16 port OC3c Packet Over Sonet Multimode -cevCat6kWsf6kVpwr OBJECT IDENTIFIER ::= { cevModuleCat6000Type 41 } -- Catalyst 6500 inline power card +cevCat6kWsf6kVpwr OBJECT IDENTIFIER ::= { cevModuleCat6000Type 41 } -- Catalyst 6500 inline power card cevCat6kWsSvcNam1 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 42 } -- Catalyst 6500 Network AnalysisModule cevCat6kWsSvcNam2 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 43 } -- Catalyst 6500 Network AnalysisModule cevCat6kWsSvcFwm1 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 44 } -- Catalyst 6500 Firewall Module @@ -5616,23 +6341,23 @@ cevCat6kWsx6516aGBIC OBJECT IDENTIFIER ::= { cevModuleCat6000Type 46 } cevCat6kIpSecVPNSm OBJECT IDENTIFIER ::= { cevModuleCat6000Type 49 } -- Gigabit IPsec VPN Service Module for the Catalyst 6500 and 7600 cevCat6kWsSup720 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 50 } -- Catalyst 6500 Supervisor Module 720 CPU board cevCat6kWsSup720Base OBJECT IDENTIFIER ::= { cevModuleCat6000Type 51 } -- Catalyst 6500 Supervisor Module 720 base board -cevCat6kWsx680210Ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 52 } -- Catalyst 6500 2 port 10 GE -cevCat6kWsx6832Sfp OBJECT IDENTIFIER ::= { cevModuleCat6000Type 53 } -- Catalyst 6500 32 port 1000Base FX (SFP GBIC) +cevCat6kWsx680210Ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 52 } -- Catalyst 6500 2 port 10 GE +cevCat6kWsx6832Sfp OBJECT IDENTIFIER ::= { cevModuleCat6000Type 53 } -- Catalyst 6500 32 port 1000Base FX (SFP GBIC) cevCat6kWsx6748GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 54 } -- Catalyst 6500 48 port 10/100/1000 (RJ-45) -cevCat6kWsx670410Ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 55 } -- Catalyst 6500 4 port 10 GE +cevCat6kWsx670410Ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 55 } -- Catalyst 6500 4 port 10 GE cevCat6kWsx6748Sfp OBJECT IDENTIFIER ::= { cevModuleCat6000Type 56 } -- Catalyst 6500 48 port 1000Base FX (SFP GBIC) cevCat6kWsx6724Sfp OBJECT IDENTIFIER ::= { cevModuleCat6000Type 57 } -- Catalyst 6500 24 port 1000Base FX (SFP GBIC) -cevCat6kWsf6kPfc OBJECT IDENTIFIER ::= { cevModuleCat6000Type 58 } -- Catalyst 6500 L3 switching engine -cevCat6kWsf6kPfc2 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 59 } -- Catalyst 6500 L3 switching engine II -cevCat6kWsf6kDfc OBJECT IDENTIFIER ::= { cevModuleCat6000Type 60 } -- Catalyst 6500 distributed switching engine +cevCat6kWsf6kPfc OBJECT IDENTIFIER ::= { cevModuleCat6000Type 58 } -- Catalyst 6500 L3 switching engine +cevCat6kWsf6kPfc2 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 59 } -- Catalyst 6500 L3 switching engine II +cevCat6kWsf6kDfc OBJECT IDENTIFIER ::= { cevModuleCat6000Type 60 } -- Catalyst 6500 distributed switching engine cevCat6kWsf6kPfc3a OBJECT IDENTIFIER ::= { cevModuleCat6000Type 61 } -- Catalyst 6500 Centralized L3 switching engine IIIa cevCat6kWsf6kDfc3a OBJECT IDENTIFIER ::= { cevModuleCat6000Type 62 } -- Catalyst 6500 Distributed L3 switching engine IIIa -cevCat6kWsx6148GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 63 } -- Catalyst 6000 48 port10/100/1000BaseT(RJ-45) module -cevCat6kWsx6148Rj21 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 64 } -- Catalyst 6000 48 port10/100BaseTX(RJ-21) module -cevCat6kWsx6148Rj45 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 65 } -- Catalyst 6000 48 port10/100BaseTX(RJ-45) module -cevCat6kMWAMBlade OBJECT IDENTIFIER ::= { cevModuleCat6000Type 66 } -- Mobile wireless application module for the Catalyst 6500 and Cisco 7600. +cevCat6kWsx6148GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 63 } -- Catalyst 6000 48 port10/100/1000BaseT(RJ-45) module +cevCat6kWsx6148Rj21 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 64 } -- Catalyst 6000 48 port10/100BaseTX(RJ-21) module +cevCat6kWsx6148Rj45 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 65 } -- Catalyst 6000 48 port10/100BaseTX(RJ-45) module +cevCat6kMWAMBlade OBJECT IDENTIFIER ::= { cevModuleCat6000Type 66 } -- Mobile wireless application module for the Catalyst 6500 and Cisco 7600. cevCat6kWsx6548GeTx OBJECT IDENTIFIER ::= { cevModuleCat6000Type 67 } -- Catalyst 6500 48 port 10/100/1000 (RJ-45) -cevCat6kWsf6700dfc3a OBJECT IDENTIFIER ::= { cevModuleCat6000Type 68 } -- Catalyst 6500 Distributed L3 switching engine IIIa +cevCat6kWsf6700dfc3a OBJECT IDENTIFIER ::= { cevModuleCat6000Type 68 } -- Catalyst 6500 Distributed L3 switching engine IIIa cevCat6kWsx6324100FxSm OBJECT IDENTIFIER ::= { cevModuleCat6000Type 69 } -- 24-port 100FX single mode MT-RJ with 128K per-port packet buffer cevCat6kWsc6000cl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 70 } -- Catalyst 6000 clock module cevCat6kWsc6513cl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 71 } -- Catalyst 6000 clock module for WS-C6513 @@ -5695,10 +6420,10 @@ cevCat6kVsS72010G OBJECT IDENTIFIER ::= { cevModuleCat6000Type 133 } -- Cat cevCat6kVsf6kPfc3c OBJECT IDENTIFIER ::= { cevModuleCat6000Type 134 } -- Catalyst 6500 Policy Feature Card 3C cevCat6kVsf6kPfc3cxl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 135 } -- Catalyst 6500 Policy Feature Card 3C XL cevCat6kVsF6kMsfc3 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 136 } -- Supervisor Module 720 10G CPU board -cevCat6kWsF6kPisa OBJECT IDENTIFIER ::= { cevModuleCat6000Type 137 } -- Catalyst 6500 Programmable IP Services Accelerator Internal Router Daughtercard +cevCat6kWsF6kPisa OBJECT IDENTIFIER ::= { cevModuleCat6000Type 137 } -- Catalyst 6500 Programmable IP Services Accelerator Internal Router Daughtercard cevCat6kVsF6kPfc4xl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 138 } -- Catalyst 6500 Policy Feature Card 4 XL cevCat6kWsF6kDfc4exl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 139 } -- Catalyst 6500 Distributed Forwarding Card 4E XL -cevCat6kWsx671610Ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 142 } -- Catalyst 6500 16 port 10 GE +cevCat6kWsx671610Ge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 142 } -- Catalyst 6500 16 port 10 GE cevCat6kVsF6kPfc4 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 143 } -- Catalyst 6500 Policy Feature Card 4 cevCat6kWsF6kDfc4e OBJECT IDENTIFIER ::= { cevModuleCat6000Type 144 } -- Catalyst 6500 Distributed Forwarding Card 4E cevCat6kWsSup32Pge OBJECT IDENTIFIER ::= { cevModuleCat6000Type 145 } -- Catalyst 6500 Supervisor Module with PISA and 8 Gigabit Ethernet SFP uplink ports @@ -5729,17 +6454,17 @@ cevCat6kWsSvcWism2 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 185 } cevCat6kWsSvcAsaSm1K7 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 186 } -- Adaptive Security Appliance (ASA) with No Payload Encryption (NPE) cevCat6kWsSvcVse1K9 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 187 } -- Virtual Services Engine cevCat6kSvcAppProc1 OBJECT IDENTIFIER ::= { cevModuleCat6000Type 188 } -- Service Module Application Processor 1 Card -cevCat6kC6880xSup OBJECT IDENTIFIER ::= { cevModuleCat6000Type 189 } -- Catalyst 6880 Supervisor Module -cevCat6kC6880xleSup OBJECT IDENTIFIER ::= { cevModuleCat6000Type 190 } -- Catalyst 6880 Supervisor Module LE +cevCat6kC6880xSup OBJECT IDENTIFIER ::= { cevModuleCat6000Type 189 } -- Catalyst 6880 Supervisor Module +cevCat6kC6880xleSup OBJECT IDENTIFIER ::= { cevModuleCat6000Type 190 } -- Catalyst 6880 Supervisor Module LE cevCat6kC6880x16p10g OBJECT IDENTIFIER ::= { cevModuleCat6000Type 191 } -- Catalyst 6880 16 port 10G/1G SFP+ module cevCat6kC6880xle16p10g OBJECT IDENTIFIER ::= { cevModuleCat6000Type 192 } -- Catalyst 6880 16 port 10G/1G SFP+ module LE -cevCat6kC6800xl33vCon OBJECT IDENTIFIER ::= { cevModuleCat6000Type 195 } -- Catalyst 6800 Power Supply converter module +cevCat6kC6800xl33vCon OBJECT IDENTIFIER ::= { cevModuleCat6000Type 195 } -- Catalyst 6800 Power Supply converter module cevCat6kC680032p10g OBJECT IDENTIFIER ::= { cevModuleCat6000Type 196 } -- Catalyst 6800 32 port 10G Module cevCat6kC680032p10gxl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 197 } -- Catalyst 6800 32 port 10G XL Module cevCat6kC680016p10g OBJECT IDENTIFIER ::= { cevModuleCat6000Type 198 } -- Catalyst 6800 16 port 10G Module cevCat6kC680016p10gxl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 199 } -- Catalyst 6800 16 port 10G XL Module cevCat6kC68008p10g OBJECT IDENTIFIER ::= { cevModuleCat6000Type 200 } -- Catalyst 6800 8 port 10G Module -cevCat6kC68008p10gxl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 201 } -- Catalyst 6800 8 port 10G XL Module +cevCat6kC68008p10gxl OBJECT IDENTIFIER ::= { cevModuleCat6000Type 201 } -- Catalyst 6800 8 port 10G XL Module cevCat6kIA48FPDR OBJECT IDENTIFIER ::= { cevModuleCat6000Type 210 } -- Catalyst 6800IA-FPDR 48 Gig Downlinks and 2 SFP+ uplink with support for a 2x10G stacking module, POE suports for 740W cevCat6kPrimus OBJECT IDENTIFIER ::= { cevModuleCat6000Type 211 } -- Cisco Catalyst 68xx Series Supervisor - Primus cevCat6kOptimus OBJECT IDENTIFIER ::= { cevModuleCat6000Type 212 } -- Cisco Catalyst 68xx Series Supervisor - Optimus @@ -5752,12 +6477,12 @@ cevModuleCat5000Type OBJECT IDENTIFIER ::= { cevModule 30 } -- Catalyst 5000 C cevCat5kRsfc OBJECT IDENTIFIER ::= { cevModuleCat5000Type 1 } -- Routing Switching Feature Card cevModule7100Type OBJECT IDENTIFIER ::= { cevModule 31 } -- Cards that go into the 7100 series (7120 and 7140) -cevIo2feTxIsl OBJECT IDENTIFIER ::= { cevModule7100Type 1 } -- I/O Card Dual 10/100 Fast Ethernet ISL +cevIo2feTxIsl OBJECT IDENTIFIER ::= { cevModule7100Type 1 } -- I/O Card Dual 10/100 Fast Ethernet ISL cevIsmIpsecMppe OBJECT IDENTIFIER ::= { cevModule7100Type 2 } -- Integrated Service Module, used only in slot 5 of the 7100 series, is a hardware accelerator for IPSEC Encryption and Compression, and MPPE encryption. cev7100VPNAccelerator OBJECT IDENTIFIER ::= { cevModule7100Type 3 } -- VPN Encryption Accelerator Engine cev7100VPNAcceleratorModule2 OBJECT IDENTIFIER ::= { cevModule7100Type 4 } -- VPN Encryption Accelerator Engine 2 cev7100VPNAcceleratorAES OBJECT IDENTIFIER ::= { cevModule7100Type 5 } -- VPN Encryption Accelerator Engine with AES Support -cev7100VPNAM2Plus OBJECT IDENTIFIER ::= { cevModule7100Type 6 } -- The VPN Acceleration Module 2+ (VAM2+) is a port adapter that installs in any single port-adapter slot on the Cisco 7204VXR or Cisco 7206VXR router with the NPE-225, NPE-400, or NPE-G1 processor, or the Cisco 7301 router. +cev7100VPNAM2Plus OBJECT IDENTIFIER ::= { cevModule7100Type 6 } -- The VPN Acceleration Module 2+ (VAM2+) is a port adapter that installs in any single port-adapter slot on the Cisco 7204VXR or Cisco 7206VXR router with the NPE-225, NPE-400, or NPE-G1 processor, or the Cisco 7301 router. cevModule10000Type OBJECT IDENTIFIER ::= { cevModule 32 } -- Cards that go into the 10x00 series router platform cevPos1oc12 OBJECT IDENTIFIER ::= { cevModule10000Type 1 } -- 1 port OC12 Packet over Sonet card @@ -5772,16 +6497,16 @@ cev24feFxSm OBJECT IDENTIFIER ::= { cevModule10000Type 10 } -- c10720 24 ports cevSrpOc48SmSr OBJECT IDENTIFIER ::= { cevModule10000Type 11 } -- c10720 1 port OC-48c SRP SM short reach uplink card cevSrpOc48SmIr OBJECT IDENTIFIER ::= { cevModule10000Type 12 } -- c10720 1 port OC-48c SRP SM intermediate reach uplink card cevPos6oc3 OBJECT IDENTIFIER ::= { cevModule10000Type 13 } -- 6 port OC3 Pocket over Sonet Card for the 10000 ESR -cevAtm4oc3 OBJECT IDENTIFIER ::= { cevModule10000Type 14 } -- 4 port OC3 ATM line card with single mode, intermediate reach optics for the C10000 platform +cevAtm4oc3 OBJECT IDENTIFIER ::= { cevModule10000Type 14 } -- 4 port OC3 ATM line card with single mode, intermediate reach optics for the C10000 platform cevP8E3Ds3 OBJECT IDENTIFIER ::= { cevModule10000Type 15 } -- 8 port unchannalized switchable t3/e3 -cevSrpPos1oc48SmSr OBJECT IDENTIFIER ::= { cevModule10000Type 16 } -- 1 Port OC48 SRP or POS SM short reach card +cevSrpPos1oc48SmSr OBJECT IDENTIFIER ::= { cevModule10000Type 16 } -- 1 Port OC48 SRP or POS SM short reach card cevSrpPos1oc48SmLr OBJECT IDENTIFIER ::= { cevModule10000Type 17 } -- 1 Port OC48 SRP or POS SM long reach card cevC10K48MbFlashCard OBJECT IDENTIFIER ::= { cevModule10000Type 18 } -- Cisco 10000 48 MB Flash Card cevC10K128MbFlashCard OBJECT IDENTIFIER ::= { cevModule10000Type 19 } -- Cisco 10000 128 MB Flash Card cevP24ChE1T1 OBJECT IDENTIFIER ::= { cevModule10000Type 22 } -- 24 Port Channelized E1/T1 card -cev4Ge8FeTx OBJECT IDENTIFIER ::= { cevModule10000Type 23 } -- c10720 4 port gigabit ethernet + 8 port fast ethernet access card -cev4Ge8FeFxMm OBJECT IDENTIFIER ::= { cevModule10000Type 24 } -- c10720 4 port gigabit ethernet + 8 port fast ethernet FX MM (2km) access card -cev4Ge8FeFxSm OBJECT IDENTIFIER ::= { cevModule10000Type 25 } -- c10720 4 port gigabit ethernet + 8 port fast ethernet FX SM (15km) access card +cev4Ge8FeTx OBJECT IDENTIFIER ::= { cevModule10000Type 23 } -- c10720 4 port gigabit ethernet + 8 port fast ethernet access card +cev4Ge8FeFxMm OBJECT IDENTIFIER ::= { cevModule10000Type 24 } -- c10720 4 port gigabit ethernet + 8 port fast ethernet FX MM (2km) access card +cev4Ge8FeFxSm OBJECT IDENTIFIER ::= { cevModule10000Type 25 } -- c10720 4 port gigabit ethernet + 8 port fast ethernet FX SM (15km) access card cevSrpOc48SmLr1 OBJECT IDENTIFIER ::= { cevModule10000Type 26 } -- 1 port OC-48c SRP SM Long Reach (40Km) uplink card cevSrpOc48SmLr2 OBJECT IDENTIFIER ::= { cevModule10000Type 27 } -- 1 port OC-48c SRP SM long reach (80Km) uplink card cevP8Fe OBJECT IDENTIFIER ::= { cevModule10000Type 30 } -- 8 Port Fast Ethernet line card @@ -5800,7 +6525,7 @@ cevAtm4oc3stm1Lr OBJECT IDENTIFIER ::= { cevModule10000Type 43 } -- c10000 4 po -cevModuleAs5400Type OBJECT IDENTIFIER ::= { cevModule 33 } -- Cards that go into the AS5400 series router platform +cevModuleAs5400Type OBJECT IDENTIFIER ::= { cevModule 33 } -- Cards that go into the AS5400 series router platform cevAs5400DfcCarrier OBJECT IDENTIFIER ::= { cevModuleAs5400Type 1 } -- Carrier card that holds Dial Feature Cards for the AS5400 platform cevAs5400DfcNp348 OBJECT IDENTIFIER ::= { cevModuleAs5400Type 2 } -- Nextport (np) Modem Dial Feature Card consisting of 3 modem modules, 2 of which have 120 modems and that has 108, for a total of 348 modems per card, used in AS5400 and AS5350 platforms cevAs5400DfcNp192 OBJECT IDENTIFIER ::= { cevModuleAs5400Type 3 } -- Nextport (np) Modem Dial Feature Card consisting of 2 modem modules, 1 of which has 120 modems the other 72, for a total of 192 modems per card, used in AS5400 and AS5350 platforms @@ -5808,7 +6533,7 @@ cevAs5400XMDfcCarrier OBJECT IDENTIFIER ::= { cevModuleAs5400Type 4 } -- Carrier cevAs5400XMVFC OBJECT IDENTIFIER ::= { cevModuleAs5400Type 5 } -- Voice Feature Card containing Texas Instruments Digital Signal processor(DSP) -cevModuleCat4000Type OBJECT IDENTIFIER ::= { cevModule 35 } -- Catalyst 4000 Cards +cevModuleCat4000Type OBJECT IDENTIFIER ::= { cevModule 35 } -- Catalyst 4000 Cards cevCat4232L3 OBJECT IDENTIFIER ::= { cevModuleCat4000Type 1 } -- Cisco Catalyst 4232-L3 layer 3 line card that is treated as a standalone system by the NMS cevCat4kGateway OBJECT IDENTIFIER ::= { cevModuleCat4000Type 2 } -- Catalyst 4000 Access Gateway line card supporting voice and WAN (Wide Area Network) interfaces as well as conferencing and transcoding services for operation with the Cisco Call Manager cevCat4kWsx4014 OBJECT IDENTIFIER ::= { cevModuleCat4000Type 3 } -- Supervisor III Card @@ -5852,7 +6577,7 @@ cevCat4kWsx494810GE OBJECT IDENTIFIER ::= { cevModuleCat4000Type 42 } cevCat4kWsx4kMux OBJECT IDENTIFIER ::= { cevModuleCat4000Type 43 } -- Mux Buffers for Redundancy Logic. cevCat4kWsx490410ge OBJECT IDENTIFIER ::= { cevModuleCat4000Type 44 } -- Catalyst 4900M series, half height line card with 4 port wire speed 10GE interface (WS-X4904-10GE) cevCat4kWsx4900M OBJECT IDENTIFIER ::= { cevModuleCat4000Type 45 } -- Catalyst 4900M series chassis with fixed 8 10Gig port base system with 2 additional half height line card slots(WS-C4900M ) -cevCat4kWsx490810ge OBJECT IDENTIFIER ::= { cevModuleCat4000Type 46 } -- Catalyst 4900M series, half height line card with 8 port 2:1 10GE interface (WS-X4908-10GE) +cevCat4kWsx490810ge OBJECT IDENTIFIER ::= { cevModuleCat4000Type 46 } -- Catalyst 4900M series, half height line card with 8 port 2:1 10GE interface (WS-X4908-10GE) cevCat4kWsx4920Gbrj45 OBJECT IDENTIFIER ::= { cevModuleCat4000Type 47 } -- Catalyst 4900M series, half height line card with 20 port 10/100/1000 RJ45 interface (WS-X4920-GB-RJ45) cevCat4kWsx4590 OBJECT IDENTIFIER ::= { cevModuleCat4000Type 48 } -- Catalyst 4507R/4510R Fabric Redundancy Module cevCatWsx4624SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000Type 49 } -- WS-X4624-SFP-E:1000BaseX (SFP) with 24 SFP ports. Linecard with 24 SFP ports providing 1-Gigabit non-blocking traffic on each port, for Catalyst-4500E series modular switches. @@ -5879,7 +6604,7 @@ cevAs585024E1 OBJECT IDENTIFIER ::= { cevModuleAs5850Type 5 } cevAs585024T1 OBJECT IDENTIFIER ::= { cevModuleAs5850Type 6 } -- 24 port Channelized T1 Feature Card for the AS5850 platform cevModuleAs5350Type OBJECT IDENTIFIER ::= { cevModule 38 } -- Cards that go into the AS5350 series router platform -cevAs5350XMDfcCarrier OBJECT IDENTIFIER ::= { cevModuleAs5350Type 2 } -- Carrier card that holds Dial Feature Cards for the AS5350-XM carrier +cevAs5350XMDfcCarrier OBJECT IDENTIFIER ::= { cevModuleAs5350Type 2 } -- Carrier card that holds Dial Feature Cards for the AS5350-XM carrier cevModule24xxType OBJECT IDENTIFIER ::= { cevModule 39 } cevIad2420Vm8fxs OBJECT IDENTIFIER ::= { cevModule24xxType 1 } -- This card provides 8 analog Foreign eXchange Stations (FXS) in the Integrated Access Device 2420 (IAD2420) chassis cevIad242016fxs OBJECT IDENTIFIER ::= { cevModule24xxType 2 } -- This card provides 16 analog Foreign eXchange Stations (FXS) in the Integrated Access Device 2420 (IAD2420) chassis @@ -5910,12 +6635,12 @@ cevVg204xmOb4fxs OBJECT IDENTIFIER ::= { cevModule24xxType 28 } - cevVg3x0ob24fxs OBJECT IDENTIFIER ::= { cevModule24xxType 29 } -- This card provides 24 onboard analog Foreign Exchange Station (FXS) in voice gateway VG310 and VG320 -cevModule10000Bases OBJECT IDENTIFIER ::= { cevModule 40 } -- Cisco 10 gigabit ethernet port adapter cards -cevM10000BaseLX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 2 } -- Cisco Wide-WDM 1310nm Laser 10 gigabit ethernet port adapter -cevM10000BaseEX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 3 } -- Cisco Wide-WDM 1550nm Laser 10 gigabit ethernet port adapter -cevM10000BaseLR OBJECT IDENTIFIER ::= { cevModule10000Bases 4 } -- Cisco Serial 1310nm Laser 10 gigabit ethernet port adapter -cevM10000BaseER OBJECT IDENTIFIER ::= { cevModule10000Bases 5 } -- Cisco Serial 1550nm Laser 10 gigabit ethernet port adapter -cevM10000BaseSX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 6 } -- Cisco Wide-WDM 850nm Laser 10 gigabit ethernet port adapter +cevModule10000Bases OBJECT IDENTIFIER ::= { cevModule 40 } -- Cisco 10 gigabit ethernet port adapter cards +cevM10000BaseLX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 2 } -- Cisco Wide-WDM 1310nm Laser 10 gigabit ethernet port adapter +cevM10000BaseEX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 3 } -- Cisco Wide-WDM 1550nm Laser 10 gigabit ethernet port adapter +cevM10000BaseLR OBJECT IDENTIFIER ::= { cevModule10000Bases 4 } -- Cisco Serial 1310nm Laser 10 gigabit ethernet port adapter +cevM10000BaseER OBJECT IDENTIFIER ::= { cevModule10000Bases 5 } -- Cisco Serial 1550nm Laser 10 gigabit ethernet port adapter +cevM10000BaseSX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 6 } -- Cisco Wide-WDM 850nm Laser 10 gigabit ethernet port adapter cevM10000BaseSR OBJECT IDENTIFIER ::= { cevModule10000Bases 7 } -- Cisco Serial 850nm Laser 10 gigabit ethernet port adapter cevM10000BaseCX4 OBJECT IDENTIFIER ::= { cevModule10000Bases 8 } -- Cisco XAUI Copper 10 gigabit ethernet port adapter cevM10000BaseZR OBJECT IDENTIFIER ::= { cevModule10000Bases 9 } -- Cisco ZR 1550nm Laser 10 gigabit ethernet port adapter @@ -5931,7 +6656,7 @@ cev10GBaseDwdm3425 OBJECT IDENTIFIER ::= { cevModule10000Bases 18 } -- 10GBASE-D cev10GBaseDwdm3504 OBJECT IDENTIFIER ::= { cevModule10000Bases 19 } -- 10GBASE-DWDM 1535.04 nm XENPAK cev10GBaseDwdm3582 OBJECT IDENTIFIER ::= { cevModule10000Bases 20 } -- 10GBASE-DWDM 1535.82 nm XENPAK cev10GBaseDwdm3661 OBJECT IDENTIFIER ::= { cevModule10000Bases 21 } -- 10GBASE-DWDM 1536.61 nm XENPAK -cev10GBaseDwdm3819 OBJECT IDENTIFIER ::= { cevModule10000Bases 22 } -- 10GBASE-DWDM 1538.19 nm XENPAK +cev10GBaseDwdm3819 OBJECT IDENTIFIER ::= { cevModule10000Bases 22 } -- 10GBASE-DWDM 1538.19 nm XENPAK cev10GBaseDwdm3898 OBJECT IDENTIFIER ::= { cevModule10000Bases 23 } -- 10GBASE-DWDM 1538.98 nm XENPAK cev10GBaseDwdm3977 OBJECT IDENTIFIER ::= { cevModule10000Bases 24 } -- 10GBASE-DWDM 1539.77 nm XENPAK cev10GBaseDwdm4056 OBJECT IDENTIFIER ::= { cevModule10000Bases 25 } -- 10GBASE-DWDM 1540.56 nm XENPAK @@ -5955,7 +6680,7 @@ cev10GBaseDwdm5817 OBJECT IDENTIFIER ::= { cevModule10000Bases 42 } -- 10GBASE-D cev10GBaseDwdm5898 OBJECT IDENTIFIER ::= { cevModule10000Bases 43 } -- 10GBASE-DWDM 1558.98 nm XENPAK cev10GBaseDwdm5979 OBJECT IDENTIFIER ::= { cevModule10000Bases 44 } -- 10GBASE-DWDM 1559.79 nm XENPAK cev10GBaseDwdm6061 OBJECT IDENTIFIER ::= { cevModule10000Bases 45 } -- 10GBASE-DWDM 1560.61 nm XENPAK -cev10GBaseRec OBJECT IDENTIFIER ::= { cevModule10000Bases 46 } -- 10GBASE-WDM receive-only XENPAK +cev10GBaseRec OBJECT IDENTIFIER ::= { cevModule10000Bases 46 } -- 10GBASE-WDM receive-only XENPAK cevModuleONS15540Type OBJECT IDENTIFIER ::= { cevModule 42 } -- Cisco ONS 15540 ESP Modules @@ -6191,11 +6916,11 @@ cevONS15540ESPxVOA2ITUCh2930 OBJECT IDENTIFIER ::= { cevModuleONS15540Type 229 } cevONS15540ESPxVOA2ITUCh3132 OBJECT IDENTIFIER ::= { cevModuleONS15540Type 230 } -- ONS 15540 ESPx - 2 Channel VOADM with ITU Laser Channel 31/32 cevONS15540ESPxVOA4 OBJECT IDENTIFIER ::= { cevModuleONS15540Type 231 } -- ONS 15540 ESPx - 4 Channel VOA -cevModuleGsrPortAdapterType OBJECT IDENTIFIER ::= { cevModule 43 } -- Port Adapters for GSR -cevGsrPaUnknown OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 1 } -cevGsrPa1Ge OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 2 } -- 1 Port Gigabit Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR -cevGsrPa3Ge OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 3 } -- 3 Port Gigabit Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR -cevGsrPa24Fe OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 4 } -- 24 Port Fast Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR +cevModuleGsrPortAdapterType OBJECT IDENTIFIER ::= { cevModule 43 } -- Port Adapters for GSR +cevGsrPaUnknown OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 1 } +cevGsrPa1Ge OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 2 } -- 1 Port Gigabit Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR +cevGsrPa3Ge OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 3 } -- 3 Port Gigabit Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR +cevGsrPa24Fe OBJECT IDENTIFIER ::= { cevModuleGsrPortAdapterType 4 } -- 24 Port Fast Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR cevModuleC4224Type OBJECT IDENTIFIER ::= { cevModule 47 } -- Cisco Access Gateway Switch platform cevC42241FeTx OBJECT IDENTIFIER ::= { cevModuleC4224Type 1 } -- Onboard 1 FastEthernet management port for c4224 platform @@ -6385,7 +7110,7 @@ cevONS155302p5GCh2728 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 180 } -- cevONS155302p5GCh2930 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 181 } -- ONS 15530 Channel 29 or 30 2.5 Gbps ITU Line Card MU without Splitter cevONS155302p5GCh3132 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 182 } -- ONS 15530 Channel 31 or 32 2.5 Gbps ITU Line Card MU without Splitter cevONS15530PSM OBJECT IDENTIFIER ::= { cevModuleONS15530Type 183 } -- ONS 15530 Protection Switch Module -cevONS15530LC2xFC4P OBJECT IDENTIFIER ::= { cevModuleONS15530Type 184 } -- ONS15530 4-port 2xFC line card +cevONS15530LC2xFC4P OBJECT IDENTIFIER ::= { cevModuleONS15530Type 184 } -- ONS15530 4-port 2xFC line card cevONS15530MRC8PCh0102Sp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 185 } -- ONS 15530 Channel 01 or 02 8-Port Multirate Muxponder card with OC48 trunk and with Splitter cevONS15530MRC8PCh0304Sp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 186 } -- ONS 15530 Channel 03 or 04 8-Port Multirate Muxponder card with OC48 trunk and with Splitter cevONS15530MRC8PCh0506Sp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 187 } -- ONS 15530 Channel 05 or 06 8-Port Multirate Muxponder card with OC48 trunk and with Splitter @@ -6418,10 +7143,10 @@ cevONS15530MRC8PCh2526 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 213 } -- O cevONS15530MRC8PCh2728 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 214 } -- ONS 15530 Channel 27 or 28 8-Port Multirate Muxponder card with OC48 trunk and without Splitter cevONS15530MRC8PCh2930 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 215 } -- ONS 15530 Channel 29 or 30 8-Port Multirate Muxponder card with OC48 trunk and without Splitter cevONS15530MRC8PCh3132 OBJECT IDENTIFIER ::= { cevModuleONS15530Type 216 } -- ONS 15530 Channel 31 or 32 8-Port Multirate Muxponder card with OC48 trunk and without Splitter -cevONS1553010G4ChASp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 217 } -- ONS 15530 4-Channel Band A 10Gbps ITU Line Card MU with Splitter +cevONS1553010G4ChASp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 217 } -- ONS 15530 4-Channel Band A 10Gbps ITU Line Card MU with Splitter cevONS1553010G4ChBSp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 218 } -- ONS 15530 4-Channel Band B 10Gbps ITU Line Card MU with Splitter cevONS1553010G4ChCSp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 219 } -- ONS 15530 4-Channel Band C 10Gbps ITU Line Card MU with Splitter -cevONS1553010G4ChDSp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 220 } -- ONS 15530 4-Channel Band D 10Gbps ITU Line Card MU with Splitter +cevONS1553010G4ChDSp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 220 } -- ONS 15530 4-Channel Band D 10Gbps ITU Line Card MU with Splitter cevONS1553010G4ChESp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 221 } -- ONS 15530 4-Channel Band E 10Gbps ITU Line Card MU with Splitter cevONS1553010G4ChFSp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 222 } -- ONS 15530 4-Channel Band F 10Gbps ITU Line Card MU with Splitter cevONS1553010G4ChGSp OBJECT IDENTIFIER ::= { cevModuleONS15530Type 223 } -- ONS 15530 4-Channel Band G 10Gbps ITU Line Card MU with Splitter @@ -6474,7 +7199,7 @@ cevONS15500XvrOC12Son1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 32 cevONS15500XvrOC48Son1310MTRJ OBJECT IDENTIFIER ::= { cevModuleONS15500Type 33 } -- SONET OC48 transceiver - 1310nm SM - MTRJ cevONS15500XvrOC48Son1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 34 } -- SONET OC48 transceiver - 1310nm SM - LC cevONS15500XvrLowMM1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 35 } -- Low band (8-200Mbps) variable rate transceiver - 1310nm Multimode -LC -cevONS15500XvrLowSM1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 36 } -- Low band (8-200Mbps) variable rate transceiver - 1310nm Singlemode -LC +cevONS15500XvrLowSM1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 36 } -- Low band (8-200Mbps) variable rate transceiver - 1310nm Singlemode -LC cevONS15500XvrMidMM1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 37 } -- Mid band (200-622Mbps) variable rate transceiver - 1310nm Multimode - LC cevONS15500XvrMidSM1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 38 } -- Mid band (200-1250Mbps) variable rate transceiver - 1310nm Singlemode - LC cevONS15500XvrHighSM1310LC OBJECT IDENTIFIER ::= { cevModuleONS15500Type 39 } -- High band (1.06-2.66Gbps) variable rate transceiver - 1310nm Singlemode - LC @@ -6501,15 +7226,15 @@ cevModuleCat3750Ge12Sfp OBJECT IDENTIFIER ::= { cevModuleCat37xxType 6 } -- Cat cevModuleCat375048PS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 7 } -- 48 10/100 In-Line Power Ethernet ports + 2 Gigabit Ethernet SFP ports Layer 2/Layer 3 Module.(SFP Small Form factor Plugable) cevModuleCat375024PS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 8 } -- 24 10/100 In-Line Power Ethernet ports + 4 Gigabit Ethernet SFP ports Layer 2/Layer 3 Module.(SFP Small Form factor Plugable) cevModuleCat375024ME OBJECT IDENTIFIER ::= { cevModuleCat37xxType 9 } -- Metro Ethernet Catalyst 3750 Module. 24-10/100 + 2 SFP (Small Formfactor Pluggable) ports for downlinks -cevModuleCat3750G16TD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 10 } -- Catalyst 3750 switch with 16 Ethernet 10/100/1000 ports + one 10 gigabit ethernet port module +cevModuleCat3750G16TD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 10 } -- Catalyst 3750 switch with 16 Ethernet 10/100/1000 ports + one 10 gigabit ethernet port module cevModuleCat3750G24PS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 11 } -- Catalyst 3750 24 Power over Ethernet 10/100/1000 port + 4 Ethernet Gigabit SFP ports (SFP: Small Form factor Pluggable) cevModuleCat3750G48PS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 12 } -- Catalyst 3750 48 Power over Ethernet 10/100/1000 port + 4 Ethernet Gigabit SFP ports (SFP: Small Form factor Pluggable) cevModuleCat3750G48TS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 13 } -- Catalyst 3750 48 Ethernet 10/100/1000 port + 4 Ethernet Gigabit SFP ports (SFP: Small Form factor Pluggable) cevModuleCat3750G24TS1U OBJECT IDENTIFIER ::= { cevModuleCat37xxType 14 } -- Catalyst 3750 24 Ethernet 10/100/1000 port + 4 Ethernet Gigabit SFP ports (SFP: Small Form factor Pluggable) cevModuleCat375024FS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 16 } -- Catalyst 3750 24 100BaseFX ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet switch. (SFP:Small Formfactor Pluggable) -cevModuleCat3750Ge12SfpDc OBJECT IDENTIFIER ::= { cevModuleCat37xxType 17 } -- Catalyst 3750 12 Gigabit Ethernet SFP (small Form Factor Plugable) ports +cevModuleCat3750Ge12SfpDc OBJECT IDENTIFIER ::= { cevModuleCat37xxType 17 } -- Catalyst 3750 12 Gigabit Ethernet SFP (small Form Factor Plugable) ports cevModuleCat3750G24WS OBJECT IDENTIFIER ::= { cevModuleCat37xxType 18 } -- Catalyst 3750 Unified Access Switch with 24 10/100/1000 Power over Ethernet ports + 2 Gigabit Ethernet SFP ports and integrated Wireless Controller. (SFP Small Form factor Pluggable) -cevModuleCat3750E24TD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 19 } -- Catalyst 3750E 24 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports +cevModuleCat3750E24TD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 19 } -- Catalyst 3750E 24 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports cevModuleCat3750E48TD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 20 } -- Catalyst 3750E 48 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports cevModuleCat3750E48PD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 21 } -- Catalyst 3750E 48 10/100/1000 Power over Ethernet ports + 2 TenGigabit Ethernet (X2) ports cevModuleCat3750E24PD OBJECT IDENTIFIER ::= { cevModuleCat37xxType 22 } -- Catalyst 3750E 24 10/100/1000 Power over Ethernet ports + 2 TenGigabit Ethernet (X2) ports @@ -6517,10 +7242,10 @@ cevModuleCat3750v248ps OBJECT IDENTIFIER ::= { cevModuleCat37xxType 23 cevModuleCat3750v248ts OBJECT IDENTIFIER ::= { cevModuleCat37xxType 24 } -- 48 10/100 ports + 4 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch cevModuleCat3750v224ps OBJECT IDENTIFIER ::= { cevModuleCat37xxType 25 } -- 24 10/100 ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable PoE switch cevModuleCat3750v224ts OBJECT IDENTIFIER ::= { cevModuleCat37xxType 26 } -- 24 10/100 ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Stackable switch -cevModuleCat3750x24 OBJECT IDENTIFIER ::= { cevModuleCat37xxType 27 } -- Catalyst 3750X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat3750x48 OBJECT IDENTIFIER ::= { cevModuleCat37xxType 28 } -- Catalyst 3750X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat3750x24P OBJECT IDENTIFIER ::= { cevModuleCat37xxType 29 } -- Catalyst 3750X 24 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat3750x48P OBJECT IDENTIFIER ::= { cevModuleCat37xxType 30 } -- Catalyst 3750X 48 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat3750x24 OBJECT IDENTIFIER ::= { cevModuleCat37xxType 27 } -- Catalyst 3750X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat3750x48 OBJECT IDENTIFIER ::= { cevModuleCat37xxType 28 } -- Catalyst 3750X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat3750x24P OBJECT IDENTIFIER ::= { cevModuleCat37xxType 29 } -- Catalyst 3750X 24 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat3750x48P OBJECT IDENTIFIER ::= { cevModuleCat37xxType 30 } -- Catalyst 3750X 48 10/100/1000 PoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch cevModuleCat3750x48U OBJECT IDENTIFIER ::= { cevModuleCat37xxType 33 } -- Catalyst 3750X 48 10/100/1000 UPoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch cevModuleCat3750x24U OBJECT IDENTIFIER ::= { cevModuleCat37xxType 34 } -- Catalyst 3750X 24 10/100/1000 UPoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Stackable Switch @@ -6650,7 +7375,7 @@ cevSFPTDwdmXfp OBJECT IDENTIFIER ::= { cevModuleSFPType 123 }-- cevXFP10GLR192SRL OBJECT IDENTIFIER ::= { cevModuleSFPType 124 }-- 10GE Long Reach / OC192 Short Reach Low Power Single Mode XFP(10KM) cevXFP10GER192IRL OBJECT IDENTIFIER ::= { cevModuleSFPType 125 }-- 10GE Extended Reach / OC192 Intermediate Reach Low Power Single Mode XFP (40KM) cevSFPCiscoSfpT3Ge OBJECT IDENTIFIER ::= { cevModuleSFPType 126 }-- GE to T3 SFP module -cevSFPT1E1Fe OBJECT IDENTIFIER ::= { cevModuleSFPType 127 }-- FE over T1/E1 SFP Module. +cevSFPT1E1Fe OBJECT IDENTIFIER ::= { cevModuleSFPType 127 }-- FE over T1/E1 SFP Module. cevSFPT3E3Fe OBJECT IDENTIFIER ::= { cevModuleSFPType 128 }-- FE over T3/E3 SFP Module cevXFPDWDMXFPC OBJECT IDENTIFIER ::= { cevModuleSFPType 129 } -- 10G MultiRate C Band Tunable DWDM XFP cevXFP10GLROC192 OBJECT IDENTIFIER ::= { cevModuleSFPType 130 } -- Multirate XFP module for 10GBASE-LR and OC192 SR-1 @@ -6692,13 +7417,13 @@ cevSFPONSSI2GS1 OBJECT IDENTIFIER ::= { cevModuleSFPType cevSFPONSSI2GL1 OBJECT IDENTIFIER ::= { cevModuleSFPType 191 } -- OC48/STM16, LR1, 1310 nm, ITEMP, LC supports Cabling-SMF, Wavelength-1550nm, P/N-10-2102-02, Rates/Reach-OC48/STM16, SR1, S16.1, Part No. : 10-2102-02, Applicable Standard : GR253 OC48 LR1 G.957 L-16.1, Temp: -40 to +85 cevSFPONSSI2GL2 OBJECT IDENTIFIER ::= { cevModuleSFPType 192 } -- OC48/STM16, LR2, 1550 nm, ITEMP, LC supports Cabling-SMF, Wavelength-1550nm, P/N-10-1990-02, Rates/Reach-OC48/STM16/OTU1 , LR2, L-16.2,Part No. : 10-1990-02, Applicable Standard : GR253 OC48 LR2 G.957 L-16.2, Temp: -40 to +85 cevSFPONSSEZ1 OBJECT IDENTIFIER ::= { cevModuleSFPType 193 } -- OC-48IR1,12/3SR1, GE LX STM S-16.1, I-4,I-1, 1310nm EXT-TEMP, Supports Cabling-SMF, Wavelength-1310nm, /N-10-1971-02, Rates/Reach-1GE/OC48/STM16/OTU1 , IR1,S-16.1,SR,I-4,SR,| 1-1,LX, Part No. : 10-1971-02, Applicable Standard : 1000BASE-LX IEEE-802.3, GR253 OC-48 IR1 OC-12 SR, OC-3 SR G.957 S-16.1, I-4.1, I-1.1, Temp : -10 to +85 -cevSFP1000BaseBx40DI OBJECT IDENTIFIER ::= { cevModuleSFPType 194 } -- 1000BASE-BX40 SFP, 1550NM +cevSFP1000BaseBx40DI OBJECT IDENTIFIER ::= { cevModuleSFPType 194 } -- 1000BASE-BX40 SFP, 1550NM cevSFP1000BaseBx40DAI OBJECT IDENTIFIER ::= { cevModuleSFPType 195 } -- 1000BASE-BX40 SFP, 1490NM -cevSFP1000BaseBx40UI OBJECT IDENTIFIER ::= { cevModuleSFPType 196 } -- 1000BASE-BX40 SFP, 1310NM -cevSFP1000BaseBx80DI OBJECT IDENTIFIER ::= { cevModuleSFPType 197 } -- 1000BASE-BX80 SFP, 1570NM +cevSFP1000BaseBx40UI OBJECT IDENTIFIER ::= { cevModuleSFPType 196 } -- 1000BASE-BX40 SFP, 1310NM +cevSFP1000BaseBx80DI OBJECT IDENTIFIER ::= { cevModuleSFPType 197 } -- 1000BASE-BX80 SFP, 1570NM cevSFP1000BaseBx80UI OBJECT IDENTIFIER ::= { cevModuleSFPType 198 } -- 1000BASE-BX80 SFP, 1490NM -cevSFPGlcT OBJECT IDENTIFIER ::= { cevModuleSFPType 199 } -- 1000BASE-T SFP module for Category 5 copper wire -cevSSFPOAM1000BaseZX OBJECT IDENTIFIER ::= { cevModuleSFPType 200 } -- Cisco OAM Smart SFP Long Reach +cevSFPGlcT OBJECT IDENTIFIER ::= { cevModuleSFPType 199 } -- 1000BASE-T SFP module for Category 5 copper wire +cevSSFPOAM1000BaseZX OBJECT IDENTIFIER ::= { cevModuleSFPType 200 } -- Cisco OAM Smart SFP Long Reach cevSSFPOAM1000BaseLX OBJECT IDENTIFIER ::= { cevModuleSFPType 201 } -- Cisco OAM Smart SFP Short Reach cevSFPGLCBX40UI OBJECT IDENTIFIER ::= { cevModuleSFPType 202 } -- 1GE-Bidi-U-40km cevSFPGLCBX40DI OBJECT IDENTIFIER ::= { cevModuleSFPType 203 } -- 1GE-Bidi-D-40km @@ -6712,8 +7437,31 @@ cevSFPGLC2BXDI OBJECT IDENTIFIER ::= { cevModuleSFPType cevSFPASR9KvGlcFe100ex OBJECT IDENTIFIER ::= { cevModuleSFPType 254 } -- GLC-FE-100EX modules operate in Fast Ethernet or dual-rate Fast/Gigabit Ethernet ports of Cisco switches and routers cevSFPASR9KvGlcFe100zx OBJECT IDENTIFIER ::= { cevModuleSFPType 255 } -- GLC-FE-100ZX modules operate in Fast Ethernet or dual-rate Fast/Gigabit Ethernet ports of Cisco switches and routers cevSFPONGSC2GEBXD OBJECT IDENTIFIER ::= { cevModuleSFPType 258 } -- 1000BASE-BX10 SFP, 1490NM, 2-Channels -cevSFPONSSC2GEBXDI OBJECT IDENTIFIER ::= { cevModuleSFPType 259 } -- 1000BASE-BX10 SFP, 1490NM, 2-Channels, Industrial Temp rebranded one -cevSFP100BaseGlcLxFe OBJECT IDENTIFIER ::= { cevModuleSFPType 260 } -- 100BASE-LX SFP operates on ordinary SMF link spans up to 10 km long +cevSFPONSSC2GEBXDI OBJECT IDENTIFIER ::= { cevModuleSFPType 259 } -- 1000BASE-BX10 SFP, 1490NM, 2-Channels, Industrial Temp rebranded one +cevSFP100BaseGlcLxFe OBJECT IDENTIFIER ::= { cevModuleSFPType 260 } -- 100BASE-LX SFP operates on ordinary SMF link spans up to 10 km long +cevSFPGLCBXDI OBJECT IDENTIFIER ::= { cevModuleSFPType 261 } -- 1000BASE-BX-D Bidi downstream SFP, I-Temp +cevSFPGLCBXUI OBJECT IDENTIFIER ::= { cevModuleSFPType 262 } -- 1000BASE-BX-U Bidi upstream SFP, I-Temp +cevSFPT1FSATOPI OBJECT IDENTIFIER ::= { cevModuleSFPType 263 } -- DS1/T1 smart pluggable with Framing and Line Coding +cevSFPE1FSATOPI OBJECT IDENTIFIER ::= { cevModuleSFPType 264 } -- E1 smart pluggable with Framing and Line Coding +cevSFPE1USATOPI OBJECT IDENTIFIER ::= { cevModuleSFPType 265 } -- E1 smart pluggable Unframed and HDB3 Line Coding +cevSFPCHOC3STM1I OBJECT IDENTIFIER ::= { cevModuleSFPType 266 } -- OC3 and STM-1 channelized smart pluggable +cevSFPCHSTM1I OBJECT IDENTIFIER ::= { cevModuleSFPType 267 } -- Channelized STM1 smart pluggable, No OC3 support +cevSFPT3FSATOPI OBJECT IDENTIFIER ::= { cevModuleSFPType 268 } -- DS3/T3 smart pluggable with Framing and Line Coding +cevSFPCHOC12STM4I OBJECT IDENTIFIER ::= { cevModuleSFPType 269 } -- OCN and SDH smart pluggable with Framing and Line Coding +cevSFP1GSX OBJECT IDENTIFIER ::= { cevModuleSFPType 270 } -- 1000BASE-SX SFP (DOM), MMF, 550/220m +cevSFP1GLH OBJECT IDENTIFIER ::= { cevModuleSFPType 271 } -- 1000BASE-LH SFP (DOM), SMF, 10Km +cevSFP25GSL OBJECT IDENTIFIER ::= { cevModuleSFPType 272 } -- SFP28 SL module, 30m, MMF +cevGLCSXMMRGD OBJECT IDENTIFIER ::= { cevModuleSFPType 273 } -- Cisco GLC-SX-MM-RGD Compatible 1000BASE-SX SFP Transceiver Module +cevGLCLXSMRGD OBJECT IDENTIFIER ::= { cevModuleSFPType 274 } -- Cisco GLC-LX-SM-RGD Optical Module Transceiver 1000Mbps Single Mode Rugged SFP +cevGLCZXSMRGD OBJECT IDENTIFIER ::= { cevModuleSFPType 275 } -- Cisco GLC-ZX-SM-RGD Compatible 1000BASE-ZX SFP 1550nm 70km Industrial Transceiver +cevGLCTRGD OBJECT IDENTIFIER ::= { cevModuleSFPType 276 } -- Cisco Copper SFP Module, 10/100/1000Base-TX RJ45, -40 to +85 deg C +cevSFPGEZ OBJECT IDENTIFIER ::= { cevModuleSFPType 279 } -- 1000BASE-ZX Gigabit Ethernet SFP (DOM), SMF, 70Km +cevONSSCZ31510 OBJECT IDENTIFIER ::= { cevModuleSFPType 307 } -- Cisco SFP 1G ONS-SC-Z3-1510 Pluggable Optics Module +cevSFPPONOLT20X OBJECT IDENTIFIER ::= { cevModuleSFPType 308 } -- Cisco SFP PON OLT Pluggable Optics Module +cevGLCFE100FX OBJECT IDENTIFIER ::= { cevModuleSFPType 309 } -- 100FX SFP on FE ports +cevGLCFE100BXD OBJECT IDENTIFIER ::= { cevModuleSFPType 310 } -- FE 100BASE-BX10 SFP 1550 nm TX/1310 nm RX 10 km over single-strand SMF +cevGLCFE100BXU OBJECT IDENTIFIER ::= { cevModuleSFPType 311 } -- FE 100BASE-BX10 SFP 1310 nm TX/1550 nm RX 10 km over single-strand SMF +cevSFP50GERI OBJECT IDENTIFIER ::= { cevModuleSFPType 315 } -- Cisco SFP28 50G ER Pluggable Optics Module cevModuleONS15200Type OBJECT IDENTIFIER ::= { cevModule 52 } -- Represents the base class for all the modules used in ONS15200. cevONS15252Clip OBJECT IDENTIFIER ::= { cevModuleONS15200Type 1 } -- ONS15252 Client Line Interface Port @@ -6733,7 +7481,7 @@ cevMDSDsSfpFc2Glw OBJECT IDENTIFIER ::= { cevModuleMDSType 9 } -- DS-SFP-FC-2G cevMDSDsSfpGeSw OBJECT IDENTIFIER ::= { cevModuleMDSType 10 } -- DS-SFP-GE-SW - 1 Gbps Ethernet-SW Small Form-Factor Pluggable, LC cevMDSDsSfpGeLw OBJECT IDENTIFIER ::= { cevModuleMDSType 11 } -- DS-SFP-GE-LW - 1 Gbps Ethernet-LW Small Form-Factor Pluggable, LC cevMDSDsC9500Cl OBJECT IDENTIFIER ::= { cevModuleMDSType 12 } -- DS-C9500-CL - MDS 9500 Backplane Clock Module -cevMDSDsX9216K9Sup OBJECT IDENTIFIER ::= { cevModuleMDSType 13 } -- DS-X9216-K9-SUP - MDS 9216 16-port 1/2Gbps FC Module +cevMDSDsX9216K9Sup OBJECT IDENTIFIER ::= { cevModuleMDSType 13 } -- DS-X9216-K9-SUP - MDS 9216 16-port 1/2Gbps FC Module cevMDSMemFld512M OBJECT IDENTIFIER ::= { cevModuleMDSType 14 } -- MEM-MDS-FLD512M - MDS 9500 Sup Compact Flash Disk, 512MB cevMDSMemMd1G OBJECT IDENTIFIER ::= { cevModuleMDSType 15 } -- MEM-MDS-MD1G - MDS 9500 Sup Microdrive 1GB cevMDSDsC9509Cl OBJECT IDENTIFIER ::= { cevModuleMDSType 16 } -- DS-C9509-CL - MDS 9509 Clock Module @@ -6762,7 +7510,7 @@ cevMDSDsX9222iK9Sup OBJECT IDENTIFIER ::= { cevModuleMDSType 38 } -- D cevMDSDxX930418K9 OBJECT IDENTIFIER ::= { cevModuleMDSType 39 } -- DS-X9304-18K9 coco Linecard cevMDSDsX9134S2K9 OBJECT IDENTIFIER ::= { cevModuleMDSType 40 } -- 32-port 1/2/4 with 10 Gig Supervisor Fabric Switch cevMdsDSC9222iK9Sup OBJECT IDENTIFIER ::= { cevModuleMDSType 41 } -- Supervisor module in slot 1 of MDS 9222i chassis -cevMDSDsX9248FC48Gbps OBJECT IDENTIFIER ::= { cevModuleMDSType 42 } -- 48 port 1/2/4/8G 48Gbps FibreChannel linecard A-Oahu PID:DS-X9248-48 +cevMDSDsX9248FC48Gbps OBJECT IDENTIFIER ::= { cevModuleMDSType 42 } -- 48 port 1/2/4/8G 48Gbps FibreChannel linecard A-Oahu PID:DS-X9248-48 cevMDSDsX9248FC96Gbps OBJECT IDENTIFIER ::= { cevModuleMDSType 43 } -- 48 port 1/2/4/8G 96Gbps FibreChannel linecard TwinPeaks PID:DS-X9248-96 cevMDSDsX9316SSM OBJECT IDENTIFIER ::= { cevModuleMDSType 44 } -- Lanai PID=DS-X9316-SSM, 16 GE port Storage Service Module cevMDSDs13SltFab2 OBJECT IDENTIFIER ::= { cevModuleMDSType 45 } -- Cisco MDS 9513 Fabric2 (evia2)DS-13SLT-FAB2 @@ -6774,7 +7522,7 @@ cevMDSDs13SlotFabricEvia3 OBJECT IDENTIFIER ::= { cevModuleMDSType 55 } cevMDSDsX9530Sf2AK9 OBJECT IDENTIFIER ::= { cevModuleMDSType 56 } -- 2nd gen sup2a DS-X9530-SF2A-K9 for MDS cevMDSDs9708HPK9 OBJECT IDENTIFIER ::= { cevModuleMDSType 57 } -- DS-9708-HPK9 HP-Mira-midas cevMDSDs9708K9 OBJECT IDENTIFIER ::= { cevModuleMDSType 58 } -- DS-9708-K9 Mira-midas -cevMDSDSX9448n768K9 OBJECT IDENTIFIER ::= { cevModuleMDSType 61 } -- DS-X9448-768K9, 48 Port 16 GBit/s Fiber Channel Linecard for MDS 10-Slot Director Switch, DS9710 +cevMDSDSX9448n768K9 OBJECT IDENTIFIER ::= { cevModuleMDSType 61 } -- DS-X9448-768K9, 48 Port 16 GBit/s Fiber Channel Linecard for MDS 10-Slot Director Switch, DS9710 cevMDSDSX9848n480K9SM OBJECT IDENTIFIER ::= { cevModuleMDSType 62 } -- DS-X9848-480-K9, 10G FCoE Storage Module for MDS 10-Slot Director Switch, DS9710 cevMDSDSX97SF1K9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 63 } -- DS-X97-SF1-K9, Supervisor Module for NextGen MDS Director Switch cevMDSDSX9710FAB1 OBJECT IDENTIFIER ::= { cevModuleMDSType 64 } -- DS-X9710-FAB1, Fabric Module for MDS 10-Slot Director Switch, DS9710 @@ -6798,11 +7546,18 @@ cevDSC9148TK9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 81 } -- DS-C91 cevDSC9396TK9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 82 } -- DS-C9396T-K9-SUP, 48X32G FC Supervisor module for DS-C9396T-K9 cevDSC9396T64SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 83 } -- DS-C9396T-K9-SUP, 64X32G FC Supervisor module for DS-C9396T-K9 cevDSC9396T80SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 84 } -- DS-C9396T-K9-SUP, 80X32G FC Supervisor module for DS-C9396T-K9 -cevDSC9396T96SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 85 } -- DS-C9396T-K9-SUP, 96X32G FC Supervisor module for DS-C9396T-K9 +cevDSC9396T96SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 85 } -- DS-C9396T-K9-SUP, 96X32G FC Supervisor module for DS-C9396T-K9 cevDSX9706FAB3 OBJECT IDENTIFIER ::= { cevModuleMDSType 86 } -- DS-X9706-FAB3, Fabric Module for MDS 6-Slot Director Switch DS9706 cevDSX9710FAB3 OBJECT IDENTIFIER ::= { cevModuleMDSType 87 } -- DS-X9710-FAB3, Fabric Module for MDS 10-Slot Director Switch DS9710 cevDSX9718FAB3 OBJECT IDENTIFIER ::= { cevModuleMDSType 88 } -- DS-X9718-FAB3, Fabric Module for MDS 18-Slot Director Switch DS9718 cevDSX97SF4K9 OBJECT IDENTIFIER ::= { cevModuleMDSType 89 } -- DS-X97-SF4-K9, Supervisor Module 4 for NextGen MDS Director switch +cevDSC9220IK9 OBJECT IDENTIFIER ::= { cevModuleMDSType 90 } -- MDS 9220i Multiprotocol Fabric Switch, with support for FC and FC-IP Protocols +cevDSC9220IK9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 91 } -- DS-C9220i-K9-SUP, Supervisor module for MDS 9220i Intelligent Fabric Switch +cevDSX97483072k9 OBJECT IDENTIFIER ::= { cevModuleMDSType 92 } -- DS-X9748-3072K9, 8/16/32/64 Gbps Advanced FC Module for MDS Director Switch M9700 +cevDSC9148VK9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 93 } -- 48 port 8/16/32/64Gbps FC/Sup-4 +cevDSC9124VK9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 94 } -- 24 port 8/16/32/64 Gbps FC/Sup-4 switch +cevDSC9396VK9SUP OBJECT IDENTIFIER ::= { cevModuleMDSType 95 } -- Supervisor module for MDS-9396V 64G x 96 FC ports fabric switch + cevModuleC3220Type OBJECT IDENTIFIER ::= { cevModule 54 } -- Represents the base class for all the modules used in c3220. cevC3220Smic OBJECT IDENTIFIER ::= { cevModuleC3220Type 1 } -- Serial Mobile Interface Card(SMIC) for the C3220 Mobile Access Router with 2 Serial Interfaces. @@ -6840,17 +7595,17 @@ cevModuleCrs1FabricOIMDualSlot OBJECT IDENTIFIER ::= { cevModuleCrs1Type 28 } cevModuleCrs18dS123Fabric OBJECT IDENTIFIER ::= { cevModuleCrs1Type 29 } -- Cisco CRS-1 Series 8 Slots Fabric Card/Dual cevModuleCrs18mS123Fabric OBJECT IDENTIFIER ::= { cevModuleCrs1Type 30 } -- Cisco CRS-1 Series 8 Slots Fabric Card/Multi cevModuleCrs116dS123Fabric OBJECT IDENTIFIER ::= { cevModuleCrs1Type 31 } -- Cisco CRS-1 Series 16 Slots Fabric Card/Dual -cevModuleCrs1FccSc22Ge OBJECT IDENTIFIER ::= { cevModuleCrs1Type 32 } -- CRS-1 Fabric Chassis Integrated Switch Controller Card -cevModuleCrs1FccSFEc OBJECT IDENTIFIER ::= { cevModuleCrs1Type 33 } -- Cisco CRS-1 Series FC Chassis Shelf/Fan/Enet Controller +cevModuleCrs1FccSc22Ge OBJECT IDENTIFIER ::= { cevModuleCrs1Type 32 } -- CRS-1 Fabric Chassis Integrated Switch Controller Card +cevModuleCrs1FccSFEc OBJECT IDENTIFIER ::= { cevModuleCrs1Type 33 } -- Cisco CRS-1 Series FC Chassis Shelf/Fan/Enet Controller cevModuleCrs14x10GeCDwdmPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 34 } -- Cisco CRS-1 4 port 10GE (C-band) DWDM PLIM cevModuleCrs14OC192CDwdmPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 35 } -- Cisco CRS-1 4 port OC192 (C-band) DWDM PLIM cevModuleCrs1OC768CDwdmPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 36 } -- Cisco CRS-1 OC768 (C-band) DWDM PLIM -cevModuleCrs1DRPBPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 37 } -- Cisco CRS-1 Series Distributed Route Processor PLIM revision B +cevModuleCrs1DRPBPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 37 } -- Cisco CRS-1 Series Distributed Route Processor PLIM revision B cevModuleCrs1DRPB OBJECT IDENTIFIER ::= { cevModuleCrs1Type 38 } -- Cisco CRS-1 Series Distributed Route Processor CPU board revision B cevModuleCrs1OC768CDwdmDpskC OBJECT IDENTIFIER ::= { cevModuleCrs1Type 39 } -- Cisco CRS-1 OC768 DPSK C-BAND STD CHAN PLIM -cevModuleCrs14FabricCard OBJECT IDENTIFIER ::= { cevModuleCrs1Type 42 } -- Cisco CRS-1 Series 4 Slots Fabric Card +cevModuleCrs14FabricCard OBJECT IDENTIFIER ::= { cevModuleCrs1Type 42 } -- Cisco CRS-1 Series 4 Slots Fabric Card cevModuleCrsASPLIM OBJECT IDENTIFIER ::= { cevModuleCrs1Type 43 } -- Cisco CRS-1 Carrier Grade Service Engine PLIM -cevModuleCrs4OC192DptLr OBJECT IDENTIFIER ::= { cevModuleCrs1Type 44 } -- Cisco CRS-1 4xOC-192/STM-64 DPT Interface Module/LR +cevModuleCrs4OC192DptLr OBJECT IDENTIFIER ::= { cevModuleCrs1Type 44 } -- Cisco CRS-1 4xOC-192/STM-64 DPT Interface Module/LR cevModuleCrs4OC192DptSr OBJECT IDENTIFIER ::= { cevModuleCrs1Type 45 } -- Cisco CRS-1 4xOC-192/STM-64 DPT Interface Module/SR cevModuleCrs4OC192DptVs OBJECT IDENTIFIER ::= { cevModuleCrs1Type 46 } -- Cisco CRS-1 4xOC-192/STM-64 DPT Interface Module/VSR cevModuleCrs14x10GE OBJECT IDENTIFIER ::= { cevModuleCrs1Type 47 } -- Cisco CRS-1 Series 4x10GE Interface Module @@ -6865,9 +7620,9 @@ cevModuleCrs1Lc40G OBJECT IDENTIFIER ::= { cevModuleCrs1Type 55 } cevModuleCrs114X10GBEWLXFPPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 56 } -- Cisco CRS Series 14x10GbE LAN/WAN-PHY Interface Module cevModuleCrs120X10GBEWLXFPPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 57 } -- Cisco CRS Series 20x10GbE LAN/WAN-PHY Interface Module cevModuleCrs11X100GBEPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 58 } -- Cisco CRS Series 1x100GbE Interface Module -cevModuleCrs8Prp12g OBJECT IDENTIFIER ::= { cevModuleCrs1Type 59 } -- Cisco CRS-1 Series 8 Slots 12 GB Performance Route Processor +cevModuleCrs8Prp12g OBJECT IDENTIFIER ::= { cevModuleCrs1Type 59 } -- Cisco CRS-1 Series 8 Slots 12 GB Performance Route Processor cevModuleCrs8Prp6g OBJECT IDENTIFIER ::= { cevModuleCrs1Type 60 } -- Cisco CRS-1 Series 8 Slots 6 GB Performance Route Processor -cevModuleCrs16Prp12g OBJECT IDENTIFIER ::= { cevModuleCrs1Type 61 } -- Cisco CRS-1 Series 16 Slots 12 GB Performance Route Processor +cevModuleCrs16Prp12g OBJECT IDENTIFIER ::= { cevModuleCrs1Type 61 } -- Cisco CRS-1 Series 16 Slots 12 GB Performance Route Processor cevModuleCrs16Prp6g OBJECT IDENTIFIER ::= { cevModuleCrs1Type 62 } -- Cisco CRS-1 Series 16 Slots 6 GB Performance Route Processor cevModuleCrs16FanCtB OBJECT IDENTIFIER ::= { cevModuleCrs1Type 63 } -- CRS-16-FAN-CT-B cevModuleCrs16AlarmMB OBJECT IDENTIFIER ::= { cevModuleCrs1Type 64 } -- CRS Modular Power Alarm for CRS-16/S-B @@ -6877,7 +7632,7 @@ cevModuleCrs120X10GBEDwdmXfpPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 67 } cevModuleCrs14X40GBEOtu3Plim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 68 } -- Cisco CRS-1 Series 4x40GbE OTU3 Interface Module cevModuleCrs11X100GBEDwdmPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 69 } -- Cisco CRS-1 Series 1x100GbE DWDM Interface Module cevModuleCrsCgsePlusPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 72 } -- Cisco CRS-3 80 Gbps next generation Services PLIM -cevModuleCrs140X10GEWLOPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 73 } -- Cisco CRS-10 Series 40x10GbE LAN/WAN-PHY/OTU2e Interface Module +cevModuleCrs140X10GEWLOPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 73 } -- Cisco CRS-10 Series 40x10GbE LAN/WAN-PHY/OTU2e Interface Module cevModuleCrs14x100GELOPlim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 74 } -- Cisco CRS-10 Series 4x100GbE LAN/OTU4 Interface Module cevModuleCrs12X100GELOFlex40Plim OBJECT IDENTIFIER ::= { cevModuleCrs1Type 75 } -- Cisco CRS-10 Series 2x100GbE LAN/OTU4 and 5x40GbE LAN/OTU3 combined Interface Module. Will also support breakout port modes cevModuleCrs400GEDWDMFLEX OBJECT IDENTIFIER ::= { cevModuleCrs1Type 76 } -- Cisco CRS-10 Series 400GE_DWDM_FLEX Interface Module @@ -6892,7 +7647,7 @@ cevModuleCat3560G48PS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 5 } -- Cata cevModuleCat3560G48TS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 6 } -- Catalyst 3560 48 Ethernet 10/100/1000 port + 4 Ethernet Gigabit SFP ports (SFP: Small Form factor Pluggable) cevModuleCat356024TS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 7 } -- Catalyst 3560 24 Ethernet 10/100 port + 2 Ethernet Gigabit SFP ports module. (SFP: Small Form factor Pluggable) cevModuleCat356048TS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 8 } -- Catalyst 3560 48 Ethernet 10/100 port + 4 Ethernet Gigabit SFP ports module. (SFP: Small Form factor Pluggable) -cevModuleCat3560E24TD OBJECT IDENTIFIER ::= { cevModuleCat35xxType 9 } -- Catalyst 3560E 24 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports +cevModuleCat3560E24TD OBJECT IDENTIFIER ::= { cevModuleCat35xxType 9 } -- Catalyst 3560E 24 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports cevModuleCat3560E48TD OBJECT IDENTIFIER ::= { cevModuleCat35xxType 10 } -- Catalyst 3560E 48 10/100/1000 ports + 2 TenGigabit Ethernet (X2) ports cevModuleCat3560E24PD OBJECT IDENTIFIER ::= { cevModuleCat35xxType 11 } -- Catalyst 3560E 24 10/100/1000 Power over Ethernet ports + 2 TenGigabit Ethernet (X2) ports cevModuleCat3560E48PD OBJECT IDENTIFIER ::= { cevModuleCat35xxType 12 } -- Catalyst 3560E 48 10/100/1000 Power over Ethernet ports + 2 TenGigabit Ethernet (X2) ports @@ -6905,12 +7660,12 @@ cevModuleCat3560v248ts OBJECT IDENTIFIER ::= { cevModuleCat35xxType 18 cevModuleCat3560v224ps OBJECT IDENTIFIER ::= { cevModuleCat35xxType 19 } -- 24 10/100 ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Non-stackable PoE switch cevModuleCat3560v224ts OBJECT IDENTIFIER ::= { cevModuleCat35xxType 20 } -- 24 10/100 ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Non-stackable switch cevModuleCat3560v224tsD OBJECT IDENTIFIER ::= { cevModuleCat35xxType 21 } -- 24 10/100 ports + 2 Ethernet Gigabit SFP ports fixed configuration Layer 2/Layer 3 Ethernet Non-stackable switch, DC power -cevModuleCat3560x24 OBJECT IDENTIFIER ::= { cevModuleCat35xxType 22 } -- Catalyst 3560X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch -cevModuleCat3560x48 OBJECT IDENTIFIER ::= { cevModuleCat35xxType 23 } -- Catalyst 3560X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch +cevModuleCat3560x24 OBJECT IDENTIFIER ::= { cevModuleCat35xxType 22 } -- Catalyst 3560X 24 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch +cevModuleCat3560x48 OBJECT IDENTIFIER ::= { cevModuleCat35xxType 23 } -- Catalyst 3560X 48 10/100/1000 Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch cevModuleWsC3560CPD8ptS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 28 } -- Catalyst 3560C 8 10/100/1000 with PoE and 2 Gig Copper PoE+ Uplinks fixed configuration Layer 2/Layer 3 Ethernet switch cevModuleWsC3560C12pcS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 29 } -- Catalyst 3560C 12 10/100 with PoE + 2 Gig Dual Media Uplinks fixed configuration Layer 2/Layer 3 Ethernet switch cevModuleWsC3560C8pcS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 30 } -- Catalyst 3560C 8 10/100 with PoE + 2 Gig Dual Media Uplinks fixed configuration Layer 2/Layer 3 Ethernet switch -cevModuleCat3560x48U OBJECT IDENTIFIER ::= { cevModuleCat35xxType 31 } -- Catalyst 3560X 48 10/100/1000 UPoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch +cevModuleCat3560x48U OBJECT IDENTIFIER ::= { cevModuleCat35xxType 31 } -- Catalyst 3560X 48 10/100/1000 UPoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch cevModuleCat3557x24U OBJECT IDENTIFIER ::= { cevModuleCat35xxType 32 } -- Catalyst 3560X 24 10/100/1000 UPoE Ports + 4 SFP Ports + 2 SFP+ Ports Layer 2/Layer 3 Ethernet Switch cevModuleWsC3560CX8PTS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 43 } -- Smirnoff catalyst 3560CX 8x GE downlink ,PoE+, 2x 1G copper UPOE uplinks. cevModuleWsC3560CX8XPDS OBJECT IDENTIFIER ::= { cevModuleCat35xxType 44 } -- Smirnoff catalyst 3560CX 2x mGig + 6x GE downlink ,PoE+, 2x SFP+ uplinks. @@ -6941,11 +7696,11 @@ cevONS15310Ge8CE2 OBJECT IDENTIFIER ::= { cevModuleONS15310Type 3 } -- Ci cevModuleX2s OBJECT IDENTIFIER ::= { cevModule 60 } -- 10 Gigabit Pluggable X2 Modules -cevMX210GBaseSR OBJECT IDENTIFIER ::= { cevModuleX2s 1 } -- 10 Gigabit Ethernet X2 with Short Wave Multi Mode Fiber +cevMX210GBaseSR OBJECT IDENTIFIER ::= { cevModuleX2s 1 } -- 10 Gigabit Ethernet X2 with Short Wave Multi Mode Fiber cevMX210GBaseLR OBJECT IDENTIFIER ::= { cevModuleX2s 2 } -- 10 Gigabit Ethernet X2 with Long Wave Single Mode Fiber -cevMX210GBaseER OBJECT IDENTIFIER ::= { cevModuleX2s 3 } -- 10 Gigabit Ethernet X2 with Extra Long Wave Single Mode Fiber -cevMX210GBaseLX4 OBJECT IDENTIFIER ::= { cevModuleX2s 4 } -- 10 Gigabit Ethernet X2 with Long Wave Multi Mode Fiber - 4 channels -cevMX210GBaseCX4 OBJECT IDENTIFIER ::= { cevModuleX2s 5 } -- 10 Gigabit Ethernet X2 with Copper Wire +cevMX210GBaseER OBJECT IDENTIFIER ::= { cevModuleX2s 3 } -- 10 Gigabit Ethernet X2 with Extra Long Wave Single Mode Fiber +cevMX210GBaseLX4 OBJECT IDENTIFIER ::= { cevModuleX2s 4 } -- 10 Gigabit Ethernet X2 with Long Wave Multi Mode Fiber - 4 channels +cevMX210GBaseCX4 OBJECT IDENTIFIER ::= { cevModuleX2s 5 } -- 10 Gigabit Ethernet X2 with Copper Wire cevMX210GBaseZR OBJECT IDENTIFIER ::= { cevModuleX2s 6 } -- 10G Ethernet X2, 80km over Single Modle Fiber cevMX210GBaseLW OBJECT IDENTIFIER ::= { cevModuleX2s 7 } -- 10G Ethernet X2, 1310nm WAN Serial Single Modle Fiber cevMX210GBaseLRM OBJECT IDENTIFIER ::= { cevModuleX2s 8 } -- 10G Ethernet X2, 300m over 50um Muti Mode Fiber and 220m over FDDI grade Muti Mode Fiber @@ -6980,7 +7735,7 @@ cevMX2s10GBaseDwdm5494 OBJECT IDENTIFIER ::= { cevModuleX2s 37 } -- 10G cevMX2s10GBaseDwdm5575 OBJECT IDENTIFIER ::= { cevModuleX2s 38 } -- 10G Ethernet 5575 Laser X2 Module cevMX2s10GBaseDwdm5655 OBJECT IDENTIFIER ::= { cevModuleX2s 39 } -- 10G Ethernet 5655 Laser X2 Module cevMX2s10GBaseDwdm5817 OBJECT IDENTIFIER ::= { cevModuleX2s 40 } -- 10G Ethernet 5817 Laser X2 Module -cevMX2s10GBaseDwdm5898 OBJECT IDENTIFIER ::= { cevModuleX2s 41 } -- 10G Ethernet 5898 Laser X2 Module +cevMX2s10GBaseDwdm5898 OBJECT IDENTIFIER ::= { cevModuleX2s 41 } -- 10G Ethernet 5898 Laser X2 Module cevMX2s10GBaseDwdm5979 OBJECT IDENTIFIER ::= { cevModuleX2s 42 } -- 10G Ethernet 5979 Laser X2 Module cevMX2s10GBaseDwdm6061 OBJECT IDENTIFIER ::= { cevModuleX2s 43 } -- 10G Ethernet 6061 Laser X2 Module cevMX210GEBaseT OBJECT IDENTIFIER ::= { cevModuleX2s 44 } -- 10 Gigabit Ethernet X2 with four pairs of Class E or Class F balanced copper cabling @@ -6995,15 +7750,15 @@ cevModuleCE50024PC OBJECT IDENTIFIER ::= { cevModuleCE5xxType 3 } -- Catalyst cevModuleCE500G12TC OBJECT IDENTIFIER ::= { cevModuleCE5xxType 4 } -- Catalyst Express 500 8 Gigabit Ethernet Ports + 4 dual purpose Gigabit Ethernet ports module cevModuleCE5208PC OBJECT IDENTIFIER ::= { cevModuleCE5xxType 5 } -- Catalyst Express 520 8 10/100 Power over Ethernet ports + 1 dual purpose Gigabit Ethernet port fixed configuration Layer 2 Ethernet switch cevModuleCE52024PC OBJECT IDENTIFIER ::= { cevModuleCE5xxType 6 } -- Catalyst Express 520 24 Power Over Ethernet Ports + 2 dual purpose Gigabit Ethernet ports fixed configuration Layer 2 Ethernet switch -cevModuleCE52024TT OBJECT IDENTIFIER ::= { cevModuleCE5xxType 7 } -- Catalyst Express 520 24 10/100 ports + 2 Gigabit Ethernet ports fixed configuration Layer 2 Ethernet switch +cevModuleCE52024TT OBJECT IDENTIFIER ::= { cevModuleCE5xxType 7 } -- Catalyst Express 520 24 10/100 ports + 2 Gigabit Ethernet ports fixed configuration Layer 2 Ethernet switch cevModuleCE52024LC OBJECT IDENTIFIER ::= { cevModuleCE5xxType 8 } -- Catalyst Express 520 24 10/100 ports (4 Power Over Ethernet Ports) + 2 dual purpose Gigabit Ethernet ports fixed configuration Layer 2 Ethernet switch cevModule520G24TC OBJECT IDENTIFIER ::= { cevModuleCE5xxType 9 } -- Catalyst Express 520 24 Gigabit Ethernet Ports + 2 dual purpose Gigabit Ethernet ports fixed configuration Layer 2 Ethernet switch cevModuleMEType OBJECT IDENTIFIER ::= { cevModule 64 } -- Modules that are used in Cisco Metro Ethernet Switches cevModuleME240024TS OBJECT IDENTIFIER ::= { cevModuleMEType 1 } -- Metro Ethernet 2400 24 10/100 fast ethernet + 2 SFP ports module cevModuleME340024TS OBJECT IDENTIFIER ::= { cevModuleMEType 2 } -- Metro Ethernet 3400 24 10/100 fast ethernet + 2 SFP ports module -cevModuleME3400G12CS OBJECT IDENTIFIER ::= { cevModuleMEType 3 } -- Metro Ethernet 3400, 12 GE/SFP ports + 4 SFP ports module -cevModuleME3400G2CS OBJECT IDENTIFIER ::= { cevModuleMEType 4 } -- Metro Ethernet 3400, 2 GE/SFP ports + 2 SFP ports module +cevModuleME3400G12CS OBJECT IDENTIFIER ::= { cevModuleMEType 3 } -- Metro Ethernet 3400, 12 GE/SFP ports + 4 SFP ports module +cevModuleME3400G2CS OBJECT IDENTIFIER ::= { cevModuleMEType 4 } -- Metro Ethernet 3400, 2 GE/SFP ports + 2 SFP ports module cevModuleME492410GE OBJECT IDENTIFIER ::= { cevModuleMEType 5 } -- Metro Ethernet 492410GE, 24+4 GE/SFP ports + 2 X2 ports module. cevModuleME340024FS OBJECT IDENTIFIER ::= { cevModuleMEType 6 } -- Metro Ethernet 3400 24 100BaseFX fast ethernet + 2 SFP ports module cevModuleME3400E24TS OBJECT IDENTIFIER ::= { cevModuleMEType 7 } -- Metro Ethernet 3400E, 24 10/100 Fast Ethernet + 2 SFP ports module @@ -7030,13 +7785,11 @@ cevCat4kWsx4612SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 17 } cevCat4kWsx4640CSfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 18 } -- Catalyst 4500 EX-Series 40-Port SFP/80-Port C-SFP cevCatWsX4748Rj45E OBJECT IDENTIFIER ::= { cevModuleCat4000EType 19 } -- 10/100/1000BaseT (RJ45) with 48 10/100/1000BaseT Energy Efficient Ethernet (EEE) ports cevCat4kWsX4748NgpoeE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 20 } -- WS-X4748-UPOE+E is a RJ45-based 48 port linecard. The card supports UPOE, the Cisco-proprietary method of providing upto 60W of inline power per port -cevCat4kWsx4712SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 21 } -- Catalyst 4500 Ex-Series 12-Port SFP -cevCat4kWsx4724SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 22 } -- Catalyst 4500 Ex-Series 24-Port SFP -cevCat4kWsx4748SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 23 } -- Catalyst 4500 Ex-Series 48-Port SFP +cevCat4kWsx4712SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 21 } -- Catalyst 4500 Ex-Series 12-Port SFP +cevCat4kWsx4724SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 22 } -- Catalyst 4500 Ex-Series 24-Port SFP +cevCat4kWsx4748SfpE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 23 } -- Catalyst 4500 Ex-Series 48-Port SFP cevCat4kWsX474812X48uE OBJECT IDENTIFIER ::= { cevModuleCat4000EType 33 } -- Switch 4500E 100/1000/2500/5000/10GBaseT (RJ45)+V E Series with 48 10GbaseT - - cevModuleN7KType OBJECT IDENTIFIER ::= { cevModule 66 } -- Group for the Nexus7000 N7K type of cards cevN7KSup1 OBJECT IDENTIFIER ::= { cevModuleN7KType 1 } -- supervisor1 module for Nexus7000 N7K cevN7KM148GT04 OBJECT IDENTIFIER ::= { cevModuleN7KType 2 } -- Nurburgring 48 port 10/100/1000 RJ-45 40G @@ -7066,7 +7819,7 @@ cevN7KM224XP23L OBJECT IDENTIFIER ::= { cevModuleN7KType 32 } cevN7KSUP2E OBJECT IDENTIFIER ::= { cevModuleN7KType 33 } -- silverstoneHeavy sup2e N7K-SUP2E cevN7KForwardingEngine OBJECT IDENTIFIER ::= { cevModuleN7KType 34 } -- Forwarding engine asic on nexus n7k linecards cevN7KF306CK25 OBJECT IDENTIFIER ::= { cevModuleN7KType 35 } -- Nexus 7000 F3-series 6-port 100 Gigabit Ethernet Module -cevN7KF312FQ25 OBJECT IDENTIFIER ::= { cevModuleN7KType 36 } -- Pescara-40-12 n7k 12 Port 10/40G QSFP Line Card N7K-F312FQ-25 +cevN7KF312FQ25 OBJECT IDENTIFIER ::= { cevModuleN7KType 36 } -- Pescara-40-12 n7k 12 Port 10/40G QSFP Line Card N7K-F312FQ-25 cevN7KF248XT25E OBJECT IDENTIFIER ::= { cevModuleN7KType 45 } -- N7K-F248XT-25E Enhanced 1/10 Gbps BASE-T Ethernet Module cevN7KF248XP25E OBJECT IDENTIFIER ::= { cevModuleN7KType 46 } -- N7K-F248XP-25E Enhanced 1/10 Gbps Ethernet Module cevN7KM324FQ25L OBJECT IDENTIFIER ::= { cevModuleN7KType 48 } -- 24-port 10/40Gbps QSFP M3 Linecard for Nexus 7000 platform @@ -7104,10 +7857,10 @@ cevModuleASR1001IDC4xT3 OBJECT IDENTIFIER ::= { cevModuleASR1000Type 23 } cevModuleASR1001IDC8xChT1E1 OBJECT IDENTIFIER ::= { cevModuleASR1000Type 24 } -- Cisco ASR1002 8xChT1/E1 Integrated Daughter Card cevModuleASR1001IDC4xGe OBJECT IDENTIFIER ::= { cevModuleASR1000Type 25 } -- Cisco ASR1001 4xGe Integrated Daughter Card cevModuleASR1001IDCHDD OBJECT IDENTIFIER ::= { cevModuleASR1000Type 26 } -- ASR1001 harddisk Integrated Daughter Card -cevModuleASR1002XRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 27 } -- Cisco ASR1002-X Routing Processor Module -cevModuleASR1002XESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 28 } -- Cisco ASR1002-X Embedded Services Processor 2.5Gbps Module -cevModuleASR1002XSIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 29 } -- Cisco ASR1002-X SPA Interface Processor Module -cevModuleASR1002X6xGeBuiltIn OBJECT IDENTIFIER ::= { cevModuleASR1000Type 30 } -- Built-in 6 port Ge Module for Cisco ASR1002-X +cevModuleASR1002XRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 27 } -- Cisco ASR1002-X Routing Processor Module +cevModuleASR1002XESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 28 } -- Cisco ASR1002-X Embedded Services Processor 2.5Gbps Module +cevModuleASR1002XSIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 29 } -- Cisco ASR1002-X SPA Interface Processor Module +cevModuleASR1002X6xGeBuiltIn OBJECT IDENTIFIER ::= { cevModuleASR1000Type 30 } -- Built-in 6 port Ge Module for Cisco ASR1002-X cevModuleASR1000ESP100 OBJECT IDENTIFIER ::= { cevModuleASR1000Type 31 } -- Cisco ASR1000 Embedded Services Processor 100Gbps Module cevModuleASR1000ESP200 OBJECT IDENTIFIER ::= { cevModuleASR1000Type 32 } -- Cisco ASR1000 Embedded Services Processor 200Gbps Module cevModuleASR1000ELC2xT20xGe OBJECT IDENTIFIER ::= { cevModuleASR1000Type 33} -- Integrated Daughter Card 2xT+20xGE for Cisco ASR1000 Ethernet Line 40G Card. It contains 20-port GigabitEtherent ports and 2-port TenGigabitEtherent ports @@ -7129,6 +7882,55 @@ cevModuleASR1000BUILTIN4X10G1G OBJECT IDENTIFIER ::= { cevModuleASR1000Type 63 } cevModuleASR1000AIRCT5540K9RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 64 } -- AIRCT5540-K9 Routing Processor Module cevModuleASR1000AIRCT5540K9ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 65 } -- AIRCT5540-K9 Embedded Services Processor Module cevModuleASR1000AIRCT5540K9MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 66 } -- AIRCT5540-K9 Modular Interface Processor Module +cevModuleC980040K9MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 67 } -- C9800-40-K9 Modular Interface Processor Module +cevModuleC980040K9ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 68 } -- C9800-40-K9 Embedded Services Processor Module +cevModuleC980040K9RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 69 } -- C9800-40-K9 Routing Processor Module +cevModuleC980080K9ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 76 } -- C9800-80-K9 Embedded Services Processor Module +cevModuleC980080K9MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 77 } -- C9800-80-K9 Modular Interface Processor Module +cevModuleC980080K9RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 78 } -- C9800-80-K9 Routing Processor Module +cevModuleASR1000ESP100X OBJECT IDENTIFIER ::= { cevModuleASR1000Type 80 } -- Cisco ASR1000 Embedded Services Processor 100XGbps Module +cevModuleASR1000ESP200X OBJECT IDENTIFIER ::= { cevModuleASR1000Type 81 } -- Cisco ASR1000 Embedded Services Processor 200XGbps Module +cevModuleC850012X4QCRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 82 } -- Cisco C8500-12X4QC Routing Processor Module +cevModuleC850012X4QCESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 83 } -- Cisco C8500-12X4QC Embedded Services Processor Module +cevModuleC850012X4QCMIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 84 } -- Cisco C8500-12X4QC Modular Interface Processor Module +cevModuleC850012XRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 85 } -- Cisco C8500-12X Routing Processor Module +cevModuleC850012XESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 86 } -- Cisco C8500-12X Embedded Services Processor Module +cevModuleC850012XMIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 87 } -- Cisco C8500-12X Modular Interface Processor Module +cevModuleASR1000BUILTIN8X1G10G OBJECT IDENTIFIER ::= { cevModuleASR1000Type 88 } -- BUILT-IN-8X1/10G EPA will act as 1G or 10G depending on the SFP type plugged in the interface +cevModuleASR1000BUILTIN100404X10G OBJECT IDENTIFIER ::= { cevModuleASR1000Type 89 } -- BUILT-IN-100/40/4X10G EPA will act as 10G SFP type plugged in the interface +cevModuleASR1000BUILTIN12X1G10G OBJECT IDENTIFIER ::= { cevModuleASR1000Type 90 } -- BUILT-IN-12X1/10G EPA will act as 1G or 10G depending on the SFP type plugged in the interface +cevModuleASR1000BUILTIN100G3X40G OBJECT IDENTIFIER ::= { cevModuleASR1000Type 91 } -- BUILT-IN-100G/3X40G EPA SFP type plugged in the interface +cevModuleC9800LCK9RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 92 } -- C9800-L-C-K9 (RJ45) Route Processor Module +cevModuleC9800LCK9ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 93 } -- C9800-L-C-K9 (RJ45) Embedded Services Processor Module +cevModuleC9800LCK9MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 94 } -- C9800-L-C-K9 (RJ45) Modular Interface Processor Module +cevModuleC9800LFK9RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 95 } -- C9800-L-F-K9 (SFP) Route Processor Module +cevModuleC9800LFK9ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 96 } -- C9800-L-F-K9 (SFP) Embedded Services Processor Module +cevModuleC9800LFK9MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 97 } -- C9800-L-F-K9 (SFP) Modular Interface Processor Module +cevModuleC8500L8S4X4x10GeSfp OBJECT IDENTIFIER ::= { cevModuleASR1000Type 110 } -- Built-In 4xSFP+ (10G) Module for Cisco C8500L-8S4X +cevModuleC8500L8S4X8x1GeSfp OBJECT IDENTIFIER ::= { cevModuleASR1000Type 111 } -- Built-In 8xSFP (1G) Module for Cisco C8500L-8S4X +cevModuleC8500L8S4XRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 112 } -- C8500L-8S4X Routing Processor Module +cevModuleC8500L8S4XESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 113 } -- C8500L-8S4X Embedded Services Processor Module +cevModuleC8500L8S4XSIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 114 } -- C8500L-8S4X SPA Interface Processor Module +cevModuleC850020X6CRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 115 } -- Cisco C8500-20X6C Routing Processor Module +cevModuleC850020X6CESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 116 } -- Cisco C8500-20X6C Embedded Services Processor Module +cevModuleC850020X6CMIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 117 } -- Cisco C8500-20X6C Modular Interface Processor Module +cevModuleC8500L8S2X2Y OBJECT IDENTIFIER ::= { cevModuleASR1000Type 121 } -- Cisco C8500L-8S2X2Y Routing Processor Module +cevModuleC8500L8S8X4Y OBJECT IDENTIFIER ::= { cevModuleASR1000Type 122 } -- Cisco C8500L-8S8X4Y Routing Processor Module +cevModuleC8500L8S2X2YRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 123 } -- C8500L-8S2X2Y Routing Processor Module +cevModuleC8500L8S8X4YRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 124 } -- C8500L-8S8X4Y Routing Processor Module +cevModuleC8500L8S2X2YESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 125 } -- C8500L-8S2X2Y Embedded Services Processor Module +cevModuleC8500L8S8X4YESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 126 } -- C8500L-8S8X4Y Embedded Services Processor Module +cevModuleC8500L8S2X2YSIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 127 } -- C8500L-8S2X2Y SPA Interface Processor Module +cevModuleC8500L8S8X4YSIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 128 } -- C8500L-8S8X4Y SPA Interface Processor Module +cevModuleCW9800MRP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 144 } -- Cisco CW9800M Routing Processor Module +cevModuleCW9800MESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 145 } -- Cisco CW9800M Embedded Services Processor Module +cevModuleCW9800MMIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 146 } -- Cisco CW9800M Modular Interface Processor Module +cevModuleCW9800H1RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 147 } -- Cisco CW9800H1 Routing Processor Module +cevModuleCW9800H1ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 148 } -- Cisco CW9800H1 Embedded Services Processor Module +cevModuleCW9800H1MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 149 } -- Cisco CW9800H1 Modular Interface Processor Module +cevModuleCW9800H2RP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 150 } -- Cisco CW9800H2 Routing Processor Module +cevModuleCW9800H2ESP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 151 } -- Cisco CW9800H2 Embedded Services Processor Module +cevModuleCW9800H2MIP OBJECT IDENTIFIER ::= { cevModuleASR1000Type 152 } -- Cisco CW9800H2 Modular Interface Processor Module cevModuleCatRfgwType OBJECT IDENTIFIER ::= { cevModule 69 } -- Cards that go into Rfgw chassis cevRfgwDtcc OBJECT IDENTIFIER ::= { cevModuleCatRfgwType 1 } -- DOCSIS Timing, Communication, and Control Plus Card for RF gateway @@ -7142,11 +7944,11 @@ cevVgdDfcCT3 OBJECT IDENTIFIER ::= { cevModuleVgdType 1 } cevVgdDfcVFC OBJECT IDENTIFIER ::= { cevModuleVgdType 2 } -- VGD Series Voice Feature Card with Six Packet Voice Data Modules (PVDM2) module slots cevVgdDfcCarrier OBJECT IDENTIFIER ::= { cevModuleVgdType 3 } -- Carrier Card that holds VGD Series Feature/Interface Cards -cevModuleIEType OBJECT IDENTIFIER ::= { cevModule 71 } -- new switch product line for IE +cevModuleIEType OBJECT IDENTIFIER ::= { cevModule 71 } -- new switch product line for IE cevModuleIE30004TC OBJECT IDENTIFIER ::= { cevModuleIEType 1 } -- Cisco Industrial Ethernet Switch IE 3000 with 4 10/100 + 2 T/SFP Ethernet Interfaces cevModuleIE30008TC OBJECT IDENTIFIER ::= { cevModuleIEType 2 } -- Cisco Industrial Ethernet Switch IE3000 with 8 10/100 + 2 T/SFP Ethernet Interfaces cevModuleIE30008TM OBJECT IDENTIFIER ::= { cevModuleIEType 3 } -- Cisco Industrial Ethernet Switch Expansion Module IE3000, 8 10/100 -cevModuleIE30008FM OBJECT IDENTIFIER ::= { cevModuleIEType 4 } -- Cisco Industrial Ethernet Switch Expansion Module IE3000, 8 100FX interfaces +cevModuleIE30008FM OBJECT IDENTIFIER ::= { cevModuleIEType 4 } -- Cisco Industrial Ethernet Switch Expansion Module IE3000, 8 100FX interfaces cevModuleRAIE1783MS06T OBJECT IDENTIFIER ::= { cevModuleIEType 5 } -- Cisco-Rockwell Industrial Ethernet Switch 1783 with 4 10/100 + 2 T/SFP Ethernet Interfaces cevModuleRAIE1783MS10T OBJECT IDENTIFIER ::= { cevModuleIEType 6 } -- Cisco Rockwell Industrial Ethernet Switch IE1783 with 8 10/100 + 2 T/SFP Ethernet Interfaces cevModuleRAIE1783MX08T OBJECT IDENTIFIER ::= { cevModuleIEType 7 } -- Cisco-Rockwell Industrial Ethernet Switch Expansion Module IE1783 with 8 10/100 interface @@ -7154,34 +7956,34 @@ cevModuleRAIE1783MX08F OBJECT IDENTIFIER ::= { cevModuleIEType 8 } cevModuleIE301016S8PC OBJECT IDENTIFIER ::= { cevModuleIEType 9 } -- Cisco Industrial Ethernet 3010 Switch with 16 100 SFP + 8 10/100 + 2 T/SFP Ethernet Interfaces cevModuleRAIE1783RMS06T OBJECT IDENTIFIER ::= { cevModuleIEType 13 } -- Cisco-Rockwell Industrial Ethernet Switch IE1783 with 4 10/100 + 2 T/SFP Ethernet Interfaces cevModuleRAIE1783RMS10T OBJECT IDENTIFIER ::= { cevModuleIEType 14 } -- Cisco Rockwell Industrial Ethernet Switch IE1783 with 8 10/100 + 2 T/SFP Ethernet Interfaces -cevModuleIE20004TS OBJECT IDENTIFIER ::= { cevModuleIEType 15 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP -cevModuleIE20004T OBJECT IDENTIFIER ::= { cevModuleIEType 16 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T -cevModuleIE20004TSG OBJECT IDENTIFIER ::= { cevModuleIEType 17 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP -cevModuleIE20004TG OBJECT IDENTIFIER ::= { cevModuleIEType 18 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T -cevModuleIE20008TC OBJECT IDENTIFIER ::= { cevModuleIEType 19 } -- Cisco IA Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP -cevModuleIE20008TCG OBJECT IDENTIFIER ::= { cevModuleIEType 20 } -- Cisco IA Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevModuleIE200016TC OBJECT IDENTIFIER ::= { cevModuleIEType 21 } -- Cisco IA Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP -cevModuleIE200016TCG OBJECT IDENTIFIER ::= { cevModuleIEType 22 } -- Cisco IA Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevModuleIE200016TCGX OBJECT IDENTIFIER ::= { cevModuleIEType 23 } -- Cisco IA Base + 1588 + Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS06SL OBJECT IDENTIFIER ::= { cevModuleIEType 24 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP -cevModuleRAIE1783BMS06SA OBJECT IDENTIFIER ::= { cevModuleIEType 25 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP -cevModuleRAIE1783BMS06TL OBJECT IDENTIFIER ::= { cevModuleIEType 26 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T -cevModuleRAIE1783BMS06TA OBJECT IDENTIFIER ::= { cevModuleIEType 27 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T -cevModuleRAIE1783BMS06SGL OBJECT IDENTIFIER ::= { cevModuleIEType 28 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP -cevModuleRAIE1783BMS06SGA OBJECT IDENTIFIER ::= { cevModuleIEType 29 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP -cevModuleRAIE1783BMS06TGL OBJECT IDENTIFIER ::= { cevModuleIEType 30 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T -cevModuleRAIE1783BMS06TGA OBJECT IDENTIFIER ::= { cevModuleIEType 31 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T -cevModuleRAIE1783BMS10CL OBJECT IDENTIFIER ::= { cevModuleIEType 32 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP -cevModuleRAIE1783BMS10CA OBJECT IDENTIFIER ::= { cevModuleIEType 33 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP -cevModuleRAIE1783BMS10CGL OBJECT IDENTIFIER ::= { cevModuleIEType 34 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS10CGA OBJECT IDENTIFIER ::= { cevModuleIEType 35 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS10CGP OBJECT IDENTIFIER ::= { cevModuleIEType 36 } -- Cisco Rockwell IA Base + 1588 Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS10CGN OBJECT IDENTIFIER ::= { cevModuleIEType 37 } -- Cisco Rockwell IA Base + 1588 + NAT Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS20CL OBJECT IDENTIFIER ::= { cevModuleIEType 38 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP -cevModuleRAIE1783BMS20CA OBJECT IDENTIFIER ::= { cevModuleIEType 39 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP -cevModuleRAIE1783BMS20CGL OBJECT IDENTIFIER ::= { cevModuleIEType 40 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS20CGP OBJECT IDENTIFIER ::= { cevModuleIEType 41 } -- Cisco Rockwell IA Base + 1588 Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevModuleRAIE1783BMS20CGPK OBJECT IDENTIFIER ::= { cevModuleIEType 42 } -- Cisco Rockwell IA Base + 1588 + Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleIE20004TS OBJECT IDENTIFIER ::= { cevModuleIEType 15 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP +cevModuleIE20004T OBJECT IDENTIFIER ::= { cevModuleIEType 16 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T +cevModuleIE20004TSG OBJECT IDENTIFIER ::= { cevModuleIEType 17 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP +cevModuleIE20004TG OBJECT IDENTIFIER ::= { cevModuleIEType 18 } -- Cisco IA Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T +cevModuleIE20008TC OBJECT IDENTIFIER ::= { cevModuleIEType 19 } -- Cisco IA Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP +cevModuleIE20008TCG OBJECT IDENTIFIER ::= { cevModuleIEType 20 } -- Cisco IA Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevModuleIE200016TC OBJECT IDENTIFIER ::= { cevModuleIEType 21 } -- Cisco IA Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP +cevModuleIE200016TCG OBJECT IDENTIFIER ::= { cevModuleIEType 22 } -- Cisco IA Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleIE200016TCGX OBJECT IDENTIFIER ::= { cevModuleIEType 23 } -- Cisco IA Base + 1588 + Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS06SL OBJECT IDENTIFIER ::= { cevModuleIEType 24 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP +cevModuleRAIE1783BMS06SA OBJECT IDENTIFIER ::= { cevModuleIEType 25 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 SFP +cevModuleRAIE1783BMS06TL OBJECT IDENTIFIER ::= { cevModuleIEType 26 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T +cevModuleRAIE1783BMS06TA OBJECT IDENTIFIER ::= { cevModuleIEType 27 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 100 T +cevModuleRAIE1783BMS06SGL OBJECT IDENTIFIER ::= { cevModuleIEType 28 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP +cevModuleRAIE1783BMS06SGA OBJECT IDENTIFIER ::= { cevModuleIEType 29 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 SFP +cevModuleRAIE1783BMS06TGL OBJECT IDENTIFIER ::= { cevModuleIEType 30 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T +cevModuleRAIE1783BMS06TGA OBJECT IDENTIFIER ::= { cevModuleIEType 31 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 4 10/100 T + 2 1000 T +cevModuleRAIE1783BMS10CL OBJECT IDENTIFIER ::= { cevModuleIEType 32 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP +cevModuleRAIE1783BMS10CA OBJECT IDENTIFIER ::= { cevModuleIEType 33 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 8 10/100 T + 2 100 T/SFP +cevModuleRAIE1783BMS10CGL OBJECT IDENTIFIER ::= { cevModuleIEType 34 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS10CGA OBJECT IDENTIFIER ::= { cevModuleIEType 35 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS10CGP OBJECT IDENTIFIER ::= { cevModuleIEType 36 } -- Cisco Rockwell IA Base + 1588 Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS10CGN OBJECT IDENTIFIER ::= { cevModuleIEType 37 } -- Cisco Rockwell IA Base + 1588 + NAT Industrial Ethernet 2000 Switch, 8 10/100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS20CL OBJECT IDENTIFIER ::= { cevModuleIEType 38 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP +cevModuleRAIE1783BMS20CA OBJECT IDENTIFIER ::= { cevModuleIEType 39 } -- Cisco Rockwell IA Base Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 100 T/SFP +cevModuleRAIE1783BMS20CGL OBJECT IDENTIFIER ::= { cevModuleIEType 40 } -- Cisco Rockwell IA Lite Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS20CGP OBJECT IDENTIFIER ::= { cevModuleIEType 41 } -- Cisco Rockwell IA Base + 1588 Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleRAIE1783BMS20CGPK OBJECT IDENTIFIER ::= { cevModuleIEType 42 } -- Cisco Rockwell IA Base + 1588 + Conformal coating Industrial Ethernet 2000 Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP cevModuleIE200016TCGP OBJECT IDENTIFIER ::= { cevModuleIEType 52 } -- Cisco IA Base + Lite Industrial Ethernet 2000 Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE cevModuleIE200016TCGEP OBJECT IDENTIFIER ::= { cevModuleIEType 53 } -- Cisco IA Base + 1588 Industrial Ethernet 2000 Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE cevModuleIE200016TCGNXP OBJECT IDENTIFIER ::= { cevModuleIEType 54 } -- Cisco IA Base + 1588 + Conformal coating Industrial Ethernet 2000 Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE @@ -7213,13 +8015,13 @@ cevModuleRAIE1783ZMS16TA OBJECT IDENTIFIER ::= { cevModuleIEType 85 } -- Rockw cevModuleRAIE1783ZMS24TA OBJECT IDENTIFIER ::= { cevModuleIEType 86 } -- Rockwell IE2000 IP67 Variant Switch with 24 port 10/100 downlink, LAN Base Image cevModuleRAIE1783ZMS4T4E2TGP OBJECT IDENTIFIER ::= { cevModuleIEType 87 } -- Rockwell IE2000 IP67 Variant Switch with 4 port 10/100 downlink, 4-port POE /POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT cevModuleRAIE1783ZMS8T8E2TGP OBJECT IDENTIFIER ::= { cevModuleIEType 88 } -- Rockwell IE2000 IP67 Variant Switch with 8 port 10/100 downlink, 8-port POE / 4-port POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT -cevModuleIE2000U4STSG OBJECT IDENTIFIER ::= { cevModuleIEType 89 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 SFP + 2 1000 SFP -cevModuleIE2000U16TCGP OBJECT IDENTIFIER ::= { cevModuleIEType 90 } -- Cisco Industrial Ethernet 2000U Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE + 1588 -cevModuleIE2000U4TG OBJECT IDENTIFIER ::= { cevModuleIEType 91 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 T -cevModuleIE2000U4TSG OBJECT IDENTIFIER ::= { cevModuleIEType 92 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 SFP -cevModuleIE2000U8TCG OBJECT IDENTIFIER ::= { cevModuleIEType 93 } -- Cisco Industrial Ethernet 2000U Switch, 8 10/100 T + 2 1000 T/SFP -cevModuleIE2000U16TCG OBJECT IDENTIFIER ::= { cevModuleIEType 94 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP -cevModuleIE2000U16TCGX OBJECT IDENTIFIER ::= { cevModuleIEType 95 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleIE2000U4STSG OBJECT IDENTIFIER ::= { cevModuleIEType 89 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 SFP + 2 1000 SFP +cevModuleIE2000U16TCGP OBJECT IDENTIFIER ::= { cevModuleIEType 90 } -- Cisco Industrial Ethernet 2000U Switch, 12 10/100 T + 2 1000 T/SFP + 4 POE + 1588 +cevModuleIE2000U4TG OBJECT IDENTIFIER ::= { cevModuleIEType 91 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 T +cevModuleIE2000U4TSG OBJECT IDENTIFIER ::= { cevModuleIEType 92 } -- Cisco Industrial Ethernet 2000U Switch, 4 10/100 T + 2 1000 SFP +cevModuleIE2000U8TCG OBJECT IDENTIFIER ::= { cevModuleIEType 93 } -- Cisco Industrial Ethernet 2000U Switch, 8 10/100 T + 2 1000 T/SFP +cevModuleIE2000U16TCG OBJECT IDENTIFIER ::= { cevModuleIEType 94 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP +cevModuleIE2000U16TCGX OBJECT IDENTIFIER ::= { cevModuleIEType 95 } -- Cisco Industrial Ethernet 2000U Switch, 16 10/100 T + 2 100 T + 2 1000 T/SFP cevModuleIE40004TC4GE OBJECT IDENTIFIER ::= { cevModuleIEType 96 } -- Cisco IE4000 with 4 FE Combo DL ports, 4 GE combo UL ports, w/FPGA, cevModuleIE40008T4GE OBJECT IDENTIFIER ::= { cevModuleIEType 97 } -- CISCO IE4000 with 8 FE Copper DL ports, 4 GE combo UL ports, w/FPGA, cevModuleIE40008S4GE OBJECT IDENTIFIER ::= { cevModuleIEType 98 } -- CISCO IE4000 with 8 FE Fiber DL ports, 4 GE combo UL ports, w/FPGA, @@ -7253,9 +8055,9 @@ cevModuleRAIE1783HMS4SG8EG4CGR OBJECT IDENTIFIER ::= { cevModuleIEType 125 } - cevModuleIE500012S12P10G OBJECT IDENTIFIER ::= { cevModuleIEType 126 } -- CISCO IE5000 with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module cevModuleRAIE1783IMS28NAC OBJECT IDENTIFIER ::= { cevModuleIEType 127 } -- CISCO IE5000 for RockWell Automation Lanbase license AC power supply with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module cevModuleRAIE1783IMS28NDC OBJECT IDENTIFIER ::= { cevModuleIEType 128 } -- CISCO IE5000 for RockWell Automation Lanbase license DC power supply with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module -cevModuleRAIE1783IMS28RAC OBJECT IDENTIFIER ::= { cevModuleIEType 129 } -- CISCO IE5000 for RockWell Automation IP Services license AC power supply with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module -cevModuleRAIE1783IMS28RDC OBJECT IDENTIFIER ::= { cevModuleIEType 130 } -- CISCO IE5000 for RockWell Automation IP Services license DC power supply with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module -cevModuleIE500016S12P OBJECT IDENTIFIER ::= { cevModuleIEType 131 } -- CISCO IE5000 with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE, 12 GE Fiber DL ports, w/FPGA, Timing Module +cevModuleRAIE1783IMS28RAC OBJECT IDENTIFIER ::= { cevModuleIEType 129 } -- CISCO IE5000 for RockWell Automation IP Services license AC power supply with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module +cevModuleRAIE1783IMS28RDC OBJECT IDENTIFIER ::= { cevModuleIEType 130 } -- CISCO IE5000 for RockWell Automation IP Services license DC power supply with 4 10GE Fiber UL ports + 8 GE Copper DL ports with POE, 8 GE Fiber DL ports, w/FPGA, Timing Module +cevModuleIE500016S12P OBJECT IDENTIFIER ::= { cevModuleIEType 131 } -- CISCO IE5000 with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE, 12 GE Fiber DL ports, w/FPGA, Timing Module cevModuleIE10004TLM OBJECT IDENTIFIER ::= { cevModuleIEType 132 } -- Cisco IE1000 ruggedized Industrial Ethernet switch with 5x 10/100 BaseT Copper ports cevModuleIE10006TLM OBJECT IDENTIFIER ::= { cevModuleIEType 133 } -- Cisco IE1000 ruggedized Industrial Ethernet switch with 8x 10/100 BaseT Copper ports cevModuleIE10004PTSLM OBJECT IDENTIFIER ::= { cevModuleIEType 134 } -- Cisco IE1000 ruggedized Industrial Ethernet switch with 4x 10/100 BaseT downlink ports and 2X GE SFP uplink ports @@ -7264,21 +8066,21 @@ cevModuleRAIE1783IMS28GNAC OBJECT IDENTIFIER ::= { cevModuleIEType 136 } - cevModuleRAIE1783IMS28GNDC OBJECT IDENTIFIER ::= { cevModuleIEType 137 } -- CISCO IE5000 for RockWell Automation Lanbase license DC power supply with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE, 12 GE Fiber DL ports, w/FPGA, Timing Module cevModuleRAIE1783IMS28GRAC OBJECT IDENTIFIER ::= { cevModuleIEType 138 } -- CISCO IE5000 for RockWell Automation IP Services license AC power supply with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE, 12 GE Fiber DL ports, w/FPGA, Timing Module cevModuleRAIE1783IMS28GRDC OBJECT IDENTIFIER ::= { cevModuleIEType 139 } -- CISCO IE5000 for RockWell Automation IP Services license DC power supply with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE, 12 GE Fiber DL ports, w/FPGA, Timing Module -cevModuleRAIE1783ZMS4T4E2TGN OBJECT IDENTIFIER ::= { cevModuleIEType 140 } -- Rockwell IE2000 IP67 Variant Switch with 4 port 10/100 downlink, 4-port POE /POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT -cevModuleRAIE1783ZMS8T8E2TGN OBJECT IDENTIFIER ::= { cevModuleIEType 141 } -- Rockwell IE2000 IP67 Variant Switch with 8 port 10/100 downlink, 8-port POE / 4-port POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT +cevModuleRAIE1783ZMS4T4E2TGN OBJECT IDENTIFIER ::= { cevModuleIEType 140 } -- Rockwell IE2000 IP67 Variant Switch with 4 port 10/100 downlink, 4-port POE /POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT +cevModuleRAIE1783ZMS8T8E2TGN OBJECT IDENTIFIER ::= { cevModuleIEType 141 } -- Rockwell IE2000 IP67 Variant Switch with 8 port 10/100 downlink, 8-port POE / 4-port POE+, 2 10/100/1000 uplink, LAN Base Image, can support PTP, NAT cevModuleIE40104S24P OBJECT IDENTIFIER ::= { cevModuleIEType 142 } -- CISCO IE4010 with 4 1GE Fiber UL ports + 24 GE Copper DL ports with POE, w/FPGA cevModuleIE401016S12P OBJECT IDENTIFIER ::= { cevModuleIEType 143 } -- CISCO IE4010 with 4 1GE Fiber UL ports + 12 GE Copper DL ports with POE + 12 GE Fiber DL ports, w/FPGA -cevModuleRAIE1783LMS5 OBJECT IDENTIFIER ::= { cevModuleIEType 144 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 5x 10/100 BaseT Copper ports -cevModuleRAIE1783LMS8 OBJECT IDENTIFIER ::= { cevModuleIEType 145 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 8x 10/100 BaseT Copper ports +cevModuleRAIE1783LMS5 OBJECT IDENTIFIER ::= { cevModuleIEType 144 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 5x 10/100 BaseT Copper ports +cevModuleRAIE1783LMS8 OBJECT IDENTIFIER ::= { cevModuleIEType 145 } -- Cisco Rockwell brand Industrial Ethernet 1000 switch with 8x 10/100 BaseT Copper ports cevModuleESS3300NCP OBJECT IDENTIFIER ::= { cevModuleIEType 146 } -- Cisco ESS-3300 Embedded Service Switch with 8 Gig Downlinks and 2x10G SFP+ Switch, Main Board, No cooling plate -cevModuleESS3300CON OBJECT IDENTIFIER ::= { cevModuleIEType 147 } -- Cisco ESS-3300 Embedded Service Switch with 8 Gig Downlinks and 2x10G SFP+ Switch, Main Board, Conduction cooled -cevModuleESS330016TNCP OBJECT IDENTIFIER ::= { cevModuleIEType 148 } -- Cisco ESS-3300 Embedded Service Switch with 16 Gig Downlinks Switch, Expansion board, No Cooling plate +cevModuleESS3300CON OBJECT IDENTIFIER ::= { cevModuleIEType 147 } -- Cisco ESS-3300 Embedded Service Switch with 8 Gig Downlinks and 2x10G SFP+ Switch, Main Board, Conduction cooled +cevModuleESS330016TNCP OBJECT IDENTIFIER ::= { cevModuleIEType 148 } -- Cisco ESS-3300 Embedded Service Switch with 16 Gig Downlinks Switch, Expansion board, No Cooling plate cevModuleESS330016TCON OBJECT IDENTIFIER ::= { cevModuleIEType 149 } -- Cisco ESS-3300 Embedded Service Switch with 16 Gig Downlinks Switch, Expansion board, Conduction cooled cevModuleIE32008T2S OBJECT IDENTIFIER ::= { cevModuleIEType 150 } -- Cisco Industrial Ethernet 3200 Switch, Petra Fixed System 2 Port SFP + 8 Port GE Copper Basic cevModuleIE32008P2S OBJECT IDENTIFIER ::= { cevModuleIEType 151 } -- Cisco Industrial Ethernet 3200 Switch, Petra Fixed System 2 Port SFP + 8 Port GE PoE+ Basic cevModuleIE33008T2S OBJECT IDENTIFIER ::= { cevModuleIEType 152 } -- Cisco Industrial Ethernet 3300 Switch, Petra Expandable System 2 Port SFP + 8 Port GE Copper Basic cevModuleIE33008P2S OBJECT IDENTIFIER ::= { cevModuleIEType 153 } -- Cisco Industrial Ethernet 3300 Switch, Petra Expandable System 2 Port SFP + 8 Port GE PoE+ Basic -cevModuleIE34008P2S OBJECT IDENTIFIER ::= { cevModuleIEType 154 } -- Cisco Industrial Ethernet 3400 Switch, Petra Expandable System 2 Port SFP + 8 Port GE PoE+ Adv +cevModuleIE34008P2S OBJECT IDENTIFIER ::= { cevModuleIEType 154 } -- Cisco Industrial Ethernet 3400 Switch, Petra Expandable System 2 Port SFP + 8 Port GE PoE+ Adv cevModuleIEM33008T OBJECT IDENTIFIER ::= { cevModuleIEType 155 } -- Cisco Industrial Ethernet 3300 Switch - 8 Port GE Copper Exp Module Basic cevModuleIEM33008P OBJECT IDENTIFIER ::= { cevModuleIEType 156 } -- Cisco Industrial Ethernet 3300 Switch - 8 Port GE PoE+ Exp Module Basic PoE+ cevModuleIEM34008P OBJECT IDENTIFIER ::= { cevModuleIEType 157 } -- Cisco Industrial Ethernet 3400 Switch - 8 Port GE PoE+ Exp Module Adv PoE+ @@ -7287,22 +8089,22 @@ cevModuleIEM33008S OBJECT IDENTIFIER ::= { cevModuleIEType 159 } - cevModuleIEM34008S OBJECT IDENTIFIER ::= { cevModuleIEType 160 } -- Cisco Industrial Ethernet 3400 Switch - 8 Port SFP Fiber Exp Module Advanced cevModuleIEM330016T OBJECT IDENTIFIER ::= { cevModuleIEType 161 } -- Cisco Industrial Ethernet 3300 Switch - 16 Port GE Copper Exp Module Basic cevModuleIEM330016P OBJECT IDENTIFIER ::= { cevModuleIEType 162 } -- Cisco Industrial Ethernet 3300 Switch - 16 Port GE PoE+ Exp Module Basic -cevModuleIEM330014T2S OBJECT IDENTIFIER ::= { cevModuleIEType 163 } -- Cisco Industrial Ethernet 3300 Switch -14 Port GE Copper + 2 Port SFP Fiber Mixed Exp Module Basic +cevModuleIEM330014T2S OBJECT IDENTIFIER ::= { cevModuleIEType 163 } -- Cisco Industrial Ethernet 3300 Switch -14 Port GE Copper + 2 Port SFP Fiber Mixed Exp Module Basic cevModuleRAIE1783MMS10B OBJECT IDENTIFIER ::= { cevModuleIEType 164 } -- Cisco-Rockwell Stratix 5800 Supervisor Card , Network Essentials, Fixed System 2 Port SFP + 8 Port GE Copper Basic cevModuleRAIE1783MMS10BE OBJECT IDENTIFIER ::= { cevModuleIEType 165 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Essentials, Fixed System 2 Port SFP + 8 Port GE PoE+ Basic cevModuleRAIE1783MMS10 OBJECT IDENTIFIER ::= { cevModuleIEType 166 } -- Cisco-Rockwell Stratix 5800 Supervisor Card Network Essentials, Expandable System 2 Port SFP + 8 Port GE Copper Basic cevModuleRAIE1783MMS10R OBJECT IDENTIFIER ::= { cevModuleIEType 167 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Advantage, Expandable System 2 Port SFP + 8 Port GE Copper Basic -cevModuleRAIE1783MMS10E OBJECT IDENTIFIER ::= { cevModuleIEType 168 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Essentials, Expandable System 2 Port SFP + 8 Port GE PoE+ Basic +cevModuleRAIE1783MMS10E OBJECT IDENTIFIER ::= { cevModuleIEType 168 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Essentials, Expandable System 2 Port SFP + 8 Port GE PoE+ Basic cevModuleRAIE1783MMS10ER OBJECT IDENTIFIER ::= { cevModuleIEType 169 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Advantage, Expandable System 2 Port SFP + 8 Port GE PoE+ Basic cevModuleRAIE1783MMS10EA OBJECT IDENTIFIER ::= { cevModuleIEType 170 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Essentials, Expandable System 2 Port SFP + 8 Port GE PoE+ Advanced cevModuleRAIE1783MMS10EAR OBJECT IDENTIFIER ::= { cevModuleIEType 171 } -- Cisco-Rockwell Stratix 5800 Supervisor Card, Network Advantage, Expandable System 2 Port SFP + 8 Port GE PoE+ Advanced cevModuleRAIE1783MMX8T OBJECT IDENTIFIER ::= { cevModuleIEType 172 } -- Cisco-Rockwell Stratix 5800 8 Port GE Copper Expansion Module Basic -cevModuleRAIE1783MMX8E OBJECT IDENTIFIER ::= { cevModuleIEType 173 } -- Cisco-Rockwell Stratix 5800 8 Port GE PoE+ Expansion Module Basic PoE+ +cevModuleRAIE1783MMX8E OBJECT IDENTIFIER ::= { cevModuleIEType 173 } -- Cisco-Rockwell Stratix 5800 8 Port GE PoE+ Expansion Module Basic PoE+ cevModuleRAIE1783MMX8EA OBJECT IDENTIFIER ::= { cevModuleIEType 174 } -- Cisco-Rockwell Stratix 5800 8 Port GE PoE+ Expansion Module Advanced PoE+ cevModuleRAIE1783MMX6T2S OBJECT IDENTIFIER ::= { cevModuleIEType 175 } -- Cisco-Rockwell Stratix 5800 6 Port GE Copper + 2 Port SFP Mixed Expansion Module Basic cevModuleRAIE1783MMX8S OBJECT IDENTIFIER ::= { cevModuleIEType 176 } -- Cisco-Rockwell Stratix 5800 8 Port SFP Fiber Expansion Module Basic cevModuleRAIE1783MMX8SA OBJECT IDENTIFIER ::= { cevModuleIEType 177 } -- Cisco-Rockwell Stratix 5800 8 Port SFP Fiber Expansion Module Advanced -cevModuleRAIE1783MMX16T OBJECT IDENTIFIER ::= { cevModuleIEType 178 } -- Cisco-Rockwell Stratix 5800 16 Port GE Copper Expansion Module Basic +cevModuleRAIE1783MMX16T OBJECT IDENTIFIER ::= { cevModuleIEType 178 } -- Cisco-Rockwell Stratix 5800 16 Port GE Copper Expansion Module Basic cevModuleRAIE1783MMX16E OBJECT IDENTIFIER ::= { cevModuleIEType 179 } -- Cisco-Rockwell Stratix 5800 16 Port GE PoE+ Expansion Module Basic cevModuleRAIE1783MMX14T2S OBJECT IDENTIFIER ::= { cevModuleIEType 180 } -- Cisco-Rockwell Stratix 5800 14 Port GE Copper + 2 Port SFP Fiber Mixed Expansion Module Basic cevModuleIE34008T2S OBJECT IDENTIFIER ::= { cevModuleIEType 181 } -- Cisco Industrial Ethernet 3400 Switch, Petra Expandable System 2 Port SFP + 8 Port GE Copper Adv @@ -7322,10 +8124,29 @@ cevModuleIE3400H24T OBJECT IDENTIFIER ::= { cevModuleIEType 194 } - cevModuleRAIE1783MMS10A OBJECT IDENTIFIER ::= { cevModuleIEType 195 } -- Cisco-Rockwell Stratix 5800 Supervisor Card Network Essentials, Expandable System : 2 Port SFP + 8 Port GE Copper Advanced cevModuleRAIE1783MMS10AR OBJECT IDENTIFIER ::= { cevModuleIEType 196 } -- Cisco-Rockwell Stratix 5800 Supervisor Card Network Advantage, Expandable System : 2 Port SFP + 8 Port GE Copper Advanced cevModuleRAIE1783MMX8TA OBJECT IDENTIFIER ::= { cevModuleIEType 197 } -- Cisco-Rockwell Stratix 5800 8 Port GE Copper Expansion Module Advanced - - - - +cevModuleIE33008T2X OBJECT IDENTIFIER ::= { cevModuleIEType 198 } -- Cisco Catalyst IE3300 Rugged Series Expandable System with 8 GE Copper & 2 10G SFP +cevModuleIE33008U2X OBJECT IDENTIFIER ::= { cevModuleIEType 199 } -- Cisco Catalyst IE3300 Rugged Series Expandable System with 8GE Copper (4PPoE) & 2 10G SFP +cevModuleIEM33004MU OBJECT IDENTIFIER ::= { cevModuleIEType 200 } -- Cisco Catalyst IE3300 Rugged Series Expansion Module with 4 2.5G Copper (4PPoE) +cevModuleESS930010XE OBJECT IDENTIFIER ::= { cevModuleIEType 201 } -- Catalyst ESS9300 Embedded Series switch - 10p 10G, NE +cevModuleIR8340K9MB OBJECT IDENTIFIER ::= { cevModuleIEType 202 } -- Cisco Catalyst IR8340 Rugged Router System with 12 1G LAN ports and 2 1G WAN ports +cevModuleIRMTIMINGMOD OBJECT IDENTIFIER ::= { cevModuleIEType 203 } -- Timing module with PLL and IRIG-B, GPS, TOD timing ports +cevModuleIR8340K92x1GC OBJECT IDENTIFIER ::= { cevModuleIEType 204 } -- Cisco IR8340-K9 Built-In Front Panel 2x1GC Module with 2 RJ45/SFP combo ports +cevModuleIR8340ESL4T4C4P OBJECT IDENTIFIER ::= { cevModuleIEType 205 } -- Cisco IR8340-K9 Built-In Front Panel 12 ports 4 RJ45, 4 combo and 4 SFP ports +cevModuleIE31004T2S OBJECT IDENTIFIER ::= { cevModuleIEType 208 } -- Catalyst IE3100 with 4 GE Copper and 2 GE SFP Ports, Fixed system, Network Essentials +cevModuleIE31008T2C OBJECT IDENTIFIER ::= { cevModuleIEType 209 } -- Catalyst IE3100 with 8 GE Copper and 2 Combo Ports, Fixed system, Network Essentials +cevModuleIE310018T2C OBJECT IDENTIFIER ::= { cevModuleIEType 210 } -- Catalyst IE3100 with 18 GE Copper and 2 Combo Ports, Fixed system, Network Essentials +cevModuleIE31058T2C OBJECT IDENTIFIER ::= { cevModuleIEType 211 } -- Catalyst IE3105 with 8 GE Copper and 2 GE Combo ports, Advanced features, Fixed system, Network Essentials +cevModuleIE310518T2C OBJECT IDENTIFIER ::= { cevModuleIEType 212 } -- Catalyst IE3105 with 18 GE Copper and 2 GE Combo ports, Advanced features, Fixed system, Network Essentials +cevModuleRAIE1783CMS6B OBJECT IDENTIFIER ::= { cevModuleIEType 213 } -- Stratix 5200 switch, 4 copper 100m ports, 2 SFP 100/1000 slots, base FW +cevModuleRAIE1783CMS6P OBJECT IDENTIFIER ::= { cevModuleIEType 214 } -- Stratix 5200 switch, 4 copper 10/100/1000 ports, 2 SFP 100/1000 slots, full FW +cevModuleRAIE1783CMS10B OBJECT IDENTIFIER ::= { cevModuleIEType 215 } -- Stratix 5200 switch, 8 copper 100m ports, 2 Combo 100/1000 ports, base FW +cevModuleRAIE1783CMS10P OBJECT IDENTIFIER ::= { cevModuleIEType 216 } -- Stratix 5200 switch, 8 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW +cevModuleRAIE1783CMS10DP OBJECT IDENTIFIER ::= { cevModuleIEType 217 } -- Stratix 5200 switch, 8 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR +cevModuleRAIE1783CMS10DN OBJECT IDENTIFIER ::= { cevModuleIEType 218 } -- Stratix 5200 switch, 8 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR, PRP, NAT +cevModuleRAIE1783CMS20DB OBJECT IDENTIFIER ::= { cevModuleIEType 219 } -- Stratix 5200 switch, 18 copper 100m ports, 2 Combo 100/1000 ports, base FW, DLR +cevModuleRAIE1783CMS20DP OBJECT IDENTIFIER ::= { cevModuleIEType 220 } -- Stratix 5200 switch, 18 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR +cevModuleRAIE1783CMS20DN OBJECT IDENTIFIER ::= { cevModuleIEType 221 } -- Stratix 5200 switch, 18 copper 10/100/1000 ports, 2 Combo 100/1000 ports, full FW, DLR, PRP, NAT +cevModuleIE31008T4S OBJECT IDENTIFIER ::= { cevModuleIEType 227 } -- Catalyst IE3100 with 8 GE Copper and 4 GE SFP Ports, Fixed system, Network Essentials cevModuleN5KType OBJECT IDENTIFIER ::= { cevModule 72 } -- Group for the Nexus 5000 N5K Type of cards cevN5kM1008 OBJECT IDENTIFIER ::= { cevModuleN5KType 1 } -- Expansion Module, 8 port FC 1/2/4G (requires SFP) @@ -7350,10 +8171,10 @@ cevN5KN55D160L3V2 OBJECT IDENTIFIER ::= { cevModuleN5KType 21 } -- cevN5kC5596TFAFixedModule OBJECT IDENTIFIER ::= { cevModuleN5KType 22 } -- The fixed module that has 48 10G BaseT ports + supervisor in Nexus 5596 cevN5KN55M12T OBJECT IDENTIFIER ::= { cevModuleN5KType 23 } -- Expansion Module, 12x10GE cevN5KN55M4Q OBJECT IDENTIFIER ::= { cevModuleN5KType 24 } -- Expansion Module, 4x40GE (requires QSFP) -cevN5KN56M24UP2Q OBJECT IDENTIFIER ::= { cevModuleN5KType 25 } -- Nexus 5600 Module, 24x10G SFP+ UP, 2xQSFP+ fixed ports -cevN5KC56128PFixedModule OBJECT IDENTIFIER ::= { cevModuleN5KType 26 } -- The fixed module that has 48x 10G (SFP+), 4x 40G (QSFP+) and supervisor in Nexus 56128P -cevN5KC5672UPM6Q OBJECT IDENTIFIER ::= { cevModuleN5KType 27 } -- Nexus 5672UP 6x 40G QSFP+ Module -cevN5KC5672UPFixedModule OBJECT IDENTIFIER ::= { cevModuleN5KType 28 } -- The fixed module that has 32x10G SFP+, 16x UP SFP+ and supervisor in Nexus 5672UP +cevN5KN56M24UP2Q OBJECT IDENTIFIER ::= { cevModuleN5KType 25 } -- Nexus 5600 Module, 24x10G SFP+ UP, 2xQSFP+ fixed ports +cevN5KC56128PFixedModule OBJECT IDENTIFIER ::= { cevModuleN5KType 26 } -- The fixed module that has 48x 10G (SFP+), 4x 40G (QSFP+) and supervisor in Nexus 56128P +cevN5KC5672UPM6Q OBJECT IDENTIFIER ::= { cevModuleN5KType 27 } -- Nexus 5672UP 6x 40G QSFP+ Module +cevN5KC5672UPFixedModule OBJECT IDENTIFIER ::= { cevModuleN5KType 28 } -- The fixed module that has 32x10G SFP+, 16x UP SFP+ and supervisor in Nexus 5672UP cevN5KC5672UP16GFixedModule OBJECT IDENTIFIER ::= { cevModuleN5KType 29 } -- The fixed module that has 24x10G Eth/FCoE or 16G FC Ports cevN5KN5648M12QFIX OBJECT IDENTIFIER ::= { cevModuleN5KType 30 } -- Nexus 5648 Fixed Module with 12Q 40GE Ethernet/FCoE cevN5KN5624M12QFIX OBJECT IDENTIFIER ::= { cevModuleN5KType 31 } -- Nexus 5624 Fixed Module with 12Q 40GE Ethernet/FCoE @@ -7384,19 +8205,19 @@ cevModuleA9K40x1GEE OBJECT IDENTIFIER ::= { cevModuleASR9KType 6 } cevModuleA9KRSP OBJECT IDENTIFIER ::= { cevModuleASR9KType 7 } -- ASR9K Fabric, Controller, 2G memory cevModuleA9KRSP4G OBJECT IDENTIFIER ::= { cevModuleASR9KType 8 } -- ASR9K Fabric, Controller, 4G memory cevModuleASR9KHost OBJECT IDENTIFIER ::= { cevModuleASR9KType 9 } -- Cisco ASR9K RSP/LC Host module -cevModuleA9K2x10GE20x1GEB OBJECT IDENTIFIER ::= { cevModuleASR9KType 10 } -- 2-Port 10GE, 20-Port GE Line Card, Requires XFPs and SFPs -cevModuleA9K8x10GELRB OBJECT IDENTIFIER ::= { cevModuleASR9KType 11 } -- 8-Port 10GE Line Card, Requires XFPs -cevModuleA9K8x10GELRE OBJECT IDENTIFIER ::= { cevModuleASR9KType 12 } -- 8-Port 10GE Extended Line Card, Requires XFPs -cevModuleA9K40x1GEL OBJECT IDENTIFIER ::= { cevModuleASR9KType 13 } -- 40-Port GE Low Queue Line Card, Requires SFPs +cevModuleA9K2x10GE20x1GEB OBJECT IDENTIFIER ::= { cevModuleASR9KType 10 } -- 2-Port 10GE, 20-Port GE Line Card, Requires XFPs and SFPs +cevModuleA9K8x10GELRB OBJECT IDENTIFIER ::= { cevModuleASR9KType 11 } -- 8-Port 10GE Line Card, Requires XFPs +cevModuleA9K8x10GELRE OBJECT IDENTIFIER ::= { cevModuleASR9KType 12 } -- 8-Port 10GE Extended Line Card, Requires XFPs +cevModuleA9K40x1GEL OBJECT IDENTIFIER ::= { cevModuleASR9KType 13 } -- 40-Port GE Low Queue Line Card, Requires SFPs cevModuleA9K4x10GEL OBJECT IDENTIFIER ::= { cevModuleASR9KType 14 } -- 4-Port 10GE Low Queue Line Card, Requires XFPs -cevModuleA9K8x10GEL OBJECT IDENTIFIER ::= { cevModuleASR9KType 15 } -- 8-Port 10GE DX Low Queue Line Card, Requires XFPs -cevModuleA9K2x10GE20x1GEE OBJECT IDENTIFIER ::= { cevModuleASR9KType 16 } -- 2-Port 10GE, 20-Port GE Extended LC, Req. XFPs and SFPs +cevModuleA9K8x10GEL OBJECT IDENTIFIER ::= { cevModuleASR9KType 15 } -- 8-Port 10GE DX Low Queue Line Card, Requires XFPs +cevModuleA9K2x10GE20x1GEE OBJECT IDENTIFIER ::= { cevModuleASR9KType 16 } -- 2-Port 10GE, 20-Port GE Extended LC, Req. XFPs and SFPs cevModuleA9KISM100 OBJECT IDENTIFIER ::= { cevModuleASR9KType 17 } -- ASR9000 Integrated Service Module (ISM) for the support of Advanced Virtual Services including video and other cloud based services cevModuleA9KQFPSIP OBJECT IDENTIFIER ::= { cevModuleASR9KType 18 } -- QFP SIP 20G Line Card -cevModuleA9KRSP8G OBJECT IDENTIFIER ::= { cevModuleASR9KType 19 } -- ASR9K Fabric, Route Switch Processor with 8GB memory +cevModuleA9KRSP8G OBJECT IDENTIFIER ::= { cevModuleASR9KType 19 } -- ASR9K Fabric, Route Switch Processor with 8GB memory cevModuleA9K2x10GE20x1GEL OBJECT IDENTIFIER ::= { cevModuleASR9KType 20 } -- 2-Port 10GE, 20-Port GE Low Queue LC, Req. XFPs and SFPs cevModuleA9K8x10GELRL OBJECT IDENTIFIER ::= { cevModuleASR9KType 21 } -- 8-Port 10GE Low Queue Line Card, Requires XFPs -cevModuleA9K16x10GEOVB OBJECT IDENTIFIER ::= { cevModuleASR9KType 22 } -- 16-Port 10GE Line Card, Requires SFP+s +cevModuleA9K16x10GEOVB OBJECT IDENTIFIER ::= { cevModuleASR9KType 22 } -- 16-Port 10GE Line Card, Requires SFP+s cevModuleA9KQFPSIP500 OBJECT IDENTIFIER ::= { cevModuleASR9KType 23 } -- QFP SIP 5G Line Card cevModuleA9KServiceAcceleratorModule OBJECT IDENTIFIER ::= { cevModuleASR9KType 24 } -- SAM: ServiceAcceleratorModule Flash cards cevModuleA9KRsp440Se OBJECT IDENTIFIER ::= { cevModuleASR9KType 25 } -- ASR 9000 RSP-440 Service Edge Optimized @@ -7424,7 +8245,7 @@ cevModuleA9KMODULEv OBJECT IDENTIFIER ::= { cevModuleASR9KType 46 } -- AS cevModuleA9K9001Lc OBJECT IDENTIFIER ::= { cevModuleASR9KType 47 } -- ASR 9001, Modular Line Card cevModuleA9K9001Rp OBJECT IDENTIFIER ::= { cevModuleASR9KType 48 } -- ASR 9001, Route Switch Processor with 8GB memory cevModuleA9KSip7008G OBJECT IDENTIFIER ::= { cevModuleASR9KType 49 } -- Cisco ASR9000 Series SPA Interface Processor 700 with 8G memory -cevModuleA9K9001LcS OBJECT IDENTIFIER ::= { cevModuleASR9KType 53 } -- ASR 9001 Modular Line Card low speed +cevModuleA9K9001LcS OBJECT IDENTIFIER ::= { cevModuleASR9KType 53 } -- ASR 9001 Modular Line Card low speed cevModuleA9KVSM500 OBJECT IDENTIFIER ::= { cevModuleASR9KType 54 } -- ASR9K Virtualized Services Module cevModuleA9K40x1GeSe OBJECT IDENTIFIER ::= { cevModuleASR9KType 55 } -- ASR 9000 40-port 1GE, Service Edge Optimized LC cevModuleA9K40x1GeTr OBJECT IDENTIFIER ::= { cevModuleASR9KType 56 } -- ASR 9000 40-port 1GE, Packet Transport Optimized LC @@ -7462,17 +8283,17 @@ cevModuleA99MOD400SE OBJECT IDENTIFIER ::= { cevModuleASR9KType 88 } -- AS cevModuleA99MOD200TR OBJECT IDENTIFIER ::= { cevModuleASR9KType 89 } -- ASR 9900 Modular 200GE Line Card, Packet Transport Optimized cevModuleA99MOD200SE OBJECT IDENTIFIER ::= { cevModuleASR9KType 90 } -- ASR 9900 Modular 200GE Line Card, Service Edge Optimized cevModuleA998X100GELSE OBJECT IDENTIFIER ::= { cevModuleASR9KType 91 } -- ASR 9900 8 port 100GE LAN service edge optimized line card -cevModuleA9K24X10GE1GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 92 } -- ASR 9000 24-port 10GE & 1GE dual rate Service Edge optimized LC -cevModuleA9K24X10GE1GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 93 } -- ASR 9000 24-port 10GE & 1GE dual rate Packet Transport optimized LC -cevModuleA9K24X10GE1GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 94 } -- ASR 9000 24-port 10GE & 1GE dual rate Consumption model LC -cevModuleA9K48X10GE1GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 95 } -- ASR 9000 48-port 10GE & 1GE dual rate Service Edge optimized LC -cevModuleA9K48X10GE1GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 96 } -- ASR 9000 48-port 10GE & 1GE dual rate Packet Transport optimized LC -cevModuleA9K48X10GE1GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 97 } -- ASR 9000 48-port 10GE & 1GE dual rate Consumption model LC +cevModuleA9K24X10GE1GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 92 } -- ASR 9000 24-port 10GE & 1GE dual rate Service Edge optimized LC +cevModuleA9K24X10GE1GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 93 } -- ASR 9000 24-port 10GE & 1GE dual rate Packet Transport optimized LC +cevModuleA9K24X10GE1GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 94 } -- ASR 9000 24-port 10GE & 1GE dual rate Consumption model LC +cevModuleA9K48X10GE1GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 95 } -- ASR 9000 48-port 10GE & 1GE dual rate Service Edge optimized LC +cevModuleA9K48X10GE1GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 96 } -- ASR 9000 48-port 10GE & 1GE dual rate Packet Transport optimized LC +cevModuleA9K48X10GE1GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 97 } -- ASR 9000 48-port 10GE & 1GE dual rate Consumption model LC cevModuleA9KMOD400CM OBJECT IDENTIFIER ::= { cevModuleASR9KType 98 } -- 400G Modular Linecard, Consumption Model -cevModuleA9KMOD200CM OBJECT IDENTIFIER ::= { cevModuleASR9KType 99 } -- 200G Modular Linecard, Consumption Model +cevModuleA9KMOD200CM OBJECT IDENTIFIER ::= { cevModuleASR9KType 99 } -- 200G Modular Linecard, Consumption Model cevModuleA9KRsp880LTr OBJECT IDENTIFIER ::= { cevModuleASR9KType 100 } -- ASR 9000 Route Switch Processor 880-Lite for Packet Trans cevModuleA9KRsp880LSe OBJECT IDENTIFIER ::= { cevModuleASR9KType 101 } -- ASR 9000 Route Switch Processor 880-Lite for Service Edge -cevModuleA9K9906SfcT OBJECT IDENTIFIER ::= { cevModuleASR9KType 102 } -- ASR 9906 Switch Fabric Card +cevModuleA9K9906SfcT OBJECT IDENTIFIER ::= { cevModuleASR9KType 102 } -- ASR 9906 Switch Fabric Card cevModuleA9901RP OBJECT IDENTIFIER ::= { cevModuleASR9KType 103 } -- ASR 9901 Route Switch Processor with 32GB memory cevModuleA9901LC OBJECT IDENTIFIER ::= { cevModuleASR9KType 104 } -- ASR 9901 Modular Line Card cevModuleA9K400G OBJECT IDENTIFIER ::= { cevModuleASR9KType 105 } -- ASR 9000 4-port 100GE Line card @@ -7500,8 +8321,8 @@ cevModuleA9932X100GEXCM OBJECT IDENTIFIER ::= { cevModuleASR9KType 131 } -- cevModuleA9K20X100GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 132 } -- ASR9000 2T 5 Fabric Service Edge Combo Card cevModuleA9K20X100GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 133 } -- ASR9000 2T 5 Fabric Transport Combo Card cevModuleA9K20X100GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 134 } -- ASR9000 2T 5 Fabric Combo CM Card -cevModuleA9K12X100GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 135 } -- ASR9000 1.2T 5 Fabric Service Edge Combo Card -cevModuleA9K12X100GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 136 } -- ASR9000 1.2T 5 Fabric Transport Combo Card +cevModuleA9K12X100GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 135 } -- ASR9000 1.2T 5 Fabric Service Edge Combo Card +cevModuleA9K12X100GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 136 } -- ASR9000 1.2T 5 Fabric Transport Combo Card cevModuleA9K12X100GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 137 } -- ASR9000 1.2T 5 Fabric Combo CM Card cevModuleA9K8X100GEX2SE OBJECT IDENTIFIER ::= { cevModuleASR9KType 138 } -- ASR9000 0.8T 5 Fabric Service Edge Combo Card cevModuleA9K8X100GEX2TR OBJECT IDENTIFIER ::= { cevModuleASR9KType 139 } -- ASR9000 0.8T 5 Fabric Transport Combo Card @@ -7512,8 +8333,19 @@ cevModuleA9924X100GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 143 } -- cevModuleA9910X400GESE OBJECT IDENTIFIER ::= { cevModuleASR9KType 144 } -- ASR9900 4T 7 Fabric Service Edge Combo Card cevModuleA9910X400GETR OBJECT IDENTIFIER ::= { cevModuleASR9KType 145 } -- ASR9900 4T 7 Fabric Transport Combo Card cevModuleA9910X400GECM OBJECT IDENTIFIER ::= { cevModuleASR9KType 146 } -- ASR9900 4T 7 Fabric Combo CM Card - - +cevModuleA99RPF OBJECT IDENTIFIER ::= { cevModuleASR9KType 147 } -- ASR 9900 Fixed Chassis Route Processor +cevModuleASR9903LC OBJECT IDENTIFIER ::= { cevModuleASR9KType 148 } -- ASR 9903 1600G Fixed Linecard +cevModuleA990320HGPEC OBJECT IDENTIFIER ::= { cevModuleASR9KType 149 } -- ASR 9903 2T Multi-rate Port Expansion Card +cevModuleA99038HGPEC OBJECT IDENTIFIER ::= { cevModuleASR9KType 150 } -- ASR 9903 800G Multi-rate Port Expansion Card +cevModuleASR9000400GTR OBJECT IDENTIFIER ::= { cevModuleASR9KType 151 } -- ASR 9000 400G TR flexible line card +cevModuleASR9000400GFC OBJECT IDENTIFIER ::= { cevModuleASR9KType 152 } -- ASR 9000 400G FC flexible line card +cevModuleASR9000400GSE OBJECT IDENTIFIER ::= { cevModuleASR9KType 153 } -- ASR 9000 400G SE flexible line card +cevModuleASR9900400GFC OBJECT IDENTIFIER ::= { cevModuleASR9KType 154 } -- ASR 9900 400G FC flexible line card +cevModuleASR9900400GSE OBJECT IDENTIFIER ::= { cevModuleASR9KType 155 } -- ASR 9900 400G SE flexible line card +cevModuleASR9900400GTR OBJECT IDENTIFIER ::= { cevModuleASR9KType 156 } -- ASR 9900 400G TR flexible line card +cevModuleASR9902LC OBJECT IDENTIFIER ::= { cevModuleASR9KType 157 } -- ASR 9902 800G Fixed Linecard +cevModuleASR9902FAN OBJECT IDENTIFIER ::= { cevModuleASR9KType 158 } -- ASR 9902 Fan Tray +cevModuleASR9902 OBJECT IDENTIFIER ::= { cevModuleASR9KType 159 } -- ASR 9903 Chassis cevModuleASR14KType OBJECT IDENTIFIER ::= { cevModule 75 } -- Represents the base class for all modules used in ASR14000 Series cevModuleASR14K20x1GeFl OBJECT IDENTIFIER ::= { cevModuleASR14KType 1 } -- Cisco ASR14000 Series 20x1GE Flexible Interface Module @@ -7722,10 +8554,10 @@ cevSFPCwdmSfp10g1530 OBJECT IDENTIFIER ::= { cevModuleSFPPlus cevSFPCwdmSfp10g1510 OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 201 } -- 10GB CWDM SFP+ 1510nm 40km Single Fiber Mode(SMF) LC duplex connector cevSFPCwdmSfp10g1490 OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 202 } -- 10GB CWDM SFP+ 1490nm 40km Single Fiber Mode(SMF) LC duplex connector cevSFPCwdmSfp10g1470 OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 203 } -- 10GB CWDM SFP+ 1550nm 40km optical transceiver -cevSFP10GBXDI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 204 } -- 10GBASE-BXDI SFP+ Module for SMF -cevSFP10GBXUI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 205 } -- 10GBASE-BXUI SFP+ Module for SMF -cevSFP10GBX40DI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 206 } -- 10GBASE-BX40DI SFP+ Module for SMF -cevSFP10GBX40UI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 207 } -- 10GBASE-BX40UI SFP+ Module for SMF +cevSFP10GBXDI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 204 } -- 10GBASE-BXDI SFP+ Module for SMF +cevSFP10GBXUI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 205 } -- 10GBASE-BXUI SFP+ Module for SMF +cevSFP10GBX40DI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 206 } -- 10GBASE-BX40DI SFP+ Module for SMF +cevSFP10GBX40UI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 207 } -- 10GBASE-BX40UI SFP+ Module for SMF cevSFPQsfpPlusLROpticsMod OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 208 } -- Cisco 40GE QSFP LR Pluggable Optics Module cevSFPQsfpPlusSROpticsMod OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 209 } -- Cisco 40GE QSFP SR Pluggable Optics Module cevSFPPDWDMSFP10GC OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 213 } -- DWDM Tunable SFP+ 10 Gigabit Ethernet Transceiver Module @@ -7857,6 +8689,21 @@ cevSFPDwdmLimitMrSfp10g6142 OBJECT IDENTIFIER ::= { cevModuleSFPPlus cevSFPDwdmLimitSrSfp10g4532 OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 339 } -- 10GBASE-DWDM Limiting Short reach 1545.32 nm SFP+ (100-GHz ITU grid) cevSFPDwdmLimitSrSfp10g4612 OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 340 } -- 10GBASE-DWDM Limiting Short reach 1546.12 nm SFP+ (100-GHz ITU grid) cevSFP10GTX OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 341 } -- 10GBASE-T SFP+ Module, PID = SFP-10G-T-X +cevSFPPONSSI10GSR OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 342 } -- 10GBASE-SR SFP+ Module, I-Temp +cevSFPPONSSI10GLR OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 343 } -- 10GBASE-LR SFP+ Module, I-Temp +cevSFPPONSSI10GER OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 344 } -- 10GBASE-ER SFP+ Module, I-Temp +cevSFPPONSSI10GZR OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 345 } -- 10GBASE-ZR SFP+ Module, I-Temp +cevSFPPONSSIDS1TPOP OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 346 } -- Transparent PDH over Packet, Small Form Factor Pluggable Optics +cevSFP10GERI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 347 } -- 10GBASE-ER SFP+ Module, I-Temp +cevSFP10GZRI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 348 } -- 10GBASE-ZR SFP+ Module, I-Temp +cevSFP10GLR10I OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 349 } -- 10GBASE-LR10 SFP+ Module, I-Temp +cevSFP10GSRI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 350 } -- 10GBASE-SR SFP+ Module for MMF - Industrial Temp +cevDWDMSFP10GCI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 351 } -- Cisco SFP+ 10G DWDM Tunable Pluggable Optics Module +cevDSSFPFC8GSW OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 352 } -- Cisco 8 Gbps Fibre Channel Shortwave SFP+ Transceiver +cevS10GSRPMDI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 353 } -- SFP-10GbE Performance Monitoring, SR, MM, 850nm, 150m, I-Temp +cevS10GLRPMDI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 354 } -- SFP-10GbE Performance Monitoring, LR, SM, 1310nm, 10km, I-Temp +cevS10GERPMDI OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 355 } -- SFP-10GbE Performance Monitoring, ER, SM, 1550nm, 40km, I-Temp +cevDWDMSFP10GC OBJECT IDENTIFIER ::= { cevModuleSFPPlusS 359 } -- DWDM Tunable SFP+ Module, Enterprise-Class cevDirectAttachCable10Gs OBJECT IDENTIFIER ::= { cevModule 77 } -- Group for DirectAttachCable10Gs Type of Cards cevSFPH10GBCU1M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 1 } -- 10GBASE-CU SFP+ Cable 1 Meter @@ -7885,19 +8732,19 @@ cevSFPH10GBAOC5M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 27 } cevSFPH10GBAOC7M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 28 } -- 10GBASE-Active Optical SFP+ Cable 7 Meter cevSFPH10GBAOC10M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 29 } -- 10GBASE-Active Optical SFP+ Cable 10 Meter cevSFPH10GBCU10M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 30 } -- 10GBASE-CU SFP+ Cable 10 Meter -cevQSFP4x10GAC7M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 31 } -- Direct Attach Copper QSFP 4x10G 7M -cevQSFP4x10GAC10M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 32 } -- Direct Attach Copper QSFP 4x10G 10M +cevQSFP4x10GAC7M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 31 } -- Direct Attach Copper QSFP 4x10G 7M +cevQSFP4x10GAC10M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 32 } -- Direct Attach Copper QSFP 4x10G 10M cevSFPH10GBCUDOT5M OBJECT IDENTIFIER ::= { cevDirectAttachCable10Gs 33 } -- 10GBASE-CU SFP+ Cable 0.5 Meter cevModuleN2KType OBJECT IDENTIFIER ::= { cevModule 78 } -- Group for the Nexus N2K Type of cards cevN2kC2148T1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 1 } -- The fixed module in N2K-C2148T-1GE -cevN2kC2232PP10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 2 } -- The fixed module in N2K-C2232PP-10GE -cevN2kC2248TP1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 3 } -- The fixed module in N2K-C2248TP-1GE +cevN2kC2232PP10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 2 } -- The fixed module in N2K-C2232PP-10GE +cevN2kC2248TP1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 3 } -- The fixed module in N2K-C2248TP-1GE cevN2kC2224TP1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 4 } -- The fixed module in N2K-C2224TP-1GE cevN2kC2232TT10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 5 } -- The fixed module in N2K-C2232TT-10GE cevN2kC2232TP10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 6 } -- The fixed module in N2K-C2232TP-10GE cevN2kC2248TT1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 7 } -- The fixed module in N2K-C2248TT-1GE -cevN2kC2248TPE1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 8 } -- The fixed module in N2K-C2248TP-E-1GE +cevN2kC2248TPE1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 8 } -- The fixed module in N2K-C2248TP-E-1GE cevN2kB22HPPFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 9 } -- The fixed module in N2K-B22HP-P cevN2kM2800P OBJECT IDENTIFIER ::= { cevModuleN2KType 10 } -- N2K-C2232TM-10GE Modular uplink, 8 ports SFP+ cevN2kC2232TM10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 11 } -- The fixed module in N2K-C2232TM-10GE @@ -7911,8 +8758,8 @@ cevN2KC2348TQFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 18 } cevN2KC2232TQFixedModule OBJECT IDENTIFIER ::= { cevModuleN2KType 19 } -- The fixed module in N2K-C2232TQ cevN2KC2348TQ10GE OBJECT IDENTIFIER ::= { cevModuleN2KType 20 } -- This product belongs to nexus 2k family of Fex's. This Fex is Currently in bringup stage. This FEX has 48 HIF ports (copper) and 6 NIF (uplink) ports. - -cevModuleN1KVType OBJECT IDENTIFIER ::= { cevModule 79 } -- Group for the Nexus1000V type of modules + +cevModuleN1KVType OBJECT IDENTIFIER ::= { cevModule 79 } -- Group for the Nexus1000V type of modules cevN1KVVSM OBJECT IDENTIFIER ::= { cevModuleN1KVType 1 } -- Virtual Supervisor Module for Nexus1000V cevN1KVVEM OBJECT IDENTIFIER ::= { cevModuleN1KVType 2 } -- Virtual Ethernet Module for Nexus1000V cevN1KVVXLANGateway OBJECT IDENTIFIER ::= { cevModuleN1KVType 3 } -- VXLAN (Virtual eXtensible LAN) Gateway Service Module @@ -7928,12 +8775,15 @@ cevUCSFIE16UP OBJECT IDENTIFIER ::= { cevModuleUCSType 7 } cevUCSFI6248UPFixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 8 } -- Fixed Module within Cisco UCS 6248 Fabric InterConnect cevUCSFI6296UPFixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 9 } -- Fixed Module within Cisco UCS 6296 Fabric InterConnect cevUCSFIDL2 OBJECT IDENTIFIER ::= { cevModuleUCSType 10 } -- UCS 6248 Layer 2 Daughter Card -cevUCSFIM6324FixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 171 } -- Fixed Module within Cisco UCS 6324 Fabric InterConnect +cevUCSFIM6324FixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 171 } -- Fixed Module within Cisco UCS 6324 Fabric InterConnect cevUCSFI6332FixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 172 } -- Fixed Module within Cisco UCS 6332 Fabric InterConnect +cevUCSFI633216UPFixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 173 } -- Fixed Module within Cisco UCS 6332-16UP Fabric InterConnect cevUCSIOM2304Q OBJECT IDENTIFIER ::= { cevModuleUCSType 176 } -- 4 ports 40G Network Facing and 8 ports 40G Host Facing +cevUCSFI6454FixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 182 } -- Fixed Module within Cisco UCS 6454 Fabric InterConnect with 40x10G/25G + 6x40G/100G + 8 UP Ports cevUCSE180DM3K9 OBJECT IDENTIFIER ::= { cevModuleUCSType 183 } -- Cisco Integrated Management Controller (CIMC) UCS-E180D-M3/K9 cevUCSE1120DM3K9 OBJECT IDENTIFIER ::= { cevModuleUCSType 184 } -- Cisco Integrated Management Controller (CIMC) UCS-E1120D-M3/K9 - +cevUCSFI64108 OBJECT IDENTIFIER ::= { cevModuleUCSType 185 } -- Fixed Module within Cisco UCS 64108 Fabric InterConnect with 96x10G/25G UP Ports + 12x40G/100G Ports +cevUCSFI6536FixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 186 } -- Fixed Module within Cisco UCS 6536 Fabric InterConnect cevModuleNexus1010Type OBJECT IDENTIFIER ::= { cevModule 81 } -- This is the module type to represent a Virtual Supervisor Card for the Nexus1010 product cevNexus1010VSM OBJECT IDENTIFIER ::= { cevModuleNexus1010Type 1 } -- Virtual Supervisor Module for Nexus1010 @@ -7964,10 +8814,10 @@ cevMASA5585IsmSspIps60K7 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 16 } -- cevMASA5585Nm8x10GE OBJECT IDENTIFIER ::= { cevModuleASA5585Type 17 } -- Cisco Adaptive Security Appliance 5585-XHalf Width 8 TenGigabit Ethernet Network Module This card includes 8 TenGigabit Ethernet I/O ports cevMASA5585Nm4x10GE OBJECT IDENTIFIER ::= { cevModuleASA5585Type 18 } -- Cisco Adaptive Security Appliance 5585-XHalf Width 4 TenGigabit Ethernet Network Module This card includes 4 TenGigabit Ethernet I/O ports cevMASA5585Nm20x1GE OBJECT IDENTIFIER ::= { cevModuleASA5585Type 19 } -- Cisco Adaptive Security Appliance 5585-X Half Width 20 Gigabit Ethernet Network Module. This card includes 20 Gigabit Ethernet I/O ports -cevMASA5585CxSsp40 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 20 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-40 -cevMASA5585CxSsp60 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 21 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-60 -cevMASA5585CxSsp10 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 22 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-10 -cevMASA5585CxSsp20 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 23 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-20 +cevMASA5585CxSsp40 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 20 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-40 +cevMASA5585CxSsp60 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 21 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-60 +cevMASA5585CxSsp10 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 22 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-10 +cevMASA5585CxSsp20 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 23 } -- Cisco Adaptive Security Appliance 5585-X Context Security Service Processor-20 cevMASA5585SFRSsp10 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 24 } -- Cisco Adaptive Security Appliance 5585-X FirePOWER SSP10 cevMASA5585SFRSsp20 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 25 } -- Cisco Adaptive Security Appliance 5585-X FirePOWER SSP20 cevMASA5585SFRSsp40 OBJECT IDENTIFIER ::= { cevModuleASA5585Type 26 } -- Cisco Adaptive Security Appliance 5585-X FirePOWER SSP40 @@ -7979,28 +8829,28 @@ cevCFP40GLR4 OBJECT IDENTIFIER ::= { cevModuleCFPs 2 } -- cevCFP40GSR4 OBJECT IDENTIFIER ::= { cevModuleCFPs 3 } -- 40GBASE-SR4 CFP Module for MMF - 4 channels cevCFP40GFR OBJECT IDENTIFIER ::= { cevModuleCFPs 4 } -- 40GBASE-FR CFP Module for SMF cevCFP100GSR10 OBJECT IDENTIFIER ::= { cevModuleCFPs 5 } -- 100GBASE-SR10 CFP, 100m OM3 MMF -cevCFP100GER4 OBJECT IDENTIFIER ::= { cevModuleCFPs 6 } -- 100GBASE-ER4 CFP Module for SMF +cevCFP100GER4 OBJECT IDENTIFIER ::= { cevModuleCFPs 6 } -- 100GBASE-ER4 CFP Module for SMF cevCFPUnknown OBJECT IDENTIFIER ::= { cevModuleCFPs 7 } -- Unknown CFP Module cevModuleN3KType OBJECT IDENTIFIER ::= { cevModule 85 } -- Group for the Nexus 3000 Type of cards cevN3kC3064PQfixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 1 } -- Nexus 3000 Series 1 RU fixed module with 48 SFP+ and and 4 QSFP ports -cevN3kC3064PQ10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 2 } -- Nexus 3000 Series 1 RU fixed module with 48 SFP+ and 4 QSFP ports +cevN3kC3064PQ10GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 2 } -- Nexus 3000 Series 1 RU fixed module with 48 SFP+ and 4 QSFP ports cevN3kC3048TP1GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 3 } -- Nexus 3000 Series 1 RU fixed module with 48x1G-BaseT and 4x10GE SFP+ ports cevN3kC3016Q40GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 4 } -- Nexus 3000 Series 1 RU fixed module with 16x40GE QSFP ports cevN3kC3064Pq10GXFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 5 } -- Nexus 3000 Series 1 RU fixed module with 48 SFP+ and 4 QSFP ports cevN3kC3548P10GFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 6 } -- Nexus 3500 Series 1 RU fixed module with 48 SFP ports -cevN3kC3064TQ10GTFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 7 } -- Nexus 3000 Series 1 RU fixed module with 48 SFP+ and 4 QSFP ports +cevN3kC3064TQ10GTFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 7 } -- Nexus 3000 Series 1 RU fixed module with 48 SFP+ and 4 QSFP ports cevN3KC3172 OBJECT IDENTIFIER ::= { cevModuleN3KType 8 } -- N3K / QuickIron2 Supervisor module cevN3KC3172TQ OBJECT IDENTIFIER ::= { cevModuleN3KType 9 } -- N3K / QuickZinc2 Supervisor module cevN3KC3132TQ OBJECT IDENTIFIER ::= { cevModuleN3KType 10 } -- N3K / Neptune Supervisor module cevN3KC3132CR OBJECT IDENTIFIER ::= { cevModuleN3KType 11 } -- N3K Neptune-CR Module Supervisor cevN3kC3164Q40GEFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 12 } -- Nexus 3000 series 2 RU fixed module with 64 QSFP ports cevN3kC3548P10GXFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 13 } -- Nexus 3500 Series 1 RU fixed module with 48 SFP ports -cevN3KC3132QXOE OBJECT IDENTIFIER ::= { cevModuleN3KType 14 } -- Neptune-CR chassis Nexus 3000 Series 1 RU fixed chassis with Nexus 3132Q 32 x QSFP+ ports, 2 Power Supplies and 4 FANs, configured as open environment hardware +cevN3KC3132QXOE OBJECT IDENTIFIER ::= { cevModuleN3KType 14 } -- Neptune-CR chassis Nexus 3000 Series 1 RU fixed chassis with Nexus 3132Q 32 x QSFP+ ports, 2 Power Supplies and 4 FANs, configured as open environment hardware cevN3KC3172PQOE OBJECT IDENTIFIER ::= { cevModuleN3KType 15 } -- Cisco chassis for N3K / QuickIron2, configured as open environment hardware cevN3KC3172TQOE OBJECT IDENTIFIER ::= { cevModuleN3KType 16 } -- Cisco chassis for N3K / QuickIron2, configured as open environment hardware cevN3KC3064XOE OBJECT IDENTIFIER ::= { cevModuleN3KType 17 } -- Nexus 3000 Series 1 RU fixed chassis with 48 SFP+ and 4 QSFP ports, 2 Power Supplies and 1 Fan tray, configured as open environment hardware -cevN3KC3048OE OBJECT IDENTIFIER ::= { cevModuleN3KType 18 } -- Nexus 3000 Series 1 RU fixed chassis with 48x1G-BaseT and 4x10GE SFP+ ports, no Power Supply, no fan, configured as open environment hardware +cevN3KC3048OE OBJECT IDENTIFIER ::= { cevModuleN3KType 18 } -- Nexus 3000 Series 1 RU fixed chassis with 48x1G-BaseT and 4x10GE SFP+ ports, no Power Supply, no fan, configured as open environment hardware cevN3kC3232CFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 19 } -- Nexus 3000 Series 1 RU fixed module with 32x40/100G QSFP + 2x10G SFP+ cevN3kC31128PQfixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 20 } -- 2RU TOR fixed module with 96x10GT 8x40G QSFP cevN3KC3132QXL OBJECT IDENTIFIER ::= { cevModuleN3KType 21 } -- Nexus 3000 Series 1 RU fixed chassis with Nexus 3132Q 32xQSFP+ports, 2 Power Supplies and 4 FANs @@ -8014,7 +8864,15 @@ cevN3KC3132QV OBJECT IDENTIFIER ::= { cevModuleN3KType 28 } -- N cevN3KC3232COEFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 29 } -- Nexus 3232COE fixed module with 32 ports of QSFP28 Open Env cevN3KC3264CE OBJECT IDENTIFIER ::= { cevModuleN3KType 30 } -- Nexus 3000 Series fixed module with 64x100G QSFP cevN3KC3132CZ OBJECT IDENTIFIER ::= { cevModuleN3KType 33 } -- Nexus 3000 series 1 RU fixed chassis with 32x40/100G QSFP and 2x10G SFP+ +cevN3KC3464CFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 34 } -- Nexus 3000 Series 1 RU fixed chassis with 64x100G QSFP28 + 2x10G SFP module +cevN3KC34180YCFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 35 } -- Nexus 3000 Series 2 RU fixed chassis with 48x10/25G + 6x40/100G Ethernet module +cevN3KC3408S OBJECT IDENTIFIER ::= { cevModuleN3KType 36 } -- N3K-C3408-I Supervisor module +cevN3KNXMX16C OBJECT IDENTIFIER ::= { cevModuleN3KType 37 } -- N3K 100G Line Expansion Module with 16 QSFP28 cevN3KC3432DS OBJECT IDENTIFIER ::= { cevModuleN3KType 38 } -- Nexus 3000 Series fixed module with 32x400G + 2x10G SFP+ Ethernet +cevN3NXMX4D OBJECT IDENTIFIER ::= { cevModuleN3KType 39 } -- N3K 400G Line Expansion Module with 4 QSFP-DD +cevN3KC34200YCSMFixedModule OBJECT IDENTIFIER ::= { cevModuleN3KType 40 } -- Nexus 3000 Series 1 RU fixed module with 48x10/25G + 8x100G port +cevN3KT48X OBJECT IDENTIFIER ::= { cevModuleN3KType 43 } -- Nexus 3000 Series 1 RU fixed chassis with Nexus 48x10G sfp ports, 2 Power Supplies and 2 FANs + cevModuleCGSType OBJECT IDENTIFIER ::= { cevModule 86 } -- cevModuleCGSType Modules @@ -8025,8 +8883,8 @@ cevModuleASR900Type OBJECT IDENTIFIER ::= { cevModule 87 } -- cevModuleASR903RSP1A OBJECT IDENTIFIER ::= { cevModuleASR900Type 1 } -- ASR 903 Route Switch Processor 1, Base Scale, 55Gbps cevModuleASR900ESP OBJECT IDENTIFIER ::= { cevModuleASR900Type 2 } -- Cisco ASR 900 Embedded Services Processor Module cevModuleASR903RSP1B OBJECT IDENTIFIER ::= { cevModuleASR900Type 3 } -- ASR 903 Route Switch Processor 1, Large Scale, 55Gbps -cevModuleASR903RSP2A64G OBJECT IDENTIFIER ::= { cevModuleASR900Type 4 } -- ASR 903 Route Switch Processor 2, Base Scale, 64Gbps -cevModuleASR903RSP2A128G OBJECT IDENTIFIER ::= { cevModuleASR900Type 5 } -- ASR 903 Route Switch Processor 2, Base Scale, 128Gbps +cevModuleASR903RSP2A64G OBJECT IDENTIFIER ::= { cevModuleASR900Type 4 } -- ASR 903 Route Switch Processor 2, Base Scale, 64Gbps +cevModuleASR903RSP2A128G OBJECT IDENTIFIER ::= { cevModuleASR900Type 5 } -- ASR 903 Route Switch Processor 2, Base Scale, 128Gbps cevModuleASR92024SZIM OBJECT IDENTIFIER ::= { cevModuleASR900Type 6 } -- ASR 920 Route Switch Processor , Base Scale, 64Gbps cevModuleASR92024SZM OBJECT IDENTIFIER ::= { cevModuleASR900Type 7 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps cevModuleASR92024TZM OBJECT IDENTIFIER ::= { cevModuleASR900Type 8 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps @@ -8036,9 +8894,10 @@ cevModuleASR9204SZA OBJECT IDENTIFIER ::= { cevModuleASR900Type 11 } - cevModuleASR9204SZD OBJECT IDENTIFIER ::= { cevModuleASR900Type 12 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps cevModuleASR92010SZPA OBJECT IDENTIFIER ::= { cevModuleASR900Type 13 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps cevModuleASR92010SZPD OBJECT IDENTIFIER ::= { cevModuleASR900Type 14 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps +cevModuleASR92016SZIM OBJECT IDENTIFIER ::= { cevModuleASR900Type 18 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps cevModuleASR92012SZIMCC OBJECT IDENTIFIER ::= { cevModuleASR900Type 19 } -- ASR 920 Route Switch Processor, Base Scale, 64Gbps conformal coated Crete cevModuleASR900RSP3C200CC OBJECT IDENTIFIER ::= { cevModuleASR900Type 20 } -- ASR 900 Route Switch Processor 3 FOR CONFORMAL COATING, 200G, XL Scale -cevModuleASR920U16SZIM OBJECT IDENTIFIER ::= { cevModuleASR900Type 21 } -- ASR 920 Route Switch Processor, BaseScale, 64Gbps +cevModuleASR920U16SZIM OBJECT IDENTIFIER ::= { cevModuleASR900Type 21 } -- ASR 920 Route Switch Processor, BaseScale, 64Gbps cevModuleASR900URSP2A64G OBJECT IDENTIFIER ::= { cevModuleASR900Type 22 } -- ASR 900U Route Switch Processor 2, Base Scale, 64Gbps cevModuleASR900URSP2A128G OBJECT IDENTIFIER ::= { cevModuleASR900Type 23 } -- ASR 900U Route Switch Processor 2, Base Scale, 128Gbps cevModuleASR900IMA8CS1ZM OBJECT IDENTIFIER ::= { cevModuleASR900Type 24 } -- ASR 900 16 port GE C-SFP + 1 port SFP+ IM with MACsec @@ -8085,7 +8944,7 @@ cevModuleASR5KSpioBncK9 OBJECT IDENTIFIER ::= { cevModuleASR5000Type 33 } cevModuleASR5KSpio3pnK9 OBJECT IDENTIFIER ::= { cevModuleASR5000Type 34 } -- Switch Processor I/O, 3-Pin BITS cevModuleASR5KRccK9 OBJECT IDENTIFIER ::= { cevModuleASR5000Type 35 } -- Redundancy Crossbar Card - + cevModuleASR5500Type OBJECT IDENTIFIER ::= { cevModule 89 } -- cevModuleASR5500Type cards cevModuleASR55DPC OBJECT IDENTIFIER ::= { cevModuleASR5500Type 1 } -- ASR5500 Data Processing Card (DPC) cevModuleASR55FSC OBJECT IDENTIFIER ::= { cevModuleASR5500Type 2 } -- ASR5500 Fabric and Storage Card (FSC) @@ -8101,9 +8960,14 @@ cevModuleASR55MIO2 OBJECT IDENTIFIER ::= { cevModuleASR5500Type 11 } cevModuleCSR1000vType OBJECT IDENTIFIER ::= { cevModule 90 } -- These are modules that are used in Cisco Cloud Services Router 1000 -cevModuleCSR1000vRP OBJECT IDENTIFIER ::= { cevModuleCSR1000vType 1 } -- Cisco CSR 1000v Routing Processor Module +cevModuleCSR1000vRP OBJECT IDENTIFIER ::= { cevModuleCSR1000vType 1 } -- Cisco CSR 1000v Routing Processor Module cevModuleCSR1000vESP OBJECT IDENTIFIER ::= { cevModuleCSR1000vType 2 } -- Cisco CSR 1000v Embedded Services Processor Module - +cevModuleCSRC8000VRP OBJECT IDENTIFIER ::= { cevModuleCSR1000vType 4 } -- Cisco Catalyst 8000V Edge Route Processor +cevModuleCSRC8000VESP OBJECT IDENTIFIER ::= { cevModuleCSR1000vType 5 } -- Cisco Catalyst 8000V Edge Embedded Services Processor +cevModuleCSRC8000VNIM OBJECT IDENTIFIER ::= { cevModuleCSR1000vType 6 } -- Cisco Catalyst 8000V Edge NIM controller + + + cevModuleCgrType OBJECT IDENTIFIER ::= { cevModule 91 } -- cevModuleCgrType Modules cevModuleCGMPlc OBJECT IDENTIFIER ::= { cevModuleCgrType 18 } -- Connected Grid Module - PLC Module cevModuleCGMGe OBJECT IDENTIFIER ::= { cevModuleCgrType 19 } -- Connected Grid Module - Gigabit Ethernet @@ -8147,13 +9011,13 @@ cevModuleISR4451ESM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 19 } -- Cisco cevModuleISR4452ESM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 20 } -- Cisco ISR 4452 Built-In Enhanced Service Module controller Module cevModuleISR44000FP4xGE OBJECT IDENTIFIER ::= { cevModuleISR4400Type 21 } -- Cisco ISR 4400 Series Built-in Front Panel 4xGE Module cevModuleISR4400InternalPOE OBJECT IDENTIFIER ::= { cevModuleISR4400Type 22 } -- Cisco ISR 4400 Series Internal Power Over Ethernet Card for Onboard GE -cevModuleISR4400ExternalPOE OBJECT IDENTIFIER ::= { cevModuleISR4400Type 42 } -- Cisco ISR 4400 Series External Power Over Ethernet Module +cevModuleISR4400ExternalPOE OBJECT IDENTIFIER ::= { cevModuleISR4400Type 42 } -- Cisco ISR 4400 Series External Power Over Ethernet Module cevModuleNGWICSerial1T OBJECT IDENTIFIER ::= { cevModuleISR4400Type 43 } -- 1-Port 12in1 serial network interface module cevModuleNGWICSerial2T OBJECT IDENTIFIER ::= { cevModuleISR4400Type 44 } -- 2-Port 12in1 serial network interface module cevModuleNGWICSerial4T OBJECT IDENTIFIER ::= { cevModuleISR4400Type 45 } -- 4-Port 12in1 serial network interface module -cevModuleISR4431RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 46 } -- Cisco ISR 4431 Routing Processor Module +cevModuleISR4431RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 46 } -- Cisco ISR 4431 Routing Processor Module cevModuleISR4431FP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 47 } -- Cisco ISR 4431 Forwarding Processor Module -cevModuleISR4431NIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 48 } -- Cisco ISR 4431 Built-In Network Interface Module controller +cevModuleISR4431NIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 48 } -- Cisco ISR 4431 Built-In Network Interface Module controller cevModuleISR4451BRP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 49 } -- Cisco ISR 4451 Boost Routing Processor Module cevModuleISR4431BRP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 50 } -- Cisco ISR 4431 Boost Routing Processor Module cevModuleISR4451BFP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 51 } -- Cisco ISR 4451 Boost Forwarding Processor Module @@ -8162,14 +9026,22 @@ cevModuleISR4451BNIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 53 } cevModuleISR4431BNIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 54 } -- Cisco ISR 4431 Boost Built-In Network Interface Module controller cevModuleISR4451BESM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 55 } -- Cisco ISR 4451 Boost Built-In Enhanced Service Module controller Module cevModuleISR44000FP4X1G2XTG OBJECT IDENTIFIER ::= { cevModuleISR4400Type 56 } -- Cisco ISR 4400 Series Front Panel 6 ports Ten/Gigabitethernet Module -cevModuleISR4461RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 57 } -- Cisco ISR 4461 Routing Processor Module +cevModuleISR4461RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 57 } -- Cisco ISR 4461 Routing Processor Module cevModuleISR4461FP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 58 } -- Cisco ISR 4461 Forwarding Processor Module cevModuleISR4461NIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 59 } -- Cisco ISR 4461 Built-In Network Interface Module controller cevModuleISRVG450RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 60 } -- Cisco VG450 Routing Processor Module -cevModuleISRVG450FP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 61 } -- Cisco VG450 Forwarding Processor Module +cevModuleISRVG450FP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 61 } -- Cisco VG450 Forwarding Processor Module cevModuleISRVG450NIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 62 } -- Cisco VG450 Built-In Network Interface M cevModuleISR4461ESM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 63 } -- Cisco ISR 4461 Built-In Enhanced Service Module controller Module cevModuleVG450ESM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 64 } -- Cisco VG450 Built-In Enhanced Service Module controller Module +cevModuleISRVG400RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 65 } -- Cisco VG400 Routing Processor Module +cevModuleISRVG400FP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 66 } -- Cisco VG400 Forwarding Processor Module +cevModuleVG400NIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 67 } -- Cisco VG400 Built-In Network Interface Module +cevModuleISRVG420RP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 69 } -- Cisco VG420 Routing Processor Module +cevModuleISRVG420FP OBJECT IDENTIFIER ::= { cevModuleISR4400Type 70 } -- Cisco VG420 Forwarding Processor Module +cevModuleISRVG420NIM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 71 } -- Cisco VG420 Built-In Network Interface Module +cevModuleISRVG420ESM OBJECT IDENTIFIER ::= { cevModuleISR4400Type 72 } -- Cisco VG420 Built-In Enhanced Service Module + cevModuleQSFPPlusS OBJECT IDENTIFIER ::= { cevModule 93 } -- group for QSFP+ Modules @@ -8180,27 +9052,27 @@ cevQSFP40GCR4Active OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 4 } -- cevQSFP40GCR4Passive OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 5 } -- 40G-CR4Passive QSFP+ Module for Copper Passive cevSFPQSFP40GECSR4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 6 } -- 40GE-CSR4 QSFP+ Module for MMF LAN mode only cevSFPQSFP40GELR4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 7 } -- 40GE-LR4 QSFP+ Module for SMF LAN mode only -cevQSFP40GSRBD OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 8 } -- 40G-SRBD QSFP+ Module for SMF +cevQSFP40GSRBD OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 8 } -- 40G-SRBD QSFP+ Module for SMF cevQSFP40GER4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 9 } -- 40G QSFP+ module for Extended Range (ER). Supports Single Mode Fiber (SMF) cevQSFP40GSR4S OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 10 } -- 40GBASE-SR4 QSFP Trnscvr Module, MPO Conn, Enterprise-Class cevQSFP40GLR4LS OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 11 } -- QSFP 40G Ethernet - LR4 Lite, LC, 2KM, Enterprise-Class cevQSFP40GLR4S OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 12 } -- QSFP 40GBASE-LR4 Trnscvr Mod, LC, 10km, Enterprise-Class -cevQSFP4X10GLRS OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 13 } -- QSFP 4x10G Transceiver Module, LC, 10KM, Enterprise-Class -cevQSFPH40GAOC1M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 14 } -- 40GBASE Active Optical Cable, 1m -cevQSFPH40GAOC2M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 15 } -- 40GBASE Active Optical Cable, 2m -cevQSFPH40GAOC3M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 16 } -- 40GBASE Active Optical Cable, 3m -cevQSFPH40GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 17 } -- 40GBASE Active Optical Cable, 5m -cevQSFPH40GAOC7M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 18 } -- 40GBASE Active Optical Cable, 7m -cevQSFPH40GAOC10M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 19 } -- 40GBASE Active Optical Cable, 10m -cevQSFPH40GAOC15M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 20 } -- 40GBASE Active Optical Cable, 15m -cevQSFPH40GAOC20M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 21 } -- 40GBASE Active Optical Cable, 20m -cevQSFPH40GAOC25M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 22 } -- 40GBASE Active Optical Cable, 25m -cevQSFPH40GAOC30M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 23 } -- 40GBASE Active Optical Cable, 30m -cevQSFP40GCSR4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 24 } -- 40G-CSR4 QSFP+ Module for MMF, MPO, 300M +cevQSFP4X10GLRS OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 13 } -- QSFP 4x10G Transceiver Module, LC, 10KM, Enterprise-Class +cevQSFPH40GAOC1M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 14 } -- 40GBASE Active Optical Cable, 1m +cevQSFPH40GAOC2M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 15 } -- 40GBASE Active Optical Cable, 2m +cevQSFPH40GAOC3M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 16 } -- 40GBASE Active Optical Cable, 3m +cevQSFPH40GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 17 } -- 40GBASE Active Optical Cable, 5m +cevQSFPH40GAOC7M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 18 } -- 40GBASE Active Optical Cable, 7m +cevQSFPH40GAOC10M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 19 } -- 40GBASE Active Optical Cable, 10m +cevQSFPH40GAOC15M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 20 } -- 40GBASE Active Optical Cable, 15m +cevQSFPH40GAOC20M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 21 } -- 40GBASE Active Optical Cable, 20m +cevQSFPH40GAOC25M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 22 } -- 40GBASE Active Optical Cable, 25m +cevQSFPH40GAOC30M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 23 } -- 40GBASE Active Optical Cable, 30m +cevQSFP40GCSR4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 24 } -- 40G-CSR4 QSFP+ Module for MMF, MPO, 300M cevQSFPWSPQ40GLR4L OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 25 } -- QSFP 40G Ethernet - LR4 Lite, LC, 2KM -cevQSFP4X10GAOC1M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 26 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 1m -cevQSFP4X10GAOC2M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 27 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 2m -cevQSFP4X10GAOC3M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 28 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 3m +cevQSFP4X10GAOC1M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 26 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 1m +cevQSFP4X10GAOC2M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 27 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 2m +cevQSFP4X10GAOC3M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 28 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 3m cevQSFP4X10GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 29 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 5m cevQSFP4X10GAOC7M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 30 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 7m cevQSFP4X10GAOC10M OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 31 } -- 40GBASE Active Optical QSFP to 4SFP breakout Cable, 10m @@ -8215,12 +9087,14 @@ cevQSFP100GLR4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 40 } -- cevQSFP100GSR4 OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 41 } -- 100G-SR4 QSFP+ Module for MMF cevQSFP40GCSRS OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 42 } -- 40G-CSR4 QSFP+ Module for MMF, MPO cevONSQSFP4X10MER OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 43 } -- QSFP 4x10G Transceiver Module +cevQSFP4X10GSRS OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 44 } -- QSFP 4x10G Transceiver Module, LC, Enterprise-Class +cevQSFP4X10GLR4S OBJECT IDENTIFIER ::= { cevModuleQSFPPlusS 45 } -- QSFP 4x10G Transceiver Module, LC, 10KM, Enterprise-Class cevModuleN6KType OBJECT IDENTIFIER ::= { cevModule 95 } -- Module for Nexus 6004 cevN6KN6004XM20UP OBJECT IDENTIFIER ::= { cevModuleN6KType 1 } -- Nexus 6004 Unified Module 20 Ports 10GE Eth/FCoE OR 16/8/4/2G FC -cevN6KC6004M12Q OBJECT IDENTIFIER ::= { cevModuleN6KType 2 } -- Nexus 6004 Module 12Q 40GE Ethernet/FCoE +cevN6KC6004M12Q OBJECT IDENTIFIER ::= { cevModuleN6KType 2 } -- Nexus 6004 Module 12Q 40GE Ethernet/FCoE cevN6KC600496QFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 3 } -- The fixed module that has 48Q 40GE ports + supervisor in Nexus 6004 cevN6KC6001M4Q OBJECT IDENTIFIER ::= { cevModuleN6KType 4 } -- Nexus 6001 4xQSFP Module cevN6KC600164PFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 5 } -- The fixed module that has 48 10GE Ethernet/FCoE ports + supervisor in Nexus 6001 @@ -8228,10 +9102,10 @@ cevN6K48P10G OBJECT IDENTIFIER ::= { cevModuleN6KType 6 } -- N cevN6K32Q40G OBJECT IDENTIFIER ::= { cevModuleN6KType 7 } -- N6K 32xQSFP 40G LineCard permanent cevN6K24Q40G OBJECT IDENTIFIER ::= { cevModuleN6KType 8 } -- N6K 24xQSFP 40G LineCard permanent cevN6KC600164TFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 11 } -- The fixed module that has 48x10G-BaseT ports + supervisor in Nexus 6001 -cevN6KN6002M24UP2Q OBJECT IDENTIFIER ::= { cevModuleN6KType 12 } -- N6K Module 24 ports 10G (SFP+) Unified Ports, 2 ports 40G (QSFP+) +cevN6KN6002M24UP2Q OBJECT IDENTIFIER ::= { cevModuleN6KType 12 } -- N6K Module 24 ports 10G (SFP+) Unified Ports, 2 ports 40G (QSFP+) cevN6KN6002M24UP2Q16G OBJECT IDENTIFIER ::= { cevModuleN6KType 13 } -- N6K Module 24 ports 10G (SFP+) Unified Ports with 16G FC, 2 ports 40G (QSFP+) -cevN6KC6002128PFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 15 } -- The fixed module that has 48 ports fixed 10G (SFP+), 4 ports fixed 40G (QSFP+) + supervisor in Nexus 6002-128P -cevN6KC600172UPFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 16 } -- The fixed module that has 48 ports fixed 10G(SFP+) Unified Ports, 6 ports fixed 40G (QSFP+) + supervisor in Nexus 6001-72UP +cevN6KC6002128PFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 15 } -- The fixed module that has 48 ports fixed 10G (SFP+), 4 ports fixed 40G (QSFP+) + supervisor in Nexus 6002-128P +cevN6KC600172UPFixedModule OBJECT IDENTIFIER ::= { cevModuleN6KType 16 } -- The fixed module that has 48 ports fixed 10G(SFP+) Unified Ports, 6 ports fixed 40G (QSFP+) + supervisor in Nexus 6001-72UP cevN6KN6004M12Q OBJECT IDENTIFIER ::= { cevModuleN6KType 18 } -- Nexus 6004 Module 12Q 40GE Ethernet/FCoE cevN6KC6001M6Q OBJECT IDENTIFIER ::= { cevModuleN6KType 19 } -- N6001 6xQSFP Module @@ -8243,10 +9117,10 @@ cevModuleISRSmEs3x16P OBJECT IDENTIFIER ::= { cevModuleISRType 4 } -- Et cevModuleISRSmEs3x24P OBJECT IDENTIFIER ::= { cevModuleISRType 5 } -- EtherSwitch Next Generation Service Module Layer3 + MACSec + PoEPlus + 24 10/100/1000 cevModuleISRSmDEs3x48P OBJECT IDENTIFIER ::= { cevModuleISRType 6 } -- EtherSwitch Double Wide Next Generation Service Module Layer3 + MACSec + PoEPlus + 48 10/100/1000 cevModuleISRSSD OBJECT IDENTIFIER ::= { cevModuleISRType 7 } -- ISR SSD Module -cevModuleISRMSM50 OBJECT IDENTIFIER ::= { cevModuleISRType 8 } -- Media Service Module 50 for Transcoding and Conferencing services +cevModuleISRMSM50 OBJECT IDENTIFIER ::= { cevModuleISRType 8 } -- Media Service Module 50 for Transcoding and Conferencing services cevModuleISRMSM100 OBJECT IDENTIFIER ::= { cevModuleISRType 9 } -- Media Service Module 100 for Transcoding and Conferencing services -cevModuleISRMSM200 OBJECT IDENTIFIER ::= { cevModuleISRType 10 } -- Media Service Module 200 for Transcoding and Conferencing services -cevModuleISRMSM300 OBJECT IDENTIFIER ::= { cevModuleISRType 11 } -- Media Service Module 300 for Transcoding and Conferencing services +cevModuleISRMSM200 OBJECT IDENTIFIER ::= { cevModuleISRType 10 } -- Media Service Module 200 for Transcoding and Conferencing services +cevModuleISRMSM300 OBJECT IDENTIFIER ::= { cevModuleISRType 11 } -- Media Service Module 300 for Transcoding and Conferencing services cevModuleISRMSM400 OBJECT IDENTIFIER ::= { cevModuleISRType 12 } -- Media Service Module 400 for Transcoding and Conferencing services cevModuleISRExtNIM OBJECT IDENTIFIER ::= { cevModuleISRType 13 } -- SM-X Adapter for one NIM module for Cisco 4000 Series ISR cevModuleISRNIM1XGE OBJECT IDENTIFIER ::= { cevModuleISRType 14 } -- NIM card used in ISR which provides one GE ether port @@ -8264,7 +9138,7 @@ cevModuleISRAP1100B OBJECT IDENTIFIER ::= { cevModuleISRType 25 } -- C cevModuleISRAP1100A OBJECT IDENTIFIER ::= { cevModuleISRType 26 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in A domain cevModuleISRAP1100Z OBJECT IDENTIFIER ::= { cevModuleISRType 27 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in Z domain cevModuleISRAP1100N OBJECT IDENTIFIER ::= { cevModuleISRType 28 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in N domain -cevModuleISRAP1100Q OBJECT IDENTIFIER ::= { cevModuleISRType 29 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in Q domain +cevModuleISRAP1100Q OBJECT IDENTIFIER ::= { cevModuleISRType 29 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in Q domain cevModuleISRAP1100C OBJECT IDENTIFIER ::= { cevModuleISRType 30 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in C domain cevModuleISRAP1100R OBJECT IDENTIFIER ::= { cevModuleISRType 31 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in R domain cevModuleISRAP1100K OBJECT IDENTIFIER ::= { cevModuleISRType 32 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in K domain @@ -8361,24 +9235,166 @@ cevModuleC1118SHDSL OBJECT IDENTIFIER ::= { cevModuleISRType 139 } -- C cevModuleIR1101K9MB OBJECT IDENTIFIER ::= { cevModuleISRType 140 } -- Cisco IR1101 Motherboard with 4 Copper Ports + 1 Combo Port cevModuleIR11015ES OBJECT IDENTIFIER ::= { cevModuleISRType 141 } -- Cisco IR1101 Built-In Ethernet Switch Module cevModuleISRAP1100S OBJECT IDENTIFIER ::= { cevModuleISRType 145 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ac in S domain +cevModuleC11218PRP OBJECT IDENTIFIER ::= { cevModuleISRType 146 } -- Cisco C1121-8P Series Routing Processor Module +cevModuleC11218PFP OBJECT IDENTIFIER ::= { cevModuleISRType 147 } -- Cisco C1121-8P Series Forwarding Processor Module +cevModuleC11218PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 148 } -- Cisco C1121-8P Series Built-In Network Interface +cevModuleC1121X8PRP OBJECT IDENTIFIER ::= { cevModuleISRType 149 } -- Cisco C1121X-8P Series Routing Processor Module +cevModuleC1121X8PFP OBJECT IDENTIFIER ::= { cevModuleISRType 150 } -- Cisco C1121X-8P Series Forwarding Processor Module +cevModuleC1121X8PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 151 } -- Cisco C1121X-8P Series Built-In Network Interface +cevModuleC11618PRP OBJECT IDENTIFIER ::= { cevModuleISRType 152 } -- Cisco C1161-8P Series Routing Processor Module +cevModuleC11618PFP OBJECT IDENTIFIER ::= { cevModuleISRType 153 } -- Cisco C1161-8P Series Forwarding Processor Module +cevModuleC11618PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 154 } -- Cisco C1161-8P Series Built-In Network Interface - +cevModuleC1161X8PRP OBJECT IDENTIFIER ::= { cevModuleISRType 155 } -- Cisco C1161X-8P Series Routing Processor Module +cevModuleC1161X8PFP OBJECT IDENTIFIER ::= { cevModuleISRType 156 } -- Cisco C1161X-8P Series Forwarding Processor Module +cevModuleC1161X8PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 157 } -- Cisco C1161X-8P Series Built-In Network Interface +cevModuleC11268PRP OBJECT IDENTIFIER ::= { cevModuleISRType 158 } -- Cisco C1126-8P Series Routing Processor Module +cevModuleC11268PFP OBJECT IDENTIFIER ::= { cevModuleISRType 159 } -- Cisco C1126-8P Series Forwarding Processor Module +cevModuleC11268PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 160 } -- Cisco C1126-8P Series Built-In Network Interface +cevModuleC1126X8PRP OBJECT IDENTIFIER ::= { cevModuleISRType 161 } -- Cisco C1126X-8P Series Routing Processor Module +cevModuleC1126X8PFP OBJECT IDENTIFIER ::= { cevModuleISRType 162 } -- Cisco C1126X-8P Series Forwarding Processor Module +cevModuleC1126X8PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 163 } -- Cisco C1126X-8P Series Built-In Network Interface +cevModuleC11278PRP OBJECT IDENTIFIER ::= { cevModuleISRType 164 } -- Cisco C1127-8P Series Routing Processor Module +cevModuleC11278PFP OBJECT IDENTIFIER ::= { cevModuleISRType 165 } -- Cisco C1127-8P Series Forwarding Processor Module +cevModuleC11278PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 166 } -- Cisco C1127-8P Series Built-In Network Interface +cevModuleC1127X8PRP OBJECT IDENTIFIER ::= { cevModuleISRType 167 } -- Cisco C1127X-8P Series Routing Processor Module +cevModuleC1127X8PFP OBJECT IDENTIFIER ::= { cevModuleISRType 168 } -- Cisco C1127X-8P Series Forwarding Processor Module +cevModuleC1127X8PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 169 } -- Cisco C1127X-8P Series Built-In Network Interface +cevModuleC11214PRP OBJECT IDENTIFIER ::= { cevModuleISRType 170 } -- Cisco C1121-4P Series Routing Processor Module +cevModuleC11214PFP OBJECT IDENTIFIER ::= { cevModuleISRType 171 } -- Cisco C1121-4P Series Forwarding Processor Module +cevModuleC11214PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 172 } -- Cisco C1121-4P Series Built-In Network Interface +cevModuleC11288PRP OBJECT IDENTIFIER ::= { cevModuleISRType 173 } -- Cisco C1128-8P Series Routing Processor Module +cevModuleC11288PFP OBJECT IDENTIFIER ::= { cevModuleISRType 174 } -- Cisco C1128-8P Series Forwarding Processor Module +cevModuleC11288PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 175 } -- Cisco C1128-8P Series Built-In Network Interface cevModuleIRM1100SPMI OBJECT IDENTIFIER ::= { cevModuleISRType 176 } -- IR1100 expansion module with Pluggable slot, SFP, mSATA SSD slot and Digital GPIO cevModuleIRM1100SP OBJECT IDENTIFIER ::= { cevModuleISRType 177 } -- IR1100 expansion module with Pluggable slot and SFP +cevModuleC9592PRP OBJECT IDENTIFIER ::= { cevModuleISRType 178 } -- Cisco C959-2P Series Routing Processor Module +cevModuleC9592PFP OBJECT IDENTIFIER ::= { cevModuleISRType 179 } -- Cisco C959-2P Series Forwarding Processor Module +cevModuleC9592PPIM OBJECT IDENTIFIER ::= { cevModuleISRType 180 } -- Cisco C959-2P Series Built-In Pluggable Interface Module controller +cevModuleC9514PRP OBJECT IDENTIFIER ::= { cevModuleISRType 181 } -- Cisco C951-4P Series Routing Processor Module +cevModuleC9514PFP OBJECT IDENTIFIER ::= { cevModuleISRType 182 } -- Cisco C951-4P Series Forwarding Processor Module +cevModuleC9514PPIM OBJECT IDENTIFIER ::= { cevModuleISRType 183 } -- Cisco C951-4P Series Built-In Network Interface Module controller cevModuleCNIM1X OBJECT IDENTIFIER ::= { cevModuleISRType 184 } -- Network interface module with one ten gigabit ethernet port +cevModuleC83001N1S4T2XRP OBJECT IDENTIFIER ::= { cevModuleISRType 185 } -- Cisco C8300-1N1S-4T2X Series Routing Processor Module +cevModuleC83001N1S4T2XFP OBJECT IDENTIFIER ::= { cevModuleISRType 186 } -- Cisco C8300-1N1S-4T2X Series Forwarding Processor Module +cevModuleC83001N1S4T2XNIM OBJECT IDENTIFIER ::= { cevModuleISRType 187 } -- Cisco C8300-1N1S-4T2X Series Built-In Network Interface +cevModuleC83001N1S6TRP OBJECT IDENTIFIER ::= { cevModuleISRType 188 } -- Cisco C8300-1N1S-6T Series Routing Processor Module +cevModuleC83001N1S6TFP OBJECT IDENTIFIER ::= { cevModuleISRType 189 } -- Cisco C8300-1N1S-6T Series Forwarding Processor Module +cevModuleC83001N1S6TNIM OBJECT IDENTIFIER ::= { cevModuleISRType 190 } -- Cisco C8300-1N1S-6T Series Built-In Network Interface +cevModuleC83001N1S4T2XESM OBJECT IDENTIFIER ::= { cevModuleISRType 191 } -- Cisco C8300-1N1S-4T2X Series Built-In Enhanced Service Module +cevModuleC83001N1S6TESM OBJECT IDENTIFIER ::= { cevModuleISRType 192 } -- Cisco C83001N1S6T Series Built-In Enhanced Service Module cevModuleESR63004ES OBJECT IDENTIFIER ::= { cevModuleISRType 195 } -- Cisco ESR6300 Built-In Ethernet Switch Module with 4 Gigabit Ethernet ports cevModuleESR6300FP2x1GE OBJECT IDENTIFIER ::= { cevModuleISRType 196 } -- Cisco ESR6300 Built-In Front Panel 2x1GE Module with 2 RJ45/SFP combo ports +cevModuleISRSmX16G4M2X OBJECT IDENTIFIER ::= { cevModuleISRType 197 } -- Cisco ISR SM 16-port 1G, 4-port 2.5 mGigabit Ethernet and 2-port 10G SFP/SFP+ +cevModuleISRSmX40G8M2X OBJECT IDENTIFIER ::= { cevModuleISRType 198 } -- Cisco ISR SM 40-port 1G, 8-port 2.5 mGigabit Ethernet and 2-port 10G SFP/SFP+ +cevModuleISRPLteA11GL OBJECT IDENTIFIER ::= { cevModuleISRType 199 } -- Cisco LTE Advanced CAT-11 pluggable-Global Multimode LTE/LTE-A/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS module +cevModuleISRPLteAP18GL OBJECT IDENTIFIER ::= { cevModuleISRType 200 } -- Cisco LTE Advanced Pro CAT-18 pluggable-Global Multimode LTE/LTE-A/LTE-AP/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS module +cevModuleCatSm16G4M2X OBJECT IDENTIFIER ::= { cevModuleISRType 201 } -- Cisco Catalyst Edge SM 16-port 1G, 4-port 2.5 mGigabit Ethernet and 2-port 10G SFP/SFP+ -cevModuleN77Type OBJECT IDENTIFIER ::= { cevModule 97 } -- Group for the Nexus7700 type of cards -cevN77c7718Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 1 } -- Fabric for Nexus7700 18-slot chassis -cevN77c7710Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 2 } -- Fabric for Nexus7700 10-slot chassis -cevN77c7706Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 3 } -- Fabric for Nexus7700 6-slot chassis -cevN77F248XP23E OBJECT IDENTIFIER ::= { cevModuleN77Type 4 } -- N77-F248XP-23E Enhanced 1/10 Gbps Ethernet Module +cevModuleCatSm40G8M2X OBJECT IDENTIFIER ::= { cevModuleISRType 202 } -- Cisco Catalyst Edge SM 40-port 1G, 8-port 2.5 mGigabit Ethernet and 2-port 10G SFP/SFP+ +cevModuleC82001N4TRP OBJECT IDENTIFIER ::= { cevModuleISRType 203 } -- Cisco C8200-1N-4T Series Routing Processor Module +cevModuleC82001N4TFP OBJECT IDENTIFIER ::= { cevModuleISRType 204 } -- Cisco C8200-1N-4T Series Forwarding Processor Module +cevModuleC82001N4TNIM OBJECT IDENTIFIER ::= { cevModuleISRType 205 } -- Cisco C8200-1N-4T Series Built-In Network Interface +cevModuleC8200L4GRP OBJECT IDENTIFIER ::= { cevModuleISRType 206 } -- Cisco C8200-L-4G Series Routing Processor Module +cevModuleC8200L4GFP OBJECT IDENTIFIER ::= { cevModuleISRType 207 } -- Cisco C8200-L-4G Series Forwarding Processor Module +cevModuleC8200L4GNIM OBJECT IDENTIFIER ::= { cevModuleISRType 208 } -- Cisco C8200-L-4G Series Built-In Network Interface +cevModuleC8200L4GESM OBJECT IDENTIFIER ::= { cevModuleISRType 210 } -- Cisco C8200-L-4G Series Built-In Enhanced Service Module +cevModuleC83002N2S4T2XRP OBJECT IDENTIFIER ::= { cevModuleISRType 211 } -- Cisco C8300-2N2S-4T2X Series Routing Processor Module +cevModuleC83002N2S4T2XFP OBJECT IDENTIFIER ::= { cevModuleISRType 212 } -- Cisco C8300-2N2S-4T2X Series Forwarding Processor Module +cevModuleC83002N2S4T2XNIM OBJECT IDENTIFIER ::= { cevModuleISRType 213 } -- Cisco C8300-2N2S-4T2X Series Built-In Network Interface +cevModuleC83002N2S6TRP OBJECT IDENTIFIER ::= { cevModuleISRType 214 } -- Cisco C8300-2N2S-6T Series Routing Processor Module +cevModuleC83002N2S6TFP OBJECT IDENTIFIER ::= { cevModuleISRType 215 } -- Cisco C8300-2N2S-6T Series Forwarding Processor Module +cevModuleC83002N2S6TNIM OBJECT IDENTIFIER ::= { cevModuleISRType 216 } -- Cisco C8300-2N2S-6T Series Built-In Network Interface +cevModuleC83002N2S4T2XESM OBJECT IDENTIFIER ::= { cevModuleISRType 217 } -- Cisco C8300-2N2S-4T2X Series Built-In Enhanced Service Module +cevModuleC83002N2S6TESM OBJECT IDENTIFIER ::= { cevModuleISRType 218 } -- Cisco C8300-2N2S-6T Series Built-In Enhanced Service Module +cevModuleISRPLteMNA OBJECT IDENTIFIER ::= { cevModuleISRType 219 } -- WP7610 based pluggable module for the IR1101 and IRMs (including expansion modules) +cevModuleISRDLteGB OBJECT IDENTIFIER ::= { cevModuleISRType 220 } -- Cisco LTE Dongle - Global Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS +cevModuleISRDLteAS OBJECT IDENTIFIER ::= { cevModuleISRType 221 } -- Cisco LTE Dongle - Asia Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS/EDGE/GPRS +cevModuleISRDLteNA OBJECT IDENTIFIER ::= { cevModuleISRType 222 } -- Cisco LTE Dongle - North America Multimode LTE/DC-HSPA+/HSPA+/HSPA/UMTS +cevModuleCSMNIMADPT OBJECT IDENTIFIER ::= { cevModuleISRType 223 } -- Cisco SM to NIM Module Adaptor, support on Catalyst 8300 Edge Series platforms +cevModuleISR11004GRP OBJECT IDENTIFIER ::= { cevModuleISRType 224 } -- Cisco ISR1100-4G Series Routing Processor Module +cevModuleISR11004GFP OBJECT IDENTIFIER ::= { cevModuleISRType 225 } -- Cisco ISR1100-4G Series Forwarding Processor Module +cevModuleISR11006GRP OBJECT IDENTIFIER ::= { cevModuleISRType 226 } -- Cisco ISR1100-6G Series Routing Processor Module +cevModuleISR11006GFP OBJECT IDENTIFIER ::= { cevModuleISRType 227 } -- Cisco ISR1100-6G Series Forwarding Processor Module +cevModuleISR11006GSIP OBJECT IDENTIFIER ::= { cevModuleISRType 228 } -- Cisco ISR1100-6G SPA Interface Processor Module +cevModuleISR4x1G2x1GeSfp OBJECT IDENTIFIER ::= { cevModuleISRType 229 } -- Built-In 4x1G-2xSFP Module with 4 RJ45 ports and 2x 1GE SFP ports for Cisco ISR1100-6G, ISR1100X-6G +cevModuleISR11004GLTEGBRP OBJECT IDENTIFIER ::= { cevModuleISRType 230 } -- Cisco ISR1100-4GLTE-GB Series Routing Processor Module +cevModuleISR11004GLTEGBFP OBJECT IDENTIFIER ::= { cevModuleISRType 231 } -- Cisco ISR1100-4GLTE-GB Series Forwarding Processor Module +cevModuleISR11004GLTENARP OBJECT IDENTIFIER ::= { cevModuleISRType 232 } -- Cisco ISR1100-4GLTE-NA Series Routing Processor Module +cevModuleISR11004GLTENAFP OBJECT IDENTIFIER ::= { cevModuleISRType 233 } -- Cisco ISR1100-4GLTE-NA Series Forwarding Processor Module +cevModuleISR11004GSIP OBJECT IDENTIFIER ::= { cevModuleISRType 234 } -- Cisco ISR1100-4G SPA Interface Processor Module +cevModuleISR11004GLTEGBSIP OBJECT IDENTIFIER ::= { cevModuleISRType 235 } -- Cisco ISR1100-4GLTE-GB SPA Interface Processor Module +cevModuleISR11004GLTENASIP OBJECT IDENTIFIER ::= { cevModuleISRType 236 } -- Cisco ISR1100-4GLTE-NA SPA Interface Processor Module +cevModuleISR4x1G OBJECT IDENTIFIER ::= { cevModuleISRType 237 } -- Built-In 4x1G Module with 4 RJ45 ports for Cisco ISR1100-4G,ISR1100X-4G, ISR1100-4GLTE-GB and ISR1100-4GLTE-NA +cevModuleIR1821K9MB OBJECT IDENTIFIER ::= { cevModuleISRType 239 } -- Cisco IR1821 Motherboard with 4 Copper Ports + 1 Combo Port +cevModuleIR1831K9MB OBJECT IDENTIFIER ::= { cevModuleISRType 240 } -- Cisco IR1831 Motherboard with 4 Copper Ports + 1 Combo Port +cevModuleIR1833K9MB OBJECT IDENTIFIER ::= { cevModuleISRType 241 } -- Cisco IR1833 Motherboard with 4 Copper Ports + 1 Combo Port +cevModuleR1835K9MB OBJECT IDENTIFIER ::= { cevModuleISRType 242 } -- Cisco IR1835 Motherboard with 4 Copper Ports + 1 Combo Port +cevModuleIR18214ES OBJECT IDENTIFIER ::= { cevModuleISRType 243 } -- Cisco IR1821 Built-In Ethernet Switch Module with PoE +cevModuleIR18314ES OBJECT IDENTIFIER ::= { cevModuleISRType 244 } -- Cisco IR1831 Built-In Ethernet Switch Module with PoE +cevModuleIR18334ES OBJECT IDENTIFIER ::= { cevModuleISRType 245 } -- Cisco IR1833 Built-In Ethernet Switch Module with PoE +cevModuleIR18354ES OBJECT IDENTIFIER ::= { cevModuleISRType 246 } -- Cisco IR1835 Built-In Ethernet Switch Module with PoE +cevModuleIR1821FP1GE OBJECT IDENTIFIER ::= { cevModuleISRType 247 } -- Cisco IR1821 Front Panel 1GE Module with RJ45/SFP combo port +cevModuleIR1831FP1GE OBJECT IDENTIFIER ::= { cevModuleISRType 248 } -- Cisco IR1831 Front Panel 1GE Module with RJ45/SFP combo port +cevModuleIR1833FP1GE OBJECT IDENTIFIER ::= { cevModuleISRType 249 } -- Cisco IR1833 Front Panel 1GE Module with RJ45/SFP combo port +cevModuleIR1835FP1GE OBJECT IDENTIFIER ::= { cevModuleISRType 250 } -- Cisco IR1835 Front Panel 1GE Module with RJ45/SFP combo port +cevModuleIR1835K9MB OBJECT IDENTIFIER ::= { cevModuleISRType 252 } -- Cisco IR1835 Motherboard with 4 Copper Ports + 1 Combo Port +cevModuleISR1100X4GRP OBJECT IDENTIFIER ::= { cevModuleISRType 253 } -- Cisco ISR1100X-4G Series Routing Processor Module +cevModuleISR1100X4GFP OBJECT IDENTIFIER ::= { cevModuleISRType 254 } -- Cisco ISR1100X-4G Series Forwarding Processor Module +cevModuleISR1100X4GSIP OBJECT IDENTIFIER ::= { cevModuleISRType 255 } -- Cisco ISR1100X-4G SPA Interface Processor Module +cevModuleISR1100X6GRP OBJECT IDENTIFIER ::= { cevModuleISRType 256 } -- Cisco ISR1100X-6G Series Routing Processor Module +cevModuleISR1100X6GFP OBJECT IDENTIFIER ::= { cevModuleISRType 257 } -- Cisco ISR1100X-6G Series Forwarding Processor Module +cevModuleISR1100X6GSIP OBJECT IDENTIFIER ::= { cevModuleISRType 258 } -- Cisco ISR1100X-6G SPA Interface Processor Module +cevModuleISRFLteNA OBJECT IDENTIFIER ::= { cevModuleISRType 259 } -- WP7610 based fixed module for Cisco ISR1100-4GLTE-NA +cevModuleISRFLteGB OBJECT IDENTIFIER ::= { cevModuleISRType 260 } -- WP7607 based fixed module for Cisco ISR1100-4GLTE-GB +cevModuleIRMHSUPSP OBJECT IDENTIFIER ::= { cevModuleISRType 261 } -- Supervisor Module with 1 Copper + 1 Fiber Port for IR8140 +cevModuleIRMHWPANNA OBJECT IDENTIFIER ::= { cevModuleISRType 262 } -- IEEE 802.15.4e/g 900Mhz WPAN Module for North America +cevModuleIRMHWPANBRZ OBJECT IDENTIFIER ::= { cevModuleISRType 263 } -- IEEE 802.15.4e/g 900Mhz WPAN Module for Brazil +cevModuleIRMHWPANANZ OBJECT IDENTIFIER ::= { cevModuleISRType 264 } -- IEEE 802.15.4e/g 900Mhz WPAN Module for AUS and NZ +cevModuleIRMHLTEMNA OBJECT IDENTIFIER ::= { cevModuleISRType 265 } -- Multi-carrier band-14 CAT4 LTE Module for North America +cevModuleIRMHLTEMNA900 OBJECT IDENTIFIER ::= { cevModuleISRType 266 } -- Multi-carrier band-14 CAT4 LTE Module for NA w/900Mhz filter +cevModuleIRMHLTEAEA OBJECT IDENTIFIER ::= { cevModuleISRType 267 } -- CAT6 LTEA Module for Europe and North America +cevModuleIRMHLTEAEA900 OBJECT IDENTIFIER ::= { cevModuleISRType 268 } -- CAT6 LTEA Module for North America w/900Mhz filter +cevModuleIRMHLTEALA OBJECT IDENTIFIER ::= { cevModuleISRType 269 } -- CAT6 LTEA Module for APAC, LATAM and ANZ +cevModuleIRMHLTEAP18GL OBJECT IDENTIFIER ::= { cevModuleISRType 270 } -- CAT18 LTEA PRO Module for ALL Global Regions +cevModuleIRMHBATT4AH OBJECT IDENTIFIER ::= { cevModuleISRType 271 } -- 4 AH Battery Backup for IR8140 +cevModuleC8200L1N4TRP OBJECT IDENTIFIER ::= { cevModuleISRType 272 } -- Cisco C8200L-1N-4T Series Routing Processor Module +cevModuleC8200L1N4TNIM OBJECT IDENTIFIER ::= { cevModuleISRType 274 } -- Cisco C8200L-1N-4T Series Built-In Network Interface +cevModuleISRP5GS6GL OBJECT IDENTIFIER ::= { cevModuleISRType 276 } -- 5G Global LTE, and Sub-6GHz Pluggable +cevModuleISRTypeCNIM2T OBJECT IDENTIFIER ::= { cevModuleISRType 277 } -- network interface module with 2x1G combo ethernet ports +cevModuleISRTypeCNIM1M OBJECT IDENTIFIER ::= { cevModuleISRType 278 } -- network interface module with one mGig ethernet port +cevModuleC11318PFP OBJECT IDENTIFIER ::= { cevModuleISRType 280 } -- Cisco C1131-8P Series Forwarding Processor Module +cevModuleC11318PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 281 } -- Cisco C1131-8P Series Built-In Network Interface +cevModuleC1131X8PRP OBJECT IDENTIFIER ::= { cevModuleISRType 282 } -- Cisco C1131X-8P Series Routing Processor Module +cevModuleC1131X8PFP OBJECT IDENTIFIER ::= { cevModuleISRType 283 } -- Cisco C1131X-8P Series Forwarding Processor Module +cevModuleC1131X8PNIM OBJECT IDENTIFIER ::= { cevModuleISRType 284 } -- Cisco C1131X-8P Series Built-In Network Interface +cevModuleISRFP2xComboGE OBJECT IDENTIFIER ::= { cevModuleISRType 285 } -- Cisco ISR Series Built-in Front Panel 2x1GE Module with 2 RJ45/SFP combo port +cevModuleISRAP1101AXE OBJECT IDENTIFIER ::= { cevModuleISRType 286 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in E domain +cevModuleISRAP1101AXA OBJECT IDENTIFIER ::= { cevModuleISRType 287 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in A domain +cevModuleISRAP1101AXB OBJECT IDENTIFIER ::= { cevModuleISRType 288 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in B domain +cevModuleISRAP1101AXZ OBJECT IDENTIFIER ::= { cevModuleISRType 289 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in Z domain +cevModuleISRISRAP1101AXQ OBJECT IDENTIFIER ::= { cevModuleISRType 290 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in Q domain +cevModuleC11318PRP OBJECT IDENTIFIER ::= { cevModuleISRType 291 } -- Cisco C1131-8P Series Routing Processor Module +cevModuleCNIM4X OBJECT IDENTIFIER ::= { cevModuleISRType 322 } -- 4-port non-POE Ether switch module, 2 x 1G/10G L2 SFP ports, 2 x 1G/10G L2/L3 convertible SFP ports +cevModuleCNIM8M OBJECT IDENTIFIER ::= { cevModuleISRType 323 } -- 4-port non-POE and 4-port POE Ether switch module, 6 x 100/1000/2500 L2 ports, 2 x 100/1000/2500 L2/L3 convertible ports +cevModuleCNIM8T OBJECT IDENTIFIER ::= { cevModuleISRType 324 } -- 8-port non-POE Ether switch module, 6 x 1G L2 ports, 2 x 1G L2/L3 convertible ports +cevModuleISRAP1101AXN OBJECT IDENTIFIER ::= { cevModuleISRType 330 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in N domain +cevModuleISRAP1101AXH OBJECT IDENTIFIER ::= { cevModuleISRType 331 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in H domain +cevModuleISRAP1101AXK OBJECT IDENTIFIER ::= { cevModuleISRType 332 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in K domain +cevModuleISRAP1101AXF OBJECT IDENTIFIER ::= { cevModuleISRType 333 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in F domain +cevModuleISRAP1101AXD OBJECT IDENTIFIER ::= { cevModuleISRType 334 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in D domain +cevModuleISRAP1101AXR OBJECT IDENTIFIER ::= { cevModuleISRType 335 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in R domain + +cevModuleN77Type OBJECT IDENTIFIER ::= { cevModule 97 } -- Group for the Nexus7700 type of cards +cevN77c7718Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 1 } -- Fabric for Nexus7700 18-slot chassis +cevN77c7710Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 2 } -- Fabric for Nexus7700 10-slot chassis +cevN77c7706Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 3 } -- Fabric for Nexus7700 6-slot chassis +cevN77F248XP23E OBJECT IDENTIFIER ::= { cevModuleN77Type 4 } -- N77-F248XP-23E Enhanced 1/10 Gbps Ethernet Module cevN77SUP2E OBJECT IDENTIFIER ::= { cevModuleN77Type 5 } -- N77-SUP2E Nexus 7700 Supervisor -cevN77F324FQ25 OBJECT IDENTIFIER ::= { cevModuleN77Type 6 } -- 24 Port 10/40G QSFP Line Card for Nexus 7700 family -cevN77F348XP23 OBJECT IDENTIFIER ::= { cevModuleN77Type 7 } -- Nexus 7700 F3-Series 48-Port Fiber 1 and 10 Gigabit Ethernet Module -cevN77F312CK26 OBJECT IDENTIFIER ::= { cevModuleN77Type 8 } -- Nexus 7700 F3-Series 12-Port 100 Gigabit Ethernet Module +cevN77F324FQ25 OBJECT IDENTIFIER ::= { cevModuleN77Type 6 } -- 24 Port 10/40G QSFP Line Card for Nexus 7700 family +cevN77F348XP23 OBJECT IDENTIFIER ::= { cevModuleN77Type 7 } -- Nexus 7700 F3-Series 48-Port Fiber 1 and 10 Gigabit Ethernet Module +cevN77F312CK26 OBJECT IDENTIFIER ::= { cevModuleN77Type 8 } -- Nexus 7700 F3-Series 12-Port 100 Gigabit Ethernet Module cevN77M312CQ26L OBJECT IDENTIFIER ::= { cevModuleN77Type 9 } -- 12-port 100Gbps QSFP28 M3 Linecard for Nexus 7700 platform cevN77M324FQ25L OBJECT IDENTIFIER ::= { cevModuleN77Type 10 } -- 24-port 10/40Gbps QSFP M3 Linecard for Nexus 7700 platform cevN77M348XP23L OBJECT IDENTIFIER ::= { cevModuleN77Type 11 } -- 48-port 1/10Gbps SFP+ M3 Linecard for Nexus 7700 platform @@ -8389,22 +9405,22 @@ cevN77c7706Fab3 OBJECT IDENTIFIER ::= { cevModuleN77Type 16 } -- Ne cevN77F430CQ36 OBJECT IDENTIFIER ::= { cevModuleN77Type 18 } -- Nexus 7700 F4-Series 30 oversubscribed port 100G QSFP28 module cevModuleCat3KCAxType OBJECT IDENTIFIER ::= { cevModule 98 } -- These cards are used in the Cisco catalyst converged access switches -cevModuleCat365048PQ OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 1 } -- Cisco Catalyst 3650 48 Port POE 4x10G Uplink -cevModuleCat365048TQ OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 2 } -- Cisco Catalyst 3650 48 Port Data 4x10G Uplink -cevModuleCat385024u OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 3 } -- Catalyst 3850 24 10/100/1000 UPoE Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat385048u OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 4 } -- Catalyst 3850 48 10/100/1000 UPoE Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat365024TD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 5 } -- Cisco Catalyst 3650 24 Port Data 2x10G Uplink -cevModuleCat365048TD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 6 } -- Cisco Catalyst 3650 48 Port Data 2x10G Uplink -cevModuleCat365024PD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 7 } -- Cisco Catalyst 3650 24 Port POE 2x10G Uplink -cevModuleCat365048PD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 8 } -- Cisco Catalyst 3650 48 Port POE 2x10G Uplink -cevModuleCat365024TS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 9 } -- Cisco Catalyst 3650 24 Port Data 4x1G Uplink -cevModuleCat365048TS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 10 } -- Cisco Catalyst 3650 48 Port Data 4x1G Uplink -cevModuleCat365024PS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 11 } -- Cisco Catalyst 3650 24 Port POE 4x1G Uplink -cevModuleCat365048PS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 12 } -- Cisco Catalyst 3650 48 Port POE 4x1G Uplink -cevModuleCat385024T OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 13 } -- Catalyst 3850 24 10/100/1000 Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat385048T OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 14 } -- Catalyst 3850 48 10/100/1000 Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat385024P OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 15 } -- Catalyst 3850 24 10/100/1000 PoE+Ports Layer 2/Layer 3 Ethernet Stackable Switch -cevModuleCat385048P OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 16 } -- Catalyst 3850 48 10/100/1000 PoE+Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat365048PQ OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 1 } -- Cisco Catalyst 3650 48 Port POE 4x10G Uplink +cevModuleCat365048TQ OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 2 } -- Cisco Catalyst 3650 48 Port Data 4x10G Uplink +cevModuleCat385024u OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 3 } -- Catalyst 3850 24 10/100/1000 UPoE Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat385048u OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 4 } -- Catalyst 3850 48 10/100/1000 UPoE Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat365024TD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 5 } -- Cisco Catalyst 3650 24 Port Data 2x10G Uplink +cevModuleCat365048TD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 6 } -- Cisco Catalyst 3650 48 Port Data 2x10G Uplink +cevModuleCat365024PD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 7 } -- Cisco Catalyst 3650 24 Port POE 2x10G Uplink +cevModuleCat365048PD OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 8 } -- Cisco Catalyst 3650 48 Port POE 2x10G Uplink +cevModuleCat365024TS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 9 } -- Cisco Catalyst 3650 24 Port Data 4x1G Uplink +cevModuleCat365048TS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 10 } -- Cisco Catalyst 3650 48 Port Data 4x1G Uplink +cevModuleCat365024PS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 11 } -- Cisco Catalyst 3650 24 Port POE 4x1G Uplink +cevModuleCat365048PS OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 12 } -- Cisco Catalyst 3650 48 Port POE 4x1G Uplink +cevModuleCat385024T OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 13 } -- Catalyst 3850 24 10/100/1000 Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat385048T OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 14 } -- Catalyst 3850 48 10/100/1000 Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat385024P OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 15 } -- Catalyst 3850 24 10/100/1000 PoE+Ports Layer 2/Layer 3 Ethernet Stackable Switch +cevModuleCat385048P OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 16 } -- Catalyst 3850 48 10/100/1000 PoE+Ports Layer 2/Layer 3 Ethernet Stackable Switch cevModuleCat385012S OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 17 } -- WS-C3850-12S Catalyst 3850 Series Switch with 12 1GE SFP Interfaces cevModuleCat385024S OBJECT IDENTIFIER ::= { cevModuleCat3KCAxType 18 } -- WS-C3850-24S Catalyst 3850 Series Switch with 24 1GE SFP Interfaces @@ -8438,18 +9454,32 @@ cevN9KC9504FMe OBJECT IDENTIFIER ::= { cevModuleN95KType 28 } -- N cevN9KC9508FMe OBJECT IDENTIFIER ::= { cevModuleN95KType 29 } -- N9K-C9508-FM3 Fabric Module for Nexus 9508 chassis cevN9KX9432CS OBJECT IDENTIFIER ::= { cevModuleN95KType 30 } -- N9K-X9432C-S 32 ports 100G QSFP Ethernet Module for Nexus 9500 series chassis cevN9KC9508FMS OBJECT IDENTIFIER ::= { cevModuleN95KType 31 } -- N9K-C9508-FM-S Fabric Module for Nexus 9508 chassis -cevN9KX9736CEX OBJECT IDENTIFIER ::= { cevModuleN95KType 32 } -- N9K-X9736C-EX 36p 40/100G Ethernet Module for for Nexus 9500 series chassis +cevN9KX9736CEX OBJECT IDENTIFIER ::= { cevModuleN95KType 32 } -- N9K-X9736C-EX 36p 40/100G Ethernet Module for for Nexus 9500 series chassis +cevN9KC9504FMS OBJECT IDENTIFIER ::= { cevModuleN95KType 33 } -- N9K-C9504-FMS Fabric Module for Nexus 9504 chassis +cevN9KC9504FM4 OBJECT IDENTIFIER ::= { cevModuleN95KType 34 } -- N9K-C9504-FM4 Fabric Module for Nexus 9504 chassis cevN9KX9732CEX OBJECT IDENTIFIER ::= { cevModuleN95KType 35 } -- N9K-X9732C-EX 32p 100G Ethernet Module for Nexus 9500 series chassis -cevN9KSUPAPlus OBJECT IDENTIFIER ::= { cevModuleN95KType 39 } -- N9K-SUP-A+ Broadwell CPU based Supervisor Module for Nexus 9500 series +cevN9KX97160YCEX OBJECT IDENTIFIER ::= { cevModuleN95KType 36 } -- N9K-X97160YC-EX 48x25G + 4x100G Ethernet Module +cevN9KC9516FME OBJECT IDENTIFIER ::= { cevModuleN95KType 37 } -- N9K-C9516-FM-E Fabric Module for Nexus 9516 chassis +cevN9KX9732CEXM OBJECT IDENTIFIER ::= { cevModuleN95KType 38 } -- N9K-X9732C-EXM 32p 100G Ethernet Module for Nexus 9500 series chassis +cevN9KSUPAPlus OBJECT IDENTIFIER ::= { cevModuleN95KType 39 } -- N9K-SUP-A+ Broadwell CPU based Supervisor Module for Nexus 9500 series cevN9KSUPBPlus OBJECT IDENTIFIER ::= { cevModuleN95KType 40 } -- N9K-SUP-B+ Broadwell CPU based Supervisor Module for Nexus 9500 series -cevN9KX9736CFX OBJECT IDENTIFIER ::= { cevModuleN95KType 41 } -- N9K-X9736C-FX 36 port 40/100G Ethernet Module with MAC-Sec for Nexus 9500 series chassis +cevN9KX9736CFX OBJECT IDENTIFIER ::= { cevModuleN95KType 41 } -- N9K-X9736C-FX 36 port 40/100G Ethernet Module with MAC-Sec for Nexus 9500 series chassis cevN9KC9516FME2 OBJECT IDENTIFIER ::= { cevModuleN95KType 42 } -- N9K-C9516-FM-E2 Fabric Module for Nexus 9516 chassis -cevN9KC9508FME2 OBJECT IDENTIFIER ::= { cevModuleN95KType 43 } -- N9K-C9508-FM-E2 Fabric Module for Nexus 9508 chassis +cevN9KC9508FME2 OBJECT IDENTIFIER ::= { cevModuleN95KType 43 } -- N9K-C9508-FM-E2 Fabric Module for Nexus 9508 chassis +cevN9KX9788TCFX OBJECT IDENTIFIER ::= { cevModuleN95KType 44 } -- N9K-X9788TC-FX 48x10G + 4x40/100G Ethernet Module for Nexus 9500 series chassis +cevN9KX9732CFX OBJECT IDENTIFIER ::= { cevModuleN95KType 45 } -- N9K-X9732C-FX 32x40/100G Ethernet Module for Nexus 9500 series chassis cevN9KX9736QFX OBJECT IDENTIFIER ::= { cevModuleN95KType 46 } -- N9K-X9736Q-FX 36 port 40GEthernet Module with MAC-Sec for Nexus 9500 series chassis +cevN9KX9788TC2FX OBJECT IDENTIFIER ::= { cevModuleN95KType 47 } -- Nexus 9500 series line card with 48 x 10GBASE-T + 6 x QSFP28 (40/100G) +cevN9KC9504FMG OBJECT IDENTIFIER ::= { cevModuleN95KType 49 } -- N9K-C9504-FM-G Fabric Module for Nexus 9504 chassis +cevN9KX9716DGX OBJECT IDENTIFIER ::= { cevModuleN95KType 50 } -- N9K-X9716D-GX 16x400G Ethernet Module with MAC-Sec for Nexus 9500 series chassis +cevN9KC9508FMG OBJECT IDENTIFIER ::= { cevModuleN95KType 52 } -- N9K-C9508-FM-G Fabric Module for Nexus 9508 chassis +cevN9KC9508FANPWR OBJECT IDENTIFIER ::= { cevModuleN95KType 53 } -- Spinner card for Nexus 9508 chassis +cevN9KC9504FANPWR OBJECT IDENTIFIER ::= { cevModuleN95KType 54 } -- Spinner card for Nexus 9504 chassis +cevN9KX9736CFX3 OBJECT IDENTIFIER ::= { cevModuleN95KType 55 } -- N9K-X9736C-FX3 36 port 100G Ethernet Module with MAC-Sec for Nexus 9500 series chassis cevModuleCPAKType OBJECT IDENTIFIER ::= { cevModule 101 } -- Group for 100G CPAK modules -cevCPAK100GLR4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 1 } -- 100G LR4 CPAK modules -cevCPAK100GSR10 OBJECT IDENTIFIER ::= { cevModuleCPAKType 2 } -- 100G SR10 CPAK modules +cevCPAK100GLR4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 1 } -- 100G LR4 CPAK modules +cevCPAK100GSR10 OBJECT IDENTIFIER ::= { cevModuleCPAKType 2 } -- 100G SR10 CPAK modules cevCPAK100GLR10 OBJECT IDENTIFIER ::= { cevModuleCPAKType 3 } -- 100G LR10 CPAK module cevCPAK100GER4L OBJECT IDENTIFIER ::= { cevModuleCPAKType 4 } -- CPAK 100G ER4L Optics cevCPAKUnknown OBJECT IDENTIFIER ::= { cevModuleCPAKType 5 } -- Unknown or Unsupported CPAK Module @@ -8457,11 +9487,13 @@ cevCPAK10X10GLR OBJECT IDENTIFIER ::= { cevModuleCPAKType 6 } -- CP cevCPAK100GSR4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 7 } -- CPAK 100G SR4 optics module cevCPAK100GELR4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 8 } -- 100GBASE-LR4 Cisco CPAK Module for SMF cevCPAK10X10GERL OBJECT IDENTIFIER ::= { cevModuleCPAKType 9 } -- 10X10G-ERL Cisco CPAK Module, 25km SMF -cevCPAK100GCWDM4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 10 } -- CPAK 100G CWDM4 optics module +cevCPAK100GCWDM4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 10 } -- CPAK 100G CWDM4 optics module cevCPAK100GPSM4 OBJECT IDENTIFIER ::= { cevModuleCPAKType 11 } -- CPAK 100G PSM4 optics module cevCPAK100GLR4LANPHY OBJECT IDENTIFIER ::= { cevModuleCPAKType 12 } -- CPAK 100G LR4 LANPHY optics module +cevCPAK100GFR OBJECT IDENTIFIER ::= { cevModuleCPAKType 13 } -- CPAK-100G-FR 100G FR CPAK modules +cevCPAK100GER4F OBJECT IDENTIFIER ::= { cevModuleCPAKType 14 } -- CPAK optical transceiver module, 40km SMF, duplex, LC -cevDirectAttachCable40Gs OBJECT IDENTIFIER ::= { cevModule 102 } -- Group for DirectAttachCable40Gs Type of Cards +cevDirectAttachCable40Gs OBJECT IDENTIFIER ::= { cevModule 102 } -- Group for DirectAttachCable40Gs Type of Cards cevQSFP4SFP10GCU1M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 1 } -- QSFP to 4xSFP10G Passive Copper Splitter Cable, 1m cevQSFP4SFP10GCU3M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 2 } -- QSFP to 4xSFP10G Passive Copper Splitter Cable, 3m cevQSFP4SFP10GCU5M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 3 } -- QSFP to 4xSFP10G Passive Copper Splitter Cable, 5m @@ -8490,16 +9522,19 @@ cevQSFP4SFP10GAOC15M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 25 cevQSFPH40GBACU1M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 26 } -- 40GBASE-Active CU QSFP Cable 1 Meter cevQSFPH40GBACU3M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 27 } -- 40GBASE-Active CU QSFP Cable 3 Meter cevQSFPH40GBACU5M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 28 } -- 40GBASE-Active CU QSFP Cable 5 Meter +cevQSFPH40GBCU7M OBJECT IDENTIFIER ::= { cevDirectAttachCable40Gs 29 } -- 40GBASE-CU QSFP Cable 7 Meter + + cevModuleN93KType OBJECT IDENTIFIER ::= { cevModule 103 } -- These cards are used for Nexus 9300 series cevN9KM6PQ OBJECT IDENTIFIER ::= { cevModuleN93KType 1 } -- 6x40G QSFP GEM Card for Nexus 9300 TOR platform cevN9KM12PQ OBJECT IDENTIFIER ::= { cevModuleN93KType 2 } -- 12x40G QSFP GEM Card for Nexus 9300 TOR platform -cevN9KC93128TXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 3 } -- 3RU TOR fixed module with 96x10GT and 8x40G QSFP -cevN9KC9396TXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 4 } -- 2RU TOR fixed module with 48x10GT and 12x40G QSFP -cevN9KC9396PXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 5 } -- 2RU TOR fixed module with 48x10GF and 12x40G QSFP +cevN9KC93128TXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 3 } -- 3RU TOR fixed module with 96x10GT and 8x40G QSFP +cevN9KC9396TXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 4 } -- 2RU TOR fixed module with 48x10GT and 12x40G QSFP +cevN9KC9396PXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 5 } -- 2RU TOR fixed module with 48x10GF and 12x40G QSFP cevN9KC9372PXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 7 } -- 1RU TOR fixed module with 48x10GF and 6x40G QSFP cevN9KC9372TXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 8 } -- 1RU TOR fixed module with 48x10GT and 6x40G QSFP -cevN9KC9332PQfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 9 } -- 1RU TOR fixed module with 32x40G QSFP +cevN9KC9332PQfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 9 } -- 1RU TOR fixed module with 32x40G QSFP cevN9KM4PC OBJECT IDENTIFIER ::= { cevModuleN93KType 10 } -- 4x100G CFP2 GEM CArd for Nexus 9300 TOR platform cevN9KM6PQE OBJECT IDENTIFIER ::= { cevModuleN93KType 11 } -- 6x40G QSFP GEM Card (N9K-M6PQ-E) for Nexus 9300 TOR platform cevN9KC9372TXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 12 } -- Fixed Module for Nexus 9300 series chassis with 48x10G TX and 6x40G QSFP @@ -8508,39 +9543,61 @@ cevN9KC9372TXEFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KTyp cevN9KC9372PXEFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 15 } -- Nexus 9300 Series fixed module with 48x10G SFP + and 6x40G QSFP cevN9KC93120TXfixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 16 } -- Nexus 9300 Series fixed module with 96x10GT and 8x40G QSFP cevN9KC93180YCEXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 17 } -- Nexus 9300 Series fixed module with 48x10G/25G SFP and 6x40G/100G QSFP - -cevN9KC93108TCEXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 18 } -- Cisco 1RU N9K-C93108TC-EX TOR chassis with 6x40G/100G uplink (6 QSFP/4 QSFP28) and 48x10G base T downlink +cevN9KC93108TCEXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 18 } -- Cisco 1RU N9K-C93108TC-EX TOR chassis with 6x40G/100G uplink (6 QSFP/4 QSFP28) and 48x10G base T downlink cevN9KC93180LCEXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 19 } -- 1RU TOR fixed module with 32p QSFP28 cevN9KC93180YCFXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 20 } -- Nexus 9300 series card type 48x10/25G (SFP28) and 6x40/100G (QSFP28) +cevN9KC92300YCFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 21 } -- Nexus 9000 Series fixed module with 48x10/25G + 18x40/100G Ethernet cevN9KC93108TCFXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 22 } -- Nexus 9300 series fixed module with 6x40G/100G uplink (QSFP28) and 48x10G BASE-T -cevN9KC9348GCFXPFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 23 } -- Nexus 9300 1RU TOR fixed module with 48x100/1000Mbps (PoE) + 4x25G SFP28 + 2x100G QSFP28 -cevN9KC9364CFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 24 } -- TOR fixed module with with 64x100G QSFP28+ 2x10G SFP Ethernet +cevN9KC9348GCFXPFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 23 } -- Nexus 9300 1RU TOR fixed module with 48x100/1000Mbps (PoE) + 4x25G SFP28 + 2x100G QSFP28 +cevN9KC9364CFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 24 } -- TOR fixed module with with 64x100G QSFP28+ 2x10G SFP Ethernet cevN9KC9336CFX2FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 25 } -- TOR fixed module with 1RU 36 x 100G QSFP28 Ports Ethernet -cevN9KC93240YCFX2FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 26 } -- Nexus 9300 series fixed module with 48x10/25G + 12x40/100G +cevN9KC93240YCFX2FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 26 } -- Nexus 9300 series fixed module with 48x10/25G + 12x40/100G cevN9KC9332CFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 27 } -- Single chip spine fixed module with 32x100G QSFP28 + 2x10G SFP+ Ethernet cevN9KC93360YCFX3FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 28 } -- 2RU TOR fixed module with 96x10/25G SFP28 + 12x40/100G QSFP28 ports -cevN9KC93240YCFX2ZFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 29 } -- Nexus 9300 series fixed module with 48x10/25G SFP+ & 12x40/100G +cevN9KC93240YCFX2ZFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 29 } -- Nexus 9300 series fixed module with 48x10/25G SFP+ & 12x40/100G cevN9KC9358GYFXPFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 30 } -- 2RU TOR fixed module with 8x100/1000M + 2x10/25G SFP28 ports -cevN9KC9316DGX OBJECT IDENTIFIER ::= { cevModuleN93KType 32 } -- 1RU TOR fixed module with 16x400GE DD QSFP Ports +cevN9KC93180YCFX3FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 31 } -- Nexus 9300 Series fixed module with 48x1/10/25G SFP + 6*40/100G Ethernet +cevN9KC9316DGX OBJECT IDENTIFIER ::= { cevModuleN93KType 32 } -- 1RU TOR fixed module with 16x400GE DD QSFP Ports cevN9KC9358GYFXPv2FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 33 } -- 2RU TOR fixed module with 8x100/1000M + 2x10/25G SFP28 ports cevN9KC93600CDGX OBJECT IDENTIFIER ::= { cevModuleN93KType 34 } -- 1RU TOR fixed module with 28xQSFP28 (100G/40G) + 8xQSFP-DD(400G) Ports cevN9KC93360YCFX2 OBJECT IDENTIFIER ::= { cevModuleN93KType 35 } -- 2RU TOR fixed module with 96x10/25G SFP28 + 12x40/100G QSFP28 ports cevN9KC93216TCFX2 OBJECT IDENTIFIER ::= { cevModuleN93KType 36 } -- 2RU TOR fixed module with 96x10GBase-T (copper) + 12x40/100G QSFP28 ports +cevN9KC93360YCFX2FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 37 } -- TOR 96x10/25G SFP+ & 12x40/100G +cevN9KC93216TCFX2FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 38 } -- TOR 96x1/10GT & 12x40/100G cevN9KC9364CGX OBJECT IDENTIFIER ::= { cevModuleN93KType 40 } -- 2RU TOR fixed module with 64x100GE QSFP28 Ports +cevN9KC93180YC2FXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 41 } -- Nexus 9300 series card type 48x10/25G (SFP28) and 6x40/100G (QSFP28) +cevN9KC9348GC2FXPFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 42 } -- Nexus 9300 1RU TOR fixed module with 48x100/1000Mbps (PoE) + 4x25G SFP28 + 2x100G QSFP28 +cevN9KC93108TC2FXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 43 } -- Nexus 9300 series TOR with 48 x 10GBASE-T + 6 x QSFP28 (40/100G) +cevN9KC9316DGXFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 44 } -- Nexus 9300 series TOR with 16 x 400/100/40 Gbps QSFP-DD +cevN9KC93180YCFX24FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 45 } -- Nexus 9300 series TOR with 24 x 1/10/25 Gbps SFP+ + 6 x 40/100 Gbps QSFP+ +cevN9KC93108TCFX24FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 46 } -- Nexus 9300 series TOR with 24 x 10GBase-T, 6 x 40/100 Gbps +cevN9KC93108TCEX24FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 47 } -- Nexus 9300 series TOR with 24 x 1/10GBase-T + 6 x 40/100 Gbps QSFP+ +cevN9KC93180YCEX24FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 48 } -- Nexus 9300 series TOR with 24 x 1/10/25 Gigabit SFP+ + 6 x 40/100 Gigabit QSFP28 +cevN9KC93108TCFX3PFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 49 } -- Nexus 9300 Series fixed module with 48x10GT + 6*40/100G Ethernet +cevN9KC93180YCFX3SFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 50 } -- Nexus 9300 Series fixed module with 48x1/10/25G SFP + 6*40/100G Ethernet +cevN9KC9364DGX2AFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 51 } -- Nexus 9300 Series fixed module with 64x400G+2x10G, QuadPeaks 25.6T +cevN9KC9332DGX2BFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 52 } -- 1RU TOR fixed module with 32x400G+2x10G, QuadPeaks 25.6T +cevN9KC9336CFX2EFixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 53 } -- 1RU TOR fixed module with 36x40G/100G QSFP28 ports +cevN9KC93180YCFX3H OBJECT IDENTIFIER ::= { cevModuleN93KType 56 } -- Nexus 9300 series fixed chassis with 24x1/10/25G SFP+, 6*40/100G Ethernet +cevN9KC93108TCFX3H OBJECT IDENTIFIER ::= { cevModuleN93KType 57 } -- Nexus 9300 Series fixed module with 24x10GT + 6*40/100G Ethernet +cevN9KC9348GCFX3PH OBJECT IDENTIFIER ::= { cevModuleN93KType 62 } -- Nexus 9300 Series fixed switch with 48x 10/100M/1G BASE-T half-duplex + 4x 10/25 Gbps SFP28 + 2x 40/100-Gbps QSFP28 ports +cevN9KC9348GCFX3 OBJECT IDENTIFIER ::= { cevModuleN93KType 63 } -- Nexus 9300 Series fixed switch with 48x 10/100M/1G BASE-T + 4x10/25 Gbps SFP28 + 2x 40/100-Gbps QSFP28 ports +cevN9KC93108TCFX3 OBJECT IDENTIFIER ::= { cevModuleN93KType 64 } -- Nexus 9300 Series fixed switch with 48x100M/1G/10G BASE-T + 6x 40/100-Gbps QSFP28 +cevN9KC9336CK1FixedModule OBJECT IDENTIFIER ::= { cevModuleN93KType 65 } -- Nexus 9300 Series fixed module with 36x 40/100GE ports cevModuleISR4300Type OBJECT IDENTIFIER ::= { cevModule 104 } -- These are modules that are used in Cisco ISR 4300 Series Router cevModuleISR4351RP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 1 } -- Cisco ISR 4351 Routing Processor Module cevModuleISR4351FP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 2 } -- Cisco ISR 4351 Forwarding Processor Module -cevModuleISR4351NIM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 3 } -- Cisco ISR 4351 Built-In Network Interface Module controller +cevModuleISR4351NIM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 3 } -- Cisco ISR 4351 Built-In Network Interface Module controller cevModuleISR4351ESM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 4 } -- Cisco ISR 4351 Built-In Enhanced Service Module controller Module cevModuleISR4300FP3xGE OBJECT IDENTIFIER ::= { cevModuleISR4300Type 5 } -- Cisco ISR 4300 Series Built-in Front Panel 3xGE Module -cevModuleISR4331RP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 6 } -- Cisco ISR 4331 Routing Processor Module -cevModuleISR4331FP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 7 } -- Cisco ISR 4331 Forwarding Processor Module -cevModuleISR4331NIM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 8 } -- Cisco ISR 4331 Built-In Network Interface Module controller -cevModuleISR4331ESM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 9 } -- Cisco ISR 4331 Built-In Enhanced Service Module controller Module +cevModuleISR4331RP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 6 } -- Cisco ISR 4331 Routing Processor Module +cevModuleISR4331FP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 7 } -- Cisco ISR 4331 Forwarding Processor Module +cevModuleISR4331NIM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 8 } -- Cisco ISR 4331 Built-In Network Interface Module controller +cevModuleISR4331ESM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 9 } -- Cisco ISR 4331 Built-In Enhanced Service Module controller Module cevModuleISR4321RP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 10 } -- Cisco ISR 4331 Routing Processor Module -cevModuleISR4321FP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 11 } -- Cisco ISR 4321 Forwarding Processor Module +cevModuleISR4321FP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 11 } -- Cisco ISR 4321 Forwarding Processor Module cevModuleISR4321NIM OBJECT IDENTIFIER ::= { cevModuleISR4300Type 12 } -- Cisco ISR 4321 Built-In Network Interface Module controller cevModuleISR4300FP2xGE OBJECT IDENTIFIER ::= { cevModuleISR4300Type 13 } -- Cisco ISR 4300 Series Built-in Front Panel 2xGE Module cevModuleISR4351BRP OBJECT IDENTIFIER ::= { cevModuleISR4300Type 14 } -- Cisco ISR 4351 Boost Routing Processor Module @@ -8563,36 +9620,49 @@ cevModuleNIM8MftT1E1 OBJECT IDENTIFIER ::= { cevModuleNIMType cevModuleNIM1CE1T1PRI OBJECT IDENTIFIER ::= { cevModuleNIMType 5 } -- 1-Port RJ-48 channelized -T1/E1 Network Interface Module cevModuleNIM2CE1T1PRI OBJECT IDENTIFIER ::= { cevModuleNIMType 6 } -- 2-Port RJ-48 channelized -T1/E1 Network Interface Module cevModuleNIM8CE1T1PRI OBJECT IDENTIFIER ::= { cevModuleNIMType 7 } -- 8-Port RJ-48 channelized -T1/E1 Network Interface Module -cevModuleNIMPVDM4c32 OBJECT IDENTIFIER ::= { cevModuleNIMType 8 } -- PVDM4 DSP Module with 32 G.711 Channels -cevModuleNIMPVDM4c64 OBJECT IDENTIFIER ::= { cevModuleNIMType 9 } -- PVDM4 DSP Module with 64 G.711 Channels +cevModuleNIMPVDM4c32 OBJECT IDENTIFIER ::= { cevModuleNIMType 8 } -- PVDM4 DSP Module with 32 G.711 Channels +cevModuleNIMPVDM4c64 OBJECT IDENTIFIER ::= { cevModuleNIMType 9 } -- PVDM4 DSP Module with 64 G.711 Channels cevModuleNIMPVDM4c128 OBJECT IDENTIFIER ::= { cevModuleNIMType 10 } -- PVDM4 DSP Module with 128 G.711 Channels cevModuleNIMPVDM4c192 OBJECT IDENTIFIER ::= { cevModuleNIMType 11 } -- PVDM4 DSP Module with 192 G.711 Channels cevModuleNIMPVDM4c256 OBJECT IDENTIFIER ::= { cevModuleNIMType 12 } -- PVDM4 DSP Module with 256 G.711 Channels -cevModuleNIMSSD OBJECT IDENTIFIER ::= { cevModuleNIMType 13 } -- solid-state disk Network Interface Module +cevModuleNIMSSD OBJECT IDENTIFIER ::= { cevModuleNIMType 13 } -- solid-state disk Network Interface Module cevModuleNIMHDD OBJECT IDENTIFIER ::= { cevModuleNIMType 14 } -- Hard Disk Drive Network Interface Module -cevModuleNIM2FXS OBJECT IDENTIFIER ::= { cevModuleNIMType 15 } -- 2-port RJ-11 FXS Network Interface Module -cevModuleNIM4FXS OBJECT IDENTIFIER ::= { cevModuleNIMType 16 } -- 4-port RJ-11 FXS Network Interface Module +cevModuleNIM2FXS OBJECT IDENTIFIER ::= { cevModuleNIMType 15 } -- 2-port RJ-11 FXS Network Interface Module +cevModuleNIM4FXS OBJECT IDENTIFIER ::= { cevModuleNIMType 16 } -- 4-port RJ-11 FXS Network Interface Module cevModuleNIM2FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 17 } -- 2-port RJ-11 FXO Network Interface Module -cevModuleNIM4FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 18 } -- 4-port RJ-11 FXO Network Interface Module +cevModuleNIM4FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 18 } -- 4-port RJ-11 FXO Network Interface Module cevModuleNIM2FXS4FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 19 } -- 6-port RJ-11 FXSFXO Network Interface Module -cevModuleNIM2EM OBJECT IDENTIFIER ::= { cevModuleNIMType 20 } -- 2-port RJ-11 E&M Network Interface Module -cevModuleNIM4EM OBJECT IDENTIFIER ::= { cevModuleNIMType 21 } -- 4-port RJ-11 E&M Network Interface Module -cevModuleNIM2BRI OBJECT IDENTIFIER ::= { cevModuleNIMType 22 } -- 2-port RJ-45 BRI-NT/TE Network Interface Module -cevModuleNIM4BRI OBJECT IDENTIFIER ::= { cevModuleNIMType 23 } -- 4-port RJ-45 BRI-NT/TE Network Interface Module -cevModuleNIMVABAnnexA OBJECT IDENTIFIER ::= { cevModuleNIMType 25 } -- Multi-mode xDSL with VDSL bondingand ADSL1/2/2+ Annex A over POTS -cevModuleNIMVAAnnexB OBJECT IDENTIFIER ::= { cevModuleNIMType 26 } -- Multi-mode xDSL with VDSL bondingand ADSL2/2+ Annex B/J -cevModuleNIMVABAnnexM OBJECT IDENTIFIER ::= { cevModuleNIMType 27 } -- Multi-mode xDSL with VDSL bondingand ADSL2/2+ Annex M -cevModuleNIM4ES2 OBJECT IDENTIFIER ::= { cevModuleNIMType 28 } -- 4-port non-POE Layer 2 Gigabit Ethernet Switch Network Interface Module -cevModuleNIM8ES2 OBJECT IDENTIFIER ::= { cevModuleNIMType 29 } -- 8-port non-POE Layer 2 Gigabit Ethernet Switch Network Interface Module -cevModuleNIM8ES2POE OBJECT IDENTIFIER ::= { cevModuleNIMType 30 } -- 8-port POE Layer 2 Gigabit Ethernet Switch Network Interface Module +cevModuleNIM2EM OBJECT IDENTIFIER ::= { cevModuleNIMType 20 } -- 2-port RJ-11 E&M Network Interface Module +cevModuleNIM4EM OBJECT IDENTIFIER ::= { cevModuleNIMType 21 } -- 4-port RJ-11 E&M Network Interface Module +cevModuleNIM2BRI OBJECT IDENTIFIER ::= { cevModuleNIMType 22 } -- 2-port RJ-45 BRI-NT/TE Network Interface Module +cevModuleNIM4BRI OBJECT IDENTIFIER ::= { cevModuleNIMType 23 } -- 4-port RJ-45 BRI-NT/TE Network Interface Module +cevModuleNIMVABAnnexA OBJECT IDENTIFIER ::= { cevModuleNIMType 25 } -- Multi-mode xDSL with VDSL bondingand ADSL1/2/2+ Annex A over POTS +cevModuleNIMVAAnnexB OBJECT IDENTIFIER ::= { cevModuleNIMType 26 } -- Multi-mode xDSL with VDSL bondingand ADSL2/2+ Annex B/J +cevModuleNIMVABAnnexM OBJECT IDENTIFIER ::= { cevModuleNIMType 27 } -- Multi-mode xDSL with VDSL bondingand ADSL2/2+ Annex M +cevModuleNIM4ES2 OBJECT IDENTIFIER ::= { cevModuleNIMType 28 } -- 4-port non-POE Layer 2 Gigabit Ethernet Switch Network Interface Module +cevModuleNIM8ES2 OBJECT IDENTIFIER ::= { cevModuleNIMType 29 } -- 8-port non-POE Layer 2 Gigabit Ethernet Switch Network Interface Module +cevModuleNIM8ES2POE OBJECT IDENTIFIER ::= { cevModuleNIMType 30 } -- 8-port POE Layer 2 Gigabit Ethernet Switch Network Interface Module cevModuleNIM16A OBJECT IDENTIFIER ::= { cevModuleNIMType 31 } -- 16-Port asynchronous network interface module cevModuleNIM24A OBJECT IDENTIFIER ::= { cevModuleNIMType 32 } -- 24-Port asynchronous network interface module -cevModuleNIM2BRIST OBJECT IDENTIFIER ::= { cevModuleNIMType 33 } -- 2-port RJ-45 BRI-S/T Network Interface Module -cevModuleNIM4BRIST OBJECT IDENTIFIER ::= { cevModuleNIMType 34 } -- 4-port RJ-45 BRI-S/T Network Interface Module +cevModuleNIM2BRIST OBJECT IDENTIFIER ::= { cevModuleNIMType 33 } -- 2-port RJ-45 BRI-S/T Network Interface Module +cevModuleNIM4BRIST OBJECT IDENTIFIER ::= { cevModuleNIMType 34 } -- 4-port RJ-45 BRI-S/T Network Interface Module +cevModuleNIM4shdslEA OBJECT IDENTIFIER ::= { cevModuleNIMType 35 } -- G.SHDSL NIM (4port) supporting multimode ATM and EFM on ISR4400 series +cevModuleNIM2FXS2FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 36 } -- 2 port Analog FXS and 2 port Analog FXO RJ-11 Network Interface Module +cevModuleNIM4FXS4FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 37 } -- 4 port Analog FXS and 4 port Analog FXO RJ-11 Network Interface Module +cevModuleNIM6FXS6FXO OBJECT IDENTIFIER ::= { cevModuleNIMType 38 } -- 6 port Analog FXS and 6 port Analog FXO RJ-11 Network Interface Module +cevModuleNIM8FXS OBJECT IDENTIFIER ::= { cevModuleNIMType 39 } -- 8 port Analog FXS RJ-11 Network Interface Module +cevModuleNIMPVDM32 OBJECT IDENTIFIER ::= { cevModuleNIMType 40 } -- NIM PVDM Carrier for PVDM4-32 +cevModuleNIMPVDM64 OBJECT IDENTIFIER ::= { cevModuleNIMType 41 } -- NIM PVDM Carrier for PVDM4-64 +cevModuleNIMPVDM128 OBJECT IDENTIFIER ::= { cevModuleNIMType 42 } -- NIM PVDM Carrier for PVDM4-128 +cevModuleNIMPVDM256 OBJECT IDENTIFIER ::= { cevModuleNIMType 43 } -- NIM PVDM Carrier for PVDM4-256 +cevModuleIRMNIM1T1E1 OBJECT IDENTIFIER ::= { cevModuleNIMType 44 } -- 1-Port RJ-48 channelized -T1/E1 Network Interface (JAWA) Module +cevModuleIRMNIM2T1E1 OBJECT IDENTIFIER ::= { cevModuleNIMType 45 } -- 2-Port RJ-48 channelized -T1/E1 Network Interface (JAWA) Module +cevModuleIRMNIMRS232 OBJECT IDENTIFIER ::= { cevModuleNIMType 46 } -- 8-Port synchronous and asynchronous serial network interface (malaya) Module + cevModuleCXPType OBJECT IDENTIFIER ::= { cevModule 106 } -- Group of 100G CXP modules -cevModuleCXP100GSR10 OBJECT IDENTIFIER ::= { cevModuleCXPType 1 } -- 100G SR10 CXP modules +cevModuleCXP100GSR10 OBJECT IDENTIFIER ::= { cevModuleCXPType 1 } -- 100G SR10 CXP modules cevModuleCXP100GSR12 OBJECT IDENTIFIER ::= { cevModuleCXPType 2 } -- 100G SR12 CXP modules cevModuleONSCXP2SR25 OBJECT IDENTIFIER ::= { cevModuleCXPType 3 } -- 12-Channel, 23Gbps per channel, duplex, pluggable CXP2 transceive @@ -8608,13 +9678,13 @@ cevModuleAsa5508SSD OBJECT IDENTIFIER ::= { cevModuleASA5508 cevModuleAsa5508K7SSD OBJECT IDENTIFIER ::= { cevModuleASA5508Type 2 } -- 5508 with No Payload Encryption Adaptive Security Appliance Field-Replaceable Solid State Drive cevModuleCCEType OBJECT IDENTIFIER ::= { cevModule 109 } -- These are modules that are used in Cisco cBR CCE NextGen -cevModuleCCESup OBJECT IDENTIFIER ::= { cevModuleCCEType 1 } -- Cisco cBR CCE Supervisor Card -cevModuleCCESupPic OBJECT IDENTIFIER ::= { cevModuleCCEType 2 } -- Cisco cBR CCE Supervisor PIC Card -cevModuleCCESsi OBJECT IDENTIFIER ::= { cevModuleCCEType 3 } -- Cisco cBR CCE RF Line Card -cevModuleCCESsiPic OBJECT IDENTIFIER ::= { cevModuleCCEType 4 } -- Cisco cBR CCE RF Line Card PIC -cevModuleCCECbrRS422BaseRJ45 OBJECT IDENTIFIER ::= { cevModuleCCEType 5 } -- Cisco cBR CCE RS422 basing onRJ45 -cevModuleCCECbrBNC OBJECT IDENTIFIER ::= { cevModuleCCEType 6 } -- Cisco cBR CCE BNC connector -cevModuleCCERphySsi OBJECT IDENTIFIER ::= { cevModuleCCEType 7 } -- Cisco cBR CCE Remote-Phy Line Card +cevModuleCCESup OBJECT IDENTIFIER ::= { cevModuleCCEType 1 } -- Cisco cBR CCE Supervisor Card +cevModuleCCESupPic OBJECT IDENTIFIER ::= { cevModuleCCEType 2 } -- Cisco cBR CCE Supervisor PIC Card +cevModuleCCESsi OBJECT IDENTIFIER ::= { cevModuleCCEType 3 } -- Cisco cBR CCE RF Line Card +cevModuleCCESsiPic OBJECT IDENTIFIER ::= { cevModuleCCEType 4 } -- Cisco cBR CCE RF Line Card PIC +cevModuleCCECbrRS422BaseRJ45 OBJECT IDENTIFIER ::= { cevModuleCCEType 5 } -- Cisco cBR CCE RS422 basing onRJ45 +cevModuleCCECbrBNC OBJECT IDENTIFIER ::= { cevModuleCCEType 6 } -- Cisco cBR CCE BNC connector +cevModuleCCERphySsi OBJECT IDENTIFIER ::= { cevModuleCCEType 7 } -- Cisco cBR CCE Remote-Phy Line Card cevModuleCCERphySsiPic OBJECT IDENTIFIER ::= { cevModuleCCEType 8 } -- Cisco cBR CCE Remote-Phy Line Card PIC cevModuleWIMType OBJECT IDENTIFIER ::= { cevModule 110 } -- These are non OIR modules that are used in Cisco 400r series of routers cevModuleWIM1T OBJECT IDENTIFIER ::= { cevModuleWIMType 3 } -- WIM-1T, Single Port 12-in-1 Serial WAN Interface Module @@ -8638,6 +9708,8 @@ cevModuleCFP2ONSC2WDMDE1HL OBJECT IDENTIFIER ::= { cevModuleCFP2Typ cevModuleCFP2ONSCFP2WDMD OBJECT IDENTIFIER ::= { cevModuleCFP2Type 4 } -- 100G, Staircase & SD FEC, WDM Digital CFP2 pluggable cevModuleCFP2CFP2WDMD1HL OBJECT IDENTIFIER ::= { cevModuleCFP2Type 5 } -- 200G, 100G, WDM Digital CFP2 pluggable, Licensed 100G cevModuleCFP2CFP2WDMDS1HL OBJECT IDENTIFIER ::= { cevModuleCFP2Type 6 } -- 200G, 100G, WDM Digital CFP2 pluggable +cevModuleCFP2WDMDS100HL OBJECT IDENTIFIER ::= { cevModuleCFP2Type 7 } -- Low cost Z51 100G only DCO +cevModuleCFP2400DP04M25 OBJECT IDENTIFIER ::= { cevModuleCFP2Type 9 } -- AC 400G DCO CFP2 cevModuleN92KType OBJECT IDENTIFIER ::= { cevModule 114 } -- These cards are used for Nexus 9200 series cevN9KC9264PQ OBJECT IDENTIFIER ::= { cevModuleN92KType 1 } -- 64x40G QSFP GEM Card for Nexus 9200 TOR platform @@ -8647,14 +9719,15 @@ cevN9KC9272QFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KTyp cevN9KC9236CFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 5 } -- Nexus 9000 Series fixed module with 36x100G QSFP25 Ethernet cevN9KC92304QCFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 6 } -- Nexus 9000 Series fixed module with 56x40G+8x100G QSFP Ethernet cevN9KC9232CFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 7 } -- Nexus N9K-C9232C Series fixed module with 32x40G/100G QSFP28 Ethernet -cevN9KC92348GCXFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 8 } -- TOR 48x100M/1G Base-T + 4x10/25G SPF28 + 2x40/100G QSFP28 +cevN9KC92348GCXFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 8 } -- TOR 48x100M/1G Base-T + 4x10/25G SPF28 + 2x40/100G QSFP28 +cevN9KC9232EB1FixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 9 } -- 32 port 800G module cevModuleN9KType OBJECT IDENTIFIER ::= { cevModule 115 } -- Group for the Nexus9000 Module cevN9KFabricExtenderConnectionCable OBJECT IDENTIFIER ::= { cevModuleN9KType 1 } -- N9K FEX Fabric Extender cabling cevModuleFPRType OBJECT IDENTIFIER ::= { cevModule 116 } -- These are modules that are used in Cisco FirePOWER series -cevFPR9KSUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 1 } -- FirePOWER 9K Supervisor Module -cevFPRNetworkModule4X40G OBJECT IDENTIFIER ::= { cevModuleFPRType 2 } -- FirePOWER Network Module 4x40G +cevFPR9KSUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 1 } -- FirePOWER 9K Supervisor Module +cevFPRNetworkModule4X40G OBJECT IDENTIFIER ::= { cevModuleFPRType 2 } -- FirePOWER Network Module 4x40G cevFPRNetworkModule8X10G OBJECT IDENTIFIER ::= { cevModuleFPRType 3 } -- FirePOWER Network Module 8x10G cevFPR4120SUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 4 } -- FirePOWER 4120 Supervisor Module cevFPR4140SUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 5 } -- FirePOWER 4140 Supervisor Module @@ -8663,13 +9736,13 @@ cevFPRDNM2X100GF OBJECT IDENTIFIER ::= { cevModuleFPRType cevFPRDNM2X100G OBJECT IDENTIFIER ::= { cevModuleFPRType 9 } -- Firepower Series - 2 port 100G Network Module, Double Width cevFPRNM6X10LRF OBJECT IDENTIFIER ::= { cevModuleFPRType 11 } -- Cisco FirePower 6 port 10G LR FTW (Fail to Wire) Network Module cevFPRNM6X10SRF OBJECT IDENTIFIER ::= { cevModuleFPRType 12 } -- Cisco FirePower 6 port 10G SR FTW (Fail to Wire) Network Module -cevFPRNM6X1SXF OBJECT IDENTIFIER ::= { cevModuleFPRType 13 } -- Cisco FirePower 6 port 1G SX FTW (Fail to Wire) Network Module -cevFprUS23070 OBJECT IDENTIFIER ::= { cevModuleFPRType 14 } -- 8x1GE multi-mode copper EPM with programmable fail-to-wire (FTW) functionality +cevFPRNM6X1SXF OBJECT IDENTIFIER ::= { cevModuleFPRType 13 } -- Cisco FirePower 6 port 1G SX FTW (Fail to Wire) Network Module +cevFprUS23070 OBJECT IDENTIFIER ::= { cevModuleFPRType 14 } -- 8x1GE multi-mode copper EPM with programmable fail-to-wire (FTW) functionality cevFprUS23071 OBJECT IDENTIFIER ::= { cevModuleFPRType 15 } -- 8x1GE SX Fiber EPM with programmable fail-to-wire (FTW) functionality cevFprUS23072 OBJECT IDENTIFIER ::= { cevModuleFPRType 16 } -- 8x1/10GE SFP/SFP+ EPM (Regents Park) cevFprUS23073 OBJECT IDENTIFIER ::= { cevModuleFPRType 17 } -- 8x10GE LR Fiber EPM with programmable fail-to-wire (FTW) functionality cevFprUS23074 OBJECT IDENTIFIER ::= { cevModuleFPRType 18 } -- 8x10GE SR Fiber EPM with programmable fail-to-wire (FTW) functionality -cevFPRNM8X1F OBJECT IDENTIFIER ::= { cevModuleFPRType 19 } -- 8x1GE multi-mode copper EPM with programmable fail-to-wire (FTW) functionality +cevFPRNM8X1F OBJECT IDENTIFIER ::= { cevModuleFPRType 19 } -- 8x1GE multi-mode copper EPM with programmable fail-to-wire (FTW) functionality cevFPRNM2X40GF OBJECT IDENTIFIER ::= { cevModuleFPRType 20 } -- Cisco FirePower 2 port 40G FTW (Fail to Wire) Network Module cevFPRNetworkModule8X1G OBJECT IDENTIFIER ::= { cevModuleFPRType 21 } -- FirePOWER Network Module 8x1G cevFPR9KNM2X100G OBJECT IDENTIFIER ::= { cevModuleFPRType 22 } -- Cisco FirePower 2 port 100G Network Module @@ -8677,6 +9750,15 @@ cevFPR9KNM4X100G OBJECT IDENTIFIER ::= { cevModuleFPRType cevFPR4125SUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 24 } -- FirePOWER 4125 Supervisor Module cevFPR4145SUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 25 } -- FirePOWER 4145 Supervisor Module cevFPR4115SUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 26 } -- FirePOWER 4115 Supervisor Module +cevFPR4112SUPFixedModule OBJECT IDENTIFIER ::= { cevModuleFPRType 27 } -- FirePOWER 4112 Supervisor Module +cevFPRNM6X25SRF OBJECT IDENTIFIER ::= { cevModuleFPRType 35 } -- Cisco FirePower 6-port 25G SR SFP Fail-to-Wire Network Module +cevFPRNM6X25LRF OBJECT IDENTIFIER ::= { cevModuleFPRType 36 } -- Cisco FirePower 6-port 25G LR SFP Fail-to-Wire Network Module +cevFPRNM8x1GF OBJECT IDENTIFIER ::= { cevModuleFPRType 37 } -- Cisco FirePower 8-port 1G RJ45 Copper Fail-to-Wire Network Module +cevChassisFanFPR3100 OBJECT IDENTIFIER ::= { cevModuleFPRType 39 } -- Cisco Firepower 3100 cooling Fan +cevModuleFPR3100SSD900 OBJECT IDENTIFIER ::= { cevModuleFPRType 40 } -- Cisco Firepower 3100 SSD 900GB +cevFPRNM8X10Gng OBJECT IDENTIFIER ::= { cevModuleFPRType 41 } -- Firepower Network Module 8x10G SFP+ +cevFPRNM8X25Gng OBJECT IDENTIFIER ::= { cevModuleFPRType 42 } -- Firepower Network Module 8x25G SFP+ +cevFPRNM4X40Gng OBJECT IDENTIFIER ::= { cevModuleFPRType 43 } -- Firepower Network Module 4x40G QSFP+ cevModuleQSFP28 OBJECT IDENTIFIER ::= { cevModule 117 } -- QSFP28 group of Optics cevQSFP100GELR4 OBJECT IDENTIFIER ::= { cevModuleQSFP28 1 } -- 100GE-LR4 QSFP Module @@ -8686,9 +9768,8 @@ cevQSFP100GELR4S OBJECT IDENTIFIER ::= { cevModuleQSFP28 cevQSFP100GEAOC10M OBJECT IDENTIFIER ::= { cevModuleQSFP28 5 } -- 100GE-AOC10M QSFP Module cevQSFP28Unknown OBJECT IDENTIFIER ::= { cevModuleQSFP28 6 } -- Unknown or Unsupported QSFP28 Module cevQSFP100GEDWDM2 OBJECT IDENTIFIER ::= { cevModuleQSFP28 7 } -- QSFP28 DWDM transceiver using 2 wavelengths on a 1550nm DWDM grid with a reach up to 80km - -cevModuleQSFP28S OBJECT IDENTIFIER ::= { cevModule 118 } -- QSFP28S group +cevModuleQSFP28S OBJECT IDENTIFIER ::= { cevModule 118 } -- QSFP28S group cevQSFP100GSR4S OBJECT IDENTIFIER ::= { cevModuleQSFP28S 1 } -- 100GBASE SR4 QSFP Transceiver, MPO, 100m, Enterprise Class cevQSFP100GCWDM4S OBJECT IDENTIFIER ::= { cevModuleQSFP28S 2 } -- 100GBASE CWDM4 QSFP Transceiver, LC, 2km, Enterprise Class cevQSFP100GPSM4S OBJECT IDENTIFIER ::= { cevModuleQSFP28S 3 } -- 100GBASE PSM4 QSFP Transceiver, MPO, 500m, Enterprise Class @@ -8696,23 +9777,23 @@ cevQSFP100GLR4S OBJECT IDENTIFIER ::= { cevModuleQSFP28S cevQSFP100GAOC1M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 5 } -- 100GBASE QSFP Active Optical Cable, 1m cevQSFP100GAOC2M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 6 } -- 100GBASE QSFP Active Optical Cable, 2m cevQSFP100GAOC3M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 7 } -- 100GBASE QSFP Active Optical Cable, 3m -cevQSFP100GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 8 } -- 100GBASE QSFP Active Optical Cable, 5m +cevQSFP100GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 8 } -- 100GBASE QSFP Active Optical Cable, 5m cevQSFP100GAOC7M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 9 } -- 100GBASE QSFP Active Optical Cable, 7m cevQSFP100GAOC10M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 10 } -- 100GBASE QSFP Active Optical Cable, 10m cevQSFP100GAOC15M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 11 } -- 100GBASE QSFP Active Optical Cable, 15m -cevQSFP100GAOC20M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 12 } -- 100GBASE QSFP Active Optical Cable, 20m +cevQSFP100GAOC20M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 12 } -- 100GBASE QSFP Active Optical Cable, 20m cevQSFP100GAOC25M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 13 } -- 100GBASE QSFP Active Optical Cable, 25m -cevQSFP100GAOC30M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 14 } -- 100GBASE QSFP Active Optical Cable, 30m +cevQSFP100GAOC30M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 14 } -- 100GBASE QSFP Active Optical Cable, 30m cevQSFP100GCU1M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 15 } -- 100GBASE-CR4 Passive Copper Cable, 1m -cevQSFP100GCU2M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 16 } -- 100GBASE-CR4 Passive Copper Cable, 2m +cevQSFP100GCU2M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 16 } -- 100GBASE-CR4 Passive Copper Cable, 2m cevQSFP100GCU3M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 17 } -- 100GBASE-CR4 Passive Copper Cable, 3m cevQSFP100GCU4M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 18 } -- 100GBASE-CR4 Passive Copper Cable, 4m cevQSFP100GCU5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 19 } -- 100GBASE-CR4 Passive Copper Cable, 5m -cevQSFP4SFP25GCU1M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 20 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 1m -cevQSFP4SFP25GCU2M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 21 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 2m -cevQSFP4SFP25GCU3M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 22 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 3m -cevQSFP4SFP25GCU4M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 23 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 4m -cevQSFP4SFP25GCU5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 24 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 5m +cevQSFP4SFP25GCU1M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 20 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 1m +cevQSFP4SFP25GCU2M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 21 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 2m +cevQSFP4SFP25GCU3M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 22 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 3m +cevQSFP4SFP25GCU4M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 23 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 4m +cevQSFP4SFP25GCU5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 24 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 5m cevNonCiscoQSFP100GSR4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 25 } -- Non Cisco QSFP100G SR optics for NCS-5508 Chassis cevNonCiscoQSFP100GLR4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 26 } -- Non Cisco QSFP100G LR optics for NCS-5508 Chassis cevNonCiscoQSFP100GCWDM4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 27 } -- Non Cisco QSFP100G CWDW optics for NCS-5508 Chassis @@ -8725,14 +9806,39 @@ cevGF100GCWDM4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S cevQSFP100GER4LS OBJECT IDENTIFIER ::= { cevModuleQSFP28S 34 } -- 100GBASE QSFP Transceiver, 25-40KM reach over SMF, Duplex LC cevQSFP100GFRS OBJECT IDENTIFIER ::= { cevModuleQSFP28S 35 } -- QSFP28 100GBase-FR module, 2km SMF cevQSFP40100SRBD OBJECT IDENTIFIER ::= { cevModuleQSFP28S 36 } -- QSFP28 dual rate 40/100G SRBD module, PID = QSFP-40/100-SRBD -cevQSFP40100GSR4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 37 } -- QSFP28 dual rate 40/100G SR4 module, PID = QSFP-40/100G-SR4 +cevQSFP40100GSR4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 37 } -- QSFP28 dual rate 40/100G SR4 module, PID = QSFP-40/100G-SR4 +cevQSFP100GLRS OBJECT IDENTIFIER ::= { cevModuleQSFP28S 38 } -- QSFP28 100GBase-LR module +cevQSFP100GLR4I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 39 } -- QSFP28 100GBase module 10km, I-Temp +cevQSFP100G4W40I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 40 } -- QSFP28 100GBase module, 40km, I-Temp +cevQSFP100GDRS OBJECT IDENTIFIER ::= { cevModuleQSFP28S 41 } -- QSFP28 100GBase-DR module, 500m SMF +cevQSFP100G4W10I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 42 } -- QSFP28 100GBase module, 10km, I-Temp +cevQ100ZR4SEA OBJECT IDENTIFIER ::= { cevModuleQSFP28S 43 } -- QSFP28, 100GBase module, 80km, C-Temp +cevQSFP100GCUDOT5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 44 } -- 100GBASE-CR4 Passive Copper Cable, 0.5m +cevQSFP100GCU1DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 45 } -- 100GBASE-CR4 Passive Copper Cable, 1.5m +cevQSFP100GCU2DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 46 } -- 100GBASE-CR4 Passive Copper Cable, 2.5m +cevQ4SFP25GCUDOT5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 47 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 0.5m +cevQ4SFP25GCU1DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 48 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 1.5m +cevQ4SFP25GCU2DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFP28S 49 } -- 100GBase QSFP to 4xSFP25G Passive Copper Splitter Cable, 2.5m +cevQSFP100GZR4S OBJECT IDENTIFIER ::= { cevModuleQSFP28S 50 } -- QSFP28, 100GBase module, 80km SMF, C-Temp +cevQSFP100GZR4I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 51 } -- QSFP28, 100GBase module, 80km SMF, I-Temp +cevQSFP100GSL4 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 52 } -- QSFP28, 100GBase module, 30m, MMF +cevQSFP100GERLS OBJECT IDENTIFIER ::= { cevModuleQSFP28S 53 } -- QSFP 100GBase-ELR-S module +cevQSFP1004W40I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 54 } -- QSFP 100GBase-4W40-I module +cevQSFP100GB20D4I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 55 } -- QSFP28, 100GBase Downstream 20km, I-Temp +cevQSFP100GB20U4I OBJECT IDENTIFIER ::= { cevModuleQSFP28S 56 } -- QSFP28, 100GBase Upstream 20km, I-Temp +cevModuleQSFP100GSR1dot2 OBJECT IDENTIFIER ::= { cevModuleQSFP28S 57 } -- Cisco QSFP28 100G SR 1.2 Pluggable Optics Module +cevQSFP100GB40DI OBJECT IDENTIFIER ::= { cevModuleQSFP28S 58 } -- QSFP28, 100GBase Downstream 40km, I-Temp +cevQSFP100GB40UI OBJECT IDENTIFIER ::= { cevModuleQSFP28S 59 } -- QSFP28, 100GBase Upstream 40km, I-Temp +cevNonCiscoQSFP100GER4L OBJECT IDENTIFIER ::= { cevModuleQSFP28S 60 } -- Non-Cisco QSFP28 ER4L Pluggable Optics Module +cevQSFP100GB40BiDi OBJECT IDENTIFIER ::= { cevModuleQSFP28S 61 } -- OID for QSFP-100G-B40-D/U-I + cevModuleNCS4K OBJECT IDENTIFIER ::= { cevModule 119 } -- cevModuleNCS4K Series cevModuleNCS4216RSP OBJECT IDENTIFIER ::= { cevModuleNCS4K 1 } -- NCS 4216 Router & Switching Processor and Controller - 400G cevModuleNCS420XRSP OBJECT IDENTIFIER ::= { cevModuleNCS4K 2 } -- NCS 4206/4204 Router & Switching Processor and Controller - 400G cevModuleNCS4K4T12GPS OBJECT IDENTIFIER ::= { cevModuleNCS4K 3 } -- NCS 4202 Switch Processor, Base Scale, 64Gbps cevModuleNCS4201RSP OBJECT IDENTIFIER ::= { cevModuleNCS4K 4 } -- NCS 4201 Route Switch Processor, BaseScale, 64Gbps,FIXED 24GE Fiber and 4-10GE - Modular PSU and FAN -cevModuleNCS4206RSP2A64G OBJECT IDENTIFIER ::= { cevModuleNCS4K 5 } -- NCS4206 Route Switch Processor 2, Base Scale, 64Gbps +cevModuleNCS4206RSP2A64G OBJECT IDENTIFIER ::= { cevModuleNCS4K 5 } -- NCS4206 Route Switch Processor 2, Base Scale, 64Gbps cevModuleNCS4206RSP2A128G OBJECT IDENTIFIER ::= { cevModuleNCS4K 6 } -- NCS4206 Route Switch Processor 2, Base Scale, 128Gbps cevModuleASA5516Type OBJECT IDENTIFIER ::= { cevModule 120 } -- cevModule5516 Type Chassis @@ -8743,9 +9849,9 @@ cevModuleNCS1002RP0 OBJECT IDENTIFIER ::= { cevModuleNCS1002 cevModuleSFP25S OBJECT IDENTIFIER ::= { cevModule 122 } -- Module for SFP running at 25 Gbps -cevSFPH25GCU1M OBJECT IDENTIFIER ::= { cevModuleSFP25S 1 } -- 25GBASE-CU SFP28 Cable 1 Meter -cevSFPH25GCU2M OBJECT IDENTIFIER ::= { cevModuleSFP25S 2 } -- 25GBASE-CU SFP28 Cable 2 Meter -cevSFPH25GCU3M OBJECT IDENTIFIER ::= { cevModuleSFP25S 3 } -- 25GBASE-CU SFP28 Cable 3 Meter +cevSFPH25GCU1M OBJECT IDENTIFIER ::= { cevModuleSFP25S 1 } -- 25GBASE-CU SFP28 Cable 1 Meter +cevSFPH25GCU2M OBJECT IDENTIFIER ::= { cevModuleSFP25S 2 } -- 25GBASE-CU SFP28 Cable 2 Meter +cevSFPH25GCU3M OBJECT IDENTIFIER ::= { cevModuleSFP25S 3 } -- 25GBASE-CU SFP28 Cable 3 Meter cevSFPH25GCU5M OBJECT IDENTIFIER ::= { cevModuleSFP25S 4 } -- 25GBASE-CU SFP28 Cable 5 Meter cevSFP25GAOC1M OBJECT IDENTIFIER ::= { cevModuleSFP25S 5 } -- Ethernet Direct Attach Active Optical 1m SFP28 cevSFP25GAOC2M OBJECT IDENTIFIER ::= { cevModuleSFP25S 6 } -- Ethernet Direct Attach Active Optical 2m SFP28 @@ -8760,21 +9866,37 @@ cevSFPH25GCU1DOT5M OBJECT IDENTIFIER ::= { cevModuleSFP25S cevSFPH25GCU2DOT5M OBJECT IDENTIFIER ::= { cevModuleSFP25S 15 } -- 25GBASE-CU SFP28 Cable 2.5 Meter cevSFPH25GCU4M OBJECT IDENTIFIER ::= { cevModuleSFP25S 16 } -- 25GBASE-CU SFP28 Cable 4 Meter cevSFP25GAOC4M OBJECT IDENTIFIER ::= { cevModuleSFP25S 17 } -- Ethernet Direct Attach Active Optical 4m SFP28 +cevSFP1025GLRI OBJECT IDENTIFIER ::= { cevModuleSFP25S 18 } -- SFP28 Dual Rate 10/25G LR Module, I-Temp +cevSFP1025GBXDI OBJECT IDENTIFIER ::= { cevModuleSFP25S 19 } -- Downstream SFP28 Dual Rate 10/25G Module,I-Temp +cevSFP1025GBXUI OBJECT IDENTIFIER ::= { cevModuleSFP25S 20 } -- Upstream SFP28 Dual Rate 10/25G Module, I-Temp +cevSFP25GERI OBJECT IDENTIFIER ::= { cevModuleSFP25S 21 } -- SFP28 ER Module 30/40km, I-Temp +cevSFP25GBX40DI OBJECT IDENTIFIER ::= { cevModuleSFP25S 22 } -- Downstream SFP28 BiDi 25G Module, 40km, I-Temp +cevSFP25GBX40UI OBJECT IDENTIFIER ::= { cevModuleSFP25S 23 } -- Upstream SFP28 BiDi 25G Module, 40km, I-Temp cevModuleISR4200Type OBJECT IDENTIFIER ::= { cevModule 123 } -- These are modules that are used in Cisco ISR 4200 Series Router -cevModuleISR4221XRP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 7 } -- Cisco ISR 4221X Routing Processor Module +cevModuleISR4221RP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 1 } -- Cisco ISR 4221 Routing Processor Module +cevModuleISR4221FP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 2 } -- Cisco ISR 4221 Forwarding Processor Module +cevModuleISR4221NIM OBJECT IDENTIFIER ::= { cevModuleISR4200Type 3 } -- Cisco ISR 4221 Built-In Network Interface Module controller +cevModuleISR4221BRP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 4 } -- Cisco ISR 4221 Boost Routing Processor Module +cevModuleISR4221BFP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 5 } -- Cisco ISR 4221 Boost Forwarding Processor Module +cevModuleISR4221BNIM OBJECT IDENTIFIER ::= { cevModuleISR4200Type 6 } -- Cisco ISR 4221 Boost Built-In Network Interface Module controller +cevModuleISR4221XRP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 7 } -- Cisco ISR 4221X Routing Processor Module cevModuleISR4221XFP OBJECT IDENTIFIER ::= { cevModuleISR4200Type 8 } -- Cisco ISR 4221X Forwarding Processor Module cevModuleISR4221XNIM OBJECT IDENTIFIER ::= { cevModuleISR4200Type 9 } -- Cisco ISR 4221x Built-In Network Interface Module controller cevModuleCDBType OBJECT IDENTIFIER ::= { cevModule 124 } -- Module for Cisco Digital building switches -cevModuleCDB8P OBJECT IDENTIFIER ::= { cevModuleCDBType 1 } -- Cisco Digital Building 8 x FE, PoE+ Support, 2 x 1G -cevModuleCDB8U OBJECT IDENTIFIER ::= { cevModuleCDBType 2 } -- Cisco Digital Building 8 x FE, UPoE Support, 2 x 1G +cevModuleCDB8P OBJECT IDENTIFIER ::= { cevModuleCDBType 1 } -- Cisco Digital Building 8 x FE, PoE+ Support, 2 x 1G +cevModuleCDB8U OBJECT IDENTIFIER ::= { cevModuleCDBType 2 } -- Cisco Digital Building 8 x FE, UPoE Support, 2 x 1G cevModuleSMType OBJECT IDENTIFIER ::= { cevModule 125 } -- Module for SM Types cevModuleSM8FXS12FXO OBJECT IDENTIFIER ::= { cevModuleSMType 1 } -- 8 port Analog FXS and 12 port Analog FXO RJ21 Single Wide Service Module cevModuleSM16FXS2FXO OBJECT IDENTIFIER ::= { cevModuleSMType 2 } -- 16 port Analog FXS and 2 port Analog FXO RJ21 Single Wide Service Module cevModuleSM24FXS4FXO OBJECT IDENTIFIER ::= { cevModuleSMType 3 } -- 24 port Analog FXS and 4 port Analog FXO RJ21 Single Wide Service Module cevModuleSM72FXS OBJECT IDENTIFIER ::= { cevModuleSMType 4 } -- 72 port Analog FXS RJ21 Double Wide Service Module +cevModuleSMV144FXS OBJECT IDENTIFIER ::= { cevModuleSMType 9 } -- 144 port Analog FXS Voice Gateway Fixed Service Module +cevModuleSMV132FXS6FXO OBJECT IDENTIFIER ::= { cevModuleSMType 10} -- 132 port Analog FXS and 6 port Analog FXO Voice Gateway Fixed Service Module +cevModuleSMV84FXS6FXO OBJECT IDENTIFIER ::= { cevModuleSMType 11} -- 84 port Analog FXS and 6 port Analog FXO Voice Gateway Fixed Service Module + cevModule95xxType OBJECT IDENTIFIER ::= { cevModule 126 } -- Module for 95xx Types @@ -8796,22 +9918,43 @@ cevModuleC930048T OBJECT IDENTIFIER ::= { cevModule93xxType cevModuleC930048P OBJECT IDENTIFIER ::= { cevModule93xxType 6 } -- Catalyst 9300 48-port PoE+ switch cevModuleC930048U OBJECT IDENTIFIER ::= { cevModule93xxType 7 } -- Catalyst 9300 48-port UPOE switch cevModuleC930048UXM OBJECT IDENTIFIER ::= { cevModule93xxType 8 } -- Catalyst 9300 48-port switch, with 12 ports of mGig and 36 ports of UPOE +cevModuleC930048UN OBJECT IDENTIFIER ::= { cevModule93xxType 9 } -- Catalyst 9300 48-port of 5Gbps cevModuleC930024S OBJECT IDENTIFIER ::= { cevModule93xxType 10 } -- Catalyst 9300 24-port 1G SFP switch cevModuleC930048S OBJECT IDENTIFIER ::= { cevModule93xxType 11 } -- Catalyst 9300 48-port 1G SFP switch - +cevModuleC930024UBX OBJECT IDENTIFIER ::= { cevModule93xxType 12 } -- Catalyst 9300 24-port mGig and UPOE switch with support of deepbuffer feature for all interfaces +cevModuleC930048UB OBJECT IDENTIFIER ::= { cevModule93xxType 13 } -- Catalyst 9300 48-port UPOE switch with support of deepbuffer feature for all interfaces +cevModuleC930024UB OBJECT IDENTIFIER ::= { cevModule93xxType 14 } -- Catalyst 9300 24-port UPOE switch with support of deepbuffer feature for all interfaces +cevModuleC930024H OBJECT IDENTIFIER ::= { cevModule93xxType 15 } -- Catalyst 9300 24-port UPOE+ switch +cevModuleC930048H OBJECT IDENTIFIER ::= { cevModule93xxType 16 } -- Catalyst 9300 48-port UPOE+ switch +cevModuleC930024UUL OBJECT IDENTIFIER ::= { cevModule93xxType 17 } -- Catalyst 9300 24-port UPOE switch +cevModuleC930048UUL OBJECT IDENTIFIER ::= { cevModule93xxType 18 } -- Catalyst 9300 48-port UPOE switch +cevModuleC9300X12Y OBJECT IDENTIFIER ::= { cevModule93xxType 19 } -- Catalyst 9300X Pacman 12 ports Catalyst 9300X switch +cevModuleC9300X24Y OBJECT IDENTIFIER ::= { cevModule93xxType 20 } -- Catalyst 9300X Pacman 24 ports Catalyst 9300X switch +cevModuleC9300X48HX OBJECT IDENTIFIER ::= { cevModule93xxType 21 } -- Catalyst 9300X 48 ports mGig with 90W POE Catalyst 9300X switch +cevModuleC9300X48T OBJECT IDENTIFIER ::= { cevModule93xxType 22 } -- Catalyst 9300X 48 ports mGig 9300X switch +cevModuleC9300X24HX OBJECT IDENTIFIER ::= { cevModule93xxType 23 } -- Catalyst 9300x 24 ports mgig with 90W POE switch +cevModuleC9300X48HXN OBJECT IDENTIFIER ::= { cevModule93xxType 24 } -- Catalyst 9300X 48 ports mgig switch -cevModule94xxType OBJECT IDENTIFIER ::= { cevModule 128 } -- Module for 94xx Types -cevModuleC9400SUP1 OBJECT IDENTIFIER ::= { cevModule94xxType 1 } -- Cisco Catalyst 9400 Series Supervisor 1 Module +cevModule94xxType OBJECT IDENTIFIER ::= { cevModule 128 } -- Module for 94xx Types +cevModuleC9400SUP1 OBJECT IDENTIFIER ::= { cevModule94xxType 1 } -- Cisco Catalyst 9400 Series Supervisor 1 Module cevModuleC9400SUP1XL OBJECT IDENTIFIER ::= { cevModule94xxType 2 } -- Cisco Catalyst 9400 Series Supervisor 1 XL Module -cevModuleC9400LC48U OBJECT IDENTIFIER ::= { cevModule94xxType 3 } -- Cisco Catalyst 9400 Series 48-Port UPOE 10/100/1000 (RJ-45) Line Card +cevModuleC9400LC48U OBJECT IDENTIFIER ::= { cevModule94xxType 3 } -- Cisco Catalyst 9400 Series 48-Port UPOE 10/100/1000 (RJ-45) Line Card cevModuleC9400LC48UX OBJECT IDENTIFIER ::= { cevModule94xxType 4 } -- Cisco Catalyst 9400 Series 48-Port UPOE w/ 24p mGig 24p RJ-45 -cevModuleC9400LC48T OBJECT IDENTIFIER ::= { cevModule94xxType 5 } -- Cisco Catalyst 9400 Series 48-Port 10/100/1000 (RJ-45) Line Card +cevModuleC9400LC48T OBJECT IDENTIFIER ::= { cevModule94xxType 5 } -- Cisco Catalyst 9400 Series 48-Port 10/100/1000 (RJ-45) Line Card cevModuleC9400LC48P OBJECT IDENTIFIER ::= { cevModule94xxType 6 } -- Cisco Catalyst 9400 Series 48-Port PoE+ 10/100/1000 (RJ-45) Line Card cevModuleC9400LC24XS OBJECT IDENTIFIER ::= { cevModule94xxType 7 } -- Cisco Catalyst 9400 Series 24-Port 10 Gigabit Ethernet (SFP+) Line Card cevModuleC9400LC48S OBJECT IDENTIFIER ::= { cevModule94xxType 8 } -- Cisco Catalyst 9400 Series 48-Port GE (SFP) Line Card cevModuleC9400LC24S OBJECT IDENTIFIER ::= { cevModule94xxType 9 } -- Cisco Catalyst 9400 Series 24-Port GE (SFP) Line Card cevModuleC9400SUP1XLY OBJECT IDENTIFIER ::= { cevModule94xxType 10 } -- Cisco Catalyst 9400 Series Supervisor 1XL Module with 25G - +cevModuleC9400LC48H OBJECT IDENTIFIER ::= { cevModule94xxType 11 } -- Cisco Catalyst 9400 Series 48-Port UPOE 10/100/1000 (RJ-45) Line Card with 90W +cevModuleC9400LC48HN OBJECT IDENTIFIER ::= { cevModule94xxType 14 } -- Cisco Catalyst 9400 Series 48-Port 5Gig/mGig 90W BT (RJ-45) Line card +cevModuleC9400XSUP2XL OBJECT IDENTIFIER ::= { cevModule94xxType 15 } -- Cisco Catalyst 9400 Series Supervisor 2XL Module +cevModuleC9400LC48HX OBJECT IDENTIFIER ::= { cevModule94xxType 16 } -- Cisco Catalyst 9400 Series 48-Port UPOE+ mGig (RJ-45) +cevModuleC9400LC48TX OBJECT IDENTIFIER ::= { cevModule94xxType 17 } -- Cisco Catalyst 9400 Series 48-Port mGig (RJ-45) +cevModuleC9400XSUP2 OBJECT IDENTIFIER ::= { cevModule94xxType 18 } -- Cisco Catalyst 9400 Series Supervisor 2 Module +cevModuleC9400LC48XS OBJECT IDENTIFIER ::= { cevModule94xxType 19 } -- Cisco Catalyst 9400 Series 48-Port 10 Gigabit Ethernet (SFP+) +cevModuleC9400LC12QC OBJECT IDENTIFIER ::= { cevModule94xxType 20 } -- Cisco Catalyst 9400 Series 12-port 40/100 Gig (QSFP/QSFP28) Line Card +cevModuleC9400LC24XY OBJECT IDENTIFIER ::= { cevModule94xxType 21 } -- Cisco Catalyst 9400 Series 24-port 25/10 Gig (SFP28/SFP+/SFP) Line Card cevModuleNCS1000Type OBJECT IDENTIFIER ::= { cevModule 129 } -- Modules for NCS1K Platforms cevModuleNCS1000RP0 OBJECT IDENTIFIER ::= { cevModuleNCS1000Type 1 } -- Route Processor 0 for NCS1K Platforms (NCS1001/NCS1002) @@ -8826,32 +9969,52 @@ cevModuleN520X20G4ZA OBJECT IDENTIFIER ::= { cevModuleNCS520T cevModuleN520X20G4ZD OBJECT IDENTIFIER ::= { cevModuleNCS520Type 7 } -- NCS520 Route Switch Processor , Base Scale, 60Gbps cevModuleCat92xxType OBJECT IDENTIFIER ::= { cevModule 131 } -cevModuleC9200L48T4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 1 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks -cevModuleC9200L24T4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 2 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks -cevModuleC9200L24T4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 3 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks -cevModuleC9200L48T4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 4 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks -cevModuleC9200L24P4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 5 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks. PoE support for 720W -cevModuleC9200L48P4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 6 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks. PoE support for 720W -cevModuleC9200L24P4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 7 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks. PoE support for 720W -cevModuleC9200L48P4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 8 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks. PoE support for 1440W -cevModuleC9200L24PXG4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 9 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 4 SFP+ uplinks. PoE support for 720W -cevModuleC9200L24PXG2Y OBJECT IDENTIFIER ::= { cevModuleCat92xxType 10 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 720W -cevModuleC9200L48PXG4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 11 } -- Catalyst 9200L 36 Gig + 12 mGig Downlinks, 4 SFP+ uplinks. PoE support for 1440W -cevModuleC9200L48PXG2Y OBJECT IDENTIFIER ::= { cevModuleCat92xxType 12 } -- Catalyst 9200L 40 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 1440W -cevModuleC920024T OBJECT IDENTIFIER ::= { cevModuleCat92xxType 13 } -- Catalyst 9200 24 Gig downlinks -cevModuleC920048T OBJECT IDENTIFIER ::= { cevModuleCat92xxType 14 } -- Catalyst 9200 48 Gig downlinks -cevModuleC920024P OBJECT IDENTIFIER ::= { cevModuleCat92xxType 15 } -- Catalyst 9200 24 Gig downlinks. PoE support for 720W -cevModuleC920048P OBJECT IDENTIFIER ::= { cevModuleCat92xxType 16 } -- Catalyst 9200 48 Gig downlinks. PoE support for 1440W +cevModuleC9200L48T4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 1 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks +cevModuleC9200L24T4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 2 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks +cevModuleC9200L24T4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 3 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks +cevModuleC9200L48T4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 4 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks +cevModuleC9200L24P4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 5 } -- Catalyst 9200L 24 Gig Downlinks, 4 Gig uplinks. PoE support for 740W +cevModuleC9200L48P4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 6 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks. PoE support for 1480W +cevModuleC9200L24P4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 7 } -- Catalyst 9200L 24 Gig Downlinks, 4 SFP+ uplinks. PoE support for 740W +cevModuleC9200L48P4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 8 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+ uplinks. PoE support for 1480W +cevModuleC9200L24PXG4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 9 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 4 SFP+ uplinks. PoE support for 740W +cevModuleC9200L24PXG2Y OBJECT IDENTIFIER ::= { cevModuleCat92xxType 10 } -- Catalyst 9200L 16 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 740W +cevModuleC9200L48PXG4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 11 } -- Catalyst 9200L 36 Gig + 12 mGig Downlinks, 4 SFP+ uplinks. PoE support for 1480W +cevModuleC9200L48PXG2Y OBJECT IDENTIFIER ::= { cevModuleCat92xxType 12 } -- Catalyst 9200L 40 Gig + 8 mGig Downlinks, 2 x 25 Gig uplinks. PoE support for 1480W +cevModuleC920024T OBJECT IDENTIFIER ::= { cevModuleCat92xxType 13 } -- Catalyst 9200 24 Gig downlinks +cevModuleC920048T OBJECT IDENTIFIER ::= { cevModuleCat92xxType 14 } -- Catalyst 9200 48 Gig downlinks +cevModuleC920024P OBJECT IDENTIFIER ::= { cevModuleCat92xxType 15 } -- Catalyst 9200 24 Gig downlinks. PoE support for 740W +cevModuleC920048P OBJECT IDENTIFIER ::= { cevModuleCat92xxType 16 } -- Catalyst 9200 48 Gig downlinks. PoE support for 1480W +cevModuleC920024PXG OBJECT IDENTIFIER ::= { cevModuleCat92xxType 17 } -- Catalyst 9200 16 Gig + 8 mGig downlinks. PoE support for 740W +cevModuleC920048PXG OBJECT IDENTIFIER ::= { cevModuleCat92xxType 18 } -- Catalyst 9200 40 Gig + 8 mGig downlinks. PoE support for 1480W +cevModuleC9200L48PL4X OBJECT IDENTIFIER ::= { cevModuleCat92xxType 21 } -- Catalyst 9200L 48 Gig Downlinks, 4 SFP+uplinks. PoE support for 740W +cevModuleC9200L48PL4G OBJECT IDENTIFIER ::= { cevModuleCat92xxType 22 } -- Catalyst 9200L 48 Gig Downlinks, 4 Gig uplinks. PoE support for 740W +cevModuleC920048PL OBJECT IDENTIFIER ::= { cevModuleCat92xxType 23 } -- Catalyst 9200 48 Gig downlinks. PoE support for 740W + cevModuleThirdPartyType OBJECT IDENTIFIER ::= { cevModule 132 } -- Group for the third party Type of cards +cevModuleWedge10012VF OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 1 } -- Facebook fixed module with 32 100G Ethernet ports +cevModuleS4048TON OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 2 } -- Dell fixed module with 48x10G and 6x40G Ethernet ports +cevModuleZ9100ON OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 3 } -- Dell fixed module with 32x40/100G QSFP28 and 2x10G SFP+ Ethernet ports +cevModuleT7032IX1 OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 4 } -- Dell fixed module with 32x100G Ethernet ports +cevModule731254XOACB OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 5 } -- Walmart fixed chassis with 32x100G Ethernet Module +cevModule771232XOACB OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 6 } -- Walmart fixed module with 32x100G Ethernet Ports +cevModuleDX010 OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 7 } -- Celestica fixed module with 32x100G Ethernet Ports +cevModuleD2062 OBJECT IDENTIFIER ::= { cevModuleThirdPartyType 8 } -- Celestica fixed module with 48x10G and 6x40G Ethernet Ports -cevModule96xxType OBJECT IDENTIFIER ::= { cevModule 133 } -- Module for 96xx Types +cevModule96xxType OBJECT IDENTIFIER ::= { cevModule 133 } -- Module for 96xx Types cevModuleC9600LC24C OBJECT IDENTIFIER ::= { cevModule96xxType 1 } -- Cisco Catalyst 9600 Series 24-Port 40GE/12-Port 100GE cevModuleC9600LC48YL OBJECT IDENTIFIER ::= { cevModule96xxType 2 } -- Cisco Catalyst 9600 Series 48-Port 25GE/10GE/1GE cevModuleC9600SUP1 OBJECT IDENTIFIER ::= { cevModule96xxType 3 } -- Cisco Catalyst 9600 Series Supervisor 1 Module +cevModuleC960048PTX OBJECT IDENTIFIER ::= { cevModule96xxType 5 } -- Cisco Catalyst 9600 Series 48-port 10M/100M/1G/2.5G/5G/10G Copper Line Card +cevModuleC9600LC48S OBJECT IDENTIFIER ::= { cevModule96xxType 6 } -- Cisco Catalyst 9600 Series 48-Port GE SFP +cevModuleC9600XLC32CD OBJECT IDENTIFIER ::= { cevModule96xxType 9 } -- Cisco Catalyst 9600 Series 32-Port 100GE / 2-Port 400GE Line Card (C9600X-LC-32CD) +cevModuleC9610SUP3XL OBJECT IDENTIFIER ::= { cevModule96xxType 11 } -- Cisco Catalyst 9600 Series Supervisor 3 XL Module +cevModuleC9610SUP3 OBJECT IDENTIFIER ::= { cevModule96xxType 12 } -- Cisco Catalyst 9600 Series Supervisor 3 Module +cevModuleC9610LC40YL4CD OBJECT IDENTIFIER ::= { cevModule96xxType 13 } -- Cisco Catalyst 9600 Series 40-Port 10GE/25GE/50GE, 2-Port 40GE/100GE/200GE and 2-Port 40GE/100GE/400GE Line Card Module (C9610-LC-40YL4CD) +cevModuleC9610LC32CD OBJECT IDENTIFIER ::= { cevModule96xxType 14 } -- Cisco Catalyst 9600 Series 32-Port 40GE/100GE, 2-Port 400GE Line Card Module (C9610-LC-32CD) - -cevModuleCXP270GType OBJECT IDENTIFIER ::= { cevModule 134 } -- Group of 270G CXP modules +cevModuleCXP270GType OBJECT IDENTIFIER ::= { cevModule 134 } -- Group of 270G CXP modules cevModuleCXP270GSR12 OBJECT IDENTIFIER ::= { cevModuleCXP270GType 1 } -- 270G SR12 CXP modules cevModuleNCS1004 OBJECT IDENTIFIER ::= { cevModule 135 } -- Module for NCS1004 series @@ -8878,23 +10041,23 @@ cevModule9300L24UXG4X OBJECT IDENTIFIER ::= { cevModule9300LTy cevModule9300L48UXG4X OBJECT IDENTIFIER ::= { cevModule9300LType 10 } -- Catalyst 9300L 36 x 10/100/1000M + 12 x 100M/1000M/2.5G/5G/10G, 4 x 10G SFP+ Uplink, UPOE, Stackable Data, 1RU cevModule9300L24UXG2Q OBJECT IDENTIFIER ::= { cevModule9300LType 11 } -- Catalyst 9300L 16 x 10/100/1000M + 8 x 100M/1000M/2.5G/5G/10G, 2 x 40G QSFP+ Uplink, UPOE, Stackable Data, 1RU cevModule9300L48UXG2Q OBJECT IDENTIFIER ::= { cevModule9300LType 12 } -- Catalyst 9300L 36 x 10/100/1000M + 12 x 100M/1000M/2.5G/5G/10G, 2 x 40G QSFP+ Uplink, UPOE, Stackable Data, 1RU - - +cevModule9300L48PF4X OBJECT IDENTIFIER ::= { cevModule9300LType 13 } -- Catalyst 9300L 48 x 10/100/1000M, PoE+, 4 x 10G SFP+ Uplink, Stackable Data, 1RU, 1100 FEP +cevModule9300L48PF4G OBJECT IDENTIFIER ::= { cevModule9300LType 14 } -- Catalyst 9300L 48 x 10/100/1000M, PoE+, 4 x 1G SFP Uplink, Stackable Data, 1RU, 1100 FEP cevModuleQSFPDD OBJECT IDENTIFIER ::= { cevModule 139 } -- QSFPDD group of Optics cevQSFP400GCU1M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 1 } -- 400GBASE-CR4 Passive Copper Cable, 1m -cevQSFP400GCU2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 2 } -- 400GBASE-CR4 Passive Copper Cable, 2m +cevQSFP400GCU2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 2 } -- 400GBASE-CR4 Passive Copper Cable, 2m cevQSFP400GCU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 3 } -- 400GBASE-CR4 Passive Copper Cable, 3m cevQSFP400GAOC1M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 4 } -- 400GBASE QSFP Active Optical Cable, 1m cevQSFP400GAOC2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 5 } -- 400GBASE QSFP Active Optical Cable, 2m cevQSFP400GAOC3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 6 } -- 400GBASE QSFP Active Optical Cable, 3m -cevQSFP400GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 7 } -- 400GBASE QSFP Active Optical Cable, 5m +cevQSFP400GAOC5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 7 } -- 400GBASE QSFP Active Optical Cable, 5m cevQSFP400GAOC7M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 8 } -- 400GBASE QSFP Active Optical Cable, 7m cevQSFP400GAOC10M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 9 } -- 400GBASE QSFP Active Optical Cable, 10m cevQSFP400GAOC15M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 10 } -- 400GBASE QSFP Active Optical Cable, 15m -cevQSFP400GAOC20M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 11 } -- 400GBASE QSFP Active Optical Cable, 20m +cevQSFP400GAOC20M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 11 } -- 400GBASE QSFP Active Optical Cable, 20m cevQSFP400GAOC25M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 12 } -- 400GBASE QSFP Active Optical Cable, 25m -cevQSFP400GAOC30M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 13 } -- 400GBASE QSFP Active Optical Cable, 30m +cevQSFP400GAOC30M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 13 } -- 400GBASE QSFP Active Optical Cable, 30m cevQSFP400GLR8 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 14 } -- 400GE-LR8 QSFP Module cevQSFP400GFR4 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 15 } -- 400GE-FR4 QSFP Module cevQSFP400GDR4 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 16 } -- 400GE-DR4 QSFP Module @@ -8909,7 +10072,7 @@ cevQDD200LR4S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 24 } -- 200 cevQDD400CU1M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 25 } -- QDD 400 Passive Copper 1M cevQDD400CU2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 26 } -- QDD 400 Passive Copper 2M cevQDD400CU2DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 27 } -- QDD 400 Passive Copper 2.5M -cevQDD400CU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 28 } -- QDD 400 Passive Copper 3M +cevQDD400CU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 28 } -- QDD 400 Passive Copper 3M cevQDD400GDR4S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 29 } -- 400G-DR4-S QDD Module cevQDD400GLR8S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 30 } -- 400G-LR8-S QDD Module cevQDD400GSR4BD OBJECT IDENTIFIER ::= { cevModuleQSFPDD 31 } -- 400G-SR4-BD QDD Module @@ -8917,13 +10080,189 @@ cevQDD2x100SR4S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 32 } -- 2x1 cevQDD2x100PSM4S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 33 } -- 2x100G-PSM4-S QDD Module cevQDD2x100CWDM4-S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 34 } -- 2x100G-CWDM4-S QDD Module cevQDD2x100LR4-S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 35 } -- 2x100G-LR4-S QDD Module +cevQDD400GZRS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 36 } -- 400G-ZR-S QSFPDD Module +cevQDD4x100GFRS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 38 } -- 4x100G-FR-S QSFPDD Module +cevQSFP400GLR4S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 39 } -- 400GE-LR4 QSFP Module +cevQDD400AOC1M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 40 } -- QDD 400G Active Optical Cable, 1m +cevQDD400AOC2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 41 } -- QDD 400G Active Optical Cable, 2m +cevQDD400AOC3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 42 } -- QDD 400G Active Optical Cable, 3m +cevQDD400AOC5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 43 } -- QDD 400G Active Optical Cable, 5m +cevQDD400AOC7M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 44 } -- QDD 400G Active Optical Cable, 7m +cevQDD400AOC10M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 45 } -- QDD 400G Active Optical Cable, 10m +cevQDD400AOC15M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 46 } -- QDD 400G Active Optical Cable, 15m +cevQDD400AOC20M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 47 } -- QDD 400G Active Optical Cable, 20m +cevQDD400AOC25M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 48 } -- QDD 400G Active Optical Cable, 25m +cevQDD400AOC30M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 49 } -- QDD 400G Active Optical Cable, 30m +cevQDD4x100GLRS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 50 } -- 4x100G-LR-S QDD Module +cevQDD400CUDOT5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 51 } -- QDD 400 Passive Copper 0.5M +cevQDD400CU1DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 52 } -- QDD 400 Passive Copper 1.5M +cevQDD2Q200CU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 53 } -- QDD 2Q200 Passive Copper Cable, 3m +cevQSFP200CU1M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 54 } -- 200GBASE-CR4 Passive Copper Cable, 1m +cevQSFP200CU2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 55 } -- 200GBASE-CR4 Passive Copper Cable, 2m +cevQSFP200CU2DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 56 } -- 200GBASE-CR4 Passive Copper Cable, 2.5m +cevQSFP200CU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 57 } -- 200GBASE-CR4 Passive Copper Cable, 3m +cevDP01QSDDZF1 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 58 } -- QDD 100G Coherent, 80km +cevQDD400GSR8S OBJECT IDENTIFIER ::= { cevModuleQSFPDD 59 } -- QDD 400GBase SR8, MPO, 100m +cevQSFP100GSR1DOT2 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 60 } -- QSFP28, 100GBase Single Rate BiDi +cevQSFP100GSRS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 61 } -- QSFP28 100GBase-SR module +cevQSFP100GBR20DI OBJECT IDENTIFIER ::= { cevModuleQSFPDD 62 } -- QSFP28, 100GBase Downstream 20km, I-Temp +cevQSFP100GBR20UI OBJECT IDENTIFIER ::= { cevModuleQSFPDD 63 } -- QSFP28, 100GBase Upstream 20km, I-Temp +cevQDD8x100GFR OBJECT IDENTIFIER ::= { cevModuleQSFPDD 64 } -- 8x100G FR QSFP-DD Module +cevQDD800GAEC OBJECT IDENTIFIER ::= { cevModuleQSFPDD 65 } -- 800G AEC QSFP-DD Module +cevQDD8x100GDR OBJECT IDENTIFIER ::= { cevModuleQSFPDD 66 } -- 8x100G DR QSFP-DD Module +cevQDD2x400GFR4 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 67 } -- 2x400G FR4 QSFP-DD module +cevQDD400GBRIGHTZRPLUS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 69 } -- 400G QSFP DD Bright ZR Plus Digital Coherent Optics +cevQDD4ZQ100CU1M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 74 } -- 4ZQ100 QSFP-DD Passive Copper Cable 1m +cevQDD4ZQ100CU2M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 75 } -- 4ZQ100 QSFP-DD Passive Copper Cable 2m +cevQDD4ZQ100CU2DOT5M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 76 } -- 4ZQ100 QSFP-DD Passive Copper Cable 2.5m +cevQDD4ZQ100CU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 77 } -- 4ZQ100 QSFP-DD Passive Copper Cable 3m +cevDP04QSDDER1 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 78 } -- Cisco QSFPDD 400G ER1 Pluggable Optics Module +cevQDDONSOLS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 79 } -- Cisco QSFP-DD Pluggable Optical Line System +cevQDD400GSR4DOT2BD OBJECT IDENTIFIER ::= { cevModuleQSFPDD 81 } -- 400G BiDi QDD Module, 70/100/150m over OM3/OM4/OM5 + + +cevModuleNCS540LType OBJECT IDENTIFIER ::= { cevModule 140 } -- NCS540L series +cevModuleNCS540L28Z4SysA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 1 } -- NCS540L series - NCS540-28Z4-SYS-A Module +cevModuleNCS540L28Z4SysD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 2 } -- NCS540L series - NCS540-28Z4-SYS-D Module +cevModuleNCS540L16Z4G8Q2CA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 3 } -- NCS540L series - N540X-16Z4G8Q2C-A Module +cevModuleNCS540L16Z4G8Q2CD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 4 } -- NCS540L series - N540X-16Z4G8Q2C-D Module +cevModuleNCS540L12Z20GSysA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 5 } -- NCS540L series - N540-12Z20G-SYS-A Module +cevModuleNCS540L12Z20GSysD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 6 } -- NCS540L series - N540-12Z20G-SYS-D Module +cevModuleNCS540L12Z16GSysA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 7 } -- NCS540L series - N540X-12Z16G-SYS-A Module +cevModuleNCS540L12Z16GSysD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 8 } -- NCS540L series - N540X-12Z16G-SYS-D Module +cevModuleNCS540LFHCSRSys OBJECT IDENTIFIER ::= { cevModuleNCS540LType 9 } -- NCS540L series - N540-FH-CSR-SYS +cevModuleNCS540LFHAGGSys OBJECT IDENTIFIER ::= { cevModuleNCS540LType 10 } -- NCS540L series - N540-FH-AGG-SYS +cevModuleNCS540LFHIP65Sys OBJECT IDENTIFIER ::= { cevModuleNCS540LType 11 } -- NCS540L series - N540-FH-IP65-SYS +cevModuleNCS540L6Z18GSysA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 12 } -- NCS540L series - N540X-6Z18G-SYS-A Module +cevModuleNCS540L6Z18GSysD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 13 } -- NCS540L series - N540X-6Z18G-SYS-D Module +cevModuleNCS540L8Z16GSysA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 14 } -- NCS540L series - N540X-8Z16G-SYS-A Module +cevModuleNCS540L8Z16GSysD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 15 } -- NCS540L series - N540X-8Z16G-SYS-D Module +cevModuleNCS540L4Z14G2QA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 16 } -- NCS540L series - N540X-4Z14G2Q-A Module +cevModuleNCS540L4Z14G2QD OBJECT IDENTIFIER ::= { cevModuleNCS540LType 17 } -- NCS540L series - N540X-4Z14G2Q-D Module cevModule9300DType OBJECT IDENTIFIER ::= { cevModule 141 } -- A stack of any Cisco Catalyst 9300D Fixed stack-able ethernet switches with unified identity (as a single unified switch),control and management cevModuleCat1000Type OBJECT IDENTIFIER ::= { cevModule 142 } -- These are modules that are used in Catalyst 1000 series switches +cevModuleCat10008T2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 1 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) +cevModuleCat10008TE2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 2 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + External Adapter +cevModuleCat10008P2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 3 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + Partial PoE with 67W PoE budget +cevModuleCat10008PE2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 4 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + Partial PoE with 60W PoE budget + External Adapter +cevModuleCat10008FP2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 5 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + PoE with 120W PoE budget +cevModuleCat10008FPE2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 6 } -- Catalyst 1000, 8x 1G downlink + 2x 1G uplink (Combo) + PoE with 120W PoE budgetS + External Adapter +cevModuleCat100016T2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 7 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) +cevModuleCat100016TE2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 8 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + External Adapter +cevModuleCat100016P2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 9 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + Partial PoE with 120W PoE budget +cevModuleCat100016PE2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 10 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + Partial PoE with 120W PoE budget + External Adapter +cevModuleCat100016FP2GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 11 } -- Catalyst 1000, 16x 1G downlink + 2x 1G uplink (SFP) + PoE with 240W PoE budget +cevModuleCat100024T4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 12 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) +cevModuleCat100024PP4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 13 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 195W PoE budget, First 8 ports with PoE +cevModuleCat100024P4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 14 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 195W PoE budget +cevModuleCat100024FP4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 15 } -- Catalyst 1000, 24x 1G downlink + 4x 1G uplink (SFP) + PoE with 370W PoE budget +cevModuleCat100048T4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 16 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) +cevModuleCat100048PP4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 17 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 180W PoE budget, First 12 ports with PoE +cevModuleCat100048P4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 18 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) + Partial PoE with 370W PoE budget +cevModuleCat100048FP4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 19 } -- Catalyst 1000, 48x 1G downlink + 4x 1G uplink (SFP) + PoE with 740W PoE budget +cevModuleCat100024T4XL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 20 } -- Catalyst 1000, 24x 1G downlink + 4x 10G uplink (SFP+) +cevModuleCat100024P4XL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 21 } -- Catalyst 1000, 24x 1G downlink + 4x 10G uplink (SFP+) + Partial PoE with 195W PoE budget +cevModuleCat100024FP4XL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 22 } -- Catalyst 1000, 24x 1G downlink + 4x 10G uplink (SFP+) + PoE with 370W PoE budget +cevModuleCat100048T4XL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 23 } -- Catalyst 1000, 48x 1G downlink + 4x 10G uplink (SFP+) +cevModuleCat100048P4XL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 24 } -- Catalyst 1000, 48x 1G downlink + 4x 10G uplink (SFP+) + Partial PoE with 370W PoE budget +cevModuleCat100048FP4XL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 25 } -- Catalyst 1000, 48x 1G downlink + 4x 10G uplink (SFP+) + PoE with 740W PoE budget +cevModuleCat1000FE24T4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 53 } -- Catalyst 1000, 24x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) +cevModuleCat1000FE24P4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 54 } -- Catalyst 1000, 24x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) + Partial PoE +cevModuleCat1000FE48T4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 55 } -- Catalyst 1000, 48x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) +cevModuleCat1000FE48P4GL OBJECT IDENTIFIER ::= { cevModuleCat1000Type 56 } -- Catalyst 1000, 48x 1FE downlinks + 2x 1G uplink (Combo) + 2x 1G uplink (SFP) + Partial PoE + +cevModuleC1100TGType OBJECT IDENTIFIER ::= { cevModule 143 } -- These are modules that are used in Cisco C1100TG Series Terminal Server +cevModuleC1100TG1N32ARP OBJECT IDENTIFIER ::= { cevModuleC1100TGType 1 } -- Cisco C1100TG-1N32A Series Routing Processor Module +cevModuleC1100TG1N32AFP OBJECT IDENTIFIER ::= { cevModuleC1100TGType 2 } -- Cisco C1100TG-1N32A Series Forwarding Processor Module +cevModuleC1100TG1N32ANIM OBJECT IDENTIFIER ::= { cevModuleC1100TGType 3 } -- Cisco C1100TG-1N32A Series Built-In Network Interface +cevModuleC1100TG1N24P32ANIM OBJECT IDENTIFIER ::= { cevModuleC1100TGType 4 } -- Cisco C1100TG-1N24P32A Series Built-In Network Interface +cevModuleC1100TG1N24P32AFP OBJECT IDENTIFIER ::= { cevModuleC1100TGType 5 } -- Cisco C1100TG-1N24P32A Series Forwarding Processor +cevModuleC1100TG1N24P32ARP OBJECT IDENTIFIER ::= { cevModuleC1100TGType 6 } -- Cisco C1100TG-1N24P32A Series Routing Processor +cevModuleC1100TGX1N24P32ARP OBJECT IDENTIFIER ::= { cevModuleC1100TGType 7 } -- Cisco C1100TGX-1N24P32A Series Routing Processor +cevModuleC1100TGX1N24P32AFP OBJECT IDENTIFIER ::= { cevModuleC1100TGType 8 } -- Cisco C1100TGX-1N24P32A Series Forwarding Processor +cevModuleC1100TGX1N24P32ANIM OBJECT IDENTIFIER ::= { cevModuleC1100TGType 9 } -- Cisco C1100TGX-1N24P32A Series Built-In Network Interface +cevModuleC1100TG2X1GE OBJECT IDENTIFIER ::= { cevModuleC1100TGType 10 } -- Cisco C1100TG Series Built-In Front Panel 2 ports Gigabitethernet Module +cevModuleC1100TGES24 OBJECT IDENTIFIER ::= { cevModuleC1100TGType 11 } -- Cisco C1100TG Series Built-In 24 ports 1GE Ethernet Switch Module +cevModuleC1100TGA48 OBJECT IDENTIFIER ::= { cevModuleC1100TGType 12 } -- Cisco C1100TG Series Built-In 48 ports Async Serial Port Module +cevModuleC1100TGA32 OBJECT IDENTIFIER ::= { cevModuleC1100TGType 13 } -- Cisco C1100TG Series Built-In 32 ports Async Serial Port Module + +cevModuleCMICRType OBJECT IDENTIFIER ::= { cevModule 144 } -- Module for Catalyst Micro Switch +cevModuleCMICR4PS OBJECT IDENTIFIER ::= { cevModuleCMICRType 1 } -- Catalyst Micro Switch for Walljack Deployments, 2 x SFP Uplink +cevModuleCMICR4PC OBJECT IDENTIFIER ::= { cevModuleCMICRType 2 } -- Catalyst Micro Switch for Walljack Deployments, 1 x copper + 1 x SFP Uplink +cevModuleCMICR4PT OBJECT IDENTIFIER ::= { cevModuleCMICRType 3 } -- Catalyst Micro Switch for Desktop Deployments + +cevModuleTTAType OBJECT IDENTIFIER ::= { cevModule 145 } -- These are modules that are used in Cisco DNA Traffic Telemetry Appliance Series +cevModuleTTA1XRP OBJECT IDENTIFIER ::= { cevModuleTTAType 1 } -- Cisco DNA Traffic Telemetry Appliance - Model 1X, Routing Processor Module +cevModuleTTA1XESP OBJECT IDENTIFIER ::= { cevModuleTTAType 2 } -- Cisco DNA Traffic Telemetry Appliance - Model 1X, Embedded Services Processor 2.5Gbps Module +cevModuleTTA1XSIP OBJECT IDENTIFIER ::= { cevModuleTTAType 3 } -- Cisco DNA Traffic Telemetry Appliance - Model 1X, SPA Interface Processor Module +cevModuleTTA1X2xT6xGe OBJECT IDENTIFIER ::= { cevModuleTTAType 4 } -- Cisco DNA Traffic Telemetry Appliance - Model 1X, Built-in 2-port TenGigabitEthernet and 6-port GigabitEthernet Module + + + + +cevModuleNCS1010 OBJECT IDENTIFIER ::= { cevModule 148 } -- Module for NCS1010 series +cevModuleNCS1010RP OBJECT IDENTIFIER ::= { cevModuleNCS1010 1} -- Cisco Network Convergence System 1010 Controller +cevModuleNCS1010CTLRBK9 OBJECT IDENTIFIER ::= { cevModuleNCS1010 2} -- NCS 1010 Controller, 9600bps console baud-rate +cevModuleNCS1010CTR2K9 OBJECT IDENTIFIER ::= { cevModuleNCS1010 3} -- NCS 1010, 1012, 1020 Controller with 112500bps console rate +cevModuleNCS1010CTR2BK9 OBJECT IDENTIFIER ::= { cevModuleNCS1010 4} -- NCS 1010, 1012, 1020 Controller with 9600bps console rate +cevModuleNCS1020DR OBJECT IDENTIFIER ::= { cevModuleNCS1010 5} -- NCS 1020 Door with presence detection, including filters +cevModuleNCS1010CTR2FLR OBJECT IDENTIFIER ::= { cevModuleNCS1010 6} -- Filler / Blank for controller slot on NCS 1012, 1020 +cevModuleNCS1010FLRA OBJECT IDENTIFIER ::= { cevModuleNCS1010 7} -- Filler / Blank for NCS 1010 OLT/ILA slot on NCS 1012, 1020 - Active +cevModuleNCS1010FLRP OBJECT IDENTIFIER ::= { cevModuleNCS1010 8} -- Filler / Blank for NCS 1010 OLT/ILA slot on NCS 1012, 1020 - Passive +cevModuleNCS1020FANBLANK OBJECT IDENTIFIER ::= { cevModuleNCS1010 9} -- NCS1020 Fan Filler + + +cevModuleSFP50G OBJECT IDENTIFIER ::= { cevModule 149 } -- +cevModuleSFP50GSRS OBJECT IDENTIFIER ::= { cevModuleSFP50G 1 } -- SFP-50G-SR-S +cevModuleSFP50GSLS OBJECT IDENTIFIER ::= { cevModuleSFP50G 2 } -- SFP-50G-SL-S +cevModuleSFP50GLRS OBJECT IDENTIFIER ::= { cevModuleSFP50G 3 } -- SFP-50G-LR-S +cevModuleSFP50GLRI OBJECT IDENTIFIER ::= { cevModuleSFP50G 4 } -- SFP-50G-LR-I +cevModuleSFP50GBXDI OBJECT IDENTIFIER ::= { cevModuleSFP50G 5 } -- SFP-50G-BXD-I +cevModuleSFP50GBXUI OBJECT IDENTIFIER ::= { cevModuleSFP50G 6 } -- SFP-50G-BXU-I +cevModuleSFP50GBX40DI OBJECT IDENTIFIER ::= { cevModuleSFP50G 7 } -- SFP-50G-BX40D-I +cevModuleSFP50GBX40UI OBJECT IDENTIFIER ::= { cevModuleSFP50G 8 } -- SFP-50G-BX40U-I +cevModuleSFP50GCU1M OBJECT IDENTIFIER ::= { cevModuleSFP50G 9 } -- SFP-50G-CU1M +cevModuleSFP50GCU2M OBJECT IDENTIFIER ::= { cevModuleSFP50G 10 } -- SFP-50G-CU2M +cevModuleSFP50GCU25M OBJECT IDENTIFIER ::= { cevModuleSFP50G 11 } -- SFP-50G-CU2.5M +cevModuleSFP50GCU3M OBJECT IDENTIFIER ::= { cevModuleSFP50G 12 } -- SFP-50G-CU3M +cevModuleSFP50GCU5M OBJECT IDENTIFIER ::= { cevModuleSFP50G 13 } -- SFP-50G-CU5M +cevModuleSFP50GCUDOT5M OBJECT IDENTIFIER ::= { cevModuleSFP50G 14 } -- 50GBASE-CU Cable 0.5 Meter +cevModuleSFP50GCU1DOT5M OBJECT IDENTIFIER ::= { cevModuleSFP50G 15 } -- 50GBASE-CU Cable 1.5 Meter +cevModuleSFP50GCU4M OBJECT IDENTIFIER ::= { cevModuleSFP50G 16 } -- 50GBASE-CU Cable 4 Meter +cevModuleSFP50GERI OBJECT IDENTIFIER ::= { cevModuleSFP50G 17 } -- SFP50G ER Module 40km, I-Temp + +cevModuleN98KType OBJECT IDENTIFIER ::= { cevModule 150 } -- +cevModuleN9KC9808FMA OBJECT IDENTIFIER ::= { cevModuleN98KType 1 } -- Nexus 9800 8-Slot Fabric Module 1st Generation +cevModuleN9KX9836DMA OBJECT IDENTIFIER ::= { cevModuleN98KType 2 } -- Nexus 9800 36D Line Card with Macsec +cevModuleN9KC9800SUPA OBJECT IDENTIFIER ::= { cevModuleN98KType 3 } -- N9K-C9800-SUP-A Broadwell CPU based Supervisor Module for Nexus 9800 series + + +cevModuleN94KType OBJECT IDENTIFIER ::= { cevModule 151 } -- Nexus 9400 series +cevN9KX94008D OBJECT IDENTIFIER ::= { cevModuleN94KType 1 } -- Nexus 9400 series LEM with 8x400G +cevN9KX940016W OBJECT IDENTIFIER ::= { cevModuleN94KType 2 } -- Nexus 9400 series LEM with 16x200G +cevN9KC9400SWGX2A OBJECT IDENTIFIER ::= { cevModuleN94KType 3 } -- Nexus 9400 switch card +cevN9KC9400SUPA OBJECT IDENTIFIER ::= { cevModuleN94KType 4 } -- Edelweiss sup card +cevN9KX940022L OBJECT IDENTIFIER ::= { cevModuleN94KType 5 } -- Nexus 9400 series LEM with 22x50G + +cevModuleTimingInterfaceCard OBJECT IDENTIFIER ::= { cevModule 152 } -- Timing Interface Card Modules +cevModuleTICGNSS OBJECT IDENTIFIER ::= { cevModuleTimingInterfaceCard 1 } -- TIC-GNSS - Cisco GNSS 1PPS/10M module +cevModuleTIC OBJECT IDENTIFIER ::= { cevModuleTimingInterfaceCard 2 } -- TIC - Cisco 1PPS/10M Module + +cevModuleNCS1K14 OBJECT IDENTIFIER ::= { cevModule 153 } -- Module for NCS1014 series +cevModuleNCS1K14CTLRK9 OBJECT IDENTIFIER ::= { cevModuleNCS1K14 1 } -- Network Convergence System 1014 Controller +cevModuleNCS1K14CTLRBK9 OBJECT IDENTIFIER ::= { cevModuleNCS1K14 2 } -- Network Convergence System 1014 Controller with 9600BR + +cevModuleQSFP56 OBJECT IDENTIFIER ::= { cevModule 154 } -- QSFP 200G group of Optics +cevModuleQSFP200GSR4S OBJECT IDENTIFIER ::= { cevModuleQSFP56 1 } -- QSFP 200GE SR4 Module, 100m over OM4/OM5 +cevModuleQSFP200GFR4S OBJECT IDENTIFIER ::= { cevModuleQSFP56 2 } -- QSFP 200GE FR Module, 2km SMF +cevModuleQSFP4S50CU3M OBJECT IDENTIFIER ::= { cevModuleQSFP56 3 } -- QSFP 200G to 4xSFP56 Passive Copper Cable, 3m +cevQSFP200GSL4 OBJECT IDENTIFIER ::= { cevModuleQSFP56 4 } -- QSFP 200GE SL4 Module, 30m over OM4/OM5 + cevPort OBJECT IDENTIFIER ::= { cevMIBObjects 10 } cevPortUnknown OBJECT IDENTIFIER ::= { cevPort 1 } cevPortMCIEther OBJECT IDENTIFIER ::= { cevPort 2 } -- MCI Ethernet @@ -8995,14 +10334,14 @@ cevPortEswitch OBJECT IDENTIFIER ::= { cevPort 69 } -- c7200 Ethernet Switch Por cevPortBITS OBJECT IDENTIFIER ::= { cevPort 70 } -- BITS (Building Integrated Timing Supply) port for telco network clock & alarm handling card for Cat8540 cevPortAdslCap OBJECT IDENTIFIER ::= { cevPort 71 } -- ADSL CAP Line cevPortAdslDmt OBJECT IDENTIFIER ::= { cevPort 72 } -- ADSL DMT Line -cevPortSdsl2b1q OBJECT IDENTIFIER ::= { cevPort 73 } -- SDSL 2B1Q line +cevPortSdsl2b1q OBJECT IDENTIFIER ::= { cevPort 73 } -- SDSL 2B1Q line cevPortEscon OBJECT IDENTIFIER ::= { cevPort 74 } -- IBM ESCON interface type for CIP or CIP2 cards/port adapters cevPortParallel OBJECT IDENTIFIER ::= { cevPort 75 } -- IBM Parallel (Bus & Tag) interface type for CIP or CIP2 cards/port adapters cevPortCipVirtual OBJECT IDENTIFIER ::= { cevPort 76 } -- Virtual port on a CIP or CIP2 card cevPortDs3 OBJECT IDENTIFIER ::= { cevPort 78 } -- DS-3 interface cevPortE3 OBJECT IDENTIFIER ::= { cevPort 79 } -- E-3 interface cevPortOc3 OBJECT IDENTIFIER ::= { cevPort 80 } -- OC-3 interface -cevPortHdvDsp OBJECT IDENTIFIER ::= { cevPort 82 } -- DSP processor port on the cevDspmPvdm3 daughtercard +cevPortHdvDsp OBJECT IDENTIFIER ::= { cevPort 82 } -- DSP processor port on the cevDspmPvdm3 daughtercard cevPortAdslFlexiDmt OBJECT IDENTIFIER ::= { cevPort 83 } -- Flexi DMT port cevPortAdslFlexiCap OBJECT IDENTIFIER ::= { cevPort 84 } -- Flexi CAP port cevPortAdslDmtIsdn OBJECT IDENTIFIER ::= { cevPort 85 } -- DMT over ISDN port @@ -9012,7 +10351,7 @@ cevPortRfUs OBJECT IDENTIFIER ::= { cevPort 87 } -- Line card upstream interface cevPortRfDs OBJECT IDENTIFIER ::= { cevPort 88 } -- Line card downstream interface for UBR7200 cevPortUbrClk OBJECT IDENTIFIER ::= { cevPort 89 } -- Cable national clock card DB-15 interface cevPortShdslTcpam OBJECT IDENTIFIER ::= { cevPort 90 } -- Single-Pair High-bit-rate DSL Trellis-Coded PAM Line -cevPortShdslTcpamOptis OBJECT IDENTIFIER ::= { cevPort 91 } -- Single-Pair High-bit-rate DSL Trellis-Coded PAM Overlapped PAM Transmission with Interlocking Spectra (OPTIS) Line +cevPortShdslTcpamOptis OBJECT IDENTIFIER ::= { cevPort 91 } -- Single-Pair High-bit-rate DSL Trellis-Coded PAM Overlapped PAM Transmission with Interlocking Spectra (OPTIS) Line cevPortGEIP OBJECT IDENTIFIER ::= { cevPort 100 } -- Gigabit Ethernet interface processor cevPortWDM OBJECT IDENTIFIER ::= { cevPort 101 } -- Passive optical trunk port that sends and receives multiple wavelengths on the ITU grid cevPortThru OBJECT IDENTIFIER ::= { cevPort 102 } -- Optical port carrying passed-through wavelengths @@ -9022,7 +10361,7 @@ cevPortWavePatch OBJECT IDENTIFIER ::= { cevPort 105 } -- Passive optical port c cevPortTransparent OBJECT IDENTIFIER ::= { cevPort 106 } -- Optical port that handles multiple protocols (ESCON, FICON, etc.) cevPortDPT OBJECT IDENTIFIER ::= { cevPort 107 } -- Dynamic Packet Transport (DPT) Interface cevPortOc12 OBJECT IDENTIFIER ::= { cevPort 108 } -- OC-12 interface -cevPortGe OBJECT IDENTIFIER ::= { cevPort 109 } -- Gigabit Ethernet Port +cevPortGe OBJECT IDENTIFIER ::= { cevPort 109 } -- Gigabit Ethernet Port cevPortChOc12 OBJECT IDENTIFIER ::= { cevPort 110 } -- Channelized OC12 Port cevPortChOc3Stm1 OBJECT IDENTIFIER ::= { cevPort 111 } -- Channelized OC3/STM-1 Port cevPortFilterGroup OBJECT IDENTIFIER ::= { cevPort 112 } -- Passive optical port that sends and receives multiple wavelengths on the ITU grid @@ -9032,8 +10371,8 @@ cevPortASIMod OBJECT IDENTIFIER ::= { cevPort 115 } -- Asynchronous Serial Inte cevPortASIIn OBJECT IDENTIFIER ::= { cevPort 116 } -- Media Line Card Asynchronous Serial Interface Input interface cevPortASIOut OBJECT IDENTIFIER ::= { cevPort 117 } -- Media Line Card Asynchronous Serial Interface Output interface cevPortAimDsp OBJECT IDENTIFIER ::= { cevPort 118 } -- DSP processor on AIM DSP modules -cevPortAtm OBJECT IDENTIFIER ::= { cevPort 119 } -- ATM interfaces -cevPortChSonet OBJECT IDENTIFIER ::= { cevPort 120 } -- channelized sonet interfaces +cevPortAtm OBJECT IDENTIFIER ::= { cevPort 119 } -- ATM interfaces +cevPortChSonet OBJECT IDENTIFIER ::= { cevPort 120 } -- channelized sonet interfaces cevPortChOcX OBJECT IDENTIFIER ::= { cevPort 121 } -- channelized OC X card interfaces cevPortFe OBJECT IDENTIFIER ::= { cevPort 123 } -- Fast ethernet interfaces cevPortDs3E3Atm OBJECT IDENTIFIER ::= { cevPort 125 } -- DS3/E3 ATM interface @@ -9063,7 +10402,7 @@ cevPortBaseTEther OBJECT IDENTIFIER ::= { cevPort 150 } -- Ethernet 10/100/100 cevPortGESFP OBJECT IDENTIFIER ::= { cevPort 151 } -- Gigabit Ethernet Port Small Form factor Pluggable port. cevPortWdmSplit OBJECT IDENTIFIER ::= { cevPort 152 } -- Passive optical trunk port that sends and receives multiple wavelengths in the ITU grid and is internally connected to an optical splitter cevPortWavePassThru OBJECT IDENTIFIER ::= { cevPort 153 } -- Passive port transmitting and receiving optical signals, used to provide optical connectivity within the box and is incapable of monitoring or doing anything else with the signal -cevPortDspPVDM OBJECT IDENTIFIER ::= { cevPort 154 } -- DSP on a Packet Voice Data Module (PVDM) daughter card in 1700 +cevPortDspPVDM OBJECT IDENTIFIER ::= { cevPort 154 } -- DSP on a Packet Voice Data Module (PVDM) daughter card in 1700 cevPortiScsi OBJECT IDENTIFIER ::= { cevPort 155 } -- iSCSI port cevPortVic2Did OBJECT IDENTIFIER ::= { cevPort 156 } -- Two port Direct Inward Dial trunk Voice Interface Card cevPortWic1Adsl OBJECT IDENTIFIER ::= { cevPort 157 } -- 1-port ADSL WAN Interface Card @@ -9163,9 +10502,9 @@ cevPort10GigBaseDwdm6061 OBJECT IDENTIFIER ::= { cevPort 251 } -- 10 Gigabit cevPortGigBaseBX10D OBJECT IDENTIFIER ::= { cevPort 252 } -- Giga Ethernet bidirectional 10km Downlink over SMF cevPortGigBaseBX10U OBJECT IDENTIFIER ::= { cevPort 253 } -- Giga Ethernet bidirectional 10km uplink over SMF cevPortT1E1 OBJECT IDENTIFIER ::= { cevPort 254 } -- 8 port T1/E1 Shared Port Adapter -cevPort2GFCPhy OBJECT IDENTIFIER ::= { cevPort 255 } -- Optical port that is capable of transporting 2x Fibre Channel traffic +cevPort2GFCPhy OBJECT IDENTIFIER ::= { cevPort 255 } -- Optical port that is capable of transporting 2x Fibre Channel traffic cevPortLanWirelessApplication OBJECT IDENTIFIER ::= { cevPort 256 } -- LAN wireless application interface -cevPortSEInternalFE OBJECT IDENTIFIER ::= { cevPort 257 } -- Internal FastEthernet interface in NM-SE - Service Engine Port adapter +cevPortSEInternalFE OBJECT IDENTIFIER ::= { cevPort 257 } -- Internal FastEthernet interface in NM-SE - Service Engine Port adapter cevPortCEInternalFE OBJECT IDENTIFIER ::= { cevPort 258 } -- Internal FastEthernet interface in NMD-CE-HP - Content Engine Port adapter cevPortIpsecVpn OBJECT IDENTIFIER ::= { cevPort 259 } -- IPsec VPN Service interface cevPortSsl OBJECT IDENTIFIER ::= { cevPort 260 } -- Ssl interface @@ -9205,7 +10544,7 @@ cevPortUSB OBJECT IDENTIFIER ::= { cevPort 296 } -- Universal Serial Bus (USB) cevPortSslVpn OBJECT IDENTIFIER ::= { cevPort 297 } -- Web/VPN interface cevPortCableModem OBJECT IDENTIFIER ::= { cevPort 298 } -- Cable modem port cevNmeApaPort OBJECT IDENTIFIER ::= { cevPort 299 } -- Service Classification Element Port for NME-APA. -cevPort10GigBase OBJECT IDENTIFIER ::= { cevPort 300 } -- 300m over 50um MMF and 220m over FDDI grade MMF 10G Module +cevPort10GigBase OBJECT IDENTIFIER ::= { cevPort 300 } -- 300m over 50um MMF and 220m over FDDI grade MMF 10G Module cevPort10GigBaseLRM OBJECT IDENTIFIER ::= { cevPort 301 } -- 300m over 50um MMF and 220m over FDDI grade MMF 10G Module cevPortdot11abg OBJECT IDENTIFIER ::= { cevPort 302 } -- 802.11G Radio cevPortDti OBJECT IDENTIFIER ::= { cevPort 303 } -- DOCSIS Timing, Communication, and Control Plus port for DTI module @@ -9221,11 +10560,11 @@ cevPortGigBaseDwdm4134 OBJECT IDENTIFIER ::= { cevPort 312 } -- DWDM cevPortGigBaseDwdm3739 OBJECT IDENTIFIER ::= { cevPort 313 } -- DWDM 3739 Giga Ethernet SFP cevPortGigBaseDwdm3346 OBJECT IDENTIFIER ::= { cevPort 314 } -- DWDM 3346 Giga Ethernet SFP cevPort10GigEthernet OBJECT IDENTIFIER ::= { cevPort 315 } -- 10 Gigabit Ethernet interface -cevPortSEInternal OBJECT IDENTIFIER ::= { cevPort 316 } -- Virtual port of a Service Engine connecting the RP and the SE +cevPortSEInternal OBJECT IDENTIFIER ::= { cevPort 316 } -- Virtual port of a Service Engine connecting the RP and the SE cevPortGigBaseEX OBJECT IDENTIFIER ::= { cevPort 317 } -- 1000 Base EX Fiber Gigabit Ethernet cevPort40GigEthernet OBJECT IDENTIFIER ::= { cevPort 318 } -- 40 Gigabit Ethernet interface cevPortAces OBJECT IDENTIFIER ::= { cevPort 319 } -- Application Control Engine Service interface -cevPort100GigEthernet OBJECT IDENTIFIER ::= { cevPort 320 } -- 100 Gig Ethernet port +cevPort100GigEthernet OBJECT IDENTIFIER ::= { cevPort 320 } -- 100 Gig Ethernet port cevPort40GigQSFPPlus OBJECT IDENTIFIER ::= { cevPort 321 } -- A type of 40GE port that can take a variety of transceivers fitting the QSFP + Multi Source Agreement form factor cevPort100GECFP OBJECT IDENTIFIER ::= { cevPort 322 } -- a type of 100GE port that can take a variety of transceivers fitting the CFP Multi Source Agreement form factor cevPortPlcG OBJECT IDENTIFIER ::= { cevPort 323 } -- PLC Generic Port @@ -9234,10 +10573,12 @@ cevPort3gCdmaG OBJECT IDENTIFIER ::= { cevPort 325 } -- 3G CDMA cevPort3gGsmG OBJECT IDENTIFIER ::= { cevPort 326 } -- 3G GSM Generic Port cevPortWpanG OBJECT IDENTIFIER ::= { cevPort 327 } -- WPAN Generic Port cevPortDsp OBJECT IDENTIFIER ::= { cevPort 328 } -- Generic port for the Digital Signal Processor -cevPortCXP OBJECT IDENTIFIER ::= { cevPort 331 } -- CXP-100G-SR10 transceiver Module -cevPortCPAK OBJECT IDENTIFIER ::= { cevPort 332 } -- 100G LR4 CPAK, 10km SMF -cevPortConsole OBJECT IDENTIFIER ::= { cevPort 333 } -- Cisco Console Port -cevPortAlarmDSUB15 OBJECT IDENTIFIER ::= { cevPort 334 } -- Cisco Alarm Port DSUB15 +cevPortCXP OBJECT IDENTIFIER ::= { cevPort 331 } -- CXP-100G-SR10 transceiver Module +cevPortCPAK OBJECT IDENTIFIER ::= { cevPort 332 } -- 100G LR4 CPAK, 10km SMF +cevPortConsole OBJECT IDENTIFIER ::= { cevPort 333 } -- Cisco Console Port +cevPortAlarmDSUB15 OBJECT IDENTIFIER ::= { cevPort 334 } -- Cisco Alarm Port DSUB15 +cevPortOTU4 OBJECT IDENTIFIER ::= { cevPort 335 } -- Cisco Optical Port OTU4 +cevPortSCSI26 OBJECT IDENTIFIER ::= { cevPort 336 } -- Cisco Alarm Port SCSI26 cevPortSseBreakout100GePort OBJECT IDENTIFIER ::= { cevPort 337 } -- 100GE port available on the next generation of Cisco Network Processors used in Panini family or products cevPortSseBreakout10GePort OBJECT IDENTIFIER ::= { cevPort 338 } -- 10GE port available on the next generation of Cisco Network Processors used in Panini family of products cevPortCisco10GeSFPPlusPOZR OBJECT IDENTIFIER ::= { cevPort 339 } -- Cisco SFP-10G-ZR Cable: 9 micron singlemode Wavelength: 1550nm @@ -9246,10 +10587,11 @@ cevPortCisco10GeSFPPlusPOSRX OBJECT IDENTIFIER ::= { cevPort 341 } -- Cisco S cevPortCisco10GeSFPPlusPOLRX OBJECT IDENTIFIER ::= { cevPort 342 } -- Cisco SFP-10G-LR-X Cable: 9 micron singlemode Wavelength: 1310nm cevPortCisco10GeSFPPlusPOLR OBJECT IDENTIFIER ::= { cevPort 343 } -- Cisco SFP-10G-LR Cable: 9 micron singlemode Wavelength: 1310nm cevPortCisco10GeSFPPlusPOSR OBJECT IDENTIFIER ::= { cevPort 344 } -- Cisco SFP-10G-SR Cable: 50 micron multimode Wavelength: 850nm +cevPortCPAKSR10 OBJECT IDENTIFIER ::= { cevPort 345 } -- Cisco SR-10 Transceiver Pluggable CPAK cevPortPHwicSerial OBJECT IDENTIFIER ::= { cevPort 346 } -- 16-Port Async HWIC cevPortPT1E1 OBJECT IDENTIFIER ::= { cevPort 347 } -- 2 port channelized T1/E1, and PRI HWIC (data only) cevPortPHdvDsp OBJECT IDENTIFIER ::= { cevPort 348 } -- 128-channel high-density voice and video DSP module -cevPortSerial OBJECT IDENTIFIER ::= { cevPort 350 } -- Serial Shared Port Adapter +cevPortSerial OBJECT IDENTIFIER ::= { cevPort 350 } -- Serial Shared Port Adapter cevPortCPAKLR10 OBJECT IDENTIFIER ::= { cevPort 351 } -- Cisco LR-10 Transceiver Pluggable CPAK cevPortAdslAnnexM OBJECT IDENTIFIER ::= { cevPort 352 } -- ADSL Annex M cevPortNCS4KUSB OBJECT IDENTIFIER ::= { cevPort 354 } -- NCS4k USB Module @@ -9259,17 +10601,27 @@ cevPortC3794 OBJECT IDENTIFIER ::= { cevPort 358 } -- C37.94 Por cevPort25GigEthernet OBJECT IDENTIFIER ::= { cevPort 359 } -- 25 Gig Ethernet port cevPort100GigQSFPPlus OBJECT IDENTIFIER ::= { cevPort 369 } -- A type of 100GE port that can take a variety of transceivers fitting the QSFP + Multi Source Agreement form factor cevPortOts OBJECT IDENTIFIER ::= { cevPort 370 } -- Optical Transport Section interface for Optical Systems. It may be amplified and may carry full or partial DWDM spectrum +cevPortNIM4ShdslEA OBJECT IDENTIFIER ::= { cevPort 371 } -- 4-Port G.SHDSL interface on NIM-SHDSL-EA in ISR4400 series router +cevPortTwoGigEthernet OBJECT IDENTIFIER ::= { cevPort 373 } -- TwoGigabitEthernet 100/1000/2.5GBaseTX port cevPort400GigEthernet OBJECT IDENTIFIER ::= { cevPort 374 } -- 400 Gig Ethernet port +cevPortAlarmExt OBJECT IDENTIFIER ::= { cevPort 403 } -- External Alarm Port +cevPortBreakout200GePort OBJECT IDENTIFIER ::= { cevPort 404 } -- 200GE Breakout Port +cevPortBreakout400GePort OBJECT IDENTIFIER ::= { cevPort 405} -- 400G Breakout port +cevPort25GigEthPhy OBJECT IDENTIFIER ::= { cevPort 407} -- 1-port 25G +cevPortSP10GigSFPPlus OBJECT IDENTIFIER ::= { cevPort 408} -- a type of 10GE port SFP+ Multi Source Agreement form factor +cevPort40GigEthPhy OBJECT IDENTIFIER ::= { cevPort 409} -- 1-port 40G + cevStack OBJECT IDENTIFIER ::= { cevMIBObjects 11 } cevStackUnknown OBJECT IDENTIFIER ::= { cevStack 1 } cevStackCat37xx OBJECT IDENTIFIER ::= { cevStack 2 } -- The type of stacking used for Catalyst 37xx stack-able switch product cevCat65xxVirtualSwitch OBJECT IDENTIFIER ::= { cevStack 3 } -- Catalyst 65xx Virtual Switch product cevCbs3120Stack OBJECT IDENTIFIER ::= { cevStack 5 } -- CBS3120-stack: A stack of CBS3120 switch modules -cevC29xxStack OBJECT IDENTIFIER ::= { cevStack 11 } -- A stack of C29XX switch modules +cevC29xxStack OBJECT IDENTIFIER ::= { cevStack 11 } -- A stack of C29XX switch modules cevStackIosXrMultichassis OBJECT IDENTIFIER ::= { cevStack 12 } -- IOS-XR Multichassis virtual stack entity provides containment relationship of 2 or more IOS-XR chassis connected in a multi-chasiss setup cevStackCat4xxxVirtualSwitchStack OBJECT IDENTIFIER ::= { cevStack 13 } -- catalyst 4xxx based virtual switching system stack -cevStackFex OBJECT IDENTIFIER ::= { cevStack 14 } -- Generic Fabric Extender Stack +cevStackFex OBJECT IDENTIFIER ::= { cevStack 14 } -- Generic Fabric Extender Stack +cevStackCat3KCAx OBJECT IDENTIFIER ::= { cevStack 18 } -- A stack of Catalyst 3k Converged Access switch modules cevStackC68xxVirSwitch OBJECT IDENTIFIER ::= { cevStack 20 } -- Catalyst 68xx Virtual Switch product cevC35xxStack OBJECT IDENTIFIER ::= { cevStack 21 } -- A stack of C35XX switch modules cevC9300FixedSwitchStack OBJECT IDENTIFIER ::= { cevStack 22 } -- A stack of Cisco Catalyst 9300 Fixed switch modules @@ -9278,13 +10630,19 @@ cevC9400VirtualStack OBJECT IDENTIFIER ::= { cevStack 24 } -- Cisco Catalyst cevC9500VirtualStack OBJECT IDENTIFIER ::= { cevStack 25 } -- Cisco Catalyst 9500 Virtual Stack cevC9200LFixedSwitchStack OBJECT IDENTIFIER ::= { cevStack 26 } -- A stack of Cisco Catalyst 9200L Fixed switch modules cevC9200FixedSwitchStack OBJECT IDENTIFIER ::= { cevStack 27 } -- A stack of Cisco Catalyst 9200 Fixed switch modules +cevHAC9800DualChassis OBJECT IDENTIFIER ::= { cevStack 28 } -- Cisco C9800 Dual Chassis stack entity provides containment relationship of 2 C9800 series chassis connected in a HA setup +cevC9300LStack OBJECT IDENTIFIER ::= { cevStack 30 } -- A stack of any catalyst9300L stack-able Ethernet switches with unified identity (as a single unified switch), control and management +cevC9200BFixedSwitchStack OBJECT IDENTIFIER ::= { cevStack 33 } -- A stack of Cisco Catalyst 9200 Fixed switch modules +cevCat100010GbpsStack OBJECT IDENTIFIER ::= { cevStack 34 } -- A 10 Gbps ethernet stack of cat1000 switch modules +cevCat10001GbpsStack OBJECT IDENTIFIER ::= { cevStack 35 } -- A 1 Gbps ethernet stack of cat1000 switch modules +cevIE9300Stack OBJECT IDENTIFIER ::= { cevStack 39 } -- Cisco Catalyst IE9300 stackable Ethernet switches with unified identity, control and management cevMidplane OBJECT IDENTIFIER ::= { cevMIBObjects 12 } -- Midplane of the chassis cevMidplaneUmg9820 OBJECT IDENTIFIER ::= { cevMidplane 1 } -- Midplane of umg9820 cevTCAMType OBJECT IDENTIFIER ::= { cevMIBObjects 13 } -- TCAM type used on the router card +cevModuleNCS1014 OBJECT IDENTIFIER ::= { cevMIBObjects 14 } -- Module for NCS1014 series +cevModuleNCS1K14CNTLRK9 OBJECT IDENTIFIER ::= { cevModuleNCS1014 1 } -- Network Convergence System 1014 Controller END - - diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml index 1307cc4ea9..da02784c05 100644 --- a/misc/db_schema.yaml +++ b/misc/db_schema.yaml @@ -781,9 +781,9 @@ entPhysical: - { Field: entPhysicalDescr, Type: text, 'Null': true, Extra: '' } - { Field: entPhysicalClass, Type: text, 'Null': true, Extra: '' } - { Field: entPhysicalName, Type: text, 'Null': true, Extra: '' } - - { Field: entPhysicalHardwareRev, Type: varchar(64), 'Null': true, Extra: '' } - - { Field: entPhysicalFirmwareRev, Type: varchar(64), 'Null': true, Extra: '' } - - { Field: entPhysicalSoftwareRev, Type: varchar(64), 'Null': true, Extra: '' } + - { Field: entPhysicalHardwareRev, Type: varchar(96), 'Null': true, Extra: '' } + - { Field: entPhysicalFirmwareRev, Type: varchar(96), 'Null': true, Extra: '' } + - { Field: entPhysicalSoftwareRev, Type: varchar(96), 'Null': true, Extra: '' } - { Field: entPhysicalAlias, Type: varchar(32), 'Null': true, Extra: '' } - { Field: entPhysicalAssetID, Type: varchar(32), 'Null': true, Extra: '' } - { Field: entPhysicalIsFRU, Type: varchar(8), 'Null': true, Extra: '' } @@ -793,7 +793,7 @@ entPhysical: - { Field: entPhysicalContainedIn, Type: int, 'Null': false, Extra: '', Default: '0' } - { Field: entPhysicalParentRelPos, Type: int, 'Null': false, Extra: '', Default: '-1' } - { Field: entPhysicalMfgName, Type: text, 'Null': true, Extra: '' } - - { Field: ifIndex, Type: int, 'Null': true, Extra: '' } + - { Field: ifIndex, Type: 'int unsigned', 'Null': true, Extra: '' } Indexes: PRIMARY: { Name: PRIMARY, Columns: [entPhysical_id], Unique: true, Type: BTREE } entphysical_device_id_index: { Name: entphysical_device_id_index, Columns: [device_id], Unique: false, Type: BTREE } diff --git a/tests/FunctionsTest.php b/tests/FunctionsTest.php index d2c58ab277..7479aae265 100644 --- a/tests/FunctionsTest.php +++ b/tests/FunctionsTest.php @@ -28,6 +28,7 @@ namespace LibreNMS\Tests; use LibreNMS\Device\YamlDiscovery; use LibreNMS\Enum\IntegerType; use LibreNMS\Util\Number; +use LibreNMS\Util\StringHelpers; use LibreNMS\Util\Time; class FunctionsTest extends TestCase @@ -45,10 +46,10 @@ class FunctionsTest extends TestCase public function testIsHexString(): void { - $this->assertTrue(isHexString('af 28 02')); - $this->assertTrue(isHexString('aF 28 02 CE')); - $this->assertFalse(isHexString('a5 fj 53')); - $this->assertFalse(isHexString('a5fe53')); + $this->assertTrue(StringHelpers::isHex('af 28 02')); + $this->assertTrue(StringHelpers::isHex('aF 28 02 CE')); + $this->assertFalse(StringHelpers::isHex('a5 fj 53')); + $this->assertFalse(StringHelpers::isHex('a5fe53')); } public function testDynamicDiscoveryGetValue(): void diff --git a/tests/data/adva_fsp150_ge114pro.json b/tests/data/adva_fsp150_ge114pro.json index b0c7626ffb..e58399056b 100644 --- a/tests/data/adva_fsp150_ge114pro.json +++ b/tests/data/adva_fsp150_ge114pro.json @@ -288,17 +288,17 @@ "entPhysicalDescr": "SHELF", "entPhysicalClass": "", "entPhysicalName": "GE114Pro", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -307,17 +307,17 @@ "entPhysicalDescr": "SLOT", "entPhysicalClass": "", "entPhysicalName": "GE114Pro", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -326,17 +326,17 @@ "entPhysicalDescr": "ETHERNET CARD", "entPhysicalClass": "", "entPhysicalName": "GE114Pro", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -345,17 +345,17 @@ "entPhysicalDescr": "ETHERNET NETWORK PORT", "entPhysicalClass": "", "entPhysicalName": "NETWORK PORT-1-1-1-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -364,17 +364,17 @@ "entPhysicalDescr": "ETHERNET NETWORK PORT", "entPhysicalClass": "", "entPhysicalName": "NETWORK PORT-1-1-1-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -383,17 +383,17 @@ "entPhysicalDescr": "ETHERNET ACCESS PORT", "entPhysicalClass": "", "entPhysicalName": "ACCESS PORT-1-1-1-3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -402,17 +402,17 @@ "entPhysicalDescr": "ETHERNET ACCESS PORT", "entPhysicalClass": "", "entPhysicalName": "ACCESS PORT-1-1-1-4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -421,17 +421,17 @@ "entPhysicalDescr": "ETHERNET ACCESS PORT", "entPhysicalClass": "", "entPhysicalName": "ACCESS PORT-1-1-1-5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -440,17 +440,17 @@ "entPhysicalDescr": "ETHERNET ACCESS PORT", "entPhysicalClass": "", "entPhysicalName": "ACCESS PORT-1-1-1-6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -459,17 +459,17 @@ "entPhysicalDescr": "ETHERNET MANAGEMENT PORT", "entPhysicalClass": "", "entPhysicalName": "DCN-1-1-1-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -478,17 +478,17 @@ "entPhysicalDescr": "USB HOST", "entPhysicalClass": "", "entPhysicalName": "USB-1-1-1-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -497,17 +497,17 @@ "entPhysicalDescr": "G3 USB MODEM", "entPhysicalClass": "", "entPhysicalName": "N/A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null } diff --git a/tests/data/alfo80hd.json b/tests/data/alfo80hd.json index da41174208..8727f4f2c6 100644 --- a/tests/data/alfo80hd.json +++ b/tests/data/alfo80hd.json @@ -2347,6 +2347,158 @@ "entPhysicalMfgName": "Aricent", "ifIndex": null }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "", + "entPhysicalClass": "cpu", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 3, + "entPhysicalDescr": "", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 5, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 6, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null + }, { "entPhysicalIndex": 10, "entPhysicalDescr": "Ethernet Interface Port 01", diff --git a/tests/data/aos.json b/tests/data/aos.json index a829cea482..820a8807fb 100644 --- a/tests/data/aos.json +++ b/tests/data/aos.json @@ -8034,6 +8034,101 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68424704, + "entPhysicalDescr": "", + "entPhysicalClass": "other", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68420352, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 68424775, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 49 + }, + { + "entPhysicalIndex": 68424776, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 50 + }, + { + "entPhysicalIndex": 68424777, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 51 + }, + { + "entPhysicalIndex": 68424778, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 52 + }, { "entPhysicalIndex": 68428800, "entPhysicalDescr": "GT 88E6095", @@ -8053,6 +8148,158 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68428865, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 2 + }, + { + "entPhysicalIndex": 68428866, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 1 + }, + { + "entPhysicalIndex": 68428867, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 4 + }, + { + "entPhysicalIndex": 68428868, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 3 + }, + { + "entPhysicalIndex": 68428869, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 6 + }, + { + "entPhysicalIndex": 68428870, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 5 + }, + { + "entPhysicalIndex": 68428871, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 8 + }, + { + "entPhysicalIndex": 68428872, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 7 + }, { "entPhysicalIndex": 68432896, "entPhysicalDescr": "GT 88E6095", @@ -8072,6 +8319,158 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68432961, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 10 + }, + { + "entPhysicalIndex": 68432962, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 9 + }, + { + "entPhysicalIndex": 68432963, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 12 + }, + { + "entPhysicalIndex": 68432964, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 11 + }, + { + "entPhysicalIndex": 68432965, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 14 + }, + { + "entPhysicalIndex": 68432966, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 13 + }, + { + "entPhysicalIndex": 68432967, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 16 + }, + { + "entPhysicalIndex": 68432968, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 15 + }, { "entPhysicalIndex": 68436992, "entPhysicalDescr": "GT 88E6095", @@ -8090,6 +8489,158 @@ "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "", "ifIndex": null + }, + { + "entPhysicalIndex": 68437057, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 18 + }, + { + "entPhysicalIndex": 68437058, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 17 + }, + { + "entPhysicalIndex": 68437059, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 20 + }, + { + "entPhysicalIndex": 68437060, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 19 + }, + { + "entPhysicalIndex": 68437061, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 22 + }, + { + "entPhysicalIndex": 68437062, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 21 + }, + { + "entPhysicalIndex": 68437063, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 24 + }, + { + "entPhysicalIndex": 68437064, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 23 } ] }, diff --git a/tests/data/aos7.json b/tests/data/aos7.json index d311a31c2e..671779dd9a 100644 --- a/tests/data/aos7.json +++ b/tests/data/aos7.json @@ -76241,7 +76241,7 @@ "entPhysicalName": "1/SLOT-1", "entPhysicalHardwareRev": "13", "entPhysicalFirmwareRev": "0.20", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", @@ -76336,7 +76336,7 @@ "entPhysicalName": "1/CMM-A", "entPhysicalHardwareRev": "13", "entPhysicalFirmwareRev": "0.20", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", @@ -76430,7 +76430,7 @@ "entPhysicalClass": "chassis", "entPhysicalName": "CHASSIS-2", "entPhysicalHardwareRev": "01", - "entPhysicalFirmwareRev": "", + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "8.7.277.R01", "entPhysicalAlias": "N/A", "entPhysicalAssetID": "", @@ -76449,7 +76449,7 @@ "entPhysicalClass": "chassis", "entPhysicalName": "CHASSIS-3", "entPhysicalHardwareRev": "03", - "entPhysicalFirmwareRev": "", + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "8.7.277.R01", "entPhysicalAlias": "N/A", "entPhysicalAssetID": "", @@ -76468,7 +76468,7 @@ "entPhysicalClass": "chassis", "entPhysicalName": "CHASSIS-4", "entPhysicalHardwareRev": "03", - "entPhysicalFirmwareRev": "", + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "8.7.277.R01", "entPhysicalAlias": "N/A", "entPhysicalAssetID": "", @@ -76638,9 +76638,9 @@ "entPhysicalDescr": "", "entPhysicalClass": "fan", "entPhysicalName": "1/FANTRAY-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", @@ -76657,9 +76657,9 @@ "entPhysicalDescr": "", "entPhysicalClass": "fan", "entPhysicalName": "2/FANTRAY-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", @@ -76676,9 +76676,9 @@ "entPhysicalDescr": "", "entPhysicalClass": "", "entPhysicalName": "2/FANTRAY-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "", @@ -76686,7 +76686,7 @@ "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -76695,9 +76695,9 @@ "entPhysicalDescr": "", "entPhysicalClass": "", "entPhysicalName": "3/FANTRAY-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "", @@ -76705,7 +76705,7 @@ "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -76714,9 +76714,9 @@ "entPhysicalDescr": "", "entPhysicalClass": "", "entPhysicalName": "4/FANTRAY-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "", @@ -76724,7 +76724,7 @@ "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, diff --git a/tests/data/arista_eos.json b/tests/data/arista_eos.json index 393ae59ef7..8861646c5b 100644 --- a/tests/data/arista_eos.json +++ b/tests/data/arista_eos.json @@ -9400,20 +9400,20 @@ { "entPhysicalIndex": 100004000, "entPhysicalDescr": "Scd Chip 0", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -9438,20 +9438,20 @@ { "entPhysicalIndex": 100004196, "entPhysicalDescr": "Standby Cpld Chip 196", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -10027,58 +10027,58 @@ { "entPhysicalIndex": 100006031, "entPhysicalDescr": "PwrCon1 Rail14 POS3V3_SFP", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100006032, "entPhysicalDescr": "PwrCon1 Rail15 POS12V_STDBY", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100006033, "entPhysicalDescr": "PwrCon1 Rail16 POS12V", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -10122,39 +10122,39 @@ { "entPhysicalIndex": 100054101, "entPhysicalDescr": "Switching ASIC Chip 50101", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100054102, "entPhysicalDescr": "Switching ASIC Chip 50102", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -11148,381 +11148,381 @@ { "entPhysicalIndex": 100100053, "entPhysicalDescr": "Ethernet50/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100054, "entPhysicalDescr": "Ethernet50/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100055, "entPhysicalDescr": "Ethernet50/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100056, "entPhysicalDescr": "Ethernet50/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100057, "entPhysicalDescr": "Ethernet51/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100058, "entPhysicalDescr": "Ethernet51/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100059, "entPhysicalDescr": "Ethernet51/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100060, "entPhysicalDescr": "Ethernet51/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100061, "entPhysicalDescr": "Ethernet52/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100062, "entPhysicalDescr": "Ethernet52/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100063, "entPhysicalDescr": "Ethernet52/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100064, "entPhysicalDescr": "Ethernet52/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100065, "entPhysicalDescr": "Ethernet53/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100066, "entPhysicalDescr": "Ethernet53/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100067, "entPhysicalDescr": "Ethernet53/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100068, "entPhysicalDescr": "Ethernet53/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100069, "entPhysicalDescr": "Ethernet54/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100070, "entPhysicalDescr": "Ethernet54/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100071, "entPhysicalDescr": "Ethernet54/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100100072, "entPhysicalDescr": "Ethernet54/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -11547,20 +11547,20 @@ { "entPhysicalIndex": 100110073, "entPhysicalDescr": "Management1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -12649,134 +12649,134 @@ { "entPhysicalIndex": 100308100, "entPhysicalDescr": "Xcvr for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100308201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100308202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100308210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100308211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100308212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100308213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -12801,134 +12801,134 @@ { "entPhysicalIndex": 100309100, "entPhysicalDescr": "Xcvr for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100309201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100309202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100309210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100309211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100309212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100309213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -12953,134 +12953,134 @@ { "entPhysicalIndex": 100310100, "entPhysicalDescr": "Xcvr for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100310201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100310202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100310210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100310211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100310212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100310213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -13105,134 +13105,134 @@ { "entPhysicalIndex": 100311100, "entPhysicalDescr": "Xcvr for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100311201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100311202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100311210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100311211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100311212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100311213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -13257,134 +13257,134 @@ { "entPhysicalIndex": 100312100, "entPhysicalDescr": "Xcvr for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100312201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100312202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100312210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100312211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100312212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100312213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -13409,134 +13409,134 @@ { "entPhysicalIndex": 100313100, "entPhysicalDescr": "Xcvr for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100313201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100313202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100313210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100313211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100313212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100313213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -13561,134 +13561,134 @@ { "entPhysicalIndex": 100314100, "entPhysicalDescr": "Xcvr for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100314201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100314202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100314210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100314211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100314212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100314213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -13713,134 +13713,134 @@ { "entPhysicalIndex": 100315100, "entPhysicalDescr": "Xcvr for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100315201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100315202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100315210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100315211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100315212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100315213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -13865,134 +13865,134 @@ { "entPhysicalIndex": 100316100, "entPhysicalDescr": "Xcvr for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100316201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100316202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100316210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100316211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100316212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100316213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14017,134 +14017,134 @@ { "entPhysicalIndex": 100317100, "entPhysicalDescr": "Xcvr for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100317201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100317202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100317210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100317211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100317212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100317213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14169,134 +14169,134 @@ { "entPhysicalIndex": 100318100, "entPhysicalDescr": "Xcvr for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100318201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100318202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100318210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100318211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100318212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100318213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14321,134 +14321,134 @@ { "entPhysicalIndex": 100319100, "entPhysicalDescr": "Xcvr for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100319201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100319202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100319210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100319211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100319212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100319213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14473,134 +14473,134 @@ { "entPhysicalIndex": 100320100, "entPhysicalDescr": "Xcvr for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100320201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100320202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100320210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100320211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100320212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100320213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14625,134 +14625,134 @@ { "entPhysicalIndex": 100321100, "entPhysicalDescr": "Xcvr for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100321201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100321202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100321210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100321211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100321212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100321213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14777,134 +14777,134 @@ { "entPhysicalIndex": 100322100, "entPhysicalDescr": "Xcvr for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100322201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100322202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100322210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100322211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100322212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100322213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -14929,134 +14929,134 @@ { "entPhysicalIndex": 100323100, "entPhysicalDescr": "Xcvr for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100323201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100323202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100323210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100323211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100323212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100323213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15081,134 +15081,134 @@ { "entPhysicalIndex": 100324100, "entPhysicalDescr": "Xcvr for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100324201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100324202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100324210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100324211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100324212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100324213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15233,134 +15233,134 @@ { "entPhysicalIndex": 100325100, "entPhysicalDescr": "Xcvr for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100325201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100325202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100325210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100325211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100325212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100325213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15385,134 +15385,134 @@ { "entPhysicalIndex": 100326100, "entPhysicalDescr": "Xcvr for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100326201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100326202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100326210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100326211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100326212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100326213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15537,134 +15537,134 @@ { "entPhysicalIndex": 100327100, "entPhysicalDescr": "Xcvr for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100327201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100327202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100327210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100327211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100327212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100327213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15689,134 +15689,134 @@ { "entPhysicalIndex": 100328100, "entPhysicalDescr": "Xcvr for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100328201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100328202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100328210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100328211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100328212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100328213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15841,134 +15841,134 @@ { "entPhysicalIndex": 100329100, "entPhysicalDescr": "Xcvr for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100329201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100329202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100329210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100329211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100329212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100329213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -15993,134 +15993,134 @@ { "entPhysicalIndex": 100330100, "entPhysicalDescr": "Xcvr for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100330201, "entPhysicalDescr": "DOM Temperature Sensor for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100330202, "entPhysicalDescr": "DOM Voltage Sensor for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100330210, "entPhysicalDescr": "Lane 0 for Xcvr for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100330211, "entPhysicalDescr": "DOM TX Bias Sensor for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100330212, "entPhysicalDescr": "DOM TX Power Sensor for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100330213, "entPhysicalDescr": "DOM RX Power Sensor for Ethernet30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -17209,39 +17209,39 @@ { "entPhysicalIndex": 100353000, "entPhysicalDescr": "Xcvr Slot 53", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 100354000, "entPhysicalDescr": "Xcvr Slot 54", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -17684,20 +17684,20 @@ { "entPhysicalIndex": 100711106, "entPhysicalDescr": "Output voltage sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -17874,20 +17874,20 @@ { "entPhysicalIndex": 100721106, "entPhysicalDescr": "Output voltage sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { diff --git a/tests/data/arris-d5.json b/tests/data/arris-d5.json index 7c6aaed933..d82840e05f 100644 --- a/tests/data/arris-d5.json +++ b/tests/data/arris-d5.json @@ -11143,9 +11143,9 @@ "entPhysicalDescr": "ARRIS, Inc. D5 Universal EdgeQAM", "entPhysicalClass": "chassis", "entPhysicalName": "D5 UEQ", - "entPhysicalHardwareRev": "E..", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "E", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", "entPhysicalAlias": "NONE", "entPhysicalAssetID": "NONE", "entPhysicalIsFRU": "true", @@ -11447,9 +11447,9 @@ "entPhysicalDescr": "MON card", "entPhysicalClass": "module", "entPhysicalName": "MON", - "entPhysicalHardwareRev": "J..", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "3.0.2.117.......\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "J", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "3.0.2.117", "entPhysicalAlias": "NONE", "entPhysicalAssetID": "NONE", "entPhysicalIsFRU": "true", @@ -11618,9 +11618,9 @@ "entPhysicalDescr": "QAM card", "entPhysicalClass": "module", "entPhysicalName": "QAM 1", - "entPhysicalHardwareRev": "F..", - "entPhysicalFirmwareRev": "MUX06FB0000-RF03\n30 33 30 39 30 30 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "F", + "entPhysicalFirmwareRev": "MUX06FB0000-RF03", + "entPhysicalSoftwareRev": "", "entPhysicalAlias": "NONE", "entPhysicalAssetID": "NONE", "entPhysicalIsFRU": "true", @@ -12055,9 +12055,9 @@ "entPhysicalDescr": "WAN card", "entPhysicalClass": "module", "entPhysicalName": "WAN 7", - "entPhysicalHardwareRev": "D..", - "entPhysicalFirmwareRev": "3.0.2.8.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "3.0.2.117.......\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "D", + "entPhysicalFirmwareRev": "3.0.2.8", + "entPhysicalSoftwareRev": "3.0.2.117", "entPhysicalAlias": "NONE", "entPhysicalAssetID": "NONE", "entPhysicalIsFRU": "true", @@ -12416,9 +12416,9 @@ "entPhysicalDescr": "Power Module Card", "entPhysicalClass": "module", "entPhysicalName": "PMOD 1", - "entPhysicalHardwareRev": "D..", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "D", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", "entPhysicalAlias": "NONE", "entPhysicalAssetID": "NONE", "entPhysicalIsFRU": "true", @@ -12530,9 +12530,9 @@ "entPhysicalDescr": "Fan Tray", "entPhysicalClass": "fan", "entPhysicalName": "FAN 1", - "entPhysicalHardwareRev": "...", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", @@ -12644,9 +12644,9 @@ "entPhysicalDescr": "Power Supply", "entPhysicalClass": "module", "entPhysicalName": "PSU 1", - "entPhysicalHardwareRev": "...", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", diff --git a/tests/data/aruba-instant.json b/tests/data/aruba-instant.json index e31f1336a5..4e6070726a 100644 --- a/tests/data/aruba-instant.json +++ b/tests/data/aruba-instant.json @@ -2652,7 +2652,7 @@ "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": "Instant Virtual Controller Cluster", - "entPhysicalVendorType": "Aruba", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "bb6a73be01282660f5f9a85b8b2e6b33539f10d9cfd2d86c8e", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -2662,16 +2662,16 @@ { "entPhysicalIndex": 2, "entPhysicalDescr": "70:3a:e:c9:c2:46", - "entPhysicalClass": "", + "entPhysicalClass": "other", "entPhysicalName": "instant-ap-src-1 10.128.0.11 Cluster Master", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "v2c", + "entPhysicalSoftwareRev": "8.4.0.0-8.4.0.0", "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": "ap225", - "entPhysicalVendorType": "Aruba", + "entPhysicalVendorType": "accessPoint", "entPhysicalSerialNum": "CNBJHMV0WN", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, diff --git a/tests/data/aruba-instant_105.json b/tests/data/aruba-instant_105.json index 4f53c0c5e7..29cd962bf9 100644 --- a/tests/data/aruba-instant_105.json +++ b/tests/data/aruba-instant_105.json @@ -2110,7 +2110,7 @@ "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": "Instant Virtual Controller Cluster", - "entPhysicalVendorType": "Aruba", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "d750fa7701c9617fe72f583a7f7a1407220796cd3f1e5ef5cb", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -2120,16 +2120,16 @@ { "entPhysicalIndex": 2, "entPhysicalDescr": "24:de:c6:c3:50:a4", - "entPhysicalClass": "", + "entPhysicalClass": "other", "entPhysicalName": "24:de:c6:c3:50:a4 10.4.1.27 Cluster Member", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "v2c", + "entPhysicalSoftwareRev": "6.4.4.8-4.2.4.12", "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": "ap105", - "entPhysicalVendorType": "Aruba", + "entPhysicalVendorType": "accessPoint", "entPhysicalSerialNum": "BT0489813", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, @@ -2139,16 +2139,16 @@ { "entPhysicalIndex": 3, "entPhysicalDescr": "24:de:c6:c3:52:da", - "entPhysicalClass": "", + "entPhysicalClass": "other", "entPhysicalName": "24:de:c6:c3:52:da 10.4.1.26 Cluster Master", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "v2c", + "entPhysicalSoftwareRev": "6.4.4.8-4.2.4.12", "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": "ap105", - "entPhysicalVendorType": "Aruba", + "entPhysicalVendorType": "accessPoint", "entPhysicalSerialNum": "BT0490379", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, diff --git a/tests/data/arubaos-cx.json b/tests/data/arubaos-cx.json index 87a14d2013..082eb039b7 100644 --- a/tests/data/arubaos-cx.json +++ b/tests/data/arubaos-cx.json @@ -12690,7 +12690,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "JL635A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.1.50", + "entPhysicalVendorType": "arubaWiredSwitchJL635A", "entPhysicalSerialNum": "DEVICESERL", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -12709,7 +12709,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.8", + "entPhysicalVendorType": "arubaWiredSwitch8320PowerSupplySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, @@ -12728,7 +12728,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.8", + "entPhysicalVendorType": "arubaWiredSwitch8320PowerSupplySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, @@ -12747,7 +12747,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.7", + "entPhysicalVendorType": "arubaWiredSwitch8320FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 3, @@ -12766,7 +12766,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.7", + "entPhysicalVendorType": "arubaWiredSwitch8320FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 4, @@ -12785,7 +12785,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.7", + "entPhysicalVendorType": "arubaWiredSwitch8320FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 5, @@ -12804,7 +12804,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.7", + "entPhysicalVendorType": "arubaWiredSwitch8320FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 6, @@ -12823,7 +12823,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.7", + "entPhysicalVendorType": "arubaWiredSwitch8320FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 7, @@ -12842,7 +12842,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.7", + "entPhysicalVendorType": "arubaWiredSwitch8320FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 8, @@ -12861,7 +12861,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.1", + "entPhysicalVendorType": "arubaWiredTemperatureSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 11, @@ -12880,7 +12880,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15001, "entPhysicalParentRelPos": 1, @@ -12899,7 +12899,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15002, "entPhysicalParentRelPos": 1, @@ -12918,7 +12918,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15101, "entPhysicalParentRelPos": 1, @@ -12937,7 +12937,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15102, "entPhysicalParentRelPos": 1, @@ -12956,7 +12956,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15201, "entPhysicalParentRelPos": 1, @@ -12975,7 +12975,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15202, "entPhysicalParentRelPos": 1, @@ -12994,7 +12994,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15301, "entPhysicalParentRelPos": 1, @@ -13013,7 +13013,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15302, "entPhysicalParentRelPos": 1, @@ -13032,7 +13032,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15401, "entPhysicalParentRelPos": 1, @@ -13051,7 +13051,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15402, "entPhysicalParentRelPos": 1, @@ -13070,7 +13070,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15501, "entPhysicalParentRelPos": 1, @@ -13089,7 +13089,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15502, "entPhysicalParentRelPos": 1, @@ -13108,7 +13108,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.3", + "entPhysicalVendorType": "arubaWiredPowerSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 13002, "entPhysicalParentRelPos": 1, @@ -13127,7 +13127,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "JL635A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.21", + "entPhysicalVendorType": "arubaWiredSwitchModuleJL635A", "entPhysicalSerialNum": "DEVICESERL", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 10, @@ -13146,7 +13146,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL480A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.10", + "entPhysicalVendorType": "arubaWiredSwitchPowerSupplyUnitJL480A", "entPhysicalSerialNum": "PWR1SERIAL", "entPhysicalContainedIn": 4001, "entPhysicalParentRelPos": 1, @@ -13165,7 +13165,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL480A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.10", + "entPhysicalVendorType": "arubaWiredSwitchPowerSupplyUnitJL480A", "entPhysicalSerialNum": "PWR2SERIAL", "entPhysicalContainedIn": 4002, "entPhysicalParentRelPos": 1, @@ -13184,7 +13184,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5001, "entPhysicalParentRelPos": 1, @@ -13203,7 +13203,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5001, "entPhysicalParentRelPos": 1, @@ -13222,7 +13222,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5002, "entPhysicalParentRelPos": 1, @@ -13241,7 +13241,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5002, "entPhysicalParentRelPos": 1, @@ -13260,7 +13260,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5003, "entPhysicalParentRelPos": 1, @@ -13279,7 +13279,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5003, "entPhysicalParentRelPos": 1, @@ -13298,7 +13298,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5004, "entPhysicalParentRelPos": 1, @@ -13317,7 +13317,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5004, "entPhysicalParentRelPos": 1, @@ -13336,7 +13336,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5005, "entPhysicalParentRelPos": 1, @@ -13355,7 +13355,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5005, "entPhysicalParentRelPos": 1, @@ -13374,7 +13374,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5006, "entPhysicalParentRelPos": 1, @@ -13393,7 +13393,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.11", + "entPhysicalVendorType": "arubaWiredSwitchJL481AFanTray", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5006, "entPhysicalParentRelPos": 1, @@ -13412,7 +13412,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 1, @@ -13431,7 +13431,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 2, @@ -13450,7 +13450,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 3, @@ -13469,7 +13469,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 4, @@ -13488,7 +13488,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 5, @@ -13507,7 +13507,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 6, @@ -13526,7 +13526,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 7, @@ -13545,7 +13545,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 8, @@ -13564,7 +13564,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 9, @@ -13583,7 +13583,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 10, @@ -13602,7 +13602,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 11, @@ -13621,7 +13621,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 12, @@ -13640,7 +13640,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 13, @@ -13659,7 +13659,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 14, @@ -13678,7 +13678,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 15, @@ -13697,7 +13697,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 16, @@ -13716,7 +13716,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 17, @@ -13735,7 +13735,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 18, @@ -13754,7 +13754,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 19, @@ -13773,7 +13773,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 20, @@ -13792,7 +13792,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 21, @@ -13811,7 +13811,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 22, @@ -13830,7 +13830,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 23, @@ -13849,7 +13849,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 24, @@ -13868,7 +13868,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 25, @@ -13887,7 +13887,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 26, @@ -13906,7 +13906,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 27, @@ -13925,7 +13925,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 28, @@ -13944,7 +13944,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 29, @@ -13963,7 +13963,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 30, @@ -13982,7 +13982,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 31, @@ -14001,7 +14001,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 32, @@ -14020,7 +14020,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 33, @@ -14039,7 +14039,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 34, @@ -14058,7 +14058,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 35, @@ -14077,7 +14077,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 36, @@ -14096,7 +14096,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 37, @@ -14115,7 +14115,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 38, @@ -14134,7 +14134,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 39, @@ -14153,7 +14153,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 40, @@ -14172,7 +14172,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 41, @@ -14191,7 +14191,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 42, @@ -14210,7 +14210,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 43, @@ -14229,7 +14229,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 44, @@ -14248,7 +14248,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 45, @@ -14267,7 +14267,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 46, @@ -14286,7 +14286,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 47, @@ -14305,7 +14305,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 48, @@ -14324,7 +14324,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 49, @@ -14343,7 +14343,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 50, @@ -14362,7 +14362,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 51, @@ -14381,7 +14381,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 52, @@ -14400,7 +14400,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 53, @@ -14419,7 +14419,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 54, @@ -14438,7 +14438,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 55, @@ -14457,7 +14457,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 56, diff --git a/tests/data/arubaos-cx_10.06.json b/tests/data/arubaos-cx_10.06.json index cffbe42357..ce0b8f81f6 100644 --- a/tests/data/arubaos-cx_10.06.json +++ b/tests/data/arubaos-cx_10.06.json @@ -39716,7 +39716,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "JL635A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.1.50", + "entPhysicalVendorType": "arubaWiredSwitchJL635A", "entPhysicalSerialNum": "AB12CD345E", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -39735,7 +39735,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.10", + "entPhysicalVendorType": "arubaWiredSwitch8325PowerSupplySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, @@ -39754,7 +39754,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.10", + "entPhysicalVendorType": "arubaWiredSwitch8325PowerSupplySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, @@ -39773,7 +39773,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.9", + "entPhysicalVendorType": "arubaWiredSwitch8325FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 3, @@ -39792,7 +39792,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.9", + "entPhysicalVendorType": "arubaWiredSwitch8325FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 4, @@ -39811,7 +39811,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.9", + "entPhysicalVendorType": "arubaWiredSwitch8325FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 5, @@ -39830,7 +39830,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.9", + "entPhysicalVendorType": "arubaWiredSwitch8325FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 6, @@ -39849,7 +39849,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.9", + "entPhysicalVendorType": "arubaWiredSwitch8325FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 7, @@ -39868,7 +39868,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.2.9", + "entPhysicalVendorType": "arubaWiredSwitch8325FanTraySlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 8, @@ -39887,7 +39887,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.1", + "entPhysicalVendorType": "arubaWiredTemperatureSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 11, @@ -39906,7 +39906,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15001, "entPhysicalParentRelPos": 1, @@ -39925,7 +39925,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15002, "entPhysicalParentRelPos": 1, @@ -39944,7 +39944,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15101, "entPhysicalParentRelPos": 1, @@ -39963,7 +39963,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15102, "entPhysicalParentRelPos": 1, @@ -39982,7 +39982,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15201, "entPhysicalParentRelPos": 1, @@ -40001,7 +40001,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15202, "entPhysicalParentRelPos": 1, @@ -40020,7 +40020,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15301, "entPhysicalParentRelPos": 1, @@ -40039,7 +40039,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15302, "entPhysicalParentRelPos": 1, @@ -40058,7 +40058,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15401, "entPhysicalParentRelPos": 1, @@ -40077,7 +40077,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15402, "entPhysicalParentRelPos": 1, @@ -40096,7 +40096,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.3", + "entPhysicalVendorType": "arubaWiredPowerSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 13001, "entPhysicalParentRelPos": 1, @@ -40115,7 +40115,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 15502, "entPhysicalParentRelPos": 1, @@ -40134,7 +40134,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.3", + "entPhysicalVendorType": "arubaWiredPowerSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 13002, "entPhysicalParentRelPos": 1, @@ -40153,7 +40153,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "JL635A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.21", + "entPhysicalVendorType": "arubaWiredSwitchModuleJL635A", "entPhysicalSerialNum": "AB12CD345E", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 10, @@ -40172,7 +40172,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL480A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.27", + "entPhysicalVendorType": "arubaWiredSwitchPowerSupplyUnitJL632A", "entPhysicalSerialNum": "AB12CD345F", "entPhysicalContainedIn": 4001, "entPhysicalParentRelPos": 1, @@ -40191,7 +40191,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL480A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.27", + "entPhysicalVendorType": "arubaWiredSwitchPowerSupplyUnitJL632A", "entPhysicalSerialNum": "AB12CD345G", "entPhysicalContainedIn": 4002, "entPhysicalParentRelPos": 1, @@ -40210,7 +40210,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5001, "entPhysicalParentRelPos": 1, @@ -40229,7 +40229,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5001, "entPhysicalParentRelPos": 1, @@ -40248,7 +40248,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5002, "entPhysicalParentRelPos": 1, @@ -40267,7 +40267,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5002, "entPhysicalParentRelPos": 1, @@ -40286,7 +40286,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5003, "entPhysicalParentRelPos": 1, @@ -40305,7 +40305,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5003, "entPhysicalParentRelPos": 1, @@ -40324,7 +40324,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5004, "entPhysicalParentRelPos": 1, @@ -40343,7 +40343,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5004, "entPhysicalParentRelPos": 1, @@ -40362,7 +40362,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5005, "entPhysicalParentRelPos": 1, @@ -40381,7 +40381,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5005, "entPhysicalParentRelPos": 1, @@ -40400,7 +40400,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5006, "entPhysicalParentRelPos": 1, @@ -40419,7 +40419,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL481A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.29", + "entPhysicalVendorType": "arubaWiredSwitchFanTrayJL628A", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 5006, "entPhysicalParentRelPos": 1, @@ -40438,7 +40438,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 1, @@ -40457,7 +40457,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 2, @@ -40476,7 +40476,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 3, @@ -40495,7 +40495,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 4, @@ -40514,7 +40514,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 5, @@ -40533,7 +40533,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 6, @@ -40552,7 +40552,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 7, @@ -40571,7 +40571,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 8, @@ -40590,7 +40590,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 9, @@ -40609,7 +40609,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 10, @@ -40628,7 +40628,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 11, @@ -40647,7 +40647,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 12, @@ -40666,7 +40666,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 13, @@ -40685,7 +40685,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 14, @@ -40704,7 +40704,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 15, @@ -40723,7 +40723,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 16, @@ -40742,7 +40742,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 17, @@ -40761,7 +40761,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 18, @@ -40780,7 +40780,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 19, @@ -40799,7 +40799,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 20, @@ -40818,7 +40818,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 21, @@ -40837,7 +40837,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 22, @@ -40856,7 +40856,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 23, @@ -40875,7 +40875,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 24, @@ -40894,7 +40894,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 25, @@ -40913,7 +40913,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 26, @@ -40932,7 +40932,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 27, @@ -40951,7 +40951,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 28, @@ -40970,7 +40970,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 29, @@ -40989,7 +40989,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 30, @@ -41008,7 +41008,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 31, @@ -41027,7 +41027,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 32, @@ -41046,7 +41046,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 33, @@ -41065,7 +41065,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 34, @@ -41084,7 +41084,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 35, @@ -41103,7 +41103,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 36, @@ -41122,7 +41122,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 37, @@ -41141,7 +41141,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 38, @@ -41160,7 +41160,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 39, @@ -41179,7 +41179,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 40, @@ -41198,7 +41198,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 41, @@ -41217,7 +41217,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 42, @@ -41236,7 +41236,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 43, @@ -41255,7 +41255,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 44, @@ -41274,7 +41274,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 45, @@ -41293,7 +41293,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 46, @@ -41312,7 +41312,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 47, @@ -41331,7 +41331,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.15", + "entPhysicalVendorType": "arubaWiredSwitch25GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 48, @@ -41350,7 +41350,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 49, @@ -41445,7 +41445,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 50, @@ -41540,7 +41540,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 51, @@ -41635,7 +41635,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 52, @@ -41730,7 +41730,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 53, @@ -41825,7 +41825,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 54, @@ -41920,7 +41920,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 55, @@ -42015,7 +42015,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.17", + "entPhysicalVendorType": "arubaWiredSwitch100GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 56, diff --git a/tests/data/arubaos-cx_10.07.json b/tests/data/arubaos-cx_10.07.json index deaabe8224..2f12fd68e7 100644 --- a/tests/data/arubaos-cx_10.07.json +++ b/tests/data/arubaos-cx_10.07.json @@ -12670,7 +12670,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL727A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.1.303", + "entPhysicalVendorType": "arubaWiredSwitchJL727A", "entPhysicalSerialNum": "AB12CD3456", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -12689,7 +12689,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL727A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.1.303", + "entPhysicalVendorType": "arubaWiredSwitchJL727A", "entPhysicalSerialNum": "AB12CD3456", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, @@ -12708,7 +12708,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.1", + "entPhysicalVendorType": "arubaWiredTemperatureSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 110001, "entPhysicalParentRelPos": 1, @@ -12727,7 +12727,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 115001, "entPhysicalParentRelPos": 1, @@ -12746,7 +12746,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 115002, "entPhysicalParentRelPos": 1, @@ -12765,7 +12765,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 115003, "entPhysicalParentRelPos": 1, @@ -12784,7 +12784,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.3", + "entPhysicalVendorType": "arubaWiredPowerSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 113001, "entPhysicalParentRelPos": 1, @@ -12822,7 +12822,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "JL727A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.93", + "entPhysicalVendorType": "arubaWiredSwitchModuleJL727A", "entPhysicalSerialNum": "AB12CD3456", "entPhysicalContainedIn": 101001, "entPhysicalParentRelPos": 2, @@ -12841,7 +12841,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "N/A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.112", + "entPhysicalVendorType": "arubaWiredSwitchPoEPowerSupplyUnit", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 101001, "entPhysicalParentRelPos": 3, @@ -12860,7 +12860,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 101001, "entPhysicalParentRelPos": 4, @@ -12879,7 +12879,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 101001, "entPhysicalParentRelPos": 5, @@ -12898,7 +12898,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.2", + "entPhysicalVendorType": "arubaWiredRPMSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 101001, "entPhysicalParentRelPos": 6, @@ -12917,7 +12917,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 1, @@ -12936,7 +12936,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 2, @@ -12955,7 +12955,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 3, @@ -12974,7 +12974,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 4, @@ -12993,7 +12993,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 5, @@ -13012,7 +13012,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 6, @@ -13031,7 +13031,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 7, @@ -13050,7 +13050,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 8, @@ -13069,7 +13069,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 9, @@ -13088,7 +13088,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 10, @@ -13107,7 +13107,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 11, @@ -13126,7 +13126,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 12, @@ -13145,7 +13145,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 13, @@ -13164,7 +13164,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 14, @@ -13183,7 +13183,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 15, @@ -13202,7 +13202,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 16, @@ -13221,7 +13221,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 17, @@ -13240,7 +13240,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 18, @@ -13259,7 +13259,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 19, @@ -13278,7 +13278,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 20, @@ -13297,7 +13297,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 21, @@ -13316,7 +13316,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 22, @@ -13335,7 +13335,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 23, @@ -13354,7 +13354,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 24, @@ -13373,7 +13373,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 25, @@ -13392,7 +13392,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 26, @@ -13411,7 +13411,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 27, @@ -13430,7 +13430,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 28, @@ -13449,7 +13449,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 29, @@ -13468,7 +13468,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 30, @@ -13487,7 +13487,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 31, @@ -13506,7 +13506,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 32, @@ -13525,7 +13525,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 33, @@ -13544,7 +13544,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 34, @@ -13563,7 +13563,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 35, @@ -13582,7 +13582,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 36, @@ -13601,7 +13601,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 37, @@ -13620,7 +13620,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 38, @@ -13639,7 +13639,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 39, @@ -13658,7 +13658,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 40, @@ -13677,7 +13677,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 41, @@ -13696,7 +13696,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 42, @@ -13715,7 +13715,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 43, @@ -13734,7 +13734,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 44, @@ -13753,7 +13753,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 45, @@ -13772,7 +13772,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 46, @@ -13791,7 +13791,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 47, @@ -13810,7 +13810,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 48, @@ -13829,7 +13829,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.14", + "entPhysicalVendorType": "arubaWiredSwitch10GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 49, @@ -13848,7 +13848,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.14", + "entPhysicalVendorType": "arubaWiredSwitch10GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 50, @@ -13867,7 +13867,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.14", + "entPhysicalVendorType": "arubaWiredSwitch10GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 51, @@ -13886,7 +13886,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.14", + "entPhysicalVendorType": "arubaWiredSwitch10GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 112001, "entPhysicalParentRelPos": 52, diff --git a/tests/data/arubaos-cx_10.10.json b/tests/data/arubaos-cx_10.10.json index 9a2991bf09..570aeebf5a 100644 --- a/tests/data/arubaos-cx_10.10.json +++ b/tests/data/arubaos-cx_10.10.json @@ -4804,7 +4804,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "JL679A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.1.254", + "entPhysicalVendorType": "arubaWiredSwitchJL679A", "entPhysicalSerialNum": "CN10K00000", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -4823,7 +4823,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.1", + "entPhysicalVendorType": "arubaWiredTemperatureSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 6, @@ -4842,7 +4842,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.1.3", + "entPhysicalVendorType": "arubaWiredPowerSensor", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 13001, "entPhysicalParentRelPos": 1, @@ -4861,7 +4861,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "JL679A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.110", + "entPhysicalVendorType": "arubaWiredSwitchModuleJL679A", "entPhysicalSerialNum": "CN10K00000", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, @@ -4880,7 +4880,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "N/A", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.127", + "entPhysicalVendorType": "arubaWiredSwitch165WPowerSupplyUnit", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, @@ -4899,7 +4899,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 1, @@ -4918,7 +4918,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 2, @@ -4937,7 +4937,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 3, @@ -4956,7 +4956,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 4, @@ -4975,7 +4975,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 5, @@ -4994,7 +4994,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 6, @@ -5013,7 +5013,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 7, @@ -5032,7 +5032,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 8, @@ -5051,7 +5051,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 9, @@ -5070,7 +5070,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 10, @@ -5089,7 +5089,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 11, @@ -5108,7 +5108,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 12, @@ -5127,7 +5127,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 13, @@ -5146,7 +5146,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.13", + "entPhysicalVendorType": "arubaWiredSwitch1GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 14, @@ -5165,7 +5165,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.14", + "entPhysicalVendorType": "arubaWiredSwitch10GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 15, @@ -5184,7 +5184,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "enterprises.47196.4.1.1.2.3.14", + "entPhysicalVendorType": "arubaWiredSwitch10GbMaxPort", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 12001, "entPhysicalParentRelPos": 16, diff --git a/tests/data/arubaos-cx_6300m.json b/tests/data/arubaos-cx_6300m.json index b0c1a0bc4b..11e7834fa5 100644 --- a/tests/data/arubaos-cx_6300m.json +++ b/tests/data/arubaos-cx_6300m.json @@ -16198,39 +16198,39 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "Aruba 6300 VSF Stack", - "entPhysicalClass": "", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "FL.10.10.1030", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 101001, "entPhysicalDescr": "6300M 24-port SFP+ and 4-port SFP56 Switch", - "entPhysicalClass": "", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "FL.10.10.1030", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "SG19KMX0MQ", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/aviat-wtm.json b/tests/data/aviat-wtm.json index 6194e7d818..312499bf3a 100644 --- a/tests/data/aviat-wtm.json +++ b/tests/data/aviat-wtm.json @@ -1384,704 +1384,704 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "System Root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Root", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "WTM4000 Terminal", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Terminal1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "2.7.0.11.4349-WTM4100", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "W42-11H2-WPX", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "AAA9999A999", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3, "entPhysicalDescr": "Input voltage sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "VoltageSensor1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4, "entPhysicalDescr": "Input current sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "CurrentSensor1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5, "entPhysicalDescr": "PCB temperature (near switch)", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "InternalTemp1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "PCB temperature (near modem)", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "InternalTemp1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7, "entPhysicalDescr": "PCB temperature (near power supply)", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "InternalTemp1/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 8, "entPhysicalDescr": "DC/DC converter temperature", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "InternalTemp1/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9, "entPhysicalDescr": "FPGA junction temperature", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "InternalTemp1/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, "entPhysicalDescr": "GigabitEthernetPort 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, "entPhysicalDescr": "GigabitEthernetPort 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, "entPhysicalDescr": "SFP+ Slot 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP+Slot1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, "entPhysicalDescr": "SFP+ Slot 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP+Slot1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, "entPhysicalDescr": "Central Processing Unit", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "CPU1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 15, "entPhysicalDescr": "Current CPU usage", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "CPUUsage1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 16, "entPhysicalDescr": "15-minute average CPU usage", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "CPUUsageAvg1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 17, "entPhysicalDescr": "Boot NVRAM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAM1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 18, "entPhysicalDescr": "ECC corrections", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMECCCorrections1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 19, "entPhysicalDescr": "ECC failures", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMECCErrors1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 20, "entPhysicalDescr": "Bad block count", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMBadBlocks1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 21, "entPhysicalDescr": "Primary NVRAM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAM1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 22, "entPhysicalDescr": "ECC corrections", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMECCCorrections1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 23, "entPhysicalDescr": "ECC failures", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMECCErrors1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 24, "entPhysicalDescr": "Bad block count", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMBadBlocks1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25, "entPhysicalDescr": "Maximum erase count", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMMaxEraseCount1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 26, "entPhysicalDescr": "Used space", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "NVRAMUsage1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 27, "entPhysicalDescr": "Used RAM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RAMUsage1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 28, "entPhysicalDescr": "Time in service", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "TimeInService1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 35, "entPhysicalDescr": "PA Temperature", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Temperature1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 36, "entPhysicalDescr": "PA Temperature", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Temperature1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 37, "entPhysicalDescr": "Transmission time", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "TransmissionTime1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 38, "entPhysicalDescr": "Transmission time", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "TransmissionTime1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 57, "entPhysicalDescr": "WTM4000 Radio Module", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RFModule1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 58, "entPhysicalDescr": "WTM4000 Radio Module", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RFModule1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 59, "entPhysicalDescr": "Radio Carrier", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Carrier1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 60, "entPhysicalDescr": "Radio Carrier", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Carrier1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 61, "entPhysicalDescr": "WTM4000 Radio Interface", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Radio1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/axos.json b/tests/data/axos.json index 85d9ce55d5..63836c5988 100644 --- a/tests/data/axos.json +++ b/tests/data/axos.json @@ -46,14 +46,14 @@ "entPhysicalDescr": "e5x16f", "entPhysicalClass": "chassis", "entPhysicalName": "e5x16f", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", "entPhysicalModelName": "e5x16f", - "entPhysicalVendorType": "Calix", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "071710980001", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, diff --git a/tests/data/axos_e7-2.json b/tests/data/axos_e7-2.json index ea8bf72338..55fa5ba7c1 100644 --- a/tests/data/axos_e7-2.json +++ b/tests/data/axos_e7-2.json @@ -101436,19 +101436,76 @@ "entPhysicalDescr": "e7-2", "entPhysicalClass": "chassis", "entPhysicalName": "e7-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", "entPhysicalModelName": "e7-2", - "entPhysicalVendorType": "Calix", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "071710980000", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Calix", "ifIndex": null + }, + { + "entPhysicalIndex": 100, + "entPhysicalDescr": "Shelf 1", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 101, + "entPhysicalDescr": "xg801", + "entPhysicalClass": "module", + "entPhysicalName": "1-1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": "CR-MBAXOS2230-1", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "100-05529", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "472110040000", + "entPhysicalContainedIn": 100, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "Calix", + "ifIndex": null + }, + { + "entPhysicalIndex": 102, + "entPhysicalDescr": "unknown", + "entPhysicalClass": "module", + "entPhysicalName": "1-2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": "CR-MBAXOS2230-1", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "100-05529", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "472110040000", + "entPhysicalContainedIn": 100, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "Calix", + "ifIndex": null } ] }, diff --git a/tests/data/ciena-sds.json b/tests/data/ciena-sds.json index 8268a0cdc3..91b9c21509 100644 --- a/tests/data/ciena-sds.json +++ b/tests/data/ciena-sds.json @@ -36131,13 +36131,13 @@ "entPhysicalClass": "chassis", "entPhysicalName": "Chassis", "entPhysicalHardwareRev": "D", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-8700-930", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "M9123456", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -36146,59 +36146,59 @@ }, { "entPhysicalIndex": 401, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Modules", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 411, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Power Supplies", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 421, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Fans", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -36207,13 +36207,13 @@ "entPhysicalClass": "sensor", "entPhysicalName": "PWR-A", "entPhysicalHardwareRev": ";;B", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0001-900", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "M9123456", "entPhysicalContainedIn": 411, "entPhysicalParentRelPos": 40, @@ -36226,13 +36226,13 @@ "entPhysicalClass": "sensor", "entPhysicalName": "PWR-B", "entPhysicalHardwareRev": ";;B", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0001-900", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "M9123456", "entPhysicalContainedIn": 411, "entPhysicalParentRelPos": 41, @@ -36241,18 +36241,18 @@ }, { "entPhysicalIndex": 511, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-F1-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Ciena", @@ -36260,18 +36260,18 @@ }, { "entPhysicalIndex": 512, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-F1-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Ciena", @@ -36279,18 +36279,18 @@ }, { "entPhysicalIndex": 513, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-F2-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Ciena", @@ -36298,18 +36298,18 @@ }, { "entPhysicalIndex": 514, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-F2-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Ciena", @@ -36317,18 +36317,18 @@ }, { "entPhysicalIndex": 515, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-F3-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Ciena", @@ -36336,18 +36336,18 @@ }, { "entPhysicalIndex": 516, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-F3-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "Ciena", @@ -36355,40 +36355,40 @@ }, { "entPhysicalIndex": 521, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-T1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Temp Sensor", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 522, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1-T2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Temp Sensor", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -36396,14 +36396,14 @@ "entPhysicalDescr": "", "entPhysicalClass": "sensor", "entPhysicalName": "CFU-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "Fan Tray", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "M9123456", "entPhysicalContainedIn": 421, "entPhysicalParentRelPos": 48, @@ -36415,14 +36415,14 @@ "entPhysicalDescr": "8700, PACKET SERVICES LINE MODULE, (8) 680GIG, rel_saos8700_8.7.0_ga195", "entPhysicalClass": "sensor", "entPhysicalName": "LM9123456: PSLM-680-8", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "rel_saos8700_8.7.0_ga195", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0420-810", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 1, @@ -36434,14 +36434,14 @@ "entPhysicalDescr": "8700, PACKET SERVICES LINE MODULE, (8) 680GIG, rel_saos8700_8.7.0_ga195", "entPhysicalClass": "sensor", "entPhysicalName": "LM9123456: PSLM-680-8", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "rel_saos8700_8.7.0_ga195", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0420-810", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 2, @@ -36453,14 +36453,14 @@ "entPhysicalDescr": "8700, PACKET SERVICES LINE MODULE, (8) 680GIG, rel_saos8700_8.7.0_ga195", "entPhysicalClass": "sensor", "entPhysicalName": "LM9123456: PSLM-680-8", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "rel_saos8700_8.7.0_ga195", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0420-810", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 3, @@ -36472,14 +36472,14 @@ "entPhysicalDescr": "8700, PACKET SERVICES LINE MODULE, (31) 400GIG, rel_saos8700_8.7.0_ga195", "entPhysicalClass": "sensor", "entPhysicalName": "LM9123456: PSLM-400-31", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "rel_saos8700_8.7.0_ga195", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0423-820", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 4, @@ -36491,18 +36491,18 @@ "entPhysicalDescr": "fortyGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100001 }, { @@ -36510,18 +36510,18 @@ "entPhysicalDescr": "fortyGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100002 }, { @@ -36529,18 +36529,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100003 }, { @@ -36548,18 +36548,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100004 }, { @@ -36567,18 +36567,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100005 }, { @@ -36586,18 +36586,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100006 }, { @@ -36605,18 +36605,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100007 }, { @@ -36624,18 +36624,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "1/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100008 }, { @@ -36643,34 +36643,34 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100009 }, { "entPhysicalIndex": 5117, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-2-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 17, "entPhysicalMfgName": "Ciena", @@ -36678,18 +36678,18 @@ }, { "entPhysicalIndex": 5118, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-2-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 18, "entPhysicalMfgName": "Ciena", @@ -36697,18 +36697,18 @@ }, { "entPhysicalIndex": 5133, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-3-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 33, "entPhysicalMfgName": "Ciena", @@ -36716,18 +36716,18 @@ }, { "entPhysicalIndex": 5134, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-3-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 34, "entPhysicalMfgName": "Ciena", @@ -36735,18 +36735,18 @@ }, { "entPhysicalIndex": 5149, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-4-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 49, "entPhysicalMfgName": "Ciena", @@ -36754,18 +36754,18 @@ }, { "entPhysicalIndex": 5150, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-4-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 50, "entPhysicalMfgName": "Ciena", @@ -36773,18 +36773,18 @@ }, { "entPhysicalIndex": 5165, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-5-A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 65, "entPhysicalMfgName": "Ciena", @@ -36792,18 +36792,18 @@ }, { "entPhysicalIndex": 5166, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "sensor", "entPhysicalName": "CFU-5-B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "Fan", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 531, "entPhysicalParentRelPos": 66, "entPhysicalMfgName": "Ciena", @@ -36814,14 +36814,14 @@ "entPhysicalDescr": "8700, HD CONTROL, TIMING AND SWITCH MODULE, rel_saos8700_8.7.0_ga195", "entPhysicalClass": "sensor", "entPhysicalName": "CTX1.ctm: CTX-HD", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "rel_saos8700_8.7.0_ga195", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0056-830", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 31, @@ -36833,14 +36833,14 @@ "entPhysicalDescr": "8700, HD CONTROL, TIMING AND SWITCH MODULE, rel_saos8700_8.7.0_ga195", "entPhysicalClass": "sensor", "entPhysicalName": "CTX2.ctm: CTX-HD", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "rel_saos8700_8.7.0_ga195", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0056-830", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 32, @@ -36849,17 +36849,17 @@ }, { "entPhysicalIndex": 5535, - "entPhysicalDescr": "8700, HD CTX: SWITCH COMPONENT, ", + "entPhysicalDescr": "8700, HD CTX: SWITCH COMPONENT", "entPhysicalClass": "sensor", "entPhysicalName": "CTX1.sm: CTX-SM-HD", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0056-830", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 35, @@ -36868,17 +36868,17 @@ }, { "entPhysicalIndex": 5536, - "entPhysicalDescr": "8700, HD CTX: SWITCH COMPONENT, ", + "entPhysicalDescr": "8700, HD CTX: SWITCH COMPONENT", "entPhysicalClass": "sensor", "entPhysicalName": "CTX2.sm: CTX-SM-HD", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0056-830", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 36, @@ -36887,17 +36887,17 @@ }, { "entPhysicalIndex": 5537, - "entPhysicalDescr": "8700, HD SWITCH MODULE, ", + "entPhysicalDescr": "8700, HD SWITCH MODULE", "entPhysicalClass": "sensor", "entPhysicalName": "SM: SM-HD", - "entPhysicalHardwareRev": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "154-0057-820", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "C5123456", "entPhysicalContainedIn": 401, "entPhysicalParentRelPos": 37, @@ -36909,18 +36909,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 10, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100010 }, { @@ -36928,18 +36928,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100011 }, { @@ -36947,18 +36947,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 12, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100012 }, { @@ -36966,18 +36966,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 13, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100013 }, { @@ -36985,18 +36985,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 14, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100014 }, { @@ -37004,18 +37004,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 15, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100015 }, { @@ -37023,18 +37023,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 16, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100016 }, { @@ -37042,18 +37042,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 17, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100017 }, { @@ -37061,18 +37061,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 18, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100018 }, { @@ -37080,18 +37080,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 19, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100019 }, { @@ -37099,18 +37099,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 20, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100020 }, { @@ -37118,18 +37118,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 21, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100021 }, { @@ -37137,18 +37137,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 22, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100022 }, { @@ -37156,18 +37156,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 23, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100023 }, { @@ -37175,18 +37175,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 24, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100024 }, { @@ -37194,18 +37194,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 25, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100025 }, { @@ -37213,18 +37213,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 26, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100026 }, { @@ -37232,18 +37232,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 27, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100027 }, { @@ -37251,18 +37251,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 28, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100028 }, { @@ -37270,18 +37270,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 29, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100029 }, { @@ -37289,18 +37289,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 30, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100030 }, { @@ -37308,18 +37308,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 31, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100031 }, { @@ -37327,18 +37327,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 32, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100032 }, { @@ -37346,18 +37346,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 33, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100033 }, { @@ -37365,18 +37365,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 34, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100034 }, { @@ -37384,18 +37384,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 35, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100035 }, { @@ -37403,18 +37403,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 36, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100036 }, { @@ -37422,18 +37422,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 37, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100037 }, { @@ -37441,18 +37441,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 38, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100038 }, { @@ -37460,18 +37460,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 39, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100039 }, { @@ -37479,18 +37479,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 40, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100040 }, { @@ -37498,18 +37498,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 41, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100041 }, { @@ -37517,18 +37517,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 42, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100042 }, { @@ -37536,18 +37536,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 43, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100043 }, { @@ -37555,18 +37555,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 551, "entPhysicalParentRelPos": 44, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100044 }, { @@ -37574,18 +37574,18 @@ "entPhysicalDescr": "fortyGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 65, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100065 }, { @@ -37593,18 +37593,18 @@ "entPhysicalDescr": "fortyGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 66, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100066 }, { @@ -37612,18 +37612,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 67, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100067 }, { @@ -37631,18 +37631,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 68, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100068 }, { @@ -37650,18 +37650,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 69, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100069 }, { @@ -37669,18 +37669,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 70, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100070 }, { @@ -37688,18 +37688,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 71, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100071 }, { @@ -37707,18 +37707,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "2/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 552, "entPhysicalParentRelPos": 72, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100072 }, { @@ -37726,18 +37726,18 @@ "entPhysicalDescr": "fortyGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 129, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100129 }, { @@ -37745,18 +37745,18 @@ "entPhysicalDescr": "fortyGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 130, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100130 }, { @@ -37764,18 +37764,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 131, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100131 }, { @@ -37783,18 +37783,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 132, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100132 }, { @@ -37802,18 +37802,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 133, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100133 }, { @@ -37821,18 +37821,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 134, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100134 }, { @@ -37840,18 +37840,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 135, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100135 }, { @@ -37859,18 +37859,18 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "3/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 553, "entPhysicalParentRelPos": 136, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100136 }, { @@ -37878,18 +37878,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 193, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100193 }, { @@ -37897,18 +37897,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 194, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100194 }, { @@ -37916,18 +37916,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 195, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100195 }, { @@ -37935,18 +37935,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 196, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100196 }, { @@ -37954,18 +37954,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 197, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100197 }, { @@ -37973,18 +37973,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 198, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100198 }, { @@ -37992,18 +37992,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 199, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100199 }, { @@ -38011,18 +38011,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 200, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100200 }, { @@ -38030,18 +38030,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 201, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100201 }, { @@ -38049,18 +38049,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 202, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100202 }, { @@ -38068,18 +38068,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 203, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100203 }, { @@ -38087,18 +38087,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 204, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100204 }, { @@ -38106,18 +38106,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 205, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100205 }, { @@ -38125,18 +38125,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 206, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100206 }, { @@ -38144,18 +38144,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 207, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100207 }, { @@ -38163,18 +38163,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 208, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100208 }, { @@ -38182,18 +38182,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 209, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100209 }, { @@ -38201,18 +38201,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 210, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100210 }, { @@ -38220,18 +38220,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 211, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100211 }, { @@ -38239,18 +38239,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 212, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100212 }, { @@ -38258,18 +38258,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 213, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100213 }, { @@ -38277,18 +38277,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 214, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100214 }, { @@ -38296,18 +38296,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 215, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100215 }, { @@ -38315,18 +38315,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 216, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100216 }, { @@ -38334,18 +38334,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 217, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100217 }, { @@ -38353,18 +38353,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 218, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100218 }, { @@ -38372,18 +38372,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 219, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100219 }, { @@ -38391,18 +38391,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 220, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100220 }, { @@ -38410,18 +38410,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 221, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100221 }, { @@ -38429,18 +38429,18 @@ "entPhysicalDescr": "tenGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 222, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100222 }, { @@ -38448,33 +38448,33 @@ "entPhysicalDescr": "hundredGigEthernet", "entPhysicalClass": "port", "entPhysicalName": "4/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 554, "entPhysicalParentRelPos": 223, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100223 }, { "entPhysicalIndex": 100001, "entPhysicalDescr": " qsfpPlus transceiver manufactured 18/10/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "323637322D30325630322001", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 561, "entPhysicalParentRelPos": -1, @@ -38485,15 +38485,15 @@ "entPhysicalIndex": 100003, "entPhysicalDescr": "CIENA qsfp28 transceiver manufactured 03/02/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "160-9400-900", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "AVAGCN1234FG1234", "entPhysicalContainedIn": 563, "entPhysicalParentRelPos": -1, @@ -38504,15 +38504,15 @@ "entPhysicalIndex": 100004, "entPhysicalDescr": "FFFFFFFFFF qsfp28 transceiver manufactured 12/06/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 564, "entPhysicalParentRelPos": -1, @@ -38523,15 +38523,15 @@ "entPhysicalIndex": 100005, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 565, "entPhysicalParentRelPos": -1, @@ -38542,15 +38542,15 @@ "entPhysicalIndex": 100006, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 566, "entPhysicalParentRelPos": -1, @@ -38561,15 +38561,15 @@ "entPhysicalIndex": 100007, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 567, "entPhysicalParentRelPos": -1, @@ -38580,15 +38580,15 @@ "entPhysicalIndex": 100065, "entPhysicalDescr": " qsfpPlus transceiver manufactured 18/10/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "323637322D30325630322001", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 5665, "entPhysicalParentRelPos": -1, @@ -38599,15 +38599,15 @@ "entPhysicalIndex": 100067, "entPhysicalDescr": "CIENA qsfp28 transceiver manufactured 03/02/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "160-9400-900", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "AVAGCN1234FG1234", "entPhysicalContainedIn": 5667, "entPhysicalParentRelPos": -1, @@ -38618,15 +38618,15 @@ "entPhysicalIndex": 100068, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 5668, "entPhysicalParentRelPos": -1, @@ -38637,15 +38637,15 @@ "entPhysicalIndex": 100069, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 5669, "entPhysicalParentRelPos": -1, @@ -38656,15 +38656,15 @@ "entPhysicalIndex": 100070, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 5670, "entPhysicalParentRelPos": -1, @@ -38675,15 +38675,15 @@ "entPhysicalIndex": 100071, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 5671, "entPhysicalParentRelPos": -1, @@ -38694,15 +38694,15 @@ "entPhysicalIndex": 100131, "entPhysicalDescr": "FFFFFFFFFF qsfp28 transceiver manufactured 12/06/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 56131, "entPhysicalParentRelPos": -1, @@ -38713,15 +38713,15 @@ "entPhysicalIndex": 100132, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 56132, "entPhysicalParentRelPos": -1, @@ -38732,15 +38732,15 @@ "entPhysicalIndex": 100133, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 56133, "entPhysicalParentRelPos": -1, @@ -38751,15 +38751,15 @@ "entPhysicalIndex": 100134, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 56134, "entPhysicalParentRelPos": -1, @@ -38770,15 +38770,15 @@ "entPhysicalIndex": 100135, "entPhysicalDescr": "CIENA-INN qsfp28 transceiver manufactured 02/24/20 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-Q30V31", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "INKAC5123456", "entPhysicalContainedIn": 56135, "entPhysicalParentRelPos": -1, @@ -38789,15 +38789,15 @@ "entPhysicalIndex": 100193, "entPhysicalDescr": "FS 850 nm sfp transceiver manufactured 08/23/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "000A", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SFP-10GSR-85", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 56193, "entPhysicalParentRelPos": -1, @@ -38808,15 +38808,15 @@ "entPhysicalIndex": 100195, "entPhysicalDescr": "FS 850 nm sfp transceiver manufactured 08/23/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "000A", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SFP-10GSR-85", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 56195, "entPhysicalParentRelPos": -1, @@ -38827,15 +38827,15 @@ "entPhysicalIndex": 100196, "entPhysicalDescr": "FS 850 nm sfp transceiver manufactured 08/23/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "000A", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SFP-10GSR-85", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 56196, "entPhysicalParentRelPos": -1, @@ -38846,15 +38846,15 @@ "entPhysicalIndex": 100197, "entPhysicalDescr": "CIENA-XGI 1550 nm sfp transceiver manufactured 07/02/19 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "003", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-S40V55", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "191234567890", "entPhysicalContainedIn": 56197, "entPhysicalParentRelPos": -1, @@ -38865,15 +38865,15 @@ "entPhysicalIndex": 100198, "entPhysicalDescr": "CIENA-XGI 1550 nm sfp transceiver manufactured 07/02/19 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "003", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XCVR-S40V55", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "191234567890", "entPhysicalContainedIn": 56198, "entPhysicalParentRelPos": -1, @@ -38884,15 +38884,15 @@ "entPhysicalIndex": 100211, "entPhysicalDescr": "FS 850 nm sfp transceiver manufactured 08/23/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "000A", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SFP-10GSR-85", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 56211, "entPhysicalParentRelPos": -1, @@ -38903,15 +38903,15 @@ "entPhysicalIndex": 100212, "entPhysicalDescr": "FS 850 nm sfp transceiver manufactured 08/23/18 ", "entPhysicalClass": "sensor", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "000A", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SFP-10GSR-85", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S1812345678", "entPhysicalContainedIn": 56212, "entPhysicalParentRelPos": -1, diff --git a/tests/data/cimc.json b/tests/data/cimc.json index 03d048d134..11bc6c738d 100644 --- a/tests/data/cimc.json +++ b/tests/data/cimc.json @@ -376,50 +376,5 @@ ] }, "poller": "matches discovery" - }, - "entity-physical": { - "discovery": { - "entPhysical": [ - { - "entPhysicalIndex": 3, - "entPhysicalDescr": "Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz - 8 Cores, 16 Threads", - "entPhysicalClass": "cpu", - "entPhysicalName": "Processor", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "FALSE", - "entPhysicalModelName": "Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz", - "entPhysicalVendorType": "rack-unit-1/board/cpu-1", - "entPhysicalSerialNum": "Not Specified", - "entPhysicalContainedIn": 2, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": null, - "ifIndex": null - }, - { - "entPhysicalIndex": 3, - "entPhysicalDescr": "Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz - 8 Cores, 16 Threads", - "entPhysicalClass": "cpu", - "entPhysicalName": "Processor", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "FALSE", - "entPhysicalModelName": "Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz", - "entPhysicalVendorType": "rack-unit-1/board/cpu-2", - "entPhysicalSerialNum": "Not Specified", - "entPhysicalContainedIn": 2, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": null, - "ifIndex": null - } - ] - }, - "poller": "matches discovery" } } diff --git a/tests/data/ciscome1200.json b/tests/data/ciscome1200.json index 3c9cbd3d33..a7a7e288cb 100644 --- a/tests/data/ciscome1200.json +++ b/tests/data/ciscome1200.json @@ -1842,7 +1842,7 @@ "entPhysicalFirmwareRev": "ME1200 OS Software Build 15.6-7.SN1", "entPhysicalSoftwareRev": "ME1200 OS Software Build 15.6-7.SN1", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero.0.0.0.0.0.0.0.0.0.0", @@ -1861,7 +1861,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevPortBaseTEther", @@ -1880,7 +1880,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevPortBaseTEther", @@ -1899,7 +1899,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevPortBaseTEther", @@ -1918,7 +1918,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevPortBaseTEther", @@ -1937,7 +1937,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevPortBaseTEther", @@ -1956,7 +1956,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevPortBaseTEther", @@ -1975,7 +1975,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevContainerSFP", @@ -1994,7 +1994,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevContainerSFP", @@ -2013,7 +2013,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevContainerSFP", @@ -2032,7 +2032,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "NA", "entPhysicalVendorType": "cevContainerSFP", @@ -2051,7 +2051,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "", "entPhysicalVendorType": "cevMIBObjects.50.1001", @@ -2070,7 +2070,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "", "entPhysicalVendorType": "cevMIBObjects.70.1002", @@ -2079,6 +2079,82 @@ "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "", "ifIndex": null + }, + { + "entPhysicalIndex": 101, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "None", + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "0", + "entPhysicalModelName": "NA", + "entPhysicalVendorType": "zeroDotZero.0.0.0.0.0.0.0.0.0.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 102, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "None", + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "0", + "entPhysicalModelName": "NA", + "entPhysicalVendorType": "zeroDotZero.0.0.0.0.0.0.0.0.0.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 24, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 103, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "None", + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "0", + "entPhysicalModelName": "NA", + "entPhysicalVendorType": "zeroDotZero.0.0.0.0.0.0.0.0.0.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 25, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 104, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "None", + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "0", + "entPhysicalModelName": "NA", + "entPhysicalVendorType": "zeroDotZero.0.0.0.0.0.0.0.0.0.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 26, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ciscosb_cbs350-4x.json b/tests/data/ciscosb_cbs350-4x.json index 6f2cb63883..4b50eb241c 100644 --- a/tests/data/ciscosb_cbs350-4x.json +++ b/tests/data/ciscosb_cbs350-4x.json @@ -17613,6 +17613,44 @@ "entPhysicalParentRelPos": 26, "entPhysicalMfgName": "", "ifIndex": 102 + }, + { + "entPhysicalIndex": 201326848, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435712, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ciscosb_cbs350.json b/tests/data/ciscosb_cbs350.json index 2e4c32f0ec..c54649a575 100644 --- a/tests/data/ciscosb_cbs350.json +++ b/tests/data/ciscosb_cbs350.json @@ -7950,7 +7950,7 @@ "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 28, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 28 } ] }, diff --git a/tests/data/ciscosb_sg350x-24p.json b/tests/data/ciscosb_sg350x-24p.json index 72d40196fd..40bf49f2f5 100644 --- a/tests/data/ciscosb_sg350x-24p.json +++ b/tests/data/ciscosb_sg350x-24p.json @@ -14181,6 +14181,63 @@ "entPhysicalParentRelPos": 28, "entPhysicalMfgName": "", "ifIndex": 52 + }, + { + "entPhysicalIndex": 134217984, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201326848, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435712, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ciscosb_sg350x-48.json b/tests/data/ciscosb_sg350x-48.json index 65094a4aad..66c0f4882e 100644 --- a/tests/data/ciscosb_sg350x-48.json +++ b/tests/data/ciscosb_sg350x-48.json @@ -176,1217 +176,1274 @@ { "entPhysicalIndex": 128, "entPhysicalDescr": "Stack", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Stack", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67109120, "entPhysicalDescr": "SG350X-48 48-Port Gigabit Stackable Managed Switch", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SG350X-48 Stack Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67109505, "entPhysicalDescr": "PowerSupply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Main PowerSupply", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67109633, "entPhysicalDescr": "Fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68158464, "entPhysicalDescr": "Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68421120, "entPhysicalDescr": "motherboard", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68421377, "entPhysicalDescr": "Thermal Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Thermal Sensor 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68421378, "entPhysicalDescr": "Thermal Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Thermal Sensor 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68421379, "entPhysicalDescr": "Thermal Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Thermal Sensor 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68421380, "entPhysicalDescr": "Thermal Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Thermal Sensor 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425728, "entPhysicalDescr": "switch processor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425857, "entPhysicalDescr": "GigabitEthernet1/0/25", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425858, "entPhysicalDescr": "GigabitEthernet1/0/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425859, "entPhysicalDescr": "GigabitEthernet1/0/26", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425860, "entPhysicalDescr": "GigabitEthernet1/0/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425861, "entPhysicalDescr": "GigabitEthernet1/0/27", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425862, "entPhysicalDescr": "GigabitEthernet1/0/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425863, "entPhysicalDescr": "GigabitEthernet1/0/28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425864, "entPhysicalDescr": "GigabitEthernet1/0/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425865, "entPhysicalDescr": "GigabitEthernet1/0/29", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425866, "entPhysicalDescr": "GigabitEthernet1/0/5", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425867, "entPhysicalDescr": "GigabitEthernet1/0/30", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425868, "entPhysicalDescr": "GigabitEthernet1/0/6", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425869, "entPhysicalDescr": "GigabitEthernet1/0/31", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425870, "entPhysicalDescr": "GigabitEthernet1/0/7", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425871, "entPhysicalDescr": "GigabitEthernet1/0/32", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425872, "entPhysicalDescr": "GigabitEthernet1/0/8", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425873, "entPhysicalDescr": "GigabitEthernet1/0/33", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425874, "entPhysicalDescr": "GigabitEthernet1/0/9", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425875, "entPhysicalDescr": "GigabitEthernet1/0/34", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425876, "entPhysicalDescr": "GigabitEthernet1/0/10", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425877, "entPhysicalDescr": "GigabitEthernet1/0/35", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425878, "entPhysicalDescr": "GigabitEthernet1/0/11", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425879, "entPhysicalDescr": "GigabitEthernet1/0/36", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425880, "entPhysicalDescr": "GigabitEthernet1/0/12", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425881, "entPhysicalDescr": "TengigabitEthernet1/0/2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "te1/0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68425882, "entPhysicalDescr": "TengigabitEthernet1/0/1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "te1/0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429824, "entPhysicalDescr": "switch processor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429953, "entPhysicalDescr": "GigabitEthernet1/0/37", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429954, "entPhysicalDescr": "GigabitEthernet1/0/13", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429955, "entPhysicalDescr": "GigabitEthernet1/0/38", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429956, "entPhysicalDescr": "GigabitEthernet1/0/14", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429957, "entPhysicalDescr": "GigabitEthernet1/0/39", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429958, "entPhysicalDescr": "GigabitEthernet1/0/15", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429959, "entPhysicalDescr": "GigabitEthernet1/0/40", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429960, "entPhysicalDescr": "GigabitEthernet1/0/16", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429961, "entPhysicalDescr": "GigabitEthernet1/0/41", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429962, "entPhysicalDescr": "GigabitEthernet1/0/17", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429963, "entPhysicalDescr": "GigabitEthernet1/0/42", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429964, "entPhysicalDescr": "GigabitEthernet1/0/18", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429965, "entPhysicalDescr": "GigabitEthernet1/0/43", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429966, "entPhysicalDescr": "GigabitEthernet1/0/19", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429967, "entPhysicalDescr": "GigabitEthernet1/0/44", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429968, "entPhysicalDescr": "GigabitEthernet1/0/20", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429969, "entPhysicalDescr": "GigabitEthernet1/0/45", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429970, "entPhysicalDescr": "GigabitEthernet1/0/21", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429971, "entPhysicalDescr": "GigabitEthernet1/0/46", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429972, "entPhysicalDescr": "GigabitEthernet1/0/22", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429973, "entPhysicalDescr": "GigabitEthernet1/0/47", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429974, "entPhysicalDescr": "GigabitEthernet1/0/23", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429975, "entPhysicalDescr": "GigabitEthernet1/0/48", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429976, "entPhysicalDescr": "GigabitEthernet1/0/24", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "gi1/0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429977, "entPhysicalDescr": "TengigabitEthernet1/0/3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "te1/0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68429978, "entPhysicalDescr": "TengigabitEthernet1/0/4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "te1/0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 134217984, + "entPhysicalDescr": "", + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 201326848, + "entPhysicalDescr": "", + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 268435712, + "entPhysicalDescr": "", + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ciscosb_sg550x-8f8t.json b/tests/data/ciscosb_sg550x-8f8t.json index 81d00c784f..106064de49 100644 --- a/tests/data/ciscosb_sg550x-8f8t.json +++ b/tests/data/ciscosb_sg550x-8f8t.json @@ -11233,6 +11233,139 @@ "entPhysicalParentRelPos": 28, "entPhysicalMfgName": "", "ifIndex": 16 + }, + { + "entPhysicalIndex": 134217984, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201326848, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435712, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 335544576, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 402653440, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 469762304, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 536871168, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ciscosb_sge.json b/tests/data/ciscosb_sge.json index 8bfdb192b1..6a541cc5eb 100644 --- a/tests/data/ciscosb_sge.json +++ b/tests/data/ciscosb_sge.json @@ -13106,6 +13106,462 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68424769, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 1 + }, + { + "entPhysicalIndex": 68424770, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 25 + }, + { + "entPhysicalIndex": 68424771, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 2 + }, + { + "entPhysicalIndex": 68424772, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 26 + }, + { + "entPhysicalIndex": 68424773, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 3 + }, + { + "entPhysicalIndex": 68424774, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 27 + }, + { + "entPhysicalIndex": 68424775, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 4 + }, + { + "entPhysicalIndex": 68424776, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 28 + }, + { + "entPhysicalIndex": 68424777, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 5 + }, + { + "entPhysicalIndex": 68424778, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 29 + }, + { + "entPhysicalIndex": 68424779, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 6 + }, + { + "entPhysicalIndex": 68424780, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 30 + }, + { + "entPhysicalIndex": 68424781, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 7 + }, + { + "entPhysicalIndex": 68424782, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 31 + }, + { + "entPhysicalIndex": 68424783, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 8 + }, + { + "entPhysicalIndex": 68424784, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 32 + }, + { + "entPhysicalIndex": 68424785, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 9 + }, + { + "entPhysicalIndex": 68424786, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 33 + }, + { + "entPhysicalIndex": 68424787, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 10 + }, + { + "entPhysicalIndex": 68424788, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 34 + }, + { + "entPhysicalIndex": 68424789, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 11 + }, + { + "entPhysicalIndex": 68424790, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 35 + }, + { + "entPhysicalIndex": 68424791, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 12 + }, + { + "entPhysicalIndex": 68424792, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 36 + }, { "entPhysicalIndex": 68428800, "entPhysicalDescr": "GT_98DX263", @@ -13125,6 +13581,462 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68428865, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 13 + }, + { + "entPhysicalIndex": 68428866, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 37 + }, + { + "entPhysicalIndex": 68428867, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 14 + }, + { + "entPhysicalIndex": 68428868, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 38 + }, + { + "entPhysicalIndex": 68428869, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 15 + }, + { + "entPhysicalIndex": 68428870, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 39 + }, + { + "entPhysicalIndex": 68428871, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 16 + }, + { + "entPhysicalIndex": 68428872, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 40 + }, + { + "entPhysicalIndex": 68428873, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 17 + }, + { + "entPhysicalIndex": 68428874, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 41 + }, + { + "entPhysicalIndex": 68428875, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 18 + }, + { + "entPhysicalIndex": 68428876, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 42 + }, + { + "entPhysicalIndex": 68428877, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 19 + }, + { + "entPhysicalIndex": 68428878, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 43 + }, + { + "entPhysicalIndex": 68428879, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 20 + }, + { + "entPhysicalIndex": 68428880, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 44 + }, + { + "entPhysicalIndex": 68428881, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 21 + }, + { + "entPhysicalIndex": 68428882, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 45 + }, + { + "entPhysicalIndex": 68428883, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 22 + }, + { + "entPhysicalIndex": 68428884, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 46 + }, + { + "entPhysicalIndex": 68428885, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 23 + }, + { + "entPhysicalIndex": 68428886, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 47 + }, + { + "entPhysicalIndex": 68428887, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 24 + }, + { + "entPhysicalIndex": 68428888, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 48 + }, { "entPhysicalIndex": 134217856, "entPhysicalDescr": "SGE2010", diff --git a/tests/data/ciscosb_sx550x-24f.json b/tests/data/ciscosb_sx550x-24f.json index cf8b97d7f7..79d7d11574 100644 --- a/tests/data/ciscosb_sx550x-24f.json +++ b/tests/data/ciscosb_sx550x-24f.json @@ -11058,6 +11058,139 @@ "entPhysicalParentRelPos": 24, "entPhysicalMfgName": "", "ifIndex": 1 + }, + { + "entPhysicalIndex": 134217984, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201326848, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435712, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 335544576, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 402653440, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 469762304, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 536871168, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 128, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ciscospa.json b/tests/data/ciscospa.json index 0c9e3c89fc..a2f61da022 100644 --- a/tests/data/ciscospa.json +++ b/tests/data/ciscospa.json @@ -19,31 +19,5 @@ ] }, "poller": "matches discovery" - }, - "entity-physical": { - "discovery": { - "entPhysical": [ - { - "entPhysicalIndex": 1, - "entPhysicalDescr": "", - "entPhysicalClass": "", - "entPhysicalName": "SPA112", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "0.00.51", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "SPA112", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", - "ifIndex": null - } - ] - }, - "poller": "matches discovery" } } diff --git a/tests/data/comware_hpe5900.json b/tests/data/comware_hpe5900.json index eab936f898..65a30eb3a1 100644 --- a/tests/data/comware_hpe5900.json +++ b/tests/data/comware_hpe5900.json @@ -263,18 +263,18 @@ "entPhysicalDescr": "HPE", "entPhysicalClass": "stack", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -282,18 +282,18 @@ "entPhysicalDescr": "HPE 5900AF-48G-4XG-2QSFP+ Switch Software Version 7.1.045", "entPhysicalClass": "chassis", "entPhysicalName": "5900AF", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -301,18 +301,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -320,18 +320,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -339,18 +339,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -358,18 +358,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -377,18 +377,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -396,18 +396,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -415,18 +415,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -434,18 +434,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -453,18 +453,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -472,18 +472,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -491,18 +491,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -510,18 +510,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -529,18 +529,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -548,18 +548,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -567,18 +567,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -586,18 +586,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -605,18 +605,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -624,18 +624,18 @@ "entPhysicalDescr": "CONTAINER LEVEL1", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -643,18 +643,18 @@ "entPhysicalDescr": "MODULE LEVEL1", "entPhysicalClass": "module", "entPhysicalName": "Board", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -662,18 +662,37 @@ "entPhysicalDescr": "PSU", "entPhysicalClass": "powerSupply", "entPhysicalName": "PSU 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 194, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -681,18 +700,18 @@ "entPhysicalDescr": "FAN UNIT", "entPhysicalClass": "fan", "entPhysicalName": "FAN 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -700,18 +719,18 @@ "entPhysicalDescr": "FAN UNIT", "entPhysicalClass": "fan", "entPhysicalName": "FAN 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -719,18 +738,18 @@ "entPhysicalDescr": "SENSOR", "entPhysicalClass": "sensor", "entPhysicalName": "SENSOR 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -738,18 +757,18 @@ "entPhysicalDescr": "SENSOR", "entPhysicalClass": "sensor", "entPhysicalName": "SENSOR 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -757,18 +776,18 @@ "entPhysicalDescr": "SENSOR", "entPhysicalClass": "sensor", "entPhysicalName": "SENSOR 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -776,18 +795,18 @@ "entPhysicalDescr": "CONTAINER LEVEL2", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -795,18 +814,18 @@ "entPhysicalDescr": "CONTAINER LEVEL2", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -814,18 +833,18 @@ "entPhysicalDescr": "CONTAINER LEVEL2", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -833,18 +852,18 @@ "entPhysicalDescr": "CONTAINER LEVEL2", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -852,18 +871,18 @@ "entPhysicalDescr": "CONTAINER LEVEL2", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -871,18 +890,18 @@ "entPhysicalDescr": "CONTAINER LEVEL2", "entPhysicalClass": "container", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -890,18 +909,18 @@ "entPhysicalDescr": "MODULE LEVEL2", "entPhysicalClass": "module", "entPhysicalName": "SubCard0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -909,18 +928,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/1", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -928,18 +947,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/2", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -947,18 +966,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/3", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -966,18 +985,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/4", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -985,18 +1004,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/5", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1004,18 +1023,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/6", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1023,18 +1042,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/7", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1042,18 +1061,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/8", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1061,18 +1080,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/9", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1080,18 +1099,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/10", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1099,18 +1118,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/11", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1118,18 +1137,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/12", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1137,18 +1156,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/13", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1156,18 +1175,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/14", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1175,18 +1194,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/15", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1194,18 +1213,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/16", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1213,18 +1232,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/17", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1232,18 +1251,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/18", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1251,18 +1270,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/19", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1270,18 +1289,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/20", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1289,18 +1308,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/21", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1308,18 +1327,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/22", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1327,18 +1346,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/23", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1346,18 +1365,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/24", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1365,18 +1384,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/25", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1384,18 +1403,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/26", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1403,18 +1422,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/27", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1422,18 +1441,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/28", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1441,18 +1460,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/29", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1460,18 +1479,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/30", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1479,18 +1498,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/31", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1498,18 +1517,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/32", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1517,18 +1536,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/33", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1536,18 +1555,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/34", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1555,18 +1574,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/35", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1574,18 +1593,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/36", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1593,18 +1612,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/37", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1612,18 +1631,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/38", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1631,18 +1650,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/39", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1650,18 +1669,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/40", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1669,18 +1688,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/41", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1688,18 +1707,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/42", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1707,18 +1726,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/43", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1726,18 +1745,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/44", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1745,18 +1764,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/45", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1764,18 +1783,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/46", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1783,18 +1802,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/47", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1802,18 +1821,18 @@ "entPhysicalDescr": "GigabitEthernet1/0/48", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1821,18 +1840,18 @@ "entPhysicalDescr": "Ten-GigabitEthernet1/0/49", "entPhysicalClass": "port", "entPhysicalName": "Ten-GigabitEthernet1/0/49", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1840,18 +1859,18 @@ "entPhysicalDescr": "Ten-GigabitEthernet1/0/50", "entPhysicalClass": "port", "entPhysicalName": "Ten-GigabitEthernet1/0/50", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1859,18 +1878,18 @@ "entPhysicalDescr": "Ten-GigabitEthernet1/0/51", "entPhysicalClass": "port", "entPhysicalName": "Ten-GigabitEthernet1/0/51", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1878,18 +1897,18 @@ "entPhysicalDescr": "Ten-GigabitEthernet1/0/52", "entPhysicalClass": "port", "entPhysicalName": "Ten-GigabitEthernet1/0/52", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1897,18 +1916,18 @@ "entPhysicalDescr": "FortyGigE1/0/53", "entPhysicalClass": "port", "entPhysicalName": "FortyGigE1/0/53", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1916,18 +1935,18 @@ "entPhysicalDescr": "FortyGigE1/0/54", "entPhysicalClass": "port", "entPhysicalName": "FortyGigE1/0/54", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1935,18 +1954,75 @@ "entPhysicalDescr": "M-GigabitEthernet0/0/0", "entPhysicalClass": "port", "entPhysicalName": "M-GigabitEthernet0/0/0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 547, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 548, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 549, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -1954,18 +2030,18 @@ "entPhysicalDescr": "HPE", "entPhysicalClass": "stack", "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/dnos.json b/tests/data/dnos.json index 50ee6222ad..ff7b166b1b 100644 --- a/tests/data/dnos.json +++ b/tests/data/dnos.json @@ -25842,39 +25842,39 @@ { "entPhysicalIndex": 54, "entPhysicalDescr": "Unit: 0 Port 47 10G Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Te 0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 55, "entPhysicalDescr": "Unit: 0 Port 48 10G Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Te 0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { diff --git a/tests/data/dnos_s4048.json b/tests/data/dnos_s4048.json index 9c5b17b243..f0b4dbeea8 100644 --- a/tests/data/dnos_s4048.json +++ b/tests/data/dnos_s4048.json @@ -37701,39 +37701,39 @@ { "entPhysicalIndex": 54, "entPhysicalDescr": "Unit: 0 Port 47 10G Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Te 0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 55, "entPhysicalDescr": "Unit: 0 Port 48 10G Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Te 0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { diff --git a/tests/data/dnos_z9100-on.json b/tests/data/dnos_z9100-on.json index c71e786631..95d477db48 100644 --- a/tests/data/dnos_z9100-on.json +++ b/tests/data/dnos_z9100-on.json @@ -15486,7 +15486,7 @@ "entPhysicalIsFRU": "true", "entPhysicalModelName": "Z9100-ON-01-FE-34", "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "89PDDZ2", + "entPhysicalSerialNum": "NA", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "", diff --git a/tests/data/edgeos.json b/tests/data/edgeos.json index 488f781299..044223a4b2 100644 --- a/tests/data/edgeos.json +++ b/tests/data/edgeos.json @@ -3697,9 +3697,9 @@ "entPhysical": [ { "entPhysicalIndex": 1, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "lo..............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "lo", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3707,7 +3707,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 1, @@ -3716,9 +3716,9 @@ }, { "entPhysicalIndex": 2, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth4............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth4", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3726,7 +3726,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 2, @@ -3735,9 +3735,9 @@ }, { "entPhysicalIndex": 3, - "entPhysicalDescr": "PORT.......\t....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth5............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth5", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3745,7 +3745,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 3, @@ -3754,9 +3754,9 @@ }, { "entPhysicalIndex": 4, - "entPhysicalDescr": "PORT.......I....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth6............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth6", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3764,7 +3764,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 4, @@ -3773,9 +3773,9 @@ }, { "entPhysicalIndex": 5, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth7............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth7", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3783,7 +3783,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 5, @@ -3792,9 +3792,9 @@ }, { "entPhysicalIndex": 6, - "entPhysicalDescr": "PORT......m.....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth0............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3802,7 +3802,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 6, @@ -3811,9 +3811,9 @@ }, { "entPhysicalIndex": 7, - "entPhysicalDescr": "PORT......[\t....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth1............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3821,7 +3821,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 7, @@ -3830,9 +3830,9 @@ }, { "entPhysicalIndex": 8, - "entPhysicalDescr": "PORT......HI....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth2............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3840,7 +3840,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 8, @@ -3849,9 +3849,9 @@ }, { "entPhysicalIndex": 9, - "entPhysicalDescr": "PORT......5.....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth3............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth3", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3859,7 +3859,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 9, @@ -3868,9 +3868,9 @@ }, { "entPhysicalIndex": 10, - "entPhysicalDescr": "PORT......\\.....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "npi0............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "npi0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3878,7 +3878,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 10, @@ -3887,9 +3887,9 @@ }, { "entPhysicalIndex": 11, - "entPhysicalDescr": "PORT.......\t....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "npi1............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "npi1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3897,7 +3897,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 11, @@ -3906,9 +3906,9 @@ }, { "entPhysicalIndex": 12, - "entPhysicalDescr": "PORT.......I....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "npi2............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "npi2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3916,7 +3916,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 12, @@ -3925,9 +3925,9 @@ }, { "entPhysicalIndex": 13, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "npi3............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "npi3", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3935,7 +3935,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 13, @@ -3944,9 +3944,9 @@ }, { "entPhysicalIndex": 14, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "loop0...........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "loop0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3954,7 +3954,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 14, @@ -3963,9 +3963,9 @@ }, { "entPhysicalIndex": 15, - "entPhysicalDescr": "PORT.......\t....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "loop1...........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "loop1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3973,7 +3973,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 15, @@ -3982,9 +3982,9 @@ }, { "entPhysicalIndex": 16, - "entPhysicalDescr": "PORT.......I....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "loop2...........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "loop2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -3992,7 +3992,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 16, @@ -4001,9 +4001,9 @@ }, { "entPhysicalIndex": 17, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "loop3...........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "loop3", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4011,7 +4011,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 17, @@ -4020,9 +4020,9 @@ }, { "entPhysicalIndex": 18, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "imq0............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "imq0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4030,7 +4030,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 18, @@ -4039,9 +4039,9 @@ }, { "entPhysicalIndex": 19, - "entPhysicalDescr": "CHASSIS.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "CHASSIS", "entPhysicalClass": "chassis", - "entPhysicalName": "CHASSIS.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "CHASSIS", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4049,7 +4049,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -4058,9 +4058,9 @@ }, { "entPhysicalIndex": 20, - "entPhysicalDescr": "CHASSIS.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "CHASSIS", "entPhysicalClass": "chassis", - "entPhysicalName": "CHASSIS.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "CHASSIS", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4068,7 +4068,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, @@ -4077,9 +4077,9 @@ }, { "entPhysicalIndex": 21, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth6.500........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth6.500", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4087,7 +4087,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 19, @@ -4096,9 +4096,9 @@ }, { "entPhysicalIndex": 22, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth6.499........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth6.499", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4106,7 +4106,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 20, @@ -4115,9 +4115,9 @@ }, { "entPhysicalIndex": 23, - "entPhysicalDescr": "PORT.......9....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth6.501........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth6.501", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4125,7 +4125,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 21, @@ -4134,9 +4134,9 @@ }, { "entPhysicalIndex": 24, - "entPhysicalDescr": "PORT.......y....\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth6.10.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth6.10", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4144,7 +4144,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 22, @@ -4153,9 +4153,9 @@ }, { "entPhysicalIndex": 25, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "eth6.4..........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "eth6.4", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4163,7 +4163,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 23, @@ -4172,9 +4172,9 @@ }, { "entPhysicalIndex": 26, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "gre0............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "gre0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4182,7 +4182,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 24, @@ -4191,9 +4191,9 @@ }, { "entPhysicalIndex": 27, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "gretap0.........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalName": "gretap0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4201,7 +4201,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 25, @@ -4210,9 +4210,9 @@ }, { "entPhysicalIndex": 28, - "entPhysicalDescr": "PORT............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalDescr": "PORT", "entPhysicalClass": "port", - "entPhysicalName": "tun0............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalName": "tun0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "1.2.0", @@ -4220,7 +4220,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "00 00 00 00 00 00 00 00", + "entPhysicalVendorType": "", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 26, diff --git a/tests/data/edgeswitch.json b/tests/data/edgeswitch.json index 0ab74c5e16..75b8a4d8c7 100644 --- a/tests/data/edgeswitch.json +++ b/tests/data/edgeswitch.json @@ -227,1027 +227,1027 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "UBNT EdgeSwitch 48-Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "UBNT ES48 - 48 GE + 2 XE + 2 GE Ethernet Line Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot 1.0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3, "entPhysicalDescr": "Slot: 0 Port: 1 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4, "entPhysicalDescr": "Slot: 0 Port: 2 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5, "entPhysicalDescr": "Slot: 0 Port: 3 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "Slot: 0 Port: 4 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7, "entPhysicalDescr": "Slot: 0 Port: 5 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 8, "entPhysicalDescr": "Slot: 0 Port: 6 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9, "entPhysicalDescr": "Slot: 0 Port: 7 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, "entPhysicalDescr": "Slot: 0 Port: 8 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, "entPhysicalDescr": "Slot: 0 Port: 9 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, "entPhysicalDescr": "Slot: 0 Port: 10 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, "entPhysicalDescr": "Slot: 0 Port: 11 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, "entPhysicalDescr": "Slot: 0 Port: 12 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 15, "entPhysicalDescr": "Slot: 0 Port: 13 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 16, "entPhysicalDescr": "Slot: 0 Port: 14 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 17, "entPhysicalDescr": "Slot: 0 Port: 15 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 18, "entPhysicalDescr": "Slot: 0 Port: 16 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 19, "entPhysicalDescr": "Slot: 0 Port: 17 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 20, "entPhysicalDescr": "Slot: 0 Port: 18 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 21, "entPhysicalDescr": "Slot: 0 Port: 19 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 22, "entPhysicalDescr": "Slot: 0 Port: 20 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 23, "entPhysicalDescr": "Slot: 0 Port: 21 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 24, "entPhysicalDescr": "Slot: 0 Port: 22 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25, "entPhysicalDescr": "Slot: 0 Port: 23 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 26, "entPhysicalDescr": "Slot: 0 Port: 24 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 27, "entPhysicalDescr": "Slot: 0 Port: 25 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 28, "entPhysicalDescr": "Slot: 0 Port: 26 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 29, "entPhysicalDescr": "Slot: 0 Port: 27 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 30, "entPhysicalDescr": "Slot: 0 Port: 28 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 31, "entPhysicalDescr": "Slot: 0 Port: 29 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 32, "entPhysicalDescr": "Slot: 0 Port: 30 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 33, "entPhysicalDescr": "Slot: 0 Port: 31 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 34, "entPhysicalDescr": "Slot: 0 Port: 32 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 35, "entPhysicalDescr": "Slot: 0 Port: 33 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 36, "entPhysicalDescr": "Slot: 0 Port: 34 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 37, "entPhysicalDescr": "Slot: 0 Port: 35 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 38, "entPhysicalDescr": "Slot: 0 Port: 36 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 39, "entPhysicalDescr": "Slot: 0 Port: 37 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 40, "entPhysicalDescr": "Slot: 0 Port: 38 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 41, "entPhysicalDescr": "Slot: 0 Port: 39 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 42, "entPhysicalDescr": "Slot: 0 Port: 40 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 43, "entPhysicalDescr": "Slot: 0 Port: 41 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 44, "entPhysicalDescr": "Slot: 0 Port: 42 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 45, "entPhysicalDescr": "Slot: 0 Port: 43 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 46, "entPhysicalDescr": "Slot: 0 Port: 44 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 47, "entPhysicalDescr": "Slot: 0 Port: 45 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 48, "entPhysicalDescr": "Slot: 0 Port: 46 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 49, "entPhysicalDescr": "Slot: 0 Port: 47 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 50, "entPhysicalDescr": "Slot: 0 Port: 48 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 51, "entPhysicalDescr": "Slot: 0 Port: 49 10G - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/49", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 52, "entPhysicalDescr": "Slot: 0 Port: 50 10G - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/50", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 53, "entPhysicalDescr": "Slot: 0 Port: 51 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/51", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 54, "entPhysicalDescr": "Slot: 0 Port: 52 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/52", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/edgeswitch_us-8.json b/tests/data/edgeswitch_us-8.json index ddc37c997a..dcb1f0d0e3 100644 --- a/tests/data/edgeswitch_us-8.json +++ b/tests/data/edgeswitch_us-8.json @@ -2442,7 +2442,7 @@ "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "None", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "UBNT-USW", "entPhysicalVendorType": "enterprises.41112.1", diff --git a/tests/data/eltex-mes21xx_mes2124m.json b/tests/data/eltex-mes21xx_mes2124m.json index f9cca1c8fb..3f7a1ce74e 100644 --- a/tests/data/eltex-mes21xx_mes2124m.json +++ b/tests/data/eltex-mes21xx_mes2124m.json @@ -7298,6 +7298,538 @@ "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "", "ifIndex": null + }, + { + "entPhysicalIndex": 68424769, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 49 + }, + { + "entPhysicalIndex": 68424770, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 61 + }, + { + "entPhysicalIndex": 68424771, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 50 + }, + { + "entPhysicalIndex": 68424772, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 62 + }, + { + "entPhysicalIndex": 68424773, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 51 + }, + { + "entPhysicalIndex": 68424774, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 63 + }, + { + "entPhysicalIndex": 68424775, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 52 + }, + { + "entPhysicalIndex": 68424776, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 64 + }, + { + "entPhysicalIndex": 68424777, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 53 + }, + { + "entPhysicalIndex": 68424778, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 65 + }, + { + "entPhysicalIndex": 68424779, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 54 + }, + { + "entPhysicalIndex": 68424780, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 66 + }, + { + "entPhysicalIndex": 68424781, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 55 + }, + { + "entPhysicalIndex": 68424782, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 67 + }, + { + "entPhysicalIndex": 68424783, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 56 + }, + { + "entPhysicalIndex": 68424784, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 68 + }, + { + "entPhysicalIndex": 68424785, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 57 + }, + { + "entPhysicalIndex": 68424786, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 69 + }, + { + "entPhysicalIndex": 68424787, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 58 + }, + { + "entPhysicalIndex": 68424788, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 70 + }, + { + "entPhysicalIndex": 68424789, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 59 + }, + { + "entPhysicalIndex": 68424790, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 71 + }, + { + "entPhysicalIndex": 68424791, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 60 + }, + { + "entPhysicalIndex": 68424792, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 72 + }, + { + "entPhysicalIndex": 68424793, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 25, + "entPhysicalMfgName": "", + "ifIndex": 73 + }, + { + "entPhysicalIndex": 68424794, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 26, + "entPhysicalMfgName": "", + "ifIndex": 74 + }, + { + "entPhysicalIndex": 68424795, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 27, + "entPhysicalMfgName": "", + "ifIndex": 75 + }, + { + "entPhysicalIndex": 68424796, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 28, + "entPhysicalMfgName": "", + "ifIndex": 76 } ] }, diff --git a/tests/data/eltex-mes23xx_mes2324b.json b/tests/data/eltex-mes23xx_mes2324b.json index 49541b8674..6820fc6a58 100644 --- a/tests/data/eltex-mes23xx_mes2324b.json +++ b/tests/data/eltex-mes23xx_mes2324b.json @@ -9770,23 +9770,23 @@ "ifIndex": null }, { - "entPhysicalIndex": 105, + "entPhysicalIndex": 1000105, "entPhysicalDescr": "sfp-sfpplus", "entPhysicalClass": "sfp-cage", "entPhysicalName": "LC", "entPhysicalHardwareRev": "4.0", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "TL-SM311LS(UN)", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "2206324001316", "entPhysicalContainedIn": 68424793, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "TP-LINK", - "ifIndex": null + "ifIndex": 105 }, { "entPhysicalIndex": 67108992, @@ -10528,6 +10528,139 @@ "entPhysicalParentRelPos": 28, "entPhysicalMfgName": "", "ifIndex": 108 + }, + { + "entPhysicalIndex": 134217856, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201326720, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435584, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 335544448, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 402653312, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 469762176, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 536871040, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/eltex-mes23xx_mes2324p.json b/tests/data/eltex-mes23xx_mes2324p.json index 1d1d326d71..6392c5d035 100644 --- a/tests/data/eltex-mes23xx_mes2324p.json +++ b/tests/data/eltex-mes23xx_mes2324p.json @@ -20464,23 +20464,23 @@ "ifIndex": null }, { - "entPhysicalIndex": 105, + "entPhysicalIndex": 1000105, "entPhysicalDescr": "sfp-sfpplus", "entPhysicalClass": "sfp-cage", "entPhysicalName": "SC", - "entPhysicalHardwareRev": "\u0000\u0000\u0000\u0000", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "XBIT-SFP1GWDMA3S", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "H19A07122487", "entPhysicalContainedIn": 68424793, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "OEM", - "ifIndex": null + "ifIndex": 105 }, { "entPhysicalIndex": 67108992, @@ -21241,6 +21241,139 @@ "entPhysicalParentRelPos": 28, "entPhysicalMfgName": "", "ifIndex": 108 + }, + { + "entPhysicalIndex": 134217856, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201326720, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435584, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 335544448, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 402653312, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 469762176, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 536871040, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/eltex-mes23xx_mes2348p.json b/tests/data/eltex-mes23xx_mes2348p.json index e9fd48b5ea..fa62fd30c5 100644 --- a/tests/data/eltex-mes23xx_mes2348p.json +++ b/tests/data/eltex-mes23xx_mes2348p.json @@ -16453,6 +16453,139 @@ "entPhysicalParentRelPos": 26, "entPhysicalMfgName": "", "ifIndex": 107 + }, + { + "entPhysicalIndex": 134217856, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201326720, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 268435584, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 335544448, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 402653312, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 469762176, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 536871040, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 64, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ericsson-ipos_ssr8020.json b/tests/data/ericsson-ipos_ssr8020.json index c6df937ed8..eb14ecb798 100644 --- a/tests/data/ericsson-ipos_ssr8020.json +++ b/tests/data/ericsson-ipos_ssr8020.json @@ -43170,39 +43170,39 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "SSR 8020 chassis", - "entPhysicalClass": "", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "SSR 8020 backplane SN:DH80092734 Rev:R3L Mfg.Dt:1-JUL-2020 CLEI code:IPMN910JRA MAC address:D0:F0:DB:AC:B8:00", - "entPhysicalClass": "", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/eurostor_es-6642b.json b/tests/data/eurostor_es-6642b.json index 036e1b0493..a6575caf02 100644 --- a/tests/data/eurostor_es-6642b.json +++ b/tests/data/eurostor_es-6642b.json @@ -3024,38 +3024,38 @@ "entPhysicalIndex": 1, "entPhysicalDescr": "Eurostore ES-6642B", "entPhysicalClass": "chassis", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "V1.50 2012-02-17", "entPhysicalFirmwareRev": "V1.50 2012-06-13", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "ES-6642B", "entPhysicalVendorType": "ARC-8066", "entPhysicalSerialNum": "A116EHDEPR900010", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "SAS2 E -.B0.01.b001", "entPhysicalClass": "backplane", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3063,18 +3063,18 @@ "entPhysicalDescr": "SLOT 01", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHJXE0DG", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3082,18 +3082,18 @@ "entPhysicalDescr": "SLOT 02", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK2ZPAA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3101,18 +3101,18 @@ "entPhysicalDescr": "SLOT 03", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK3G8XA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3120,18 +3120,18 @@ "entPhysicalDescr": "SLOT 04", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK42K3A", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3139,18 +3139,18 @@ "entPhysicalDescr": "SLOT 05", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X2ZA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3158,18 +3158,18 @@ "entPhysicalDescr": "SLOT 06", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK40B1A", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3177,18 +3177,18 @@ "entPhysicalDescr": "SLOT 07", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "Failed", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK47XRA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3196,18 +3196,18 @@ "entPhysicalDescr": "SLOT 08", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X60A", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3215,18 +3215,18 @@ "entPhysicalDescr": "SLOT 09", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK32ZYG", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3234,18 +3234,18 @@ "entPhysicalDescr": "SLOT 10", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK4LR3A", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 10, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3253,18 +3253,18 @@ "entPhysicalDescr": "SLOT 11", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHJVNSMG", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3272,18 +3272,18 @@ "entPhysicalDescr": "SLOT 12", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK3G04A", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 12, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3291,18 +3291,18 @@ "entPhysicalDescr": "SLOT 13", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X4JA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 13, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3310,18 +3310,18 @@ "entPhysicalDescr": "SLOT 14", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X9NA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 14, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3329,18 +3329,18 @@ "entPhysicalDescr": "SLOT 15", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK47VDA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 15, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3348,18 +3348,18 @@ "entPhysicalDescr": "SLOT 16", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHJZBBXG", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 16, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3367,18 +3367,18 @@ "entPhysicalDescr": "SLOT 17", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X2WA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 17, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3386,18 +3386,18 @@ "entPhysicalDescr": "SLOT 18", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X8SA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 18, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3405,18 +3405,18 @@ "entPhysicalDescr": "SLOT 19", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHJYPHRG", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 19, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3424,18 +3424,18 @@ "entPhysicalDescr": "SLOT 20", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK4JHHA", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 20, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3443,37 +3443,37 @@ "entPhysicalDescr": "SLOT 21", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK2N80A", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": 21, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 24, "entPhysicalDescr": "SAS2 E -.B0.01.b001", "entPhysicalClass": "backplane", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3481,18 +3481,18 @@ "entPhysicalDescr": "SLOT 22", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X3UA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3500,18 +3500,18 @@ "entPhysicalDescr": "SLOT 23", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHJY56XG", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3519,18 +3519,18 @@ "entPhysicalDescr": "SLOT 24", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK4LJ3A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3538,18 +3538,18 @@ "entPhysicalDescr": "SLOT 25", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK3EZUA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3557,18 +3557,18 @@ "entPhysicalDescr": "SLOT 26", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0331YHG5W5SA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3576,18 +3576,18 @@ "entPhysicalDescr": "SLOT 27", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK28TVA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3595,18 +3595,18 @@ "entPhysicalDescr": "SLOT 28", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK47X0A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3614,18 +3614,18 @@ "entPhysicalDescr": "SLOT 29", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK26G2A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3633,18 +3633,18 @@ "entPhysicalDescr": "SLOT 30", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X3LA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3652,18 +3652,18 @@ "entPhysicalDescr": "SLOT 31", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHJZ9P1G", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 10, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3671,18 +3671,18 @@ "entPhysicalDescr": "SLOT 32", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK3P2TA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3690,18 +3690,18 @@ "entPhysicalDescr": "SLOT 33", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK02BLG", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 12, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3709,18 +3709,18 @@ "entPhysicalDescr": "SLOT 34", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK4G3DA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 13, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3728,18 +3728,18 @@ "entPhysicalDescr": "SLOT 35", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1NG5A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 14, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3747,18 +3747,18 @@ "entPhysicalDescr": "SLOT 36", "entPhysicalClass": "container", "entPhysicalName": "HGST HUS726T6TALE6L4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "VKGNW460", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "Hot Spare", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "V8K80VNR", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 15, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3766,18 +3766,18 @@ "entPhysicalDescr": "SLOT 37", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK0G7MA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 16, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3785,18 +3785,18 @@ "entPhysicalDescr": "SLOT 38", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK29UAA", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 17, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3804,18 +3804,18 @@ "entPhysicalDescr": "SLOT 39", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK4PS5G", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 18, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3823,18 +3823,18 @@ "entPhysicalDescr": "SLOT 40", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X69A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 19, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3842,18 +3842,18 @@ "entPhysicalDescr": "SLOT 41", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK1X36A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 20, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3861,18 +3861,18 @@ "entPhysicalDescr": "SLOT 42", "entPhysicalClass": "container", "entPhysicalName": "Hitachi HUA723030ALA640", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "MKAOAA10", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RaidSet Member", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, "entPhysicalSerialNum": "MK0371YHK3Z21A", "entPhysicalContainedIn": 24, "entPhysicalParentRelPos": 21, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/fortigate_1500d-sensors.json b/tests/data/fortigate_1500d-sensors.json index c2bc6dc05e..86dce3e387 100644 --- a/tests/data/fortigate_1500d-sensors.json +++ b/tests/data/fortigate_1500d-sensors.json @@ -3892,837 +3892,837 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "Fortinet FGT_1500D, HW Serial#: FG1K5D3I10000000", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FGT_1500D", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "mgmt1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "modem", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 8, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 15, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 16, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 17, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 18, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 19, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 20, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 21, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 22, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 23, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 24, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 26, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 27, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 28, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 29, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 30, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 31, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 32, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 33, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 34, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 35, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 36, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 37, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 38, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 39, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 40, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 41, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 42, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 43, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "port40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 44, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "mgmt2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/fortigate_60f.json b/tests/data/fortigate_60f.json index e5d239a48a..c08b3f1b6d 100644 --- a/tests/data/fortigate_60f.json +++ b/tests/data/fortigate_60f.json @@ -4646,96 +4646,96 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "Fortinet FGT_60F, HW Serial#: FGT60FTK00000000", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FGT_60F", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "FGT_60F", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "FGT60FTK00000000", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "wan1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1 }, { "entPhysicalIndex": 3, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "wan2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 2 }, { "entPhysicalIndex": 4, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "dmz", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 3 }, { "entPhysicalIndex": 5, "entPhysicalDescr": "Ethernet Port, Vitual Domain: root", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "modem", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 4 } ] diff --git a/tests/data/fortiweb.json b/tests/data/fortiweb.json index bac835f476..852a299fa5 100644 --- a/tests/data/fortiweb.json +++ b/tests/data/fortiweb.json @@ -496,6 +496,291 @@ "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Fortinet", "ifIndex": null + }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 3, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 5, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 6, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 10, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 11, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 12, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 13, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 14, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 15, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16, + "entPhysicalDescr": "", + "entPhysicalClass": "unknown", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null } ] }, diff --git a/tests/data/ftd_3130.json b/tests/data/ftd_3130.json index 292423d7f0..cc1870e919 100644 --- a/tests/data/ftd_3130.json +++ b/tests/data/ftd_3130.json @@ -4844,344 +4844,439 @@ "entPhysical": [ { "entPhysicalIndex": 9, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "CHASSIS-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN TRAY-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "DCH2804W700", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 15, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN TRAY-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 16, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 17, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 18, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 19, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN-4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 20, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PSU-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 21, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PSU-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 22, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 23, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 24, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 25, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 26, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "SSD-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 27, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "SSD-2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 28, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "CPU-1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 29, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 30, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "EPM Card is not inserted", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 31, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "EPM Card is not inserted", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/fusion.json b/tests/data/fusion.json index aafa21316c..d5e8c5f247 100644 --- a/tests/data/fusion.json +++ b/tests/data/fusion.json @@ -1252,590 +1252,590 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "Stack", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "stack.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 101, "entPhysicalDescr": "Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "unit.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 201, "entPhysicalDescr": "Primary Stack Management Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "stackmanaget.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1001, "entPhysicalDescr": "Port 1 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 1 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1002, "entPhysicalDescr": "Port 2 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 2 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1003, "entPhysicalDescr": "Port 3 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 3 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1004, "entPhysicalDescr": "Port 4 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 4 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1005, "entPhysicalDescr": "Port 5 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 5 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1006, "entPhysicalDescr": "Port 6 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 6 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1007, "entPhysicalDescr": "Port 7 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 7 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1008, "entPhysicalDescr": "Port 8 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 8 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1009, "entPhysicalDescr": "Port 9 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 9 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1010, "entPhysicalDescr": "Port 10 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 10 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1011, "entPhysicalDescr": "Port 11 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 11 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1012, "entPhysicalDescr": "Port 12 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 12 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1013, "entPhysicalDescr": "Port 13 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 13 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1014, "entPhysicalDescr": "Port 14 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 14 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1015, "entPhysicalDescr": "Port 15 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 15 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1016, "entPhysicalDescr": "Port 16 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 16 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1017, "entPhysicalDescr": "Port 17 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 17 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1018, "entPhysicalDescr": "Port 18 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 18 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1019, "entPhysicalDescr": "Port 19 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 19 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1020, "entPhysicalDescr": "Port 20 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 20 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1021, "entPhysicalDescr": "Port 21 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 21 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1022, "entPhysicalDescr": "Port 22 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 22 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1023, "entPhysicalDescr": "Port 23 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 23 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1024, "entPhysicalDescr": "Port 24 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 24 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1025, "entPhysicalDescr": "Port 25 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 25 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1026, "entPhysicalDescr": "Port 26 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 26 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1027, "entPhysicalDescr": "Port 27 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 27 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1028, "entPhysicalDescr": "Port 28 Unit 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "RMON Port 28 on Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_4506.json b/tests/data/ios_4506.json index 01bc14646e..771cca448f 100644 --- a/tests/data/ios_4506.json +++ b/tests/data/ios_4506.json @@ -2385,154 +2385,173 @@ "entPhysical": [ { "entPhysicalIndex": 1, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Switch System", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "WS-C4506-E", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Power Supply 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Linecard(slot 1)", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "WS-X4013+", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1001, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Linecard(slot 2)", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Linecard(slot 3)", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Linecard(slot 4)", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Linecard(slot 5)", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Linecard(slot 6)", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_4948-10ge.json b/tests/data/ios_4948-10ge.json index 67164bff33..9360fc0c57 100644 --- a/tests/data/ios_4948-10ge.json +++ b/tests/data/ios_4948-10ge.json @@ -25,21 +25,59 @@ "entPhysical": [ { "entPhysicalIndex": 1, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Switch System", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "WS-C4948-10GE", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1001, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_4948e.json b/tests/data/ios_4948e.json index 6560607c8a..3a1117f332 100644 --- a/tests/data/ios_4948e.json +++ b/tests/data/ios_4948e.json @@ -25,21 +25,59 @@ "entPhysical": [ { "entPhysicalIndex": 1, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Switch System", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "WS-C4948E", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1001, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_c2960s.json b/tests/data/ios_c2960s.json index 66b287e183..c4108a3c05 100644 --- a/tests/data/ios_c2960s.json +++ b/tests/data/ios_c2960s.json @@ -43,21 +43,21 @@ "entPhysical": [ { "entPhysicalIndex": 2001, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_c3560.json b/tests/data/ios_c3560.json index 8d2bfa6b38..126021ff8e 100644 --- a/tests/data/ios_c3560.json +++ b/tests/data/ios_c3560.json @@ -13012,1085 +13012,1085 @@ "entPhysical": [ { "entPhysicalIndex": 1001, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "WS-C3560-48TS-S", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "CAT0912N0CU", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1002, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "WS-C3560-48TS - Fixed Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1003, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "WS-C3560-48TS - Power Supply 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1004, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "WS-C3560-48TS - Fan 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1005, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet0/1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1006, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet0/2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1007, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1008, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1009, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1010, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1011, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1012, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1013, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1014, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1015, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1016, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1017, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1018, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1019, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1020, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1021, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1022, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1023, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1024, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1025, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1026, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1027, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1028, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1029, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1030, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1031, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet0/3 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1032, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet0/4 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1033, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1034, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1035, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1036, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1037, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1038, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1039, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1040, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1041, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1042, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1043, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1044, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1045, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1046, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1047, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1048, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1049, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1050, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1051, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1052, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1053, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1054, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1055, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1056, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FastEthernet0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1057, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_ir809.json b/tests/data/ios_ir809.json index cd1168efb6..e3dd91609b 100644 --- a/tests/data/ios_ir809.json +++ b/tests/data/ios_ir809.json @@ -2754,18 +2754,18 @@ "entPhysicalDescr": "242999900001425", "entPhysicalClass": "module", "entPhysicalName": "sim", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "IMSI", "entPhysicalVendorType": "sim", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -2773,18 +2773,18 @@ "entPhysicalDescr": "352761064656839", "entPhysicalClass": "module", "entPhysicalName": "modem", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "IMEI", "entPhysicalVendorType": "modem", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -2792,18 +2792,18 @@ "entPhysicalDescr": "89470129999000014256", "entPhysicalClass": "module", "entPhysicalName": "sim", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "ICCID", "entPhysicalVendorType": "sim", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/ios_stp-vlans.json b/tests/data/ios_stp-vlans.json index 4298434065..7f81fd4a0b 100644 --- a/tests/data/ios_stp-vlans.json +++ b/tests/data/ios_stp-vlans.json @@ -7234,21 +7234,21 @@ "entPhysical": [ { "entPhysicalIndex": 1, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "C29xx Stacking", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxe.json b/tests/data/iosxe.json index 8596873577..15d7321ef8 100644 --- a/tests/data/iosxe.json +++ b/tests/data/iosxe.json @@ -6693,40 +6693,40 @@ "entPhysical": [ { "entPhysicalIndex": 7051, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "cpu R0/0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9026, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "qfp F0/0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxe_c3650.json b/tests/data/iosxe_c3650.json index 39194d1e1e..5454b5fb30 100644 --- a/tests/data/iosxe_c3650.json +++ b/tests/data/iosxe_c3650.json @@ -103,21 +103,21 @@ "entPhysical": [ { "entPhysicalIndex": 1000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Switch 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxe_c9200l.json b/tests/data/iosxe_c9200l.json index 5bcb7df9da..fb6575c5c3 100644 --- a/tests/data/iosxe_c9200l.json +++ b/tests/data/iosxe_c9200l.json @@ -5594,18 +5594,18 @@ "entPhysicalDescr": "c92xxL Stack", "entPhysicalClass": "stack", "entPhysicalName": "c92xxL Stack", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5613,18 +5613,18 @@ "entPhysicalDescr": "C9200L-48P-4X", "entPhysicalClass": "chassis", "entPhysicalName": "Switch 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5632,18 +5632,18 @@ "entPhysicalDescr": "StackPort1/1", "entPhysicalClass": "other", "entPhysicalName": "StackPort1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5651,18 +5651,18 @@ "entPhysicalDescr": "StackPort1/2", "entPhysicalClass": "other", "entPhysicalName": "StackPort1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5670,18 +5670,18 @@ "entPhysicalDescr": "StackAdapter1/1", "entPhysicalClass": "other", "entPhysicalName": "StackAdapter1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5689,18 +5689,18 @@ "entPhysicalDescr": "StackAdapter1/2", "entPhysicalClass": "other", "entPhysicalName": "StackAdapter1/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5708,18 +5708,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Power Supply A Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 1 - Power Supply A Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5727,18 +5727,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Power Supply B Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 1 - Power Supply B Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5746,18 +5746,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Fan 1 Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 1 - Fan 1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5765,18 +5765,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Fan 2 Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 1 - Fan 2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5784,18 +5784,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Temp Inlet Sensor 0", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 1 - Inlet Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5803,18 +5803,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Temp Outlet Sensor 1", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 1 - Outlet Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5822,18 +5822,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Temp Hotspot Sensor 2", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 1 - HotSpot Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5841,18 +5841,18 @@ "entPhysicalDescr": "Switch 1 - Power Supply A", "entPhysicalClass": "powerSupply", "entPhysicalName": "Switch 1 - Power Supply A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1006, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5860,18 +5860,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - FAN 1", "entPhysicalClass": "fan", "entPhysicalName": "Switch 1 - FAN - T1 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1008, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5879,18 +5879,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - FAN 2", "entPhysicalClass": "fan", "entPhysicalName": "Switch 1 - FAN - T1 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1009, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5898,18 +5898,18 @@ "entPhysicalDescr": "Switch 1 - C9200L-48P-4X - Fixed Module 0", "entPhysicalClass": "module", "entPhysicalName": "Switch 1 Fixed Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5917,18 +5917,18 @@ "entPhysicalDescr": "Gi1/0/1", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 9 }, { @@ -5936,18 +5936,18 @@ "entPhysicalDescr": "Gi1/0/2", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 10 }, { @@ -5955,18 +5955,18 @@ "entPhysicalDescr": "Gi1/0/3", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 11 }, { @@ -5974,18 +5974,18 @@ "entPhysicalDescr": "Gi1/0/4", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 12 }, { @@ -5993,18 +5993,18 @@ "entPhysicalDescr": "Gi1/0/5", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 13 }, { @@ -6012,18 +6012,18 @@ "entPhysicalDescr": "Gi1/0/6", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 14 }, { @@ -6031,18 +6031,18 @@ "entPhysicalDescr": "Gi1/0/7", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 15 }, { @@ -6050,18 +6050,18 @@ "entPhysicalDescr": "Gi1/0/8", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 16 }, { @@ -6069,18 +6069,18 @@ "entPhysicalDescr": "Gi1/0/9", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 17 }, { @@ -6088,18 +6088,18 @@ "entPhysicalDescr": "Gi1/0/10", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 18 }, { @@ -6107,18 +6107,18 @@ "entPhysicalDescr": "Gi1/0/11", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 10, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 19 }, { @@ -6126,18 +6126,18 @@ "entPhysicalDescr": "Gi1/0/12", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 20 }, { @@ -6145,18 +6145,18 @@ "entPhysicalDescr": "Gi1/0/13", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 12, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 21 }, { @@ -6164,18 +6164,18 @@ "entPhysicalDescr": "Gi1/0/14", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 13, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 22 }, { @@ -6183,18 +6183,18 @@ "entPhysicalDescr": "Gi1/0/15", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 14, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 23 }, { @@ -6202,18 +6202,18 @@ "entPhysicalDescr": "Gi1/0/16", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 15, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 24 }, { @@ -6221,18 +6221,18 @@ "entPhysicalDescr": "Gi1/0/17", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 16, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 25 }, { @@ -6240,18 +6240,18 @@ "entPhysicalDescr": "Gi1/0/18", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 17, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 26 }, { @@ -6259,18 +6259,18 @@ "entPhysicalDescr": "Gi1/0/19", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 18, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 27 }, { @@ -6278,18 +6278,18 @@ "entPhysicalDescr": "Gi1/0/20", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 19, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 28 }, { @@ -6297,18 +6297,18 @@ "entPhysicalDescr": "Gi1/0/21", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 20, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 29 }, { @@ -6316,18 +6316,18 @@ "entPhysicalDescr": "Gi1/0/22", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 21, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 30 }, { @@ -6335,18 +6335,18 @@ "entPhysicalDescr": "Gi1/0/23", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 22, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 31 }, { @@ -6354,18 +6354,18 @@ "entPhysicalDescr": "Gi1/0/24", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 23, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 32 }, { @@ -6373,18 +6373,18 @@ "entPhysicalDescr": "Gi1/0/25", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 24, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 33 }, { @@ -6392,18 +6392,18 @@ "entPhysicalDescr": "Gi1/0/26", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 25, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 34 }, { @@ -6411,18 +6411,18 @@ "entPhysicalDescr": "Gi1/0/27", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 26, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 35 }, { @@ -6430,18 +6430,18 @@ "entPhysicalDescr": "Gi1/0/28", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 27, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 36 }, { @@ -6449,18 +6449,18 @@ "entPhysicalDescr": "Gi1/0/29", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 28, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 37 }, { @@ -6468,18 +6468,18 @@ "entPhysicalDescr": "Gi1/0/30", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 29, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 38 }, { @@ -6487,18 +6487,18 @@ "entPhysicalDescr": "Gi1/0/31", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 30, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 39 }, { @@ -6506,18 +6506,18 @@ "entPhysicalDescr": "Gi1/0/32", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 31, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 40 }, { @@ -6525,18 +6525,18 @@ "entPhysicalDescr": "Gi1/0/33", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 32, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 41 }, { @@ -6544,18 +6544,18 @@ "entPhysicalDescr": "Gi1/0/34", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 33, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 42 }, { @@ -6563,18 +6563,18 @@ "entPhysicalDescr": "Gi1/0/35", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 34, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 43 }, { @@ -6582,18 +6582,18 @@ "entPhysicalDescr": "Gi1/0/36", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 35, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 44 }, { @@ -6601,18 +6601,18 @@ "entPhysicalDescr": "Gi1/0/37", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 36, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 45 }, { @@ -6620,18 +6620,18 @@ "entPhysicalDescr": "Gi1/0/38", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 37, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 46 }, { @@ -6639,18 +6639,18 @@ "entPhysicalDescr": "Gi1/0/39", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 38, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 47 }, { @@ -6658,18 +6658,18 @@ "entPhysicalDescr": "Gi1/0/40", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 39, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 48 }, { @@ -6677,18 +6677,18 @@ "entPhysicalDescr": "Gi1/0/41", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 40, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 49 }, { @@ -6696,18 +6696,18 @@ "entPhysicalDescr": "Gi1/0/42", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 41, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 50 }, { @@ -6715,18 +6715,18 @@ "entPhysicalDescr": "Gi1/0/43", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 42, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 51 }, { @@ -6734,18 +6734,18 @@ "entPhysicalDescr": "Gi1/0/44", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 43, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 52 }, { @@ -6753,18 +6753,18 @@ "entPhysicalDescr": "Gi1/0/45", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 44, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 53 }, { @@ -6772,18 +6772,18 @@ "entPhysicalDescr": "Gi1/0/46", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 45, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 54 }, { @@ -6791,18 +6791,18 @@ "entPhysicalDescr": "Gi1/0/47", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 46, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 55 }, { @@ -6810,18 +6810,18 @@ "entPhysicalDescr": "Gi1/0/48", "entPhysicalClass": "port", "entPhysicalName": "Gi1/0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 47, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 56 }, { @@ -6829,18 +6829,18 @@ "entPhysicalDescr": "Fixed Uplink Module", "entPhysicalClass": "module", "entPhysicalName": "Switch 1 Fixed Uplink Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1060, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6848,18 +6848,18 @@ "entPhysicalDescr": "Te1/1/1 Container", "entPhysicalClass": "container", "entPhysicalName": "Te1/1/1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1109, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6867,18 +6867,18 @@ "entPhysicalDescr": "Te1/1/2 Container", "entPhysicalClass": "container", "entPhysicalName": "Te1/1/2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1109, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6886,18 +6886,18 @@ "entPhysicalDescr": "Te1/1/3 Container", "entPhysicalClass": "container", "entPhysicalName": "Te1/1/3 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1109, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6905,18 +6905,18 @@ "entPhysicalDescr": "Te1/1/4 Container", "entPhysicalClass": "container", "entPhysicalName": "Te1/1/4 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1109, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6924,18 +6924,18 @@ "entPhysicalDescr": "SFP-10GBase-SR", "entPhysicalClass": "port", "entPhysicalName": "Te1/1/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1113, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 60 }, { @@ -6943,18 +6943,18 @@ "entPhysicalDescr": "TenGigabitEthernet1/1/4 Module Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te1/1/4 Module Temperature Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1114, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6962,18 +6962,18 @@ "entPhysicalDescr": "TenGigabitEthernet1/1/4 Supply Voltage Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te1/1/4 Supply Voltage Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1114, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -6981,18 +6981,18 @@ "entPhysicalDescr": "TenGigabitEthernet1/1/4 Bias Current Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te1/1/4 Bias Current Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1114, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7000,18 +7000,18 @@ "entPhysicalDescr": "TenGigabitEthernet1/1/4 Transmit Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te1/1/4 Transmit Power Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1114, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7019,18 +7019,18 @@ "entPhysicalDescr": "TenGigabitEthernet1/1/4 Receive Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te1/1/4 Receive Power Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1114, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7038,18 +7038,18 @@ "entPhysicalDescr": "C9200L-48P-4X", "entPhysicalClass": "chassis", "entPhysicalName": "Switch 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7057,18 +7057,18 @@ "entPhysicalDescr": "StackPort2/1", "entPhysicalClass": "other", "entPhysicalName": "StackPort2/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7076,18 +7076,18 @@ "entPhysicalDescr": "StackPort2/2", "entPhysicalClass": "other", "entPhysicalName": "StackPort2/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7095,18 +7095,18 @@ "entPhysicalDescr": "StackAdapter2/1", "entPhysicalClass": "other", "entPhysicalName": "StackAdapter2/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7114,18 +7114,18 @@ "entPhysicalDescr": "StackAdapter2/2", "entPhysicalClass": "other", "entPhysicalName": "StackAdapter2/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7133,18 +7133,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Power Supply A Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 2 - Power Supply A Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7152,18 +7152,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Power Supply B Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 2 - Power Supply B Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7171,18 +7171,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Fan 1 Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 2 - Fan 1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7190,18 +7190,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Fan 2 Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 2 - Fan 2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7209,18 +7209,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Temp Inlet Sensor 0", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 2 - Inlet Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7228,18 +7228,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Temp Outlet Sensor 1", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 2 - Outlet Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7247,18 +7247,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Temp Hotspot Sensor 2", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 2 - HotSpot Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7266,18 +7266,18 @@ "entPhysicalDescr": "Switch 2 - Power Supply A", "entPhysicalClass": "powerSupply", "entPhysicalName": "Switch 2 - Power Supply A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2006, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7285,18 +7285,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - FAN 1", "entPhysicalClass": "fan", "entPhysicalName": "Switch 2 - FAN - T1 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2008, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7304,18 +7304,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - FAN 2", "entPhysicalClass": "fan", "entPhysicalName": "Switch 2 - FAN - T1 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2009, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7323,18 +7323,18 @@ "entPhysicalDescr": "Switch 2 - C9200L-48P-4X - Fixed Module 0", "entPhysicalClass": "module", "entPhysicalName": "Switch 2 Fixed Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2000, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -7342,18 +7342,18 @@ "entPhysicalDescr": "Gi2/0/1", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 64 }, { @@ -7361,18 +7361,18 @@ "entPhysicalDescr": "Gi2/0/2", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 65 }, { @@ -7380,18 +7380,18 @@ "entPhysicalDescr": "Gi2/0/3", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 66 }, { @@ -7399,18 +7399,18 @@ "entPhysicalDescr": "Gi2/0/4", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 67 }, { @@ -7418,18 +7418,18 @@ "entPhysicalDescr": "Gi2/0/5", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 68 }, { @@ -7437,18 +7437,18 @@ "entPhysicalDescr": "Gi2/0/6", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 69 }, { @@ -7456,18 +7456,18 @@ "entPhysicalDescr": "Gi2/0/7", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 70 }, { @@ -7475,18 +7475,18 @@ "entPhysicalDescr": "Gi2/0/8", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 71 }, { @@ -7494,18 +7494,18 @@ "entPhysicalDescr": "Gi2/0/9", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 72 }, { @@ -7513,18 +7513,18 @@ "entPhysicalDescr": "Gi2/0/10", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 73 }, { @@ -7532,18 +7532,18 @@ "entPhysicalDescr": "Gi2/0/11", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 10, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 74 }, { @@ -7551,18 +7551,18 @@ "entPhysicalDescr": "Gi2/0/12", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 75 }, { @@ -7570,18 +7570,18 @@ "entPhysicalDescr": "Gi2/0/13", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 12, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 76 }, { @@ -7589,18 +7589,18 @@ "entPhysicalDescr": "Gi2/0/14", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 13, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 77 }, { @@ -7608,18 +7608,18 @@ "entPhysicalDescr": "Gi2/0/15", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 14, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 78 }, { @@ -7627,18 +7627,18 @@ "entPhysicalDescr": "Gi2/0/16", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 15, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 79 }, { @@ -7646,18 +7646,18 @@ "entPhysicalDescr": "Gi2/0/17", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 16, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 80 }, { @@ -7665,18 +7665,18 @@ "entPhysicalDescr": "Gi2/0/18", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 17, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 81 }, { @@ -7684,18 +7684,18 @@ "entPhysicalDescr": "Gi2/0/19", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 18, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 82 }, { @@ -7703,18 +7703,18 @@ "entPhysicalDescr": "Gi2/0/20", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 19, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 83 }, { @@ -7722,18 +7722,18 @@ "entPhysicalDescr": "Gi2/0/21", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 20, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 84 }, { @@ -7741,18 +7741,18 @@ "entPhysicalDescr": "Gi2/0/22", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 21, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 85 }, { @@ -7760,18 +7760,18 @@ "entPhysicalDescr": "Gi2/0/23", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 22, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 86 }, { @@ -7779,18 +7779,18 @@ "entPhysicalDescr": "Gi2/0/24", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 23, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 87 }, { @@ -7798,18 +7798,18 @@ "entPhysicalDescr": "Gi2/0/25", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 24, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 88 }, { @@ -7817,18 +7817,18 @@ "entPhysicalDescr": "Gi2/0/26", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 25, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 89 }, { @@ -7836,18 +7836,18 @@ "entPhysicalDescr": "Gi2/0/27", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 26, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 90 }, { @@ -7855,18 +7855,18 @@ "entPhysicalDescr": "Gi2/0/28", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 27, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 91 }, { @@ -7874,18 +7874,18 @@ "entPhysicalDescr": "Gi2/0/29", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 28, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 92 }, { @@ -7893,18 +7893,18 @@ "entPhysicalDescr": "Gi2/0/30", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 29, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 93 }, { @@ -7912,18 +7912,18 @@ "entPhysicalDescr": "Gi2/0/31", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 30, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 94 }, { @@ -7931,18 +7931,18 @@ "entPhysicalDescr": "Gi2/0/32", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 31, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 95 }, { @@ -7950,18 +7950,18 @@ "entPhysicalDescr": "Gi2/0/33", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 32, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 96 }, { @@ -7969,18 +7969,18 @@ "entPhysicalDescr": "Gi2/0/34", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 33, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 97 }, { @@ -7988,18 +7988,18 @@ "entPhysicalDescr": "Gi2/0/35", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 34, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 98 }, { @@ -8007,18 +8007,18 @@ "entPhysicalDescr": "Gi2/0/36", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 35, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 99 }, { @@ -8026,18 +8026,18 @@ "entPhysicalDescr": "Gi2/0/37", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 36, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 100 }, { @@ -8045,18 +8045,18 @@ "entPhysicalDescr": "Gi2/0/38", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 37, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 101 }, { @@ -8064,18 +8064,18 @@ "entPhysicalDescr": "Gi2/0/39", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 38, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 102 }, { @@ -8083,18 +8083,18 @@ "entPhysicalDescr": "Gi2/0/40", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 39, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 103 }, { @@ -8102,18 +8102,18 @@ "entPhysicalDescr": "Gi2/0/41", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 40, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 104 }, { @@ -8121,18 +8121,18 @@ "entPhysicalDescr": "Gi2/0/42", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 41, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 105 }, { @@ -8140,18 +8140,18 @@ "entPhysicalDescr": "Gi2/0/43", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 42, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 106 }, { @@ -8159,18 +8159,18 @@ "entPhysicalDescr": "Gi2/0/44", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 43, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 107 }, { @@ -8178,18 +8178,18 @@ "entPhysicalDescr": "Gi2/0/45", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 44, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 108 }, { @@ -8197,18 +8197,18 @@ "entPhysicalDescr": "Gi2/0/46", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 45, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 109 }, { @@ -8216,18 +8216,18 @@ "entPhysicalDescr": "Gi2/0/47", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 46, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 110 }, { @@ -8235,18 +8235,18 @@ "entPhysicalDescr": "Gi2/0/48", "entPhysicalClass": "port", "entPhysicalName": "Gi2/0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 47, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 111 }, { @@ -8254,18 +8254,18 @@ "entPhysicalDescr": "Fixed Uplink Module", "entPhysicalClass": "module", "entPhysicalName": "Switch 2 Fixed Uplink Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2060, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8273,18 +8273,18 @@ "entPhysicalDescr": "Te2/1/1 Container", "entPhysicalClass": "container", "entPhysicalName": "Te2/1/1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2109, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8292,18 +8292,18 @@ "entPhysicalDescr": "Te2/1/2 Container", "entPhysicalClass": "container", "entPhysicalName": "Te2/1/2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2109, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8311,18 +8311,18 @@ "entPhysicalDescr": "Te2/1/3 Container", "entPhysicalClass": "container", "entPhysicalName": "Te2/1/3 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2109, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8330,18 +8330,18 @@ "entPhysicalDescr": "Te2/1/4 Container", "entPhysicalClass": "container", "entPhysicalName": "Te2/1/4 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2109, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8349,18 +8349,18 @@ "entPhysicalDescr": "SFP-10GBase-SR", "entPhysicalClass": "port", "entPhysicalName": "Te2/1/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2113, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 115 }, { @@ -8368,18 +8368,18 @@ "entPhysicalDescr": "TenGigabitEthernet2/1/4 Module Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te2/1/4 Module Temperature Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2114, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8387,18 +8387,18 @@ "entPhysicalDescr": "TenGigabitEthernet2/1/4 Supply Voltage Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te2/1/4 Supply Voltage Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2114, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8406,18 +8406,18 @@ "entPhysicalDescr": "TenGigabitEthernet2/1/4 Bias Current Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te2/1/4 Bias Current Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2114, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8425,18 +8425,18 @@ "entPhysicalDescr": "TenGigabitEthernet2/1/4 Transmit Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te2/1/4 Transmit Power Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2114, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8444,18 +8444,18 @@ "entPhysicalDescr": "TenGigabitEthernet2/1/4 Receive Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Te2/1/4 Receive Power Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2114, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8463,18 +8463,18 @@ "entPhysicalDescr": "C9200L-48P-4G", "entPhysicalClass": "chassis", "entPhysicalName": "Switch 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8482,18 +8482,18 @@ "entPhysicalDescr": "StackPort3/1", "entPhysicalClass": "other", "entPhysicalName": "StackPort3/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8501,18 +8501,18 @@ "entPhysicalDescr": "StackPort3/2", "entPhysicalClass": "other", "entPhysicalName": "StackPort3/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8520,18 +8520,18 @@ "entPhysicalDescr": "StackAdapter3/1", "entPhysicalClass": "other", "entPhysicalName": "StackAdapter3/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8539,18 +8539,18 @@ "entPhysicalDescr": "StackAdapter3/2", "entPhysicalClass": "other", "entPhysicalName": "StackAdapter3/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8558,18 +8558,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Power Supply A Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 3 - Power Supply A Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8577,18 +8577,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Power Supply B Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 3 - Power Supply B Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8596,18 +8596,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Fan 1 Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 3 - Fan 1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8615,18 +8615,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Fan 2 Container", "entPhysicalClass": "container", "entPhysicalName": "Switch 3 - Fan 2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8634,18 +8634,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Temp Inlet Sensor 0", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 3 - Inlet Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8653,18 +8653,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Temp Outlet Sensor 1", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 3 - Outlet Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8672,18 +8672,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Temp Hotspot Sensor 2", "entPhysicalClass": "sensor", "entPhysicalName": "Switch 3 - HotSpot Temp Sensor", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8691,18 +8691,18 @@ "entPhysicalDescr": "Switch 3 - Power Supply A", "entPhysicalClass": "powerSupply", "entPhysicalName": "Switch 3 - Power Supply A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3006, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8710,18 +8710,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - FAN 1", "entPhysicalClass": "fan", "entPhysicalName": "Switch 3 - FAN - T1 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3008, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8729,18 +8729,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - FAN 2", "entPhysicalClass": "fan", "entPhysicalName": "Switch 3 - FAN - T1 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3009, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8748,18 +8748,18 @@ "entPhysicalDescr": "Switch 3 - C9200L-48P-4G - Fixed Module 0", "entPhysicalClass": "module", "entPhysicalName": "Switch 3 Fixed Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3000, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -8767,18 +8767,18 @@ "entPhysicalDescr": "Gi3/0/1", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 119 }, { @@ -8786,18 +8786,18 @@ "entPhysicalDescr": "Gi3/0/2", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 120 }, { @@ -8805,18 +8805,18 @@ "entPhysicalDescr": "Gi3/0/3", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 121 }, { @@ -8824,18 +8824,18 @@ "entPhysicalDescr": "Gi3/0/4", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 122 }, { @@ -8843,18 +8843,18 @@ "entPhysicalDescr": "Gi3/0/5", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 123 }, { @@ -8862,18 +8862,18 @@ "entPhysicalDescr": "Gi3/0/6", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 124 }, { @@ -8881,18 +8881,18 @@ "entPhysicalDescr": "Gi3/0/7", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 125 }, { @@ -8900,18 +8900,18 @@ "entPhysicalDescr": "Gi3/0/8", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 7, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 126 }, { @@ -8919,18 +8919,18 @@ "entPhysicalDescr": "Gi3/0/9", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 127 }, { @@ -8938,18 +8938,18 @@ "entPhysicalDescr": "Gi3/0/10", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 128 }, { @@ -8957,18 +8957,18 @@ "entPhysicalDescr": "Gi3/0/11", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 10, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 129 }, { @@ -8976,18 +8976,18 @@ "entPhysicalDescr": "Gi3/0/12", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 11, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 130 }, { @@ -8995,18 +8995,18 @@ "entPhysicalDescr": "Gi3/0/13", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 12, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 131 }, { @@ -9014,18 +9014,18 @@ "entPhysicalDescr": "Gi3/0/14", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 13, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 132 }, { @@ -9033,18 +9033,18 @@ "entPhysicalDescr": "Gi3/0/15", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 14, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 133 }, { @@ -9052,18 +9052,18 @@ "entPhysicalDescr": "Gi3/0/16", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 15, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 134 }, { @@ -9071,18 +9071,18 @@ "entPhysicalDescr": "Gi3/0/17", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 16, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 135 }, { @@ -9090,18 +9090,18 @@ "entPhysicalDescr": "Gi3/0/18", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 17, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 136 }, { @@ -9109,18 +9109,18 @@ "entPhysicalDescr": "Gi3/0/19", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 18, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 137 }, { @@ -9128,18 +9128,18 @@ "entPhysicalDescr": "Gi3/0/20", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 19, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 138 }, { @@ -9147,18 +9147,18 @@ "entPhysicalDescr": "Gi3/0/21", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 20, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 139 }, { @@ -9166,18 +9166,18 @@ "entPhysicalDescr": "Gi3/0/22", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 21, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 140 }, { @@ -9185,18 +9185,18 @@ "entPhysicalDescr": "Gi3/0/23", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 22, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 141 }, { @@ -9204,18 +9204,18 @@ "entPhysicalDescr": "Gi3/0/24", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 23, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 142 }, { @@ -9223,18 +9223,18 @@ "entPhysicalDescr": "Gi3/0/25", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 24, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 143 }, { @@ -9242,18 +9242,18 @@ "entPhysicalDescr": "Gi3/0/26", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/26", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 25, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 144 }, { @@ -9261,18 +9261,18 @@ "entPhysicalDescr": "Gi3/0/27", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/27", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 26, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 145 }, { @@ -9280,18 +9280,18 @@ "entPhysicalDescr": "Gi3/0/28", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/28", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 27, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 146 }, { @@ -9299,18 +9299,18 @@ "entPhysicalDescr": "Gi3/0/29", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/29", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 28, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 147 }, { @@ -9318,18 +9318,18 @@ "entPhysicalDescr": "Gi3/0/30", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 29, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 148 }, { @@ -9337,18 +9337,18 @@ "entPhysicalDescr": "Gi3/0/31", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 30, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 149 }, { @@ -9356,18 +9356,18 @@ "entPhysicalDescr": "Gi3/0/32", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 31, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 150 }, { @@ -9375,18 +9375,18 @@ "entPhysicalDescr": "Gi3/0/33", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 32, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 151 }, { @@ -9394,18 +9394,18 @@ "entPhysicalDescr": "Gi3/0/34", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 33, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 152 }, { @@ -9413,18 +9413,18 @@ "entPhysicalDescr": "Gi3/0/35", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 34, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 153 }, { @@ -9432,18 +9432,18 @@ "entPhysicalDescr": "Gi3/0/36", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 35, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 154 }, { @@ -9451,18 +9451,18 @@ "entPhysicalDescr": "Gi3/0/37", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 36, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 155 }, { @@ -9470,18 +9470,18 @@ "entPhysicalDescr": "Gi3/0/38", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 37, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 156 }, { @@ -9489,18 +9489,18 @@ "entPhysicalDescr": "Gi3/0/39", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 38, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 157 }, { @@ -9508,18 +9508,18 @@ "entPhysicalDescr": "Gi3/0/40", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 39, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 158 }, { @@ -9527,18 +9527,18 @@ "entPhysicalDescr": "Gi3/0/41", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 40, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 159 }, { @@ -9546,18 +9546,18 @@ "entPhysicalDescr": "Gi3/0/42", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 41, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 160 }, { @@ -9565,18 +9565,18 @@ "entPhysicalDescr": "Gi3/0/43", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 42, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 161 }, { @@ -9584,18 +9584,18 @@ "entPhysicalDescr": "Gi3/0/44", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 43, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 162 }, { @@ -9603,18 +9603,18 @@ "entPhysicalDescr": "Gi3/0/45", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 44, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 163 }, { @@ -9622,18 +9622,18 @@ "entPhysicalDescr": "Gi3/0/46", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 45, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 164 }, { @@ -9641,18 +9641,18 @@ "entPhysicalDescr": "Gi3/0/47", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 46, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 165 }, { @@ -9660,18 +9660,18 @@ "entPhysicalDescr": "Gi3/0/48", "entPhysicalClass": "port", "entPhysicalName": "Gi3/0/48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 47, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": 166 }, { @@ -9679,18 +9679,18 @@ "entPhysicalDescr": "Fixed Uplink Module", "entPhysicalClass": "module", "entPhysicalName": "Switch 3 Fixed Uplink Module 0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3060, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -9698,18 +9698,18 @@ "entPhysicalDescr": "Gi3/1/1 Container", "entPhysicalClass": "container", "entPhysicalName": "Gi3/1/1 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3109, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -9717,18 +9717,18 @@ "entPhysicalDescr": "Gi3/1/2 Container", "entPhysicalClass": "container", "entPhysicalName": "Gi3/1/2 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3109, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -9736,18 +9736,18 @@ "entPhysicalDescr": "Gi3/1/3 Container", "entPhysicalClass": "container", "entPhysicalName": "Gi3/1/3 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3109, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -9755,18 +9755,18 @@ "entPhysicalDescr": "Gi3/1/4 Container", "entPhysicalClass": "container", "entPhysicalName": "Gi3/1/4 Container", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3109, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxe_c9300.json b/tests/data/iosxe_c9300.json index fe21d5cc9b..a81736d27d 100644 --- a/tests/data/iosxe_c9300.json +++ b/tests/data/iosxe_c9300.json @@ -14604,7 +14604,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "cevContainer.291", + "entPhysicalVendorType": "cevContainerFixedLinkModuleSlot", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1000, "entPhysicalParentRelPos": 11, diff --git a/tests/data/iosxe_c9400.json b/tests/data/iosxe_c9400.json index 47ed025384..33f9486403 100644 --- a/tests/data/iosxe_c9400.json +++ b/tests/data/iosxe_c9400.json @@ -38229,40 +38229,40 @@ }, { "entPhysicalIndex": 7051, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "cpu R0/0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9026, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "qfp F0/0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxe_ir1101.json b/tests/data/iosxe_ir1101.json index 37e73e50c1..bbbce00fbc 100644 --- a/tests/data/iosxe_ir1101.json +++ b/tests/data/iosxe_ir1101.json @@ -2979,18 +2979,18 @@ "entPhysicalDescr": "242990000000745", "entPhysicalClass": "module", "entPhysicalName": "sim", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "IMSI", "entPhysicalVendorType": "sim", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4002, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -2998,18 +2998,18 @@ "entPhysicalDescr": "356129072321703", "entPhysicalClass": "module", "entPhysicalName": "modem", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "IMEI", "entPhysicalVendorType": "modem", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4002, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -3017,18 +3017,18 @@ "entPhysicalDescr": "89015700117300007454", "entPhysicalClass": "module", "entPhysicalName": "sim", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "ICCID", "entPhysicalVendorType": "sim", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4002, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxr.json b/tests/data/iosxr.json index 7720aed002..3800fc3242 100644 --- a/tests/data/iosxr.json +++ b/tests/data/iosxr.json @@ -28053,40 +28053,40 @@ "entPhysical": [ { "entPhysicalIndex": 18788073, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "module 0/0/CPU0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 52690955, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "module 0/RSP0/CPU0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/iosxr_asr9904.json b/tests/data/iosxr_asr9904.json index 6f4f35893f..3bc0b76044 100644 --- a/tests/data/iosxr_asr9904.json +++ b/tests/data/iosxr_asr9904.json @@ -24852,40 +24852,40 @@ "entPhysical": [ { "entPhysicalIndex": 18788073, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "module 0/0/CPU0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 52690955, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "module 0/RSP0/CPU0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/junos.json b/tests/data/junos.json index 1b38a28d45..ac1aabb683 100644 --- a/tests/data/junos.json +++ b/tests/data/junos.json @@ -29859,278 +29859,5 @@ ] }, "poller": "matches discovery" - }, - "entity-physical": { - "discovery": { - "entPhysical": [ - { - "entPhysicalIndex": 2110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Power Supply: Power Supply 0 @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Power Supply: Power Supply 0 @ 1/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4111, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FAN: Fan 1 @ 0/0/0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4112, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FAN: Fan 2 @ 0/0/1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4113, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FAN: Fan 3 @ 0/0/2", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4211, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FAN: Fan 1 @ 1/0/0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4212, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FAN: Fan 2 @ 1/0/1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4213, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FAN: Fan 3 @ 1/0/2", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4200-24T, 8 POE @ 0/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4200-24T, 8 POE @ 1/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x 10/100/1000 Base-T @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x 10/100/1000 Base-T @ 1/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - } - ] - }, - "poller": "matches discovery" } } diff --git a/tests/data/junos_ex.json b/tests/data/junos_ex.json index adf6579c42..fd56abc31e 100644 --- a/tests/data/junos_ex.json +++ b/tests/data/junos_ex.json @@ -810,183 +810,5 @@ ] }, "poller": "matches discovery" - }, - "entity-physical": { - "discovery": { - "entPhysical": [ - { - "entPhysicalIndex": 2110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2120, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Power Supply 1 @ 0/1/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4120, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 0/1/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "FPC: EX3400-48T @ 0/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "PIC: 48x10/100/1000 Base-T @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8120, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "PIC: 2x40G QSFP @ 0/1/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8130, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x10G SFP/SFP+ @ 0/2/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - } - ] - }, - "poller": "matches discovery" } } diff --git a/tests/data/junos_ex4600mp.json b/tests/data/junos_ex4600mp.json index 1a69dffb33..cc7c3928b2 100644 --- a/tests/data/junos_ex4600mp.json +++ b/tests/data/junos_ex4600mp.json @@ -179904,991 +179904,1371 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 2110, - "entPhysicalDescr": "Power Supply 0 @ 0/0/*", + "entPhysicalIndex": 1, + "entPhysicalDescr": "Juniper Virtual Chassis Switch", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 0/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290155", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2210, - "entPhysicalDescr": "Power Supply 0 @ 1/0/*", + "entPhysicalIndex": 2, + "entPhysicalDescr": "Power Supply @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 1/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290051", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2310, - "entPhysicalDescr": "Power Supply 0 @ 2/0/*", + "entPhysicalIndex": 4, + "entPhysicalDescr": "Power Supply @ 2/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 2/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290192", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2410, - "entPhysicalDescr": "Power Supply 0 @ 3/0/*", + "entPhysicalIndex": 6, + "entPhysicalDescr": "Power Supply @ 4/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 3/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290029", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2510, - "entPhysicalDescr": "Power Supply 0 @ 4/0/*", + "entPhysicalIndex": 8, + "entPhysicalDescr": "Power Supply @ 6/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 4/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290016", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2610, - "entPhysicalDescr": "Power Supply 0 @ 5/0/*", + "entPhysicalIndex": 10, + "entPhysicalDescr": "Power Supply @ 8/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 5/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290256", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2710, - "entPhysicalDescr": "Power Supply 0 @ 6/0/*", + "entPhysicalIndex": 12, + "entPhysicalDescr": "Power Supply @ 10/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 6/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290005", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2810, - "entPhysicalDescr": "Power Supply 0 @ 7/0/*", + "entPhysicalIndex": 14, + "entPhysicalDescr": "Power Supply @ 12/*/*", "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 7/0/*", - "entPhysicalHardwareRev": "REV 03", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-074873", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1F198290044", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4110, - "entPhysicalDescr": "Fan Tray 0 @ 0/0/*", + "entPhysicalIndex": 16, + "entPhysicalDescr": "Power Supply @ 14/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 0/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4120, - "entPhysicalDescr": "Fan Tray 1 @ 0/1/*", + "entPhysicalIndex": 20, + "entPhysicalDescr": "Fan Tray @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 0/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4210, - "entPhysicalDescr": "Fan Tray 0 @ 1/0/*", + "entPhysicalIndex": 21, + "entPhysicalDescr": "Fan Tray @ 1/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 1/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4220, - "entPhysicalDescr": "Fan Tray 1 @ 1/1/*", + "entPhysicalIndex": 30, + "entPhysicalDescr": "Fan Tray @ 10/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 1/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4310, - "entPhysicalDescr": "Fan Tray 0 @ 2/0/*", + "entPhysicalIndex": 31, + "entPhysicalDescr": "Fan Tray @ 11/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 2/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4320, - "entPhysicalDescr": "Fan Tray 1 @ 2/1/*", + "entPhysicalIndex": 40, + "entPhysicalDescr": "Fan Tray @ 20/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 2/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4410, - "entPhysicalDescr": "Fan Tray 0 @ 3/0/*", + "entPhysicalIndex": 41, + "entPhysicalDescr": "Fan Tray @ 21/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 3/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4420, - "entPhysicalDescr": "Fan Tray 1 @ 3/1/*", + "entPhysicalIndex": 50, + "entPhysicalDescr": "Fan Tray @ 30/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 3/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4510, - "entPhysicalDescr": "Fan Tray 0 @ 4/0/*", + "entPhysicalIndex": 51, + "entPhysicalDescr": "Fan Tray @ 31/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 4/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4520, - "entPhysicalDescr": "Fan Tray 1 @ 4/1/*", + "entPhysicalIndex": 60, + "entPhysicalDescr": "Fan Tray @ 40/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 4/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4610, - "entPhysicalDescr": "Fan Tray 0 @ 5/0/*", + "entPhysicalIndex": 61, + "entPhysicalDescr": "Fan Tray @ 41/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 5/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4620, - "entPhysicalDescr": "Fan Tray 1 @ 5/1/*", + "entPhysicalIndex": 70, + "entPhysicalDescr": "Fan Tray @ 50/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 5/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4710, - "entPhysicalDescr": "Fan Tray 0 @ 6/0/*", + "entPhysicalIndex": 71, + "entPhysicalDescr": "Fan Tray @ 51/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 6/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4720, - "entPhysicalDescr": "Fan Tray 1 @ 6/1/*", + "entPhysicalIndex": 80, + "entPhysicalDescr": "Fan Tray @ 60/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 6/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4810, - "entPhysicalDescr": "Fan Tray 0 @ 7/0/*", + "entPhysicalIndex": 81, + "entPhysicalDescr": "Fan Tray @ 61/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 7/0/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4820, - "entPhysicalDescr": "Fan Tray 1 @ 7/1/*", + "entPhysicalIndex": 90, + "entPhysicalDescr": "Fan Tray @ 70/*/*", "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 7/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalName": "", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7100, + "entPhysicalIndex": 91, + "entPhysicalDescr": "Fan Tray @ 71/*/*", + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 120, "entPhysicalDescr": "FPC: EX4300-48MP @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 0/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456789", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7200, + "entPhysicalIndex": 121, "entPhysicalDescr": "FPC: EX4300-48MP @ 1/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 1/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456790", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7300, + "entPhysicalIndex": 122, "entPhysicalDescr": "FPC: EX4300-48MP @ 2/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 2/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456791", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7400, + "entPhysicalIndex": 123, "entPhysicalDescr": "FPC: EX4300-48MP @ 3/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 3/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456792", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7500, + "entPhysicalIndex": 124, "entPhysicalDescr": "FPC: EX4300-48MP @ 4/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 4/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456793", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7600, + "entPhysicalIndex": 125, "entPhysicalDescr": "FPC: EX4300-48MP @ 5/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 5/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456794", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7700, + "entPhysicalIndex": 126, "entPhysicalDescr": "FPC: EX4300-48MP @ 6/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 6/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456795", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7800, + "entPhysicalIndex": 127, "entPhysicalDescr": "FPC: EX4300-48MP @ 7/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: EX4300-48MP @ 7/*/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456796", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8110, + "entPhysicalIndex": 190, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 0/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 0/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8120, + "entPhysicalIndex": 191, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 0/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 0/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456789", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8130, + "entPhysicalIndex": 192, "entPhysicalDescr": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 0/2/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 0/2/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX-UM-2QSFP-MR", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-080741", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XT0123456789", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8210, + "entPhysicalIndex": 194, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 1/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 1/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8220, + "entPhysicalIndex": 195, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 1/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 1/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456790", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8230, + "entPhysicalIndex": 196, "entPhysicalDescr": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 1/2/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 1/2/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX-UM-2QSFP-MR", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-080741", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XT0123456790", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8310, + "entPhysicalIndex": 198, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 2/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 2/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8320, + "entPhysicalIndex": 199, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 2/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 2/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456791", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8410, + "entPhysicalIndex": 202, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 3/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 3/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8420, + "entPhysicalIndex": 203, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 3/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 3/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456792", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8510, + "entPhysicalIndex": 206, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 4/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 4/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8520, + "entPhysicalIndex": 207, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 4/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 4/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456793", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8610, + "entPhysicalIndex": 210, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 5/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 5/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8620, + "entPhysicalIndex": 211, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 5/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 5/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456794", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8710, + "entPhysicalIndex": 214, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 6/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 6/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8720, + "entPhysicalIndex": 215, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 6/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 6/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456795", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8810, + "entPhysicalIndex": 218, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 7/0/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 7/0/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8820, + "entPhysicalIndex": 219, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 7/1/*", "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x40G QSFP+ @ 7/1/*", - "entPhysicalHardwareRev": "REV 05", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "650-078100", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "XR0123456796", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 9100, + "entPhysicalIndex": 250, "entPhysicalDescr": "Routing Engine 1", "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 1", - "entPhysicalHardwareRev": "", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 9200, + "entPhysicalIndex": 251, "entPhysicalDescr": "Routing Engine 0", "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 0", - "entPhysicalHardwareRev": "", + "entPhysicalName": "EX4300-48MP-S", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 254, + "entPhysicalDescr": "CB 1", + "entPhysicalClass": null, + "entPhysicalName": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 554, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 0/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 555, + "entPhysicalDescr": "QSFP+-40G-CU3M @ 0/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU3M", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 842, + "entPhysicalDescr": "QSFP+-40G-LR4 @ 0/2/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-LR4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 2282, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 1/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 2283, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 1/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 2570, + "entPhysicalDescr": "QSFP+-40G-LR4 @ 1/2/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-LR4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 4010, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 2/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 4011, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 2/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 5738, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 3/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 5739, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 3/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7466, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 4/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7467, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 4/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9194, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 5/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9195, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 5/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 10922, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 6/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 10923, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 6/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 12650, + "entPhysicalDescr": "QSFP+-40G-CU50CM @ 7/1/0", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU50CM", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 12651, + "entPhysicalDescr": "QSFP+-40G-CU3M @ 7/1/1", + "entPhysicalClass": null, + "entPhysicalName": "QSFP+-40G-CU3M", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/junos_mx5t-isis.json b/tests/data/junos_mx5t-isis.json index 5c2a0076a7..c04056c9b9 100644 --- a/tests/data/junos_mx5t-isis.json +++ b/tests/data/junos_mx5t-isis.json @@ -11585,457 +11585,628 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 1100, - "entPhysicalDescr": "midplane", - "entPhysicalClass": null, - "entPhysicalName": "midplane", - "entPhysicalHardwareRev": "REV 08", + "entPhysicalIndex": 1, + "entPhysicalDescr": "chassis frame", + "entPhysicalClass": "chassis", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "711-038215", - "entPhysicalVendorType": "Juniper", + "entPhysicalModelName": "MX5", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "S/N CAAG0822", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2100, + "entPhysicalIndex": 2, + "entPhysicalDescr": "PEM slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot Power", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "FAN slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot Fan", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 6, + "entPhysicalDescr": "TFEB slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot CFEB", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "FPC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot FPC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "PIC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Media Card Space PIC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "Routing Engine slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot RE", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 10, + "entPhysicalDescr": "FPM slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "zero Dot Zero", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 12, + "entPhysicalDescr": "CB slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "zero Dot Zero", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 20, + "entPhysicalDescr": "MIC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Media Card Space MIC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000002, "entPhysicalDescr": "PEM 0", - "entPhysicalClass": null, - "entPhysicalName": "PEM 0", + "entPhysicalClass": "powerSupply", + "entPhysicalName": null, "entPhysicalHardwareRev": "Rev 04", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "740-028288", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Power", "entPhysicalSerialNum": "S/N WC03229", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 4100, + "entPhysicalIndex": 1000004, "entPhysicalDescr": "Fan Tray", - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray", + "entPhysicalClass": "fan", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Fan", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 4, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 4110, - "entPhysicalDescr": "Fan 1", - "entPhysicalClass": null, - "entPhysicalName": "Fan 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4120, - "entPhysicalDescr": "Fan 2", - "entPhysicalClass": null, - "entPhysicalName": "Fan 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4130, - "entPhysicalDescr": "Fan 3", - "entPhysicalClass": null, - "entPhysicalName": "Fan 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4140, - "entPhysicalDescr": "Fan 4", - "entPhysicalClass": null, - "entPhysicalName": "Fan 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4150, - "entPhysicalDescr": "Fan 5", - "entPhysicalClass": null, - "entPhysicalName": "Fan 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 6100, + "entPhysicalIndex": 1000006, "entPhysicalDescr": "TFEB MX5-T", "entPhysicalClass": null, - "entPhysicalName": "TFEB MX5-T", + "entPhysicalName": null, "entPhysicalHardwareRev": "REV 08", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "controlB", + "entPhysicalIsFRU": "false", "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "CFEB", "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 6, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 6110, - "entPhysicalDescr": "TFEB Intake temperature sensor", - "entPhysicalClass": null, - "entPhysicalName": "TFEB Intake temperature sensor", - "entPhysicalHardwareRev": "REV 08", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "controlB", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7100, + "entPhysicalIndex": 1000007, "entPhysicalDescr": "FPC: MPC BUILTIN @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: MPC BUILTIN @ 0/*/*", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "FPC", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 7, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 7200, - "entPhysicalDescr": "FPC: MPC BUILTIN @ 1/*/*", - "entPhysicalClass": null, - "entPhysicalName": "FPC: MPC BUILTIN @ 1/*/*", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8110, - "entPhysicalDescr": "PIC: 4x 10GE XFP @ 0/0/*", - "entPhysicalClass": null, - "entPhysicalName": "PIC: 4x 10GE XFP @ 0/0/*", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8210, - "entPhysicalDescr": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", - "entPhysicalClass": null, - "entPhysicalName": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", - "entPhysicalHardwareRev": "REV 26", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8220, - "entPhysicalDescr": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", - "entPhysicalClass": null, - "entPhysicalName": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", - "entPhysicalHardwareRev": "REV 26", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, + "entPhysicalIndex": 1000009, "entPhysicalDescr": "Routing Engine", "entPhysicalClass": null, - "entPhysicalName": "Routing Engine", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "RE", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 9, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 10100, + "entPhysicalIndex": 1000010, "entPhysicalDescr": "FPM", "entPhysicalClass": null, - "entPhysicalName": "FPM", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "frontPan", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "zero Dot Zero", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 10110, + "entPhysicalIndex": 1010004, + "entPhysicalDescr": "Fan 1", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010006, + "entPhysicalDescr": "TFEB Intake temperature sensor", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "REV 08", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILTIN", + "entPhysicalVendorType": "CFEB", + "entPhysicalSerialNum": "BUILTIN", + "entPhysicalContainedIn": 6, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010008, + "entPhysicalDescr": "PIC: 4x 10GE XFP @ 0/0/*", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILTIN", + "entPhysicalVendorType": "Pic TAZ4X10GEXFP", + "entPhysicalSerialNum": "BUILTIN", + "entPhysicalContainedIn": 8, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010010, "entPhysicalDescr": "FPM Board", "entPhysicalClass": null, - "entPhysicalName": "FPM Board", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "frontPan", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "zero Dot Zero", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 10120, - "entPhysicalDescr": "FPM Display", - "entPhysicalClass": null, - "entPhysicalName": "FPM Display", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "frontPan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 10130, - "entPhysicalDescr": "FPM", - "entPhysicalClass": null, - "entPhysicalName": "FPM", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "frontPan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 10140, - "entPhysicalDescr": "FPM", - "entPhysicalClass": null, - "entPhysicalName": "FPM", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "frontPan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 10150, - "entPhysicalDescr": "FPM", - "entPhysicalClass": null, - "entPhysicalName": "FPM", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "frontPan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 20110, + "entPhysicalIndex": 1010020, "entPhysicalDescr": "MIC: 4x 10GE XFP @ 0/0/*", "entPhysicalClass": null, - "entPhysicalName": "MIC: 4x 10GE XFP @ 0/0/*", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", + "entPhysicalIsFRU": "false", "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Pic TAZ4X10GEXFP", "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 20, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 20210, - "entPhysicalDescr": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", + "entPhysicalIndex": 1020004, + "entPhysicalDescr": "Fan 2", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1020010, + "entPhysicalDescr": "FPM Display", "entPhysicalClass": null, - "entPhysicalName": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zero Dot Zero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1030004, + "entPhysicalDescr": "Fan 3", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1030010, + "entPhysicalDescr": "FPM", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zero Dot Zero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1040004, + "entPhysicalDescr": "Fan 4", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1040010, + "entPhysicalDescr": "FPM", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zero Dot Zero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1050004, + "entPhysicalDescr": "Fan 5", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1050010, + "entPhysicalDescr": "FPM", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zero Dot Zero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 2000007, + "entPhysicalDescr": "FPC: MPC BUILTIN @ 1/*/*", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "FPC", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 7, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 2010008, + "entPhysicalDescr": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", + "entPhysicalClass": null, + "entPhysicalName": null, "entPhysicalHardwareRev": "REV 26", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILTIN", + "entPhysicalVendorType": "Pic MICH10XGESFP", + "entPhysicalSerialNum": "BUILTIN", + "entPhysicalContainedIn": 8, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 2010020, + "entPhysicalDescr": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "REV 26", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", "entPhysicalModelName": "750-028392", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Pic MIC20XGESFP", "entPhysicalSerialNum": "S/N CAAG5167", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 20, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 2020008, + "entPhysicalDescr": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "REV 26", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILTIN", + "entPhysicalVendorType": "Pic MICH10XGESFP", + "entPhysicalSerialNum": "BUILTIN", + "entPhysicalContainedIn": 8, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null diff --git a/tests/data/junos_qfx5100.json b/tests/data/junos_qfx5100.json index 9f6c2d4094..e901969cf6 100644 --- a/tests/data/junos_qfx5100.json +++ b/tests/data/junos_qfx5100.json @@ -11079,191 +11079,305 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 2110, - "entPhysicalDescr": "Power Supply 0 @ 0/0/*", - "entPhysicalClass": null, - "entPhysicalName": "Power Supply 0 @ 0/0/*", - "entPhysicalHardwareRev": "REV 04", + "entPhysicalIndex": 1, + "entPhysicalDescr": "chassis frame", + "entPhysicalClass": "chassis", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-044332", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1GA16412345", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2120, - "entPhysicalDescr": "Power Supply 1 @ 0/1/*", - "entPhysicalClass": null, - "entPhysicalName": "Power Supply 1 @ 0/1/*", - "entPhysicalHardwareRev": "REV 04", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", - "entPhysicalModelName": "740-044332", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "1GA16412345", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4110, - "entPhysicalDescr": "Fan Tray 0 @ 0/0/*", - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 0 @ 0/0/*", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalIsFRU": null, + "entPhysicalModelName": "QFXSwitch", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4120, - "entPhysicalDescr": "Fan Tray 1 @ 0/1/*", - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 1 @ 0/1/*", - "entPhysicalHardwareRev": "", + "entPhysicalIndex": 2, + "entPhysicalDescr": "Power Supply slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot Power", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4130, - "entPhysicalDescr": "Fan Tray 2 @ 0/2/*", - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 2 @ 0/2/*", - "entPhysicalHardwareRev": "", + "entPhysicalIndex": 4, + "entPhysicalDescr": "Fan Tray slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot Fan", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4140, - "entPhysicalDescr": "Fan Tray 3 @ 0/3/*", - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 3 @ 0/3/*", - "entPhysicalHardwareRev": "", + "entPhysicalIndex": 7, + "entPhysicalDescr": "FPC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot FPC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4150, - "entPhysicalDescr": "Fan Tray 4 @ 0/4/*", - "entPhysicalClass": null, - "entPhysicalName": "Fan Tray 4 @ 0/4/*", - "entPhysicalHardwareRev": "", + "entPhysicalIndex": 8, + "entPhysicalDescr": "PIC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Media Card Space PIC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7100, + "entPhysicalIndex": 9, + "entPhysicalDescr": "Routing Engine slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot HM", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000007, "entPhysicalDescr": "FPC: QFX5100-48S-6Q @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: QFX5100-48S-6Q @ 0/*/*", + "entPhysicalName": null, "entPhysicalHardwareRev": "REV 09", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "650-064381", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "FPC", "entPhysicalSerialNum": "TA3716412345", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 7, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 8110, - "entPhysicalDescr": "PIC: 48x10G-6x40G @ 0/0/*", - "entPhysicalClass": null, - "entPhysicalName": "PIC: 48x10G-6x40G @ 0/0/*", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, + "entPhysicalIndex": 1000009, "entPhysicalDescr": "Routing Engine 0", "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 0", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", + "entPhysicalIsFRU": "false", "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "HM", "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 9, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010002, + "entPhysicalDescr": "Power Supply 0 @ 0/0/*", + "entPhysicalClass": "powerSupply", + "entPhysicalName": null, + "entPhysicalHardwareRev": "REV 04", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "740-044332", + "entPhysicalVendorType": "Power", + "entPhysicalSerialNum": "1GA16412345", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010004, + "entPhysicalDescr": "Fan Tray 0 @ 0/0/*", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010008, + "entPhysicalDescr": "PIC: 48x10G-6x40G @ 0/0/*", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILTIN", + "entPhysicalVendorType": "Pic QFX510048S6Q", + "entPhysicalSerialNum": "BUILTIN", + "entPhysicalContainedIn": 8, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1020002, + "entPhysicalDescr": "Power Supply 1 @ 0/1/*", + "entPhysicalClass": "powerSupply", + "entPhysicalName": null, + "entPhysicalHardwareRev": "REV 04", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "740-044332", + "entPhysicalVendorType": "Power", + "entPhysicalSerialNum": "1GA16412345", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1020004, + "entPhysicalDescr": "Fan Tray 1 @ 0/1/*", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1030004, + "entPhysicalDescr": "Fan Tray 2 @ 0/2/*", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1040004, + "entPhysicalDescr": "Fan Tray 3 @ 0/3/*", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1050004, + "entPhysicalDescr": "Fan Tray 4 @ 0/4/*", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null diff --git a/tests/data/junos_rpm.json b/tests/data/junos_rpm.json index f16cea8a56..0847841ec3 100644 --- a/tests/data/junos_rpm.json +++ b/tests/data/junos_rpm.json @@ -13204,229 +13204,324 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 1100, - "entPhysicalDescr": "midplane", - "entPhysicalClass": null, - "entPhysicalName": "midplane", - "entPhysicalHardwareRev": "REV 56", + "entPhysicalIndex": 1, + "entPhysicalDescr": "chassis frame", + "entPhysicalClass": "chassis", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "750-021793", - "entPhysicalVendorType": "Juniper", + "entPhysicalModelName": "SRX240", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "ACKD1306", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 2100, + "entPhysicalIndex": 2, + "entPhysicalDescr": "PEM slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot Power", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "FAN slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot Fan", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "FPC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot FPC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "PIC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Media Card Space PIC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "Routing Engine slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot RE", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000002, "entPhysicalDescr": "PEM 0", - "entPhysicalClass": null, - "entPhysicalName": "PEM 0", + "entPhysicalClass": "powerSupply", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "powerEnt", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Power", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 4100, + "entPhysicalIndex": 1000004, "entPhysicalDescr": "SRX240 PowerSupply fan 1", - "entPhysicalClass": null, - "entPhysicalName": "SRX240 PowerSupply fan 1", + "entPhysicalClass": "fan", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Fan", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 4, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 4200, - "entPhysicalDescr": "SRX240 PowerSupply fan 2", - "entPhysicalClass": null, - "entPhysicalName": "SRX240 PowerSupply fan 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4300, - "entPhysicalDescr": "SRX240 CPU fan 1", - "entPhysicalClass": null, - "entPhysicalName": "SRX240 CPU fan 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4400, - "entPhysicalDescr": "SRX240 CPU fan 2", - "entPhysicalClass": null, - "entPhysicalName": "SRX240 CPU fan 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4500, - "entPhysicalDescr": "SRX240 IO fan 1", - "entPhysicalClass": null, - "entPhysicalName": "SRX240 IO fan 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4600, - "entPhysicalDescr": "SRX240 IO fan 2", - "entPhysicalClass": null, - "entPhysicalName": "SRX240 IO fan 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "fan", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7100, + "entPhysicalIndex": 1000007, "entPhysicalDescr": "FPC: FPC @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: FPC @ 0/*/*", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "FPC", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 7, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 8110, - "entPhysicalDescr": "PIC: 16x GE Base PIC @ 0/0/*", - "entPhysicalClass": null, - "entPhysicalName": "PIC: 16x GE Base PIC @ 0/0/*", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, + "entPhysicalIndex": 1000009, "entPhysicalDescr": "Routing Engine", "entPhysicalClass": null, - "entPhysicalName": "Routing Engine", + "entPhysicalName": null, "entPhysicalHardwareRev": "REV 56", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "750-021793", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "RE", "entPhysicalSerialNum": "ACKD1306", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 9, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 9110, - "entPhysicalDescr": "USB Hub", + "entPhysicalIndex": 1010008, + "entPhysicalDescr": "PIC: 16x GE Base PIC @ 0/0/*", "entPhysicalClass": null, - "entPhysicalName": "USB Hub", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Pic", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 8, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010009, + "entPhysicalDescr": "USB Hub", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "USB Hub", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 9, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 2000004, + "entPhysicalDescr": "SRX240 PowerSupply fan 2", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 3000004, + "entPhysicalDescr": "SRX240 CPU fan 1", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 4000004, + "entPhysicalDescr": "SRX240 CPU fan 2", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 5000004, + "entPhysicalDescr": "SRX240 IO fan 1", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 6000004, + "entPhysicalDescr": "SRX240 IO fan 2", + "entPhysicalClass": "fan", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null diff --git a/tests/data/junos_srx3600.json b/tests/data/junos_srx3600.json index 83d14eebc3..a5e9b3a602 100644 --- a/tests/data/junos_srx3600.json +++ b/tests/data/junos_srx3600.json @@ -12765,1532 +12765,5 @@ ] }, "poller": "matches discovery" - }, - "entity-physical": { - "discovery": { - "entPhysical": [ - { - "entPhysicalIndex": 1100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 midplane", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 1200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 midplane", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PEM 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PEM 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2300, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PEM 2", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2400, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PEM 3", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2500, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PEM 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2600, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PEM 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2700, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PEM 2", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 2800, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PEM 3", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan Tray", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4120, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 2", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4130, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 3", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4140, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 4", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4150, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 5", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4160, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 6", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4170, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 7", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4180, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 8", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4190, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 9", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan Tray", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4220, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 2", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4230, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 3", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4240, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 4", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4250, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 5", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4260, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 6", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4270, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 7", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4280, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 8", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 4290, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 9", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SFB 12GE @ 0/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX1k3k 2x10GE NP-IOC @ 1/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7500, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX1k3k 2x10GE NP-IOC @ 4/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7700, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SPC @ 6/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7800, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SPC @ 7/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 7900, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SPC @ 8/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: 8x 1GE-TX 4x 1GE-SFP @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: 2x 10GE-SFP+ @ 1/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8510, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: 2x 10GE-SFP+ @ 4/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8710, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: SPU Cp-Flow @ 6/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8810, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: SPU Flow @ 7/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 8910, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: SPU Flow @ 8/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Routing Engine 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9300, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Routing Engine 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 10110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPM Board", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 10210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPM Board", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 12100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 CB 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 12200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 CB 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 12300, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 CB 0", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 12400, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 CB 1", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 41100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 Fan 10", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 42100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 Fan 10", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71000, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SPC @ 9/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k NPC @ 10/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SPC @ 11/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71300, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 FPC: SRX3k SPC @ 12/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71400, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SFB 12GE @ 0/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71500, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX1k3k 2x10GE NP-IOC @ 1/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 71800, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX1k3k 2x10GE NP-IOC @ 4/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72000, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SPC @ 6/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72100, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SPC @ 7/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72200, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SPC @ 8/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72300, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SPC @ 9/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72400, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k NPC @ 10/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72500, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SPC @ 11/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 72600, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 FPC: SRX3k SPC @ 12/*/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81010, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: SPU Flow @ 9/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: NPC PIC @ 10/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: SPU Flow @ 11/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81310, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node0 PIC: SPU Flow @ 12/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81410, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: 8x 1GE-TX 4x 1GE-SFP @ 0/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81510, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: 2x 10GE-SFP+ @ 1/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 81810, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: 2x 10GE-SFP+ @ 4/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82010, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: SPU Cp-Flow @ 6/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82110, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: SPU Flow @ 7/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82210, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: SPU Flow @ 8/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82310, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: SPU Flow @ 9/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82410, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: NPC PIC @ 10/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82510, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: SPU Flow @ 11/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 82610, - "entPhysicalDescr": null, - "entPhysicalClass": null, - "entPhysicalName": "node1 PIC: SPU Flow @ 12/0/*", - "entPhysicalHardwareRev": null, - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - } - ] - }, - "poller": "matches discovery" } } diff --git a/tests/data/junos_vmx.json b/tests/data/junos_vmx.json index c77d253fb9..e939fe786b 100644 --- a/tests/data/junos_vmx.json +++ b/tests/data/junos_vmx.json @@ -13051,96 +13051,191 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 1100, - "entPhysicalDescr": "midplane", - "entPhysicalClass": null, - "entPhysicalName": "midplane", - "entPhysicalHardwareRev": "", + "entPhysicalIndex": 1, + "entPhysicalDescr": "chassis frame", + "entPhysicalClass": "chassis", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalModelName": "VMX", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7100, + "entPhysicalIndex": 7, + "entPhysicalDescr": "FPC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot FPC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "PIC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Media Card Space PIC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "Routing Engine slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot HM", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 12, + "entPhysicalDescr": "CBD slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Slot CB", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 20, + "entPhysicalDescr": "MIC slot", + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "Media Card Space MIC", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000007, "entPhysicalDescr": "FPC: Virtual FPC @ 0/*/*", "entPhysicalClass": null, - "entPhysicalName": "FPC: Virtual FPC @ 0/*/*", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "flexible", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "FPC", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 7, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 8110, - "entPhysicalDescr": "PIC: Virtual @ 0/0/*", - "entPhysicalClass": null, - "entPhysicalName": "PIC: Virtual @ 0/0/*", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", - "entPhysicalModelName": "BUILTIN", - "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "BUILTIN", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Juniper", - "ifIndex": null - }, - { - "entPhysicalIndex": 9100, + "entPhysicalIndex": 1000009, "entPhysicalDescr": "Routing Engine 0", "entPhysicalClass": null, - "entPhysicalName": "Routing Engine 0", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "routingE", + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "HM", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 9, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null }, { - "entPhysicalIndex": 20110, - "entPhysicalDescr": "MIC: Virtual @ 0/0/*", + "entPhysicalIndex": 1010008, + "entPhysicalDescr": "PIC: Virtual @ 0/0/*", "entPhysicalClass": null, - "entPhysicalName": "MIC: Virtual @ 0/0/*", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, - "entPhysicalIsFRU": "portInte", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILTIN", + "entPhysicalVendorType": "Pic VMXMIC", + "entPhysicalSerialNum": "BUILTIN", + "entPhysicalContainedIn": 8, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "Juniper", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010020, + "entPhysicalDescr": "MIC: Virtual @ 0/0/*", + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "Juniper", + "entPhysicalVendorType": "Pic VMXMIC", "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, + "entPhysicalContainedIn": 20, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", "ifIndex": null diff --git a/tests/data/linux_lsi.json b/tests/data/linux_lsi.json index 3ea6e36b77..5286909a39 100644 --- a/tests/data/linux_lsi.json +++ b/tests/data/linux_lsi.json @@ -11125,1881 +11125,1900 @@ "entPhysicalIndex": 200, "entPhysicalDescr": "/C0", "entPhysicalClass": "port", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "23.18.0-0013:3.290.05-2720:Aug 06 2013:13:56:49", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "LSI MegaRAID ROMB", "entPhysicalVendorType": "0x1000", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 201, "entPhysicalDescr": "/C1", "entPhysicalClass": "port", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "23.34.0-0019:3.460.115-6465:Sep 16 2016:12:45:24", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "LSI MegaRAID SAS 9286CV-8e", "entPhysicalVendorType": "0x1000", "entPhysicalSerialNum": "SV40233699", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 202, "entPhysicalDescr": "/C2", "entPhysicalClass": "port", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": "23.34.0-0019:3.460.115-6465:Sep 16 2016:12:45:24", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "LSI MegaRAID SAS 9286CV-8e", "entPhysicalVendorType": "0x1000", "entPhysicalSerialNum": "SV40233277", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 218, - "entPhysicalDescr": "/C/E8", + "entPhysicalDescr": "/C0/E8", "entPhysicalClass": "chassis", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "0e0b", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "SAS2X36", - "entPhysicalVendorType": null, + "entPhysicalVendorType": "21", "entPhysicalSerialNum": "x36-55.14.11.0", "entPhysicalContainedIn": 200, "entPhysicalParentRelPos": 8, - "entPhysicalMfgName": "21", + "entPhysicalMfgName": "LSI", "ifIndex": null }, { "entPhysicalIndex": 219, - "entPhysicalDescr": "/C/E9", + "entPhysicalDescr": "/C0/E9", "entPhysicalClass": "chassis", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "0e0b", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "SAS2X36", - "entPhysicalVendorType": null, + "entPhysicalVendorType": "24", "entPhysicalSerialNum": "x36-55.14.11.0", "entPhysicalContainedIn": 200, "entPhysicalParentRelPos": 9, - "entPhysicalMfgName": "24", + "entPhysicalMfgName": "LSI", "ifIndex": null }, { "entPhysicalIndex": 273, - "entPhysicalDescr": "/C/E63", + "entPhysicalDescr": "/C0/E63", "entPhysicalClass": "chassis", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "0e0b", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "SAS2X36", - "entPhysicalVendorType": null, + "entPhysicalVendorType": "21", "entPhysicalSerialNum": "x36-55.14.11.0", "entPhysicalContainedIn": 200, "entPhysicalParentRelPos": 63, - "entPhysicalMfgName": "21", + "entPhysicalMfgName": "LSI", "ifIndex": null }, { "entPhysicalIndex": 295, - "entPhysicalDescr": "/C/E85", + "entPhysicalDescr": "/C0/E85", "entPhysicalClass": "chassis", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "0e0b", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, "entPhysicalModelName": "SAS2X36", - "entPhysicalVendorType": null, + "entPhysicalVendorType": "24", "entPhysicalSerialNum": "x36-55.14.11.0", "entPhysicalContainedIn": 200, "entPhysicalParentRelPos": 85, - "entPhysicalMfgName": "24", + "entPhysicalMfgName": "LSI", "ifIndex": null }, { "entPhysicalIndex": 597, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 598, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 599, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 600, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 601, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 602, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 603, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 604, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 605, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 606, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 607, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 608, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 609, - "entPhysicalDescr": "/C/E/S", + "entPhysicalDescr": "/C0/E0/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": null, + "entPhysicalClass": "charge", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": "N/A", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "CVPM02", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "14641", + "entPhysicalContainedIn": 202, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1310, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1311, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1312, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1313, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1315, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1318, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1319, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1320, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1321, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1322, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1323, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1324, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1326, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1328, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1329, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1331, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1334, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1336, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1338, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1343, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1344, - "entPhysicalDescr": "/C/E8/S", + "entPhysicalDescr": "/C0/E8/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1414, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1416, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1417, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1425, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1427, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1430, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1432, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1433, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1435, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1437, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1439, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1440, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1441, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1442, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1445, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1446, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1447, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1448, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1449, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1450, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1451, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1452, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1453, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 1454, - "entPhysicalDescr": "/C/E9/S", + "entPhysicalDescr": "/C0/E9/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6864, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6865, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6866, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6867, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6868, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6869, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6870, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6871, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6872, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6873, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6874, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6875, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6876, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6877, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6878, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6879, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6880, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6881, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6882, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6883, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6884, - "entPhysicalDescr": "/C/E63/S", + "entPhysicalDescr": "/C0/E63/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9086, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9087, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9088, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9089, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9090, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9091, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9092, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9093, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9094, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9095, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9096, - "entPhysicalDescr": "/C/E85/S", + "entPhysicalDescr": "/C0/E85/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25708, - "entPhysicalDescr": "/C/E252/S", + "entPhysicalDescr": "/C0/E252/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 462, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25709, - "entPhysicalDescr": "/C/E252/S", + "entPhysicalDescr": "/C0/E252/S0", "entPhysicalClass": "drive", - "entPhysicalName": "", - "entPhysicalHardwareRev": "", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 462, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/mrv-od.json b/tests/data/mrv-od.json index bb209ee4fc..495482de1a 100644 --- a/tests/data/mrv-od.json +++ b/tests/data/mrv-od.json @@ -3959,15 +3959,15 @@ "entPhysicalDescr": "Power Supply", "entPhysicalClass": "powerSupply", "entPhysicalName": "Power Supply 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "MRV Communications", @@ -3978,15 +3978,15 @@ "entPhysicalDescr": "Power Supply", "entPhysicalClass": "powerSupply", "entPhysicalName": "Power Supply 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "MRV Communications", @@ -3997,15 +3997,15 @@ "entPhysicalDescr": "Power Supply State", "entPhysicalClass": "sensor", "entPhysicalName": "Power Supply 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000001, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4016,15 +4016,15 @@ "entPhysicalDescr": "Power Supply State", "entPhysicalClass": "sensor", "entPhysicalName": "Power Supply 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1000002, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4037,9 +4037,9 @@ "entPhysicalName": "Chassis 1", "entPhysicalHardwareRev": "2081330-003R", "entPhysicalFirmwareRev": "Firmware: 0x7", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "chassis-hostname1", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "OD-16-HD", "entPhysicalVendorType": "od16", @@ -4054,15 +4054,15 @@ "entPhysicalDescr": "Fan Tray", "entPhysicalClass": "fan", "entPhysicalName": "Fan Tray 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "MRV Communications", @@ -4073,15 +4073,15 @@ "entPhysicalDescr": "Fan State", "entPhysicalClass": "sensor", "entPhysicalName": "Fan 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000001, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4092,15 +4092,15 @@ "entPhysicalDescr": "Chassis Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Chassis Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4111,15 +4111,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "MRV Communications", @@ -4132,9 +4132,9 @@ "entPhysicalName": "Card 1.1", "entPhysicalHardwareRev": "2081152-009R, EDC: 02.18", "entPhysicalFirmwareRev": "Firmware: 0x0015", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "EM316DMR10G-3R at 1.1", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "EM316DMR10G-3R", "entPhysicalVendorType": "em316dmr10g3r", @@ -4149,15 +4149,15 @@ "entPhysicalDescr": "SFP Transceiver Container", "entPhysicalClass": "container", "entPhysicalName": "Transceiver Container 1.1.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100001, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "MRV Communications", @@ -4168,15 +4168,15 @@ "entPhysicalDescr": "SFP Transceiver Container", "entPhysicalClass": "container", "entPhysicalName": "Transceiver Container 1.1.2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100001, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "MRV Communications", @@ -4187,15 +4187,15 @@ "entPhysicalDescr": "SFP Transceiver Container", "entPhysicalClass": "container", "entPhysicalName": "Transceiver Container 1.1.3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100001, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "MRV Communications", @@ -4207,10 +4207,10 @@ "entPhysicalClass": "port", "entPhysicalName": "Port 1.1.3", "entPhysicalHardwareRev": "0001", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "converter-ifalias-port3", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SFP-10GDWZR-22", "entPhysicalVendorType": "125", @@ -4225,15 +4225,15 @@ "entPhysicalDescr": "Port Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100301, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV", @@ -4244,15 +4244,15 @@ "entPhysicalDescr": "Port Tx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100301, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV", @@ -4263,15 +4263,15 @@ "entPhysicalDescr": "Port Rx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Rx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100301, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV", @@ -4282,15 +4282,15 @@ "entPhysicalDescr": "Port Tx Bias Current Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Bias Current", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100301, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV", @@ -4301,15 +4301,15 @@ "entPhysicalDescr": "Port Tx Supply Voltage Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Supply Voltage", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100301, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV", @@ -4320,15 +4320,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100301, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV", @@ -4339,15 +4339,15 @@ "entPhysicalDescr": "SFP Transceiver Container", "entPhysicalClass": "container", "entPhysicalName": "Transceiver Container 1.1.4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100001, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "MRV Communications", @@ -4359,10 +4359,10 @@ "entPhysicalClass": "port", "entPhysicalName": "Port 1.1.4", "entPhysicalHardwareRev": "A", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "converter-ifalias-port4", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "P.1396.10", "entPhysicalVendorType": "125", @@ -4377,15 +4377,15 @@ "entPhysicalDescr": "Port Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV FLEXOPTIX", @@ -4396,15 +4396,15 @@ "entPhysicalDescr": "Port Tx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV FLEXOPTIX", @@ -4415,15 +4415,15 @@ "entPhysicalDescr": "Port Rx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Rx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV FLEXOPTIX", @@ -4434,15 +4434,15 @@ "entPhysicalDescr": "Port Tx Bias Current Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Bias Current", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV FLEXOPTIX", @@ -4453,15 +4453,15 @@ "entPhysicalDescr": "Port Tx Supply Voltage Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Supply Voltage", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV FLEXOPTIX", @@ -4472,15 +4472,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10100401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV FLEXOPTIX", @@ -4491,15 +4491,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "MRV Communications", @@ -4510,15 +4510,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "MRV Communications", @@ -4529,15 +4529,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "MRV Communications", @@ -4548,15 +4548,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "MRV Communications", @@ -4567,15 +4567,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "MRV Communications", @@ -4586,15 +4586,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 7, "entPhysicalMfgName": "MRV Communications", @@ -4605,15 +4605,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 8, "entPhysicalMfgName": "MRV Communications", @@ -4624,15 +4624,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 9, "entPhysicalMfgName": "MRV Communications", @@ -4643,15 +4643,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 10, "entPhysicalMfgName": "MRV Communications", @@ -4662,15 +4662,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 11, "entPhysicalMfgName": "MRV Communications", @@ -4683,9 +4683,9 @@ "entPhysicalName": "Card 1.11", "entPhysicalHardwareRev": "5, ", "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "EM316-GEN-PASV at 1.11", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "EM316DCM40", "entPhysicalVendorType": "em316dcmxx", @@ -4700,13 +4700,13 @@ "entPhysicalDescr": "Built-in Port, foLC Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.11.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "LC at 1.11.1", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "207", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11100001, @@ -4719,15 +4719,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11100101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4738,13 +4738,13 @@ "entPhysicalDescr": "Built-in Port, foLC Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.11.2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "LC at 1.11.2", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "207", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11100001, @@ -4757,15 +4757,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11100201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4776,15 +4776,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 12, "entPhysicalMfgName": "MRV Communications", @@ -4797,9 +4797,9 @@ "entPhysicalName": "Card 1.12", "entPhysicalHardwareRev": "2081151-002R, BRICK S/N 1431312011", "entPhysicalFirmwareRev": "Firmware 0x6b", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "EM316EDFA at 1.12", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "EM316EA-BR0918", "entPhysicalVendorType": "em316edfalv", @@ -4814,13 +4814,13 @@ "entPhysicalDescr": "Built-in Port, EDFA OUTPUT, foSC Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.12.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "FO_SC at 1.12.1", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "206", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11200001, @@ -4833,15 +4833,15 @@ "entPhysicalDescr": "Port Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4852,15 +4852,15 @@ "entPhysicalDescr": "Port Tx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4871,15 +4871,15 @@ "entPhysicalDescr": "Port Tx Supply Voltage Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Supply Voltage", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4890,15 +4890,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4909,13 +4909,13 @@ "entPhysicalDescr": "Built-in Port, EDFA INPUT, foSC Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.12.2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "FO_SC at 1.12.2", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "206", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11200001, @@ -4928,15 +4928,15 @@ "entPhysicalDescr": "Port Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4947,15 +4947,15 @@ "entPhysicalDescr": "Port Rx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Rx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4966,15 +4966,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11200201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -4985,15 +4985,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 13, "entPhysicalMfgName": "MRV Communications", @@ -5006,9 +5006,9 @@ "entPhysicalName": "Card 1.13", "entPhysicalHardwareRev": "2081151-002R, BRICK S/N 1431312011", "entPhysicalFirmwareRev": "Firmware 0x6b", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "EM316EDFA at 1.13", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "EM316EA-BR0918", "entPhysicalVendorType": "em316edfar", @@ -5023,15 +5023,15 @@ "entPhysicalDescr": "Card Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Card Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11300001, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5042,15 +5042,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 14, "entPhysicalMfgName": "MRV Communications", @@ -5063,9 +5063,9 @@ "entPhysicalName": "Card 1.14", "entPhysicalHardwareRev": "1294106-002R, BRICK S/N 1631401010", "entPhysicalFirmwareRev": "Firmware 0x6b", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "EM316EDFA at 1.14", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "EM316EA-PR1013", "entPhysicalVendorType": "em316edfalv", @@ -5080,13 +5080,13 @@ "entPhysicalDescr": "Built-in Port, EDFA OUTPUT, foSC Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.14.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "FO_SC at 1.14.1", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "206", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11400001, @@ -5099,15 +5099,15 @@ "entPhysicalDescr": "Port Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5118,15 +5118,15 @@ "entPhysicalDescr": "Port Tx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5137,15 +5137,15 @@ "entPhysicalDescr": "Port Tx Supply Voltage Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Tx Supply Voltage", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5156,15 +5156,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5175,13 +5175,13 @@ "entPhysicalDescr": "Built-in Port, EDFA INPUT, foSC Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.14.2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "FO_SC at 1.14.2", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "206", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11400001, @@ -5194,15 +5194,15 @@ "entPhysicalDescr": "Port Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5213,15 +5213,15 @@ "entPhysicalDescr": "Port Rx Power Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Rx Power", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5232,15 +5232,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11400201, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5251,15 +5251,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 15, "entPhysicalMfgName": "MRV Communications", @@ -5272,9 +5272,9 @@ "entPhysicalName": "Card 1.15", "entPhysicalHardwareRev": "1294106-002R, BRICK S/N 1631401010", "entPhysicalFirmwareRev": "Firmware 0x6b", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "EM316EDFA at 1.15", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "EM316EA-PR1013", "entPhysicalVendorType": "em316edfar", @@ -5289,15 +5289,15 @@ "entPhysicalDescr": "Card Temperature Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Card Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11500001, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5308,15 +5308,15 @@ "entPhysicalDescr": "MRV OptiDriver Slot", "entPhysicalClass": "container", "entPhysicalName": "Card Slot 1.16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10000000, "entPhysicalParentRelPos": 16, "entPhysicalMfgName": "MRV Communications", @@ -5329,9 +5329,9 @@ "entPhysicalName": "Card 1.16", "entPhysicalHardwareRev": "6, CPLD: 0x2001", "entPhysicalFirmwareRev": "Firmware: 0x2001", - "entPhysicalSoftwareRev": "", + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "OD-NM at 1.16", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "OD-NM", "entPhysicalVendorType": "odnm", @@ -5346,13 +5346,13 @@ "entPhysicalDescr": "Built-in Port, rj45wUSBRJ45Active Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.16.1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "USB at 1.16.1", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "222", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11600001, @@ -5365,15 +5365,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11600101, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", @@ -5384,15 +5384,15 @@ "entPhysicalDescr": "SFP Transceiver Container", "entPhysicalClass": "container", "entPhysicalName": "Transceiver Container 1.16.2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11600001, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "MRV Communications", @@ -5403,15 +5403,15 @@ "entPhysicalDescr": "SFP Transceiver Container", "entPhysicalClass": "container", "entPhysicalName": "Transceiver Container 1.16.3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11600001, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "MRV Communications", @@ -5422,13 +5422,13 @@ "entPhysicalDescr": "Built-in Port, cuRj45 Connector", "entPhysicalClass": "port", "entPhysicalName": "Port 1.16.4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, "entPhysicalAlias": "RJ-45 at 1.16.4", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "28", "entPhysicalSerialNum": "N/A", "entPhysicalContainedIn": 11600001, @@ -5441,15 +5441,15 @@ "entPhysicalDescr": "Port Overall DigiDiags State Sensor", "entPhysicalClass": "sensor", "entPhysicalName": "Port Overall DigiDiags State", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11600401, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "MRV Communications", diff --git a/tests/data/netgear_3.json b/tests/data/netgear_3.json index ced035e607..0273c8b223 100644 --- a/tests/data/netgear_3.json +++ b/tests/data/netgear_3.json @@ -134,267 +134,267 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "M4100-D12G ProSafe 12-port Gigabit L2+ Intelligent Edge Desktop Managed Switch", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Unit 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "Broadcom BCM56144 - 12 GE Port Dedicated Ethernet Line Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot 1.0", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3, "entPhysicalDescr": "Slot: 0 Port: 1 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4, "entPhysicalDescr": "Slot: 0 Port: 2 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5, "entPhysicalDescr": "Slot: 0 Port: 3 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "Slot: 0 Port: 4 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7, "entPhysicalDescr": "Slot: 0 Port: 5 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 8, "entPhysicalDescr": "Slot: 0 Port: 6 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9, "entPhysicalDescr": "Slot: 0 Port: 7 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, "entPhysicalDescr": "Slot: 0 Port: 8 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, "entPhysicalDescr": "Slot: 0 Port: 9 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, "entPhysicalDescr": "Slot: 0 Port: 10 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, "entPhysicalDescr": "Slot: 0 Port: 11 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, "entPhysicalDescr": "Slot: 0 Port: 12 Gigabit - Level", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "0/12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/packetlight_pl-1000e.json b/tests/data/packetlight_pl-1000e.json index b355773acd..898331dac0 100644 --- a/tests/data/packetlight_pl-1000e.json +++ b/tests/data/packetlight_pl-1000e.json @@ -10396,647 +10396,647 @@ { "entPhysicalIndex": 1001, "entPhysicalDescr": "Main Board", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PL-1000E", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3001, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3002, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3003, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3004, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3005, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3006, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3007, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3008, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3009, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3010, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3011, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3012, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3013, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3014, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3015, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3016, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3017, "entPhysicalDescr": "MNG Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MNG Port 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3018, "entPhysicalDescr": "MNG Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MNG Port 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3101, "entPhysicalDescr": "PSU Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU Slot 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3102, "entPhysicalDescr": "PSU Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU Slot 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3103, "entPhysicalDescr": "FAN Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FAN Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5101, "entPhysicalDescr": "AC Power Interface Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5102, "entPhysicalDescr": "AC Power Interface Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5103, "entPhysicalDescr": "Cooling Fan Unit", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FAN Unit", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7001, "entPhysicalDescr": "1550 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "XFP Port 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7005, "entPhysicalDescr": "Non-WDM 850 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP+ Port 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7009, "entPhysicalDescr": "Non-WDM 1470 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP Port 9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7010, "entPhysicalDescr": "Non-WDM 850 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP Port 10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7011, "entPhysicalDescr": "Non-WDM 1530 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP Port 11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7012, "entPhysicalDescr": "Non-WDM 850 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP Port 12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7101, "entPhysicalDescr": "ETH Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "ETH Port", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7102, "entPhysicalDescr": "Control Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Control Port", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7103, "entPhysicalDescr": "External Alarm Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "External Alarm Port", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/packetlight_pl2000.json b/tests/data/packetlight_pl2000.json index 2c4acbe3da..c979155cbf 100644 --- a/tests/data/packetlight_pl2000.json +++ b/tests/data/packetlight_pl2000.json @@ -7296,742 +7296,742 @@ { "entPhysicalIndex": 1001, "entPhysicalDescr": "Main Board", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PL-2000M", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3001, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3002, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3003, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3004, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3005, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3006, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3007, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3008, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3009, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3010, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3011, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3012, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3013, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3014, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3015, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3016, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3017, "entPhysicalDescr": "MNG Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MNG Port 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3018, "entPhysicalDescr": "MNG Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MNG Port 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3019, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3020, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3021, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3022, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3023, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3024, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3025, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 25", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3101, "entPhysicalDescr": "PSU Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU Slot 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3102, "entPhysicalDescr": "PSU Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU Slot 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3103, "entPhysicalDescr": "FAN Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FAN Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3200, "entPhysicalDescr": "Link Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Link Port 200", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5101, "entPhysicalDescr": "AC Power Interface Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5102, "entPhysicalDescr": "AC Power Interface Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PSU 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5103, "entPhysicalDescr": "Cooling Fan Unit", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FAN Unit", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7016, "entPhysicalDescr": "Non-WDM 850 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SFP+ Port 16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7021, "entPhysicalDescr": "Non-WDM 850 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "QSFP+/28 Port 21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7101, "entPhysicalDescr": "ETH Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "ETH Port", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7102, "entPhysicalDescr": "Control Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Control Port", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7103, "entPhysicalDescr": "External Alarm Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "External Alarm Port", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 7200, "entPhysicalDescr": "DWDM 1554.94 nm", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "CFP2 UPLINK", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/picos.json b/tests/data/picos.json index b0efb0f38f..46dedfc313 100644 --- a/tests/data/picos.json +++ b/tests/data/picos.json @@ -14619,20 +14619,20 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "Edgecore Model 5812-54X-O-AC-F", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/powerconnect_2824.json b/tests/data/powerconnect_2824.json index 1c430e5726..13110fc850 100644 --- a/tests/data/powerconnect_2824.json +++ b/tests/data/powerconnect_2824.json @@ -5845,6 +5845,462 @@ "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "", "ifIndex": null + }, + { + "entPhysicalIndex": 68424769, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 2 + }, + { + "entPhysicalIndex": 68424770, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 1 + }, + { + "entPhysicalIndex": 68424771, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 4 + }, + { + "entPhysicalIndex": 68424772, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 3 + }, + { + "entPhysicalIndex": 68424773, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 6 + }, + { + "entPhysicalIndex": 68424774, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 5 + }, + { + "entPhysicalIndex": 68424775, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 8 + }, + { + "entPhysicalIndex": 68424776, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 7 + }, + { + "entPhysicalIndex": 68424777, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 10 + }, + { + "entPhysicalIndex": 68424778, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 9 + }, + { + "entPhysicalIndex": 68424779, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 12 + }, + { + "entPhysicalIndex": 68424780, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 11 + }, + { + "entPhysicalIndex": 68424781, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 14 + }, + { + "entPhysicalIndex": 68424782, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 13 + }, + { + "entPhysicalIndex": 68424783, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 16 + }, + { + "entPhysicalIndex": 68424784, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 15 + }, + { + "entPhysicalIndex": 68424785, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 18 + }, + { + "entPhysicalIndex": 68424786, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 17 + }, + { + "entPhysicalIndex": 68424787, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 20 + }, + { + "entPhysicalIndex": 68424788, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 19 + }, + { + "entPhysicalIndex": 68424789, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 22 + }, + { + "entPhysicalIndex": 68424790, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 21 + }, + { + "entPhysicalIndex": 68424791, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 23 + }, + { + "entPhysicalIndex": 68424792, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 24 } ] }, diff --git a/tests/data/procurve.json b/tests/data/procurve.json index 71f1427abc..6890d87d7d 100644 --- a/tests/data/procurve.json +++ b/tests/data/procurve.json @@ -672,2680 +672,2680 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "HP J9850A Switch 5406Rzl2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Chassis", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "HP J9850A Switch backplane", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Backplane", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3, "entPhysicalDescr": "HP J9850A Switch fan tray container", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4, "entPhysicalDescr": "HP J9850A Switch temperature sensor pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Temperature sensor pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5, "entPhysicalDescr": "HP J9850A Switch power supply bay pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power supply bay pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "HP J9850A Switch management module pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Management module pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9, "entPhysicalDescr": "HP J9850A Switch interface module pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Interface module pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, "entPhysicalDescr": "HP J9775A Switch power supply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 15, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 16, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 17, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 18, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 19, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 20, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 21, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 22, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 23, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 24, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25, "entPhysicalDescr": "HP J9850A Switch temperature sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Chassis Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 26, "entPhysicalDescr": "HP J9850A Switch power supply bay", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply Bay 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 27, "entPhysicalDescr": "HP J9850A Switch power supply bay", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply Bay 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 28, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 29, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 30, "entPhysicalDescr": "HP J9850A Switch power supply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 31, "entPhysicalDescr": "HP J9850A Switch power supply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 32, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 33, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 34, "entPhysicalDescr": "HP J9850A Switch Management Module Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Switch Management Module Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 35, "entPhysicalDescr": "HP J9850A Switch Management Module Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Switch Management Module Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 36, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 37, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 38, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 39, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 40, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 41, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot C", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 42, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot D", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 43, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot E", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 44, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot F", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 45, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 46, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 47, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 48, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 49, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 50, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 51, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 52, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 53, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 54, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 55, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 56, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 57, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 58, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 59, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 60, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 61, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 62, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 63, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 64, "entPhysicalDescr": "HP 1000BASE-LX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 49", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 65, "entPhysicalDescr": "HP No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 50", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 66, "entPhysicalDescr": "HP No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 51", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67, "entPhysicalDescr": "HP No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 52", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69, "entPhysicalDescr": "HP J9827A Management Module 5400Rzl2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Switch Management Module", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 74, "entPhysicalDescr": "HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 75, "entPhysicalDescr": "HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 76, "entPhysicalDescr": "HP J9987A 24p 10/100/1000BASE-T v3 zl2 Mod", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "C", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 104, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 105, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 106, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 107, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 108, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 109, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 110, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 111, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 112, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 113, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 114, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 115, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 116, "entPhysicalDescr": "HP J9989A 1000BASE-LX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 117, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 118, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 119, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 120, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 121, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 122, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 123, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 124, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 125, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 126, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 127, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 136, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 137, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 138, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 139, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 140, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 141, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 142, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 143, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 144, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 145, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 146, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 147, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 148, "entPhysicalDescr": "HP J9989A 1000BASE-LX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 149, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 150, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 151, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 152, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 153, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 154, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 155, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 156, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 157, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 158, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 159, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 168, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 169, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 170, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 171, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 172, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 173, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 174, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 175, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 176, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 177, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 178, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 179, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 180, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 181, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 182, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 183, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 184, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 185, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 186, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 187, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 188, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 189, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 190, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 191, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/procurve_2520.json b/tests/data/procurve_2520.json index 30cd7cca78..2f39f9b702 100644 --- a/tests/data/procurve_2520.json +++ b/tests/data/procurve_2520.json @@ -13591,2680 +13591,2680 @@ { "entPhysicalIndex": 1, "entPhysicalDescr": "HP J9850A Switch 5406Rzl2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Chassis", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 2, "entPhysicalDescr": "HP J9850A Switch backplane", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Backplane", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 3, "entPhysicalDescr": "HP J9850A Switch fan tray container", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 4, "entPhysicalDescr": "HP J9850A Switch temperature sensor pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Temperature sensor pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 5, "entPhysicalDescr": "HP J9850A Switch power supply bay pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power supply bay pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "HP J9850A Switch management module pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Management module pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 9, "entPhysicalDescr": "HP J9850A Switch interface module pseudocontainer", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Interface module pseudocontainer", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 10, "entPhysicalDescr": "HP J9775A Switch power supply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 11, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 12, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 13, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 14, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 15, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 16, "entPhysicalDescr": "HP J9850A Switch fan", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 17, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 18, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 19, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 20, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 21, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 22, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 23, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 24, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 25, "entPhysicalDescr": "HP J9850A Switch temperature sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Chassis Temperature", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 26, "entPhysicalDescr": "HP J9850A Switch power supply bay", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply Bay 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 27, "entPhysicalDescr": "HP J9850A Switch power supply bay", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply Bay 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 28, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 29, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 30, "entPhysicalDescr": "HP J9850A Switch power supply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 31, "entPhysicalDescr": "HP J9850A Switch power supply", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 32, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 33, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 34, "entPhysicalDescr": "HP J9850A Switch Management Module Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Switch Management Module Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 35, "entPhysicalDescr": "HP J9850A Switch Management Module Slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Switch Management Module Slot", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 36, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 37, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 38, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 39, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 40, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 41, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot C", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 42, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot D", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 43, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot E", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 44, "entPhysicalDescr": "HP J9850A Switch port module slot", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Slot F", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 45, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 30", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 46, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 31", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 47, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 32", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 48, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 33", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 49, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 34", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 50, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 35", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 51, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 36", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 52, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 37", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 53, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 38", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 54, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 39", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 55, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 40", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 56, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 41", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 57, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 42", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 58, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 43", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 59, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 44", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 60, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 45", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 61, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 46", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 62, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 47", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 63, "entPhysicalDescr": "HP 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 48", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 64, "entPhysicalDescr": "HP 1000BASE-LX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 49", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 65, "entPhysicalDescr": "HP No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 50", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 66, "entPhysicalDescr": "HP No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 51", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67, "entPhysicalDescr": "HP No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port 52", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69, "entPhysicalDescr": "HP J9827A Management Module 5400Rzl2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Switch Management Module", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 74, "entPhysicalDescr": "HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "A", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 75, "entPhysicalDescr": "HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "B", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 76, "entPhysicalDescr": "HP J9987A 24p 10/100/1000BASE-T v3 zl2 Mod", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "C", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 104, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 105, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 106, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 107, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 108, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 109, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 110, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 111, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 112, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 113, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 114, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 115, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 116, "entPhysicalDescr": "HP J9989A 1000BASE-LX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 117, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 118, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 119, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 120, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 121, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 122, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 123, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 124, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 125, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 126, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 127, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port A24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 136, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 137, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 138, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 139, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 140, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 141, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 142, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 143, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 144, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 145, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 146, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 147, "entPhysicalDescr": "HP J9989A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 148, "entPhysicalDescr": "HP J9989A 1000BASE-LX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 149, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 150, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 151, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 152, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 153, "entPhysicalDescr": "HP J9989A 1000BASE-SX Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 154, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 155, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 156, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 157, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 158, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 159, "entPhysicalDescr": "HP J9989A No Card", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port B24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 168, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 169, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 170, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 171, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 172, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 173, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 174, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 175, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 176, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C9", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 177, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C10", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 178, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C11", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 179, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C12", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 180, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C13", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 181, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C14", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 182, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C15", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 183, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C16", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 184, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C17", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 185, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C18", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 186, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C19", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 187, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C20", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 188, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C21", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 189, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C22", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 190, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C23", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 191, "entPhysicalDescr": "HP J9987A 100/1000BASE-T Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Port C24", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/qnap.json b/tests/data/qnap.json index ca7492ae94..866f635d54 100644 --- a/tests/data/qnap.json +++ b/tests/data/qnap.json @@ -3637,8 +3637,8 @@ "entPhysicalClass": "chassis", "entPhysicalName": "Turbo NAS TVS-871U-RP", "entPhysicalHardwareRev": "1.0", - "entPhysicalFirmwareRev": "4.3.3", - "entPhysicalSoftwareRev": "4.3.3", + "entPhysicalFirmwareRev": "\\\"4.3.3", + "entPhysicalSoftwareRev": "\\4.3.3", "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "0", diff --git a/tests/data/radlan.json b/tests/data/radlan.json index a0b93f6349..4b7ec1130e 100644 --- a/tests/data/radlan.json +++ b/tests/data/radlan.json @@ -10669,6 +10669,462 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68424769, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 26 + }, + { + "entPhysicalIndex": 68424770, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 25 + }, + { + "entPhysicalIndex": 68424771, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 50 + }, + { + "entPhysicalIndex": 68424772, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 49 + }, + { + "entPhysicalIndex": 68424773, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 30 + }, + { + "entPhysicalIndex": 68424774, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 29 + }, + { + "entPhysicalIndex": 68424775, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 32 + }, + { + "entPhysicalIndex": 68424776, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 31 + }, + { + "entPhysicalIndex": 68424777, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 34 + }, + { + "entPhysicalIndex": 68424778, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 33 + }, + { + "entPhysicalIndex": 68424779, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 36 + }, + { + "entPhysicalIndex": 68424780, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 35 + }, + { + "entPhysicalIndex": 68424781, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 38 + }, + { + "entPhysicalIndex": 68424782, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 37 + }, + { + "entPhysicalIndex": 68424783, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 40 + }, + { + "entPhysicalIndex": 68424784, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 39 + }, + { + "entPhysicalIndex": 68424785, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 42 + }, + { + "entPhysicalIndex": 68424786, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 41 + }, + { + "entPhysicalIndex": 68424787, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 44 + }, + { + "entPhysicalIndex": 68424788, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 43 + }, + { + "entPhysicalIndex": 68424789, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 46 + }, + { + "entPhysicalIndex": 68424790, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 45 + }, + { + "entPhysicalIndex": 68424791, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 48 + }, + { + "entPhysicalIndex": 68424792, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 47 + }, { "entPhysicalIndex": 68428800, "entPhysicalDescr": "GT_88E6095", @@ -10688,6 +11144,462 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68428865, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 1 + }, + { + "entPhysicalIndex": 68428866, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 2 + }, + { + "entPhysicalIndex": 68428867, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 3 + }, + { + "entPhysicalIndex": 68428868, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 4 + }, + { + "entPhysicalIndex": 68428869, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 5 + }, + { + "entPhysicalIndex": 68428870, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 6 + }, + { + "entPhysicalIndex": 68428871, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 7 + }, + { + "entPhysicalIndex": 68428872, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 8 + }, + { + "entPhysicalIndex": 68428873, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 10 + }, + { + "entPhysicalIndex": 68428874, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 9 + }, + { + "entPhysicalIndex": 68428875, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 12 + }, + { + "entPhysicalIndex": 68428876, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 11 + }, + { + "entPhysicalIndex": 68428877, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 14 + }, + { + "entPhysicalIndex": 68428878, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 13 + }, + { + "entPhysicalIndex": 68428879, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 16 + }, + { + "entPhysicalIndex": 68428880, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 15 + }, + { + "entPhysicalIndex": 68428881, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 18 + }, + { + "entPhysicalIndex": 68428882, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 17 + }, + { + "entPhysicalIndex": 68428883, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 20 + }, + { + "entPhysicalIndex": 68428884, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 19 + }, + { + "entPhysicalIndex": 68428885, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 22 + }, + { + "entPhysicalIndex": 68428886, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 21 + }, + { + "entPhysicalIndex": 68428887, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 24 + }, + { + "entPhysicalIndex": 68428888, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68428800, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 23 + }, { "entPhysicalIndex": 68432896, "entPhysicalDescr": "GT_88E6095", @@ -10707,6 +11619,158 @@ "entPhysicalMfgName": "", "ifIndex": null }, + { + "entPhysicalIndex": 68432961, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 9 + }, + { + "entPhysicalIndex": 68432962, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 10 + }, + { + "entPhysicalIndex": 68432963, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 11 + }, + { + "entPhysicalIndex": 68432964, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 12 + }, + { + "entPhysicalIndex": 68432965, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 13 + }, + { + "entPhysicalIndex": 68432966, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 14 + }, + { + "entPhysicalIndex": 68432967, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 15 + }, + { + "entPhysicalIndex": 68432968, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68432896, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 16 + }, { "entPhysicalIndex": 68436992, "entPhysicalDescr": "GT_88E6095", @@ -10725,6 +11789,158 @@ "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "", "ifIndex": null + }, + { + "entPhysicalIndex": 68437057, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 17 + }, + { + "entPhysicalIndex": 68437058, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 18 + }, + { + "entPhysicalIndex": 68437059, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 19 + }, + { + "entPhysicalIndex": 68437060, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 20 + }, + { + "entPhysicalIndex": 68437061, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 21 + }, + { + "entPhysicalIndex": 68437062, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 22 + }, + { + "entPhysicalIndex": 68437063, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 23 + }, + { + "entPhysicalIndex": 68437064, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68436992, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 24 } ] }, diff --git a/tests/data/rittal-lcp_cmciii-pu-lcp.json b/tests/data/rittal-lcp_cmciii-pu-lcp.json index df8f277781..46a467d626 100644 --- a/tests/data/rittal-lcp_cmciii-pu-lcp.json +++ b/tests/data/rittal-lcp_cmciii-pu-lcp.json @@ -2253,7 +2253,7 @@ "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", "entPhysicalModelName": "4.14.193-fslc", - "entPhysicalVendorType": "enterprises.8072.3.2.10", + "entPhysicalVendorType": "netSnmpAgentOIDs.10", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, @@ -2431,6 +2431,25 @@ "entPhysicalMfgName": "Freescale", "ifIndex": null }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "enterprises.2606.7.7.4.32768", + "entPhysicalSerialNum": "41326588", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "RITTAL GmbH & Co. KG", + "ifIndex": null + }, { "entPhysicalIndex": 1001, "entPhysicalDescr": "Temperature.Value", @@ -3609,6 +3628,25 @@ "entPhysicalMfgName": "RITTAL GmbH & Co. KG", "ifIndex": null }, + { + "entPhysicalIndex": 101000, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "enterprises.2606.7.7.4.4352", + "entPhysicalSerialNum": "34267319", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "RITTAL GmbH & Co. KG", + "ifIndex": null + }, { "entPhysicalIndex": 101001, "entPhysicalDescr": "Temperature.Value", @@ -3704,6 +3742,25 @@ "entPhysicalMfgName": "RITTAL GmbH & Co. KG", "ifIndex": null }, + { + "entPhysicalIndex": 201000, + "entPhysicalDescr": "", + "entPhysicalClass": "chassis", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "enterprises.2606.7.7.4.768", + "entPhysicalSerialNum": "34250658", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "RITTAL GmbH & Co. KG", + "ifIndex": null + }, { "entPhysicalIndex": 201001, "entPhysicalDescr": "Temperature.Value", diff --git a/tests/data/saf-cfm.json b/tests/data/saf-cfm.json index 8048647eec..bce7947a5f 100644 --- a/tests/data/saf-cfm.json +++ b/tests/data/saf-cfm.json @@ -2362,11 +2362,11 @@ "entPhysicalDescr": "SAF CFM-M4P-MUX", "entPhysicalClass": "chassis", "entPhysicalName": "Chassis", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "312850100000", "entPhysicalVendorType": "SAF CFM-M4P-MUX", @@ -2377,136 +2377,136 @@ "ifIndex": null }, { - "entPhysicalIndex": 2, + "entPhysicalIndex": 11, "entPhysicalDescr": "SAF CFM-7-L4 +27dBm v2.23 2005.10.21 Copyright (c) 2006 SAF Tehnika", "entPhysicalClass": "module", "entPhysicalName": "Radio 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "radio", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 3, + "entPhysicalIndex": 12, "entPhysicalDescr": "SAF CFM-7-L4 +27dBm v2.23 2005.10.21 Copyright (c) 2006 SAF Tehnika", "entPhysicalClass": "module", "entPhysicalName": "Radio 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "radio", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 4, + "entPhysicalIndex": 21, "entPhysicalDescr": "Module Container", "entPhysicalClass": "container", "entPhysicalName": "Slot 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "containerSlot", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 5, + "entPhysicalIndex": 22, "entPhysicalDescr": "Module Container", "entPhysicalClass": "container", "entPhysicalName": "Slot 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "containerSlot", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 6, + "entPhysicalIndex": 23, "entPhysicalDescr": "Module Container", "entPhysicalClass": "container", "entPhysicalName": "Slot 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "containerSlot", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 5, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 7, + "entPhysicalIndex": 24, "entPhysicalDescr": "Module Container", "entPhysicalClass": "container", "entPhysicalName": "Slot 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "containerSlot", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 6, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 8, + "entPhysicalIndex": 31, "entPhysicalDescr": "Module 1 4xE1", "entPhysicalClass": "module", "entPhysicalName": "Module 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "module", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/schleifenbauer.json b/tests/data/schleifenbauer.json index a6a8d2256c..fb6f29c6d6 100644 --- a/tests/data/schleifenbauer.json +++ b/tests/data/schleifenbauer.json @@ -707,7 +707,7 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 10, + "entPhysicalIndex": 2100, "entPhysicalDescr": "Schleifenbauer 3-phase, 6-outlet PDU", "entPhysicalClass": "chassis", "entPhysicalName": "Schleifenbauer PDU - SPDM v250", @@ -721,12 +721,12 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": "SVNL00056319", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 1, + "entPhysicalParentRelPos": 210, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1101000, + "entPhysicalIndex": 210101000, "entPhysicalDescr": "32A input phase", "entPhysicalClass": "powerSupply", "entPhysicalName": "Input L1", @@ -739,13 +739,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 10, + "entPhysicalContainedIn": 2100, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1101110, + "entPhysicalIndex": 210101110, "entPhysicalDescr": "Input L1 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -758,13 +758,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1101000, + "entPhysicalContainedIn": 210101000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1101120, + "entPhysicalIndex": 210101120, "entPhysicalDescr": "Input L1 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -777,13 +777,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1101000, + "entPhysicalContainedIn": 210101000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1101130, + "entPhysicalIndex": 210101130, "entPhysicalDescr": "Input L1 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -796,13 +796,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1101000, + "entPhysicalContainedIn": 210101000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1101140, + "entPhysicalIndex": 210101140, "entPhysicalDescr": "Input L1 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -815,13 +815,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1101000, + "entPhysicalContainedIn": 210101000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1101150, + "entPhysicalIndex": 210101150, "entPhysicalDescr": "Input L1 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -834,13 +834,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1101000, + "entPhysicalContainedIn": 210101000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1102000, + "entPhysicalIndex": 210102000, "entPhysicalDescr": "32A input phase", "entPhysicalClass": "powerSupply", "entPhysicalName": "Input L2", @@ -853,13 +853,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 10, + "entPhysicalContainedIn": 2100, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1102110, + "entPhysicalIndex": 210102110, "entPhysicalDescr": "Input L2 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -872,13 +872,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1102000, + "entPhysicalContainedIn": 210102000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1102120, + "entPhysicalIndex": 210102120, "entPhysicalDescr": "Input L2 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -891,13 +891,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1102000, + "entPhysicalContainedIn": 210102000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1102130, + "entPhysicalIndex": 210102130, "entPhysicalDescr": "Input L2 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -910,13 +910,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1102000, + "entPhysicalContainedIn": 210102000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1102140, + "entPhysicalIndex": 210102140, "entPhysicalDescr": "Input L2 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -929,13 +929,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1102000, + "entPhysicalContainedIn": 210102000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1102150, + "entPhysicalIndex": 210102150, "entPhysicalDescr": "Input L2 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -948,13 +948,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1102000, + "entPhysicalContainedIn": 210102000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1103000, + "entPhysicalIndex": 210103000, "entPhysicalDescr": "32A input phase", "entPhysicalClass": "powerSupply", "entPhysicalName": "Input L3", @@ -967,13 +967,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 10, + "entPhysicalContainedIn": 2100, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1103110, + "entPhysicalIndex": 210103110, "entPhysicalDescr": "Input L3 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -986,13 +986,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1103000, + "entPhysicalContainedIn": 210103000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1103120, + "entPhysicalIndex": 210103120, "entPhysicalDescr": "Input L3 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1005,13 +1005,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1103000, + "entPhysicalContainedIn": 210103000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1103130, + "entPhysicalIndex": 210103130, "entPhysicalDescr": "Input L3 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1024,13 +1024,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1103000, + "entPhysicalContainedIn": 210103000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1103140, + "entPhysicalIndex": 210103140, "entPhysicalDescr": "Input L3 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1043,13 +1043,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1103000, + "entPhysicalContainedIn": 210103000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1103150, + "entPhysicalIndex": 210103150, "entPhysicalDescr": "Input L3 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1062,13 +1062,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1103000, + "entPhysicalContainedIn": 210103000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1200000, + "entPhysicalIndex": 210200000, "entPhysicalDescr": "6 outlets", "entPhysicalClass": "backplane", "entPhysicalName": "Outlets", @@ -1081,13 +1081,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 10, + "entPhysicalContainedIn": 2100, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1201000, + "entPhysicalIndex": 210201000, "entPhysicalDescr": "PDU outlet", "entPhysicalClass": "powerSupply", "entPhysicalName": "Outlet #1", @@ -1100,13 +1100,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1200000, + "entPhysicalContainedIn": 210200000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1201110, + "entPhysicalIndex": 210201110, "entPhysicalDescr": "Outlet #1 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -1119,13 +1119,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1201000, + "entPhysicalContainedIn": 210201000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1201120, + "entPhysicalIndex": 210201120, "entPhysicalDescr": "Outlet #1 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1138,13 +1138,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1201000, + "entPhysicalContainedIn": 210201000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1201130, + "entPhysicalIndex": 210201130, "entPhysicalDescr": "Outlet #1 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1157,13 +1157,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1201000, + "entPhysicalContainedIn": 210201000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1201140, + "entPhysicalIndex": 210201140, "entPhysicalDescr": "Outlet #1 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1176,13 +1176,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1201000, + "entPhysicalContainedIn": 210201000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1201150, + "entPhysicalIndex": 210201150, "entPhysicalDescr": "Outlet #1 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1195,13 +1195,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1201000, + "entPhysicalContainedIn": 210201000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1202000, + "entPhysicalIndex": 210202000, "entPhysicalDescr": "PDU outlet", "entPhysicalClass": "powerSupply", "entPhysicalName": "Outlet #2", @@ -1214,13 +1214,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1200000, + "entPhysicalContainedIn": 210200000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1202110, + "entPhysicalIndex": 210202110, "entPhysicalDescr": "Outlet #2 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -1233,13 +1233,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1202000, + "entPhysicalContainedIn": 210202000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1202120, + "entPhysicalIndex": 210202120, "entPhysicalDescr": "Outlet #2 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1252,13 +1252,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1202000, + "entPhysicalContainedIn": 210202000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1202130, + "entPhysicalIndex": 210202130, "entPhysicalDescr": "Outlet #2 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1271,13 +1271,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1202000, + "entPhysicalContainedIn": 210202000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1202140, + "entPhysicalIndex": 210202140, "entPhysicalDescr": "Outlet #2 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1290,13 +1290,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1202000, + "entPhysicalContainedIn": 210202000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1202150, + "entPhysicalIndex": 210202150, "entPhysicalDescr": "Outlet #2 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1309,13 +1309,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1202000, + "entPhysicalContainedIn": 210202000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1203000, + "entPhysicalIndex": 210203000, "entPhysicalDescr": "PDU outlet", "entPhysicalClass": "powerSupply", "entPhysicalName": "Outlet #3", @@ -1328,13 +1328,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1200000, + "entPhysicalContainedIn": 210200000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1203110, + "entPhysicalIndex": 210203110, "entPhysicalDescr": "Outlet #3 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -1347,13 +1347,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1203000, + "entPhysicalContainedIn": 210203000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1203120, + "entPhysicalIndex": 210203120, "entPhysicalDescr": "Outlet #3 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1366,13 +1366,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1203000, + "entPhysicalContainedIn": 210203000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1203130, + "entPhysicalIndex": 210203130, "entPhysicalDescr": "Outlet #3 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1385,13 +1385,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1203000, + "entPhysicalContainedIn": 210203000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1203140, + "entPhysicalIndex": 210203140, "entPhysicalDescr": "Outlet #3 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1404,13 +1404,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1203000, + "entPhysicalContainedIn": 210203000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1203150, + "entPhysicalIndex": 210203150, "entPhysicalDescr": "Outlet #3 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1423,13 +1423,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1203000, + "entPhysicalContainedIn": 210203000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1204000, + "entPhysicalIndex": 210204000, "entPhysicalDescr": "PDU outlet", "entPhysicalClass": "powerSupply", "entPhysicalName": "Outlet #4", @@ -1442,13 +1442,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1200000, + "entPhysicalContainedIn": 210200000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1204110, + "entPhysicalIndex": 210204110, "entPhysicalDescr": "Outlet #4 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -1461,13 +1461,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1204000, + "entPhysicalContainedIn": 210204000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1204120, + "entPhysicalIndex": 210204120, "entPhysicalDescr": "Outlet #4 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1480,13 +1480,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1204000, + "entPhysicalContainedIn": 210204000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1204130, + "entPhysicalIndex": 210204130, "entPhysicalDescr": "Outlet #4 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1499,13 +1499,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1204000, + "entPhysicalContainedIn": 210204000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1204140, + "entPhysicalIndex": 210204140, "entPhysicalDescr": "Outlet #4 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1518,13 +1518,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1204000, + "entPhysicalContainedIn": 210204000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1204150, + "entPhysicalIndex": 210204150, "entPhysicalDescr": "Outlet #4 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1537,13 +1537,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1204000, + "entPhysicalContainedIn": 210204000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1205000, + "entPhysicalIndex": 210205000, "entPhysicalDescr": "PDU outlet", "entPhysicalClass": "powerSupply", "entPhysicalName": "Outlet #5", @@ -1556,13 +1556,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1200000, + "entPhysicalContainedIn": 210200000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1205110, + "entPhysicalIndex": 210205110, "entPhysicalDescr": "Outlet #5 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -1575,13 +1575,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1205000, + "entPhysicalContainedIn": 210205000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1205120, + "entPhysicalIndex": 210205120, "entPhysicalDescr": "Outlet #5 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1594,13 +1594,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1205000, + "entPhysicalContainedIn": 210205000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1205130, + "entPhysicalIndex": 210205130, "entPhysicalDescr": "Outlet #5 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1613,13 +1613,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1205000, + "entPhysicalContainedIn": 210205000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1205140, + "entPhysicalIndex": 210205140, "entPhysicalDescr": "Outlet #5 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1632,13 +1632,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1205000, + "entPhysicalContainedIn": 210205000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1205150, + "entPhysicalIndex": 210205150, "entPhysicalDescr": "Outlet #5 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1651,13 +1651,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1205000, + "entPhysicalContainedIn": 210205000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1206000, + "entPhysicalIndex": 210206000, "entPhysicalDescr": "PDU outlet", "entPhysicalClass": "powerSupply", "entPhysicalName": "Outlet #6", @@ -1670,13 +1670,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1200000, + "entPhysicalContainedIn": 210200000, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1206110, + "entPhysicalIndex": 210206110, "entPhysicalDescr": "Outlet #6 voltage sensor (V)", "entPhysicalClass": "sensor", "entPhysicalName": "Voltage Sensor", @@ -1689,13 +1689,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1206000, + "entPhysicalContainedIn": 210206000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1206120, + "entPhysicalIndex": 210206120, "entPhysicalDescr": "Outlet #6 RMS current sensor (A)", "entPhysicalClass": "sensor", "entPhysicalName": "Current Sensor", @@ -1708,13 +1708,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1206000, + "entPhysicalContainedIn": 210206000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1206130, + "entPhysicalIndex": 210206130, "entPhysicalDescr": "Outlet #6 apparent power sensor (W)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Sensor", @@ -1727,13 +1727,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1206000, + "entPhysicalContainedIn": 210206000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1206140, + "entPhysicalIndex": 210206140, "entPhysicalDescr": "Outlet #6 lifetime power consumed sensor (kWh)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Consumed Sensor", @@ -1746,13 +1746,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1206000, + "entPhysicalContainedIn": 210206000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1206150, + "entPhysicalIndex": 210206150, "entPhysicalDescr": "Outlet #6 power factor sensor (ratio)", "entPhysicalClass": "sensor", "entPhysicalName": "Power Factor Sensor", @@ -1765,13 +1765,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1206000, + "entPhysicalContainedIn": 210206000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1300000, + "entPhysicalIndex": 210300000, "entPhysicalDescr": "1 external sensor", "entPhysicalClass": "container", "entPhysicalName": "Sensor Container", @@ -1784,13 +1784,13 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 10, + "entPhysicalContainedIn": 2100, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null }, { - "entPhysicalIndex": 1301000, + "entPhysicalIndex": 210301000, "entPhysicalDescr": "Dry switch contact (binary)", "entPhysicalClass": "sensor", "entPhysicalName": "External Sensor #1", @@ -1803,7 +1803,7 @@ "entPhysicalModelName": null, "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 1300000, + "entPhysicalContainedIn": 210300000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", "ifIndex": null diff --git a/tests/data/sm-os.json b/tests/data/sm-os.json index 9e95c513d4..ab23843a63 100644 --- a/tests/data/sm-os.json +++ b/tests/data/sm-os.json @@ -2547,6 +2547,158 @@ "entPhysicalMfgName": "Aricent", "ifIndex": null }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "", + "entPhysicalClass": "cpu", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 3, + "entPhysicalDescr": "", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 5, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 6, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null + }, { "entPhysicalIndex": 10, "entPhysicalDescr": "Ethernet Interface Port 01", diff --git a/tests/data/sm-os_gc8607.json b/tests/data/sm-os_gc8607.json index 6c6106706c..a03d63f355 100644 --- a/tests/data/sm-os_gc8607.json +++ b/tests/data/sm-os_gc8607.json @@ -3247,6 +3247,158 @@ "entPhysicalMfgName": "Aricent", "ifIndex": null }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "", + "entPhysicalClass": "cpu", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 3, + "entPhysicalDescr": "", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 5, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 6, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "", + "entPhysicalClass": "fan", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "", + "entPhysicalClass": "module", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null + }, { "entPhysicalIndex": 10, "entPhysicalDescr": "Ethernet Interface Port 01", diff --git a/tests/data/smartax-mdu.json b/tests/data/smartax-mdu.json index 40eabf591d..5ee32b999e 100644 --- a/tests/data/smartax-mdu.json +++ b/tests/data/smartax-mdu.json @@ -6061,230 +6061,230 @@ "entPhysical": [ { "entPhysicalIndex": 875160, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "stack", - "entPhysicalName": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "Huawei..........", + "entPhysicalMfgName": "Huawei", "ifIndex": null }, { "entPhysicalIndex": 888624, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "chassis", - "entPhysicalName": "H821MABC........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "H821MABC VER A..\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "H821MABC", + "entPhysicalHardwareRev": "H821MABC VER A", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 875160, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 889032, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "container", - "entPhysicalName": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 888624, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 889236, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "module", - "entPhysicalName": "H822EPUB........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "H822CCFM VER B .\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "MA5620V800R308C0\n30 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "H822EPUB_0_0....\n00 00 00 00 00 ", + "entPhysicalName": "H822EPUB", + "entPhysicalHardwareRev": "H822CCFM VER B ", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "MA5620V800R308C0", + "entPhysicalAlias": "H822EPUB_0_0", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "true", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "21980302203G1200\n34 32 36 30 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "21980302203G1200", "entPhysicalContainedIn": 889032, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "Huawei..........", + "entPhysicalMfgName": "Huawei", "ifIndex": null }, { "entPhysicalIndex": 889270, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "container", - "entPhysicalName": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 889236, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 889287, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "module", - "entPhysicalName": "H831UP2A........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "H831UP2A", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "true", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 889270, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 889440, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "container", - "entPhysicalName": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 888624, "entPhysicalParentRelPos": 2, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 889644, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "module", - "entPhysicalName": "H821EPFA........\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "H821EPFA_0_1....\n00 00 00 00 00 ", + "entPhysicalName": "H821EPFA", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "H821EPFA_0_1", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "true", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 889440, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 889848, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "container", - "entPhysicalName": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 888624, "entPhysicalParentRelPos": 3, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 890052, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "module", - "entPhysicalName": "ASM.............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "ASM_0_2.........\n00 00 00 00 00 ", + "entPhysicalName": "ASM", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "ASM_0_2", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "true", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 889848, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 890256, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalDescr": "", "entPhysicalClass": "container", - "entPhysicalName": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "................\n00 00 00 00 00 ", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "false", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 888624, "entPhysicalParentRelPos": 4, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null }, { "entPhysicalIndex": 890460, - "entPhysicalDescr": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "entPhysicalDescr": "", "entPhysicalClass": "module", - "entPhysicalName": "DUMM............\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalHardwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalFirmwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalSoftwareRev": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", - "entPhysicalAlias": "DUMM_0_3........\n00 00 00 00 00 ", + "entPhysicalName": "DUMM", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "DUMM_0_3", "entPhysicalAssetID": ".", "entPhysicalIsFRU": "true", "entPhysicalModelName": ".", - "entPhysicalVendorType": "enterprises.2011.2.80.8", - "entPhysicalSerialNum": "................\n00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ", + "entPhysicalVendorType": "ma5600V8", + "entPhysicalSerialNum": "", "entPhysicalContainedIn": 890256, "entPhysicalParentRelPos": 1, - "entPhysicalMfgName": "................", + "entPhysicalMfgName": "", "ifIndex": null } ] diff --git a/tests/data/smartax.json b/tests/data/smartax.json index f6223457f7..d160bbd8c6 100644 --- a/tests/data/smartax.json +++ b/tests/data/smartax.json @@ -11455,7 +11455,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194304000 }, { "entPhysicalIndex": 3400022, @@ -11474,7 +11474,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194304256 }, { "entPhysicalIndex": 3400023, @@ -11493,7 +11493,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194304512 }, { "entPhysicalIndex": 3400024, @@ -11512,7 +11512,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194304768 }, { "entPhysicalIndex": 3400025, @@ -11531,7 +11531,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194305024 }, { "entPhysicalIndex": 3400026, @@ -11550,7 +11550,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194305280 }, { "entPhysicalIndex": 3400027, @@ -11569,7 +11569,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 7, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194305536 }, { "entPhysicalIndex": 3400028, @@ -11588,7 +11588,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 8, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194305792 }, { "entPhysicalIndex": 3400029, @@ -11607,7 +11607,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 9, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194306048 }, { "entPhysicalIndex": 3400030, @@ -11626,7 +11626,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 10, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194306304 }, { "entPhysicalIndex": 3400031, @@ -11645,7 +11645,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 11, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194306560 }, { "entPhysicalIndex": 3400032, @@ -11664,7 +11664,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 12, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194306816 }, { "entPhysicalIndex": 3400033, @@ -11683,7 +11683,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 13, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194307072 }, { "entPhysicalIndex": 3400034, @@ -11702,7 +11702,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 14, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194307328 }, { "entPhysicalIndex": 3400035, @@ -11721,7 +11721,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 15, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194307584 }, { "entPhysicalIndex": 3400036, @@ -11740,7 +11740,7 @@ "entPhysicalContainedIn": 3400020, "entPhysicalParentRelPos": 16, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194307840 }, { "entPhysicalIndex": 3400800, @@ -11797,7 +11797,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194312192 }, { "entPhysicalIndex": 3401582, @@ -11816,7 +11816,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194312448 }, { "entPhysicalIndex": 3401583, @@ -11835,7 +11835,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194312704 }, { "entPhysicalIndex": 3401584, @@ -11854,7 +11854,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194312960 }, { "entPhysicalIndex": 3401585, @@ -11873,7 +11873,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194313216 }, { "entPhysicalIndex": 3401586, @@ -11892,7 +11892,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194313472 }, { "entPhysicalIndex": 3401587, @@ -11911,7 +11911,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 7, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194313728 }, { "entPhysicalIndex": 3401588, @@ -11930,7 +11930,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 8, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194313984 }, { "entPhysicalIndex": 3401589, @@ -11949,7 +11949,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 9, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194314240 }, { "entPhysicalIndex": 3401590, @@ -11968,7 +11968,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 10, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194314496 }, { "entPhysicalIndex": 3401591, @@ -11987,7 +11987,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 11, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194314752 }, { "entPhysicalIndex": 3401592, @@ -12006,7 +12006,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 12, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194315008 }, { "entPhysicalIndex": 3401593, @@ -12025,7 +12025,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 13, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194315264 }, { "entPhysicalIndex": 3401594, @@ -12044,7 +12044,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 14, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194315520 }, { "entPhysicalIndex": 3401595, @@ -12063,7 +12063,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 15, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194315776 }, { "entPhysicalIndex": 3401596, @@ -12082,7 +12082,7 @@ "entPhysicalContainedIn": 3401580, "entPhysicalParentRelPos": 16, "entPhysicalMfgName": "HISILICON", - "ifIndex": 2147483647 + "ifIndex": 4194316032 }, { "entPhysicalIndex": 3402360, diff --git a/tests/data/tait-infra93_tb9300.json b/tests/data/tait-infra93_tb9300.json index af62ea28dd..ca9a371c17 100644 --- a/tests/data/tait-infra93_tb9300.json +++ b/tests/data/tait-infra93_tb9300.json @@ -4926,35 +4926,16 @@ "entPhysicalDescr": "Chassis", "entPhysicalClass": "chassis", "entPhysicalName": "Chassis", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "false", - "entPhysicalModelName": "Infra93", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", - "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "TAIT", - "ifIndex": null - }, - { - "entPhysicalIndex": 140, - "entPhysicalDescr": "PMU", - "entPhysicalClass": "module", - "entPhysicalName": "PMU", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, - "entPhysicalVendorType": "", + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "Infra93", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 10, + "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "TAIT", "ifIndex": null diff --git a/tests/data/timos_7705.json b/tests/data/timos_7705.json index 518e24e8f9..5b171badca 100644 --- a/tests/data/timos_7705.json +++ b/tests/data/timos_7705.json @@ -8714,41 +8714,459 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 2, - "entPhysicalDescr": "7705 IOM", - "entPhysicalClass": null, - "entPhysicalName": "iom-sar", - "entPhysicalHardwareRev": "1.0", + "entPhysicalIndex": 1, + "entPhysicalDescr": "8-Slot Chassis: 6 Adapter slots, 2 CSM slots", + "entPhysicalClass": "chassis", + "entPhysicalName": "7705 SAR-8 v2", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": null, - "entPhysicalVendorType": "iom-sar", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 6, - "entPhysicalDescr": "1g/10g 7705 SAR-8 CSM", - "entPhysicalClass": null, - "entPhysicalName": "csmv2-10g", + "entPhysicalIndex": 16842753, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "Fan Alarm Module", "entPhysicalHardwareRev": "1.0", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "csmv2-10g", - "entPhysicalSerialNum": null, - "entPhysicalContainedIn": 0, + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE06792EAAC0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1637S2845", + "entPhysicalContainedIn": 50331649, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": null, + "entPhysicalMfgName": "3HE06792EAAC0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908289, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908290, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908291, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908292, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 50331649, + "entPhysicalDescr": null, + "entPhysicalClass": "physChassis", + "entPhysicalName": "Chassis 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE06791AAAA0109", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "LL122819029", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "3HE06791AAAA0109", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886081, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Feed 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886082, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Feed 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663297, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Fans", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217729, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R7 on Tue Oct 29 13:45:23 EDT 2019 by builder", + "entPhysicalSoftwareRev": "X-9.0.R7 on Tue Oct 29 13:45:23 EDT 2019 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02774ABAD0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1806S0611", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE02774ABAD0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 150994977, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R7 on Tue Oct 29 13:45:23 EDT 2019 by builder", + "entPhysicalSoftwareRev": "X-9.0.R7 on Tue Oct 29 13:45:23 EDT 2019 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02774ABAD0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1806S0611", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE02774ABAD0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 150994993, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot B", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772162, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772163, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot B", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549633, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549634, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549635, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE06151ACAC0104", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1838S2366", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "3HE06151ACAC0104", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549636, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549637, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/5", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549638, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/6", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327105, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327106, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf2:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327107, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf3:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", "ifIndex": null } ] diff --git a/tests/data/timos_hc.json b/tests/data/timos_hc.json index 78f1ff8485..bf66696c24 100644 --- a/tests/data/timos_hc.json +++ b/tests/data/timos_hc.json @@ -8567,41 +8567,231 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 71, - "entPhysicalDescr": "Integrated CPM card for SAR-Hm system", - "entPhysicalClass": null, - "entPhysicalName": "cpm-sar-hm", - "entPhysicalHardwareRev": "1.0", + "entPhysicalIndex": 1, + "entPhysicalDescr": "Integrated: 6p 10/100 Mbps Ethernet, 2 Serial, 3G/LTE cellular, Wi-Fi", + "entPhysicalClass": "chassis", + "entPhysicalName": "7705 SAR-Hm", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": null, - "entPhysicalVendorType": "cpm-sar-hm", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 72, - "entPhysicalDescr": "Integrated IOM card for SAR-Hm system", - "entPhysicalClass": null, - "entPhysicalName": "iom-sar-hm", + "entPhysicalIndex": 50331649, + "entPhysicalDescr": null, + "entPhysicalClass": "physChassis", + "entPhysicalName": "Chassis 1", "entPhysicalHardwareRev": "1.0", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "iom-sar-hm", - "entPhysicalSerialNum": null, + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": null, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217729, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "Fake bootrom", + "entPhysicalSoftwareRev": "Fake bootrom", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 150994977, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "Fake bootrom", + "entPhysicalSoftwareRev": "Fake bootrom", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772162, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549633, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549634, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549635, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549636, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549637, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/5", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549638, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/6", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE11600AAAA0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS173160469", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "3HE11600AAAA0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327107, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf3:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", "ifIndex": null } ] diff --git a/tests/data/timos_ixr-s.json b/tests/data/timos_ixr-s.json index f0ea224a5f..57232a15d1 100644 --- a/tests/data/timos_ixr-s.json +++ b/tests/data/timos_ixr-s.json @@ -17303,41 +17303,288 @@ "discovery": { "entPhysical": [ { - "entPhysicalIndex": 90, - "entPhysicalDescr": "IXR-s CPM", - "entPhysicalClass": null, - "entPhysicalName": "cpm-ixr-s", - "entPhysicalHardwareRev": "1.0", + "entPhysicalIndex": 1, + "entPhysicalDescr": "Single Slot", + "entPhysicalClass": "chassis", + "entPhysicalName": "7250 IXR-s", + "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, "entPhysicalSoftwareRev": null, "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, "entPhysicalModelName": null, - "entPhysicalVendorType": "cpm-ixr-s", + "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { - "entPhysicalIndex": 92, - "entPhysicalDescr": "48p 10GE SFP+, 6p 100GE QSFP28", - "entPhysicalClass": null, - "entPhysicalName": "imm48-sfp++6-qsfp28", + "entPhysicalIndex": 50331649, + "entPhysicalDescr": null, + "entPhysicalClass": "physChassis", + "entPhysicalName": "Chassis 1", "entPhysicalHardwareRev": "1.0", - "entPhysicalFirmwareRev": null, - "entPhysicalSoftwareRev": null, - "entPhysicalAlias": null, - "entPhysicalAssetID": null, - "entPhysicalIsFRU": null, - "entPhysicalModelName": null, - "entPhysicalVendorType": "imm48-sfp++6-qsfp28", - "entPhysicalSerialNum": null, + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE13343AA0001", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NK223835730", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": null, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "3HE13343AA0001", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886081, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Chassis 1 Power Supply 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE13344AA0001", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS2145X0251", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE13344AA0001", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886082, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Chassis 1 Power Supply 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE13344AA0001", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS2145X0208", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE13344AA0001", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663297, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663298, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663299, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663300, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663301, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 5", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663302, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 6", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217729, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE13343AA0001", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NK223835730", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE13343AA0001", + "ifIndex": null + }, + { + "entPhysicalIndex": 150994977, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE13343AA0001", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NK223835730", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE13343AA0001", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549633, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE13343AA0001", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NK223835730", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE13343AA0001", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327106, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf2:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327107, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf3:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", "ifIndex": null } ] diff --git a/tests/data/ubiquoss-pon_9500.json b/tests/data/ubiquoss-pon_9500.json index 35545479a2..483b6498b6 100644 --- a/tests/data/ubiquoss-pon_9500.json +++ b/tests/data/ubiquoss-pon_9500.json @@ -16195,17 +16195,17 @@ "entPhysicalDescr": "CommScope Chassis System", "entPhysicalClass": "chassis", "entPhysicalName": "CommScope Epon System", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "CHASSIS", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34M16450002", "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16214,17 +16214,17 @@ "entPhysicalDescr": "CommScope Physical Module", "entPhysicalClass": "module", "entPhysicalName": "Physical Module SCM 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SCM-A (Left)", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34C16450003", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16233,17 +16233,17 @@ "entPhysicalDescr": "CommScope Physical Module", "entPhysicalClass": "module", "entPhysicalName": "Physical Module SCM 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SCM-B (Right)", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34C16450004", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16252,17 +16252,17 @@ "entPhysicalDescr": "CommScope Physical Slot 1", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-10GEPON x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U18T14470015", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16271,17 +16271,17 @@ "entPhysicalDescr": "CommScope Physical Slot 2", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-10GEPON x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34T17140009", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16290,17 +16290,17 @@ "entPhysicalDescr": "CommScope Physical Slot 3", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-10GEPON x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34T17140016", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16309,17 +16309,17 @@ "entPhysicalDescr": "CommScope Physical Slot 4", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 4", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-10GEPON x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34T17140011", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16328,17 +16328,17 @@ "entPhysicalDescr": "CommScope Physical Slot 5", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 5", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-10GEPON x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34T17140012", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16347,17 +16347,17 @@ "entPhysicalDescr": "CommScope Physical Slot 6", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 6", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-SFPplus-10G x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34X16450020", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16366,17 +16366,17 @@ "entPhysicalDescr": "CommScope Physical Slot 7", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 7", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-SFPplus-10G x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34X17410005", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "ADTRAN USA", "ifIndex": null }, @@ -16385,17 +16385,17 @@ "entPhysicalDescr": "CommScope Physical Slot 8", "entPhysicalClass": "module", "entPhysicalName": "Physical Slot 8", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SLOT-10GEPON x8", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "U34T17140013", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16404,17 +16404,17 @@ "entPhysicalDescr": "Container of Power Module 1", "entPhysicalClass": "container", "entPhysicalName": "Container of Power Module 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16423,17 +16423,17 @@ "entPhysicalDescr": "Power 1", "entPhysicalClass": "powerSupply", "entPhysicalName": "Power 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "PSM-A", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "Z51M16470003", "entPhysicalContainedIn": 30, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16442,17 +16442,17 @@ "entPhysicalDescr": "Container of Power Module 2", "entPhysicalClass": "container", "entPhysicalName": "Container of Power Module 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16461,17 +16461,17 @@ "entPhysicalDescr": "Power 2", "entPhysicalClass": "powerSupply", "entPhysicalName": "Power 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "PSM-B", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "Z51M16470004", "entPhysicalContainedIn": 40, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "CommScope USA", "ifIndex": null }, @@ -16480,17 +16480,17 @@ "entPhysicalDescr": "Container of Fan Module 1", "entPhysicalClass": "container", "entPhysicalName": "Container of Fan Module 1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16499,17 +16499,17 @@ "entPhysicalDescr": "Fan 1/1", "entPhysicalClass": "fan", "entPhysicalName": "Fan 1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 100, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16518,17 +16518,17 @@ "entPhysicalDescr": "Container of Fan Module 2", "entPhysicalClass": "container", "entPhysicalName": "Container of Fan Module 2", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16537,17 +16537,17 @@ "entPhysicalDescr": "Fan 2/1", "entPhysicalClass": "fan", "entPhysicalName": "Fan 2/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 110, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16556,17 +16556,17 @@ "entPhysicalDescr": "Container of Fan Module 3", "entPhysicalClass": "container", "entPhysicalName": "Container of Fan Module 3", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16575,17 +16575,17 @@ "entPhysicalDescr": "Fan 3/1", "entPhysicalClass": "fan", "entPhysicalName": "Fan 3/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 120, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null }, @@ -16594,17 +16594,7541 @@ "entPhysicalDescr": "Gigabit Port Container Tpon1/1", "entPhysicalClass": "container", "entPhysicalName": "Port Container Tpon1/1", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "", "entPhysicalContainedIn": 10, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 999, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1009, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1010, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1009, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1011, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1012, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1013, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1014, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1015, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1016, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1017, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1010, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1019, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1020, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1019, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1021, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1022, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1023, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1024, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1025, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1026, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1027, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1020, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1029, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1030, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1029, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1031, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1032, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1033, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1034, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1035, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1036, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1037, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1030, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1039, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1040, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1039, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1041, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1042, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1043, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1044, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1045, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1046, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1047, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1049, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1050, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1049, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1051, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1052, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1053, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1054, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1055, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1056, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1057, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1050, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1059, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1060, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1059, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1061, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1062, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1063, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1064, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1065, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1066, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1067, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1060, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1069, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 10, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1070, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1069, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1071, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1072, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1073, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1074, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1075, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1076, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1077, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1070, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1079, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1080, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1079, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1081, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1082, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1083, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1084, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1085, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1086, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1087, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1080, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1089, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1090, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1089, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1091, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1092, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1093, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1094, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1095, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1096, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1097, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1090, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1099, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1100, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1099, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1101, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1102, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1103, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1104, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1105, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1106, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1107, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1100, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1109, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1110, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1109, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1111, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1112, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1113, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1114, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1115, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1116, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1117, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1110, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1119, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1120, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1119, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1121, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1122, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1123, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1124, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1125, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1126, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1127, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1120, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1129, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1130, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1129, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1131, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1132, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1133, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1134, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1135, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1136, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1137, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1130, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1139, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1140, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1139, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1141, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1142, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1143, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1144, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1145, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1146, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1147, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1140, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1149, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 11, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1150, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1149, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1151, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1152, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1153, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1154, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1155, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1156, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1157, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1150, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1159, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1169, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1179, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1189, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1199, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1209, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1219, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1220, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1219, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1221, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1222, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1223, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1224, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1225, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1226, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1227, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1220, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1229, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 12, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1230, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1229, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1231, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1232, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1233, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1234, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1235, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1236, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1237, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1230, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1239, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1240, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1239, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1241, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1242, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1243, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1244, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1245, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1246, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1247, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1240, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1249, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1250, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1249, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1251, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1252, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1253, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1254, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1255, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1256, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1257, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1250, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1259, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1260, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1259, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1261, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1262, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1263, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1264, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1265, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1266, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1267, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1260, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1269, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1270, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1269, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1271, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1272, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1273, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1274, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1275, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1276, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1277, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1270, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1279, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1280, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1279, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1281, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1282, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1283, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1284, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1285, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1286, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1287, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1289, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1290, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1289, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1291, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1292, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1293, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1294, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1295, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1296, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1297, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1290, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1299, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1300, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1299, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1301, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1302, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1303, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1304, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1305, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1306, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1307, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1300, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1309, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 13, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1310, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1309, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1311, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1312, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1313, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1314, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1315, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1316, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1317, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1310, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1319, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1320, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1319, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1321, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1322, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1323, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1324, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1325, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1326, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1327, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1329, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1330, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1329, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1331, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1332, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1333, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1334, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1335, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1336, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1337, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1330, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1339, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1340, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1339, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1341, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1342, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1343, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1344, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1345, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1346, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1347, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1340, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1349, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1350, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1349, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1351, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1352, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1353, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1354, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1355, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1356, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1357, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1350, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1359, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1360, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1359, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1361, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1362, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1363, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1364, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1365, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1366, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1367, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1360, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1369, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1370, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1369, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1371, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1372, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1373, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1374, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1375, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1376, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1377, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1370, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1379, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1380, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1379, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1381, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1382, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1383, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1384, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1385, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1386, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1387, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1380, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1389, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 14, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1399, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1400, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1399, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1401, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1402, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1403, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1404, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1405, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1406, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1407, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1400, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1409, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1410, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1409, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1411, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1412, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1413, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1414, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1415, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1416, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1417, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1410, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1419, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1429, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1439, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1449, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1459, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1469, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 15, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1470, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1469, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1479, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1480, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1479, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1481, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1482, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1483, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1484, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1485, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1486, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1487, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1480, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1489, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1490, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1489, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1491, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1492, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1493, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1494, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1495, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1496, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1497, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1490, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1499, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1509, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1519, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1529, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1539, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1549, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 16, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1559, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1560, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1559, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1569, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1570, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1569, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1571, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1572, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1573, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1574, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1575, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1576, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1577, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1570, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1579, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1580, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1579, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1589, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1590, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1589, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1591, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1592, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1593, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1594, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1595, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1596, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1597, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1590, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1599, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1600, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1599, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1609, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1610, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1609, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1611, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1612, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1613, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1614, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1615, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1616, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1617, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1610, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1619, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1620, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1619, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1621, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1622, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1623, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1624, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1625, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1626, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1627, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1629, + "entPhysicalDescr": null, + "entPhysicalClass": "container", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 17, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1630, + "entPhysicalDescr": null, + "entPhysicalClass": "port", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1629, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1631, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1632, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1633, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1634, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1635, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1636, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1637, + "entPhysicalDescr": null, + "entPhysicalClass": "sensor", + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1630, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "", "ifIndex": null } diff --git a/tests/data/vrp_5720-32x-ei.json b/tests/data/vrp_5720-32x-ei.json index 950ec4a4d5..5b77fceb9d 100644 --- a/tests/data/vrp_5720-32x-ei.json +++ b/tests/data/vrp_5720-32x-ei.json @@ -16284,7 +16284,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": null, + "entPhysicalDescr": "HUAWEI S5720 Routing Switch", "entPhysicalClass": "chassis", "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": "", @@ -16293,7 +16293,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.11.536900", "entPhysicalSerialNum": "2102359579DMHC000288", "entPhysicalContainedIn": 0, @@ -16303,7 +16303,7 @@ }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -16312,7 +16312,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -16341,7 +16341,7 @@ }, { "entPhysicalIndex": 67125260, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/1", "entPhysicalHardwareRev": "", @@ -16350,7 +16350,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16360,7 +16360,7 @@ }, { "entPhysicalIndex": 67141644, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/2", "entPhysicalHardwareRev": "", @@ -16369,7 +16369,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16379,7 +16379,7 @@ }, { "entPhysicalIndex": 67158028, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/3", "entPhysicalHardwareRev": "", @@ -16388,7 +16388,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16398,7 +16398,7 @@ }, { "entPhysicalIndex": 67174412, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -16407,7 +16407,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16417,7 +16417,7 @@ }, { "entPhysicalIndex": 67190796, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -16426,7 +16426,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16436,7 +16436,7 @@ }, { "entPhysicalIndex": 67207180, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/6", "entPhysicalHardwareRev": "", @@ -16445,7 +16445,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16455,7 +16455,7 @@ }, { "entPhysicalIndex": 67223564, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/7", "entPhysicalHardwareRev": "", @@ -16464,7 +16464,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16474,7 +16474,7 @@ }, { "entPhysicalIndex": 67239948, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/8", "entPhysicalHardwareRev": "", @@ -16483,7 +16483,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16493,7 +16493,7 @@ }, { "entPhysicalIndex": 67256332, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/9", "entPhysicalHardwareRev": "", @@ -16502,7 +16502,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16512,7 +16512,7 @@ }, { "entPhysicalIndex": 67272716, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/10", "entPhysicalHardwareRev": "", @@ -16521,7 +16521,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16531,7 +16531,7 @@ }, { "entPhysicalIndex": 67289100, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/11", "entPhysicalHardwareRev": "", @@ -16540,7 +16540,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16550,7 +16550,7 @@ }, { "entPhysicalIndex": 67305484, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/12", "entPhysicalHardwareRev": "", @@ -16559,7 +16559,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16569,7 +16569,7 @@ }, { "entPhysicalIndex": 67321868, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/13", "entPhysicalHardwareRev": "", @@ -16578,7 +16578,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16588,7 +16588,7 @@ }, { "entPhysicalIndex": 67338252, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/14", "entPhysicalHardwareRev": "", @@ -16597,7 +16597,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16607,7 +16607,7 @@ }, { "entPhysicalIndex": 67354636, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/15", "entPhysicalHardwareRev": "", @@ -16616,7 +16616,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16626,7 +16626,7 @@ }, { "entPhysicalIndex": 67371020, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/16", "entPhysicalHardwareRev": "", @@ -16635,7 +16635,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16645,7 +16645,7 @@ }, { "entPhysicalIndex": 67403854, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": "", @@ -16816,7 +16816,7 @@ }, { "entPhysicalIndex": 67437134, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/9", "entPhysicalHardwareRev": "", @@ -16835,7 +16835,7 @@ }, { "entPhysicalIndex": 67437198, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/10", "entPhysicalHardwareRev": "", @@ -16854,7 +16854,7 @@ }, { "entPhysicalIndex": 67437262, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/11", "entPhysicalHardwareRev": "", @@ -16873,7 +16873,7 @@ }, { "entPhysicalIndex": 67437326, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/12", "entPhysicalHardwareRev": "", @@ -16892,7 +16892,7 @@ }, { "entPhysicalIndex": 67437390, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/13", "entPhysicalHardwareRev": "", @@ -16911,7 +16911,7 @@ }, { "entPhysicalIndex": 67437454, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/14", "entPhysicalHardwareRev": "", @@ -16930,7 +16930,7 @@ }, { "entPhysicalIndex": 67437518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/15", "entPhysicalHardwareRev": "", @@ -16949,7 +16949,7 @@ }, { "entPhysicalIndex": 67437582, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/16", "entPhysicalHardwareRev": "", @@ -16968,7 +16968,7 @@ }, { "entPhysicalIndex": 67437646, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/17", "entPhysicalHardwareRev": "", @@ -16987,7 +16987,7 @@ }, { "entPhysicalIndex": 67437710, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/18", "entPhysicalHardwareRev": "", @@ -17006,7 +17006,7 @@ }, { "entPhysicalIndex": 67437774, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/19", "entPhysicalHardwareRev": "", @@ -17025,7 +17025,7 @@ }, { "entPhysicalIndex": 67437838, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/20", "entPhysicalHardwareRev": "", @@ -17044,7 +17044,7 @@ }, { "entPhysicalIndex": 67437902, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/21", "entPhysicalHardwareRev": "", @@ -17063,7 +17063,7 @@ }, { "entPhysicalIndex": 67437966, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/22", "entPhysicalHardwareRev": "", @@ -17101,7 +17101,7 @@ }, { "entPhysicalIndex": 67438094, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/24", "entPhysicalHardwareRev": "", @@ -17120,7 +17120,7 @@ }, { "entPhysicalIndex": 67438158, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/25", "entPhysicalHardwareRev": "", @@ -17139,7 +17139,7 @@ }, { "entPhysicalIndex": 67438222, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/26", "entPhysicalHardwareRev": "", @@ -17158,7 +17158,7 @@ }, { "entPhysicalIndex": 67438286, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/27", "entPhysicalHardwareRev": "", @@ -17177,7 +17177,7 @@ }, { "entPhysicalIndex": 67438350, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/28", "entPhysicalHardwareRev": "", @@ -17196,7 +17196,7 @@ }, { "entPhysicalIndex": 67469390, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/1", "entPhysicalHardwareRev": "", @@ -17215,7 +17215,7 @@ }, { "entPhysicalIndex": 67469454, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -17234,7 +17234,7 @@ }, { "entPhysicalIndex": 67469518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -17272,7 +17272,7 @@ }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": "", @@ -17281,7 +17281,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17291,7 +17291,7 @@ }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": "", @@ -17300,7 +17300,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17310,7 +17310,7 @@ }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": "", @@ -17319,7 +17319,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17329,7 +17329,7 @@ }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": "", @@ -17338,7 +17338,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17348,7 +17348,7 @@ }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": "", @@ -17357,7 +17357,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17367,7 +17367,7 @@ }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": "", @@ -17376,7 +17376,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17386,7 +17386,7 @@ }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": "", @@ -17395,7 +17395,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17405,7 +17405,7 @@ }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": "", @@ -17414,7 +17414,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, diff --git a/tests/data/vrp_5720-vrf.json b/tests/data/vrp_5720-vrf.json index cfca586209..8aa9dcce8f 100644 --- a/tests/data/vrp_5720-vrf.json +++ b/tests/data/vrp_5720-vrf.json @@ -36466,7 +36466,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": null, + "entPhysicalDescr": "HUAWEI S5720 Routing Switch", "entPhysicalClass": "chassis", "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": "", @@ -36475,7 +36475,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.11.536897", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, @@ -36485,7 +36485,7 @@ }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -36494,7 +36494,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -36523,7 +36523,7 @@ }, { "entPhysicalIndex": 67125260, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/1", "entPhysicalHardwareRev": "", @@ -36532,7 +36532,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36542,7 +36542,7 @@ }, { "entPhysicalIndex": 67141644, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/2", "entPhysicalHardwareRev": "", @@ -36551,7 +36551,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36561,7 +36561,7 @@ }, { "entPhysicalIndex": 67158028, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/3", "entPhysicalHardwareRev": "", @@ -36570,7 +36570,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36580,7 +36580,7 @@ }, { "entPhysicalIndex": 67174412, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -36589,7 +36589,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36599,7 +36599,7 @@ }, { "entPhysicalIndex": 67190796, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -36608,7 +36608,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36637,7 +36637,7 @@ }, { "entPhysicalIndex": 67207180, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/6", "entPhysicalHardwareRev": "", @@ -36646,7 +36646,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36656,7 +36656,7 @@ }, { "entPhysicalIndex": 67223564, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/7", "entPhysicalHardwareRev": "", @@ -36665,7 +36665,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36694,7 +36694,7 @@ }, { "entPhysicalIndex": 67239948, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/8", "entPhysicalHardwareRev": "", @@ -36703,7 +36703,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36713,7 +36713,7 @@ }, { "entPhysicalIndex": 67256332, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/9", "entPhysicalHardwareRev": "", @@ -36722,7 +36722,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36732,7 +36732,7 @@ }, { "entPhysicalIndex": 67272716, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/10", "entPhysicalHardwareRev": "", @@ -36741,7 +36741,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36751,7 +36751,7 @@ }, { "entPhysicalIndex": 67289100, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/11", "entPhysicalHardwareRev": "", @@ -36760,7 +36760,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36770,7 +36770,7 @@ }, { "entPhysicalIndex": 67305484, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/12", "entPhysicalHardwareRev": "", @@ -36779,7 +36779,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36789,7 +36789,7 @@ }, { "entPhysicalIndex": 67321868, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/13", "entPhysicalHardwareRev": "", @@ -36798,7 +36798,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36808,7 +36808,7 @@ }, { "entPhysicalIndex": 67338252, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/14", "entPhysicalHardwareRev": "", @@ -36817,7 +36817,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36827,7 +36827,7 @@ }, { "entPhysicalIndex": 67354636, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/15", "entPhysicalHardwareRev": "", @@ -36836,7 +36836,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36846,7 +36846,7 @@ }, { "entPhysicalIndex": 67371020, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/16", "entPhysicalHardwareRev": "", @@ -36855,7 +36855,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36865,7 +36865,7 @@ }, { "entPhysicalIndex": 67403854, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": "", @@ -36884,7 +36884,7 @@ }, { "entPhysicalIndex": 67436622, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/1", "entPhysicalHardwareRev": "", @@ -36903,7 +36903,7 @@ }, { "entPhysicalIndex": 67436686, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -36922,7 +36922,7 @@ }, { "entPhysicalIndex": 67436750, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -36941,7 +36941,7 @@ }, { "entPhysicalIndex": 67436814, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/4", "entPhysicalHardwareRev": "", @@ -36960,7 +36960,7 @@ }, { "entPhysicalIndex": 67436878, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/5", "entPhysicalHardwareRev": "", @@ -36979,7 +36979,7 @@ }, { "entPhysicalIndex": 67436942, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/6", "entPhysicalHardwareRev": "", @@ -36998,7 +36998,7 @@ }, { "entPhysicalIndex": 67437006, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/7", "entPhysicalHardwareRev": "", @@ -37017,7 +37017,7 @@ }, { "entPhysicalIndex": 67437070, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/8", "entPhysicalHardwareRev": "", @@ -37036,7 +37036,7 @@ }, { "entPhysicalIndex": 67437134, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/9", "entPhysicalHardwareRev": "", @@ -37055,7 +37055,7 @@ }, { "entPhysicalIndex": 67437198, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/10", "entPhysicalHardwareRev": "", @@ -37074,7 +37074,7 @@ }, { "entPhysicalIndex": 67437262, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/11", "entPhysicalHardwareRev": "", @@ -37093,7 +37093,7 @@ }, { "entPhysicalIndex": 67437326, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/12", "entPhysicalHardwareRev": "", @@ -37112,7 +37112,7 @@ }, { "entPhysicalIndex": 67437390, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/13", "entPhysicalHardwareRev": "", @@ -37131,7 +37131,7 @@ }, { "entPhysicalIndex": 67437454, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/14", "entPhysicalHardwareRev": "", @@ -37150,7 +37150,7 @@ }, { "entPhysicalIndex": 67437518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/15", "entPhysicalHardwareRev": "", @@ -37169,7 +37169,7 @@ }, { "entPhysicalIndex": 67437582, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/16", "entPhysicalHardwareRev": "", @@ -37188,7 +37188,7 @@ }, { "entPhysicalIndex": 67437646, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/17", "entPhysicalHardwareRev": "", @@ -37207,7 +37207,7 @@ }, { "entPhysicalIndex": 67437710, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/18", "entPhysicalHardwareRev": "", @@ -37226,7 +37226,7 @@ }, { "entPhysicalIndex": 67437774, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/19", "entPhysicalHardwareRev": "", @@ -37245,7 +37245,7 @@ }, { "entPhysicalIndex": 67437838, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/20", "entPhysicalHardwareRev": "", @@ -37264,7 +37264,7 @@ }, { "entPhysicalIndex": 67437902, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/21", "entPhysicalHardwareRev": "", @@ -37283,7 +37283,7 @@ }, { "entPhysicalIndex": 67437966, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/22", "entPhysicalHardwareRev": "", @@ -37302,7 +37302,7 @@ }, { "entPhysicalIndex": 67438030, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/23", "entPhysicalHardwareRev": "", @@ -37321,7 +37321,7 @@ }, { "entPhysicalIndex": 67438094, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/24", "entPhysicalHardwareRev": "", @@ -37340,7 +37340,7 @@ }, { "entPhysicalIndex": 67438158, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/25", "entPhysicalHardwareRev": "", @@ -37359,7 +37359,7 @@ }, { "entPhysicalIndex": 67438222, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/26", "entPhysicalHardwareRev": "", @@ -37378,7 +37378,7 @@ }, { "entPhysicalIndex": 67438286, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/27", "entPhysicalHardwareRev": "", @@ -37397,7 +37397,7 @@ }, { "entPhysicalIndex": 67438350, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/28", "entPhysicalHardwareRev": "", @@ -37416,7 +37416,7 @@ }, { "entPhysicalIndex": 67438414, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/29", "entPhysicalHardwareRev": "", @@ -37435,7 +37435,7 @@ }, { "entPhysicalIndex": 67438478, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/30", "entPhysicalHardwareRev": "", @@ -37454,7 +37454,7 @@ }, { "entPhysicalIndex": 67438542, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/31", "entPhysicalHardwareRev": "", @@ -37473,7 +37473,7 @@ }, { "entPhysicalIndex": 67438606, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/32", "entPhysicalHardwareRev": "", @@ -37492,7 +37492,7 @@ }, { "entPhysicalIndex": 67438670, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/33", "entPhysicalHardwareRev": "", @@ -37511,7 +37511,7 @@ }, { "entPhysicalIndex": 67438734, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/34", "entPhysicalHardwareRev": "", @@ -37530,7 +37530,7 @@ }, { "entPhysicalIndex": 67438798, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/35", "entPhysicalHardwareRev": "", @@ -37549,7 +37549,7 @@ }, { "entPhysicalIndex": 67438862, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/36", "entPhysicalHardwareRev": "", @@ -37568,7 +37568,7 @@ }, { "entPhysicalIndex": 67438926, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/37", "entPhysicalHardwareRev": "", @@ -37587,7 +37587,7 @@ }, { "entPhysicalIndex": 67438990, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/38", "entPhysicalHardwareRev": "", @@ -37606,7 +37606,7 @@ }, { "entPhysicalIndex": 67439054, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/39", "entPhysicalHardwareRev": "", @@ -37625,7 +37625,7 @@ }, { "entPhysicalIndex": 67439118, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/40", "entPhysicalHardwareRev": "", @@ -37644,7 +37644,7 @@ }, { "entPhysicalIndex": 67439182, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/41", "entPhysicalHardwareRev": "", @@ -37663,7 +37663,7 @@ }, { "entPhysicalIndex": 67439246, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/42", "entPhysicalHardwareRev": "", @@ -37682,7 +37682,7 @@ }, { "entPhysicalIndex": 67439310, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/43", "entPhysicalHardwareRev": "", @@ -37701,7 +37701,7 @@ }, { "entPhysicalIndex": 67439374, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/44", "entPhysicalHardwareRev": "", @@ -37720,7 +37720,7 @@ }, { "entPhysicalIndex": 67439438, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/45", "entPhysicalHardwareRev": "", @@ -37739,7 +37739,7 @@ }, { "entPhysicalIndex": 67439502, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/46", "entPhysicalHardwareRev": "", @@ -37758,7 +37758,7 @@ }, { "entPhysicalIndex": 67439566, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/47", "entPhysicalHardwareRev": "", @@ -37777,7 +37777,7 @@ }, { "entPhysicalIndex": 67439630, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/48", "entPhysicalHardwareRev": "", @@ -37815,7 +37815,7 @@ }, { "entPhysicalIndex": 67469454, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -37834,7 +37834,7 @@ }, { "entPhysicalIndex": 67469518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -37853,7 +37853,7 @@ }, { "entPhysicalIndex": 67469582, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/4", "entPhysicalHardwareRev": "", @@ -37872,7 +37872,7 @@ }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": "", @@ -37881,7 +37881,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -37900,7 +37900,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.12.537094", "entPhysicalSerialNum": "21359576DMHC000248", "entPhysicalContainedIn": 68157445, @@ -37910,7 +37910,7 @@ }, { "entPhysicalIndex": 68173836, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/1", "entPhysicalHardwareRev": "", @@ -37919,7 +37919,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -37938,7 +37938,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536752", "entPhysicalSerialNum": "02DWDMHB001394", "entPhysicalContainedIn": 68173836, @@ -37948,7 +37948,7 @@ }, { "entPhysicalIndex": 68173902, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/1/1", "entPhysicalHardwareRev": "", @@ -37957,17 +37957,17 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68173837, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 0 }, { "entPhysicalIndex": 68173966, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/1/2", "entPhysicalHardwareRev": "", @@ -37976,17 +37976,17 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68173837, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 0 }, { "entPhysicalIndex": 68190220, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/2", "entPhysicalHardwareRev": "", @@ -37995,7 +37995,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38005,7 +38005,7 @@ }, { "entPhysicalIndex": 68206604, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/3", "entPhysicalHardwareRev": "", @@ -38014,7 +38014,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38024,7 +38024,7 @@ }, { "entPhysicalIndex": 68222988, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/4", "entPhysicalHardwareRev": "", @@ -38033,7 +38033,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38043,7 +38043,7 @@ }, { "entPhysicalIndex": 68239372, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/5", "entPhysicalHardwareRev": "", @@ -38052,7 +38052,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38071,7 +38071,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVHC000775", "entPhysicalContainedIn": 68239372, @@ -38081,7 +38081,7 @@ }, { "entPhysicalIndex": 68255756, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/6", "entPhysicalHardwareRev": "", @@ -38090,7 +38090,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38109,7 +38109,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVH9003694", "entPhysicalContainedIn": 68255756, @@ -38119,7 +38119,7 @@ }, { "entPhysicalIndex": 68272140, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/7", "entPhysicalHardwareRev": "", @@ -38128,7 +38128,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38147,7 +38147,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536762", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68272140, @@ -38157,7 +38157,7 @@ }, { "entPhysicalIndex": 68288524, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/8", "entPhysicalHardwareRev": "", @@ -38166,7 +38166,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38176,7 +38176,7 @@ }, { "entPhysicalIndex": 68304908, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/9", "entPhysicalHardwareRev": "", @@ -38185,7 +38185,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38195,7 +38195,7 @@ }, { "entPhysicalIndex": 68321292, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/10", "entPhysicalHardwareRev": "", @@ -38204,7 +38204,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38214,7 +38214,7 @@ }, { "entPhysicalIndex": 68337676, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/11", "entPhysicalHardwareRev": "", @@ -38223,7 +38223,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38233,7 +38233,7 @@ }, { "entPhysicalIndex": 68354060, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/12", "entPhysicalHardwareRev": "", @@ -38242,7 +38242,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38252,7 +38252,7 @@ }, { "entPhysicalIndex": 68370444, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/13", "entPhysicalHardwareRev": "", @@ -38261,7 +38261,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38271,7 +38271,7 @@ }, { "entPhysicalIndex": 68386828, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/14", "entPhysicalHardwareRev": "", @@ -38280,7 +38280,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38290,7 +38290,7 @@ }, { "entPhysicalIndex": 68403212, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/15", "entPhysicalHardwareRev": "", @@ -38299,7 +38299,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38309,7 +38309,7 @@ }, { "entPhysicalIndex": 68419596, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/16", "entPhysicalHardwareRev": "", @@ -38318,7 +38318,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38328,7 +38328,7 @@ }, { "entPhysicalIndex": 68452430, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": "", @@ -38337,7 +38337,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38347,7 +38347,7 @@ }, { "entPhysicalIndex": 68485198, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/1", "entPhysicalHardwareRev": "", @@ -38356,7 +38356,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38366,7 +38366,7 @@ }, { "entPhysicalIndex": 68485262, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/2", "entPhysicalHardwareRev": "", @@ -38375,7 +38375,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38385,7 +38385,7 @@ }, { "entPhysicalIndex": 68485326, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/3", "entPhysicalHardwareRev": "", @@ -38394,7 +38394,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38404,7 +38404,7 @@ }, { "entPhysicalIndex": 68485390, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/4", "entPhysicalHardwareRev": "", @@ -38413,7 +38413,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38423,7 +38423,7 @@ }, { "entPhysicalIndex": 68485454, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/5", "entPhysicalHardwareRev": "", @@ -38432,7 +38432,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38442,7 +38442,7 @@ }, { "entPhysicalIndex": 68485518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/6", "entPhysicalHardwareRev": "", @@ -38451,7 +38451,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38461,7 +38461,7 @@ }, { "entPhysicalIndex": 68485582, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/7", "entPhysicalHardwareRev": "", @@ -38470,7 +38470,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38480,7 +38480,7 @@ }, { "entPhysicalIndex": 68485646, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/8", "entPhysicalHardwareRev": "", @@ -38489,7 +38489,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38499,7 +38499,7 @@ }, { "entPhysicalIndex": 68485710, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/9", "entPhysicalHardwareRev": "", @@ -38508,7 +38508,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38518,7 +38518,7 @@ }, { "entPhysicalIndex": 68485774, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/10", "entPhysicalHardwareRev": "", @@ -38527,7 +38527,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38537,7 +38537,7 @@ }, { "entPhysicalIndex": 68485838, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/11", "entPhysicalHardwareRev": "", @@ -38546,7 +38546,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38556,7 +38556,7 @@ }, { "entPhysicalIndex": 68485902, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/12", "entPhysicalHardwareRev": "", @@ -38565,7 +38565,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38575,7 +38575,7 @@ }, { "entPhysicalIndex": 68485966, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/13", "entPhysicalHardwareRev": "", @@ -38584,7 +38584,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38594,7 +38594,7 @@ }, { "entPhysicalIndex": 68486030, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/14", "entPhysicalHardwareRev": "", @@ -38603,7 +38603,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38613,7 +38613,7 @@ }, { "entPhysicalIndex": 68486094, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/15", "entPhysicalHardwareRev": "", @@ -38622,7 +38622,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38632,7 +38632,7 @@ }, { "entPhysicalIndex": 68486158, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/16", "entPhysicalHardwareRev": "", @@ -38641,7 +38641,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38651,7 +38651,7 @@ }, { "entPhysicalIndex": 68486222, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/17", "entPhysicalHardwareRev": "", @@ -38660,7 +38660,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38670,7 +38670,7 @@ }, { "entPhysicalIndex": 68486286, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/18", "entPhysicalHardwareRev": "", @@ -38679,7 +38679,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38689,7 +38689,7 @@ }, { "entPhysicalIndex": 68486350, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/19", "entPhysicalHardwareRev": "", @@ -38698,7 +38698,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38708,7 +38708,7 @@ }, { "entPhysicalIndex": 68486414, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/20", "entPhysicalHardwareRev": "", @@ -38717,7 +38717,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38727,7 +38727,7 @@ }, { "entPhysicalIndex": 68486478, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/21", "entPhysicalHardwareRev": "", @@ -38736,7 +38736,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38746,7 +38746,7 @@ }, { "entPhysicalIndex": 68486542, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/22", "entPhysicalHardwareRev": "", @@ -38755,7 +38755,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38765,7 +38765,7 @@ }, { "entPhysicalIndex": 68486606, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/23", "entPhysicalHardwareRev": "", @@ -38774,7 +38774,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38784,7 +38784,7 @@ }, { "entPhysicalIndex": 68486670, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/24", "entPhysicalHardwareRev": "", @@ -38793,7 +38793,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38803,7 +38803,7 @@ }, { "entPhysicalIndex": 68486734, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/25", "entPhysicalHardwareRev": "", @@ -38812,7 +38812,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38822,7 +38822,7 @@ }, { "entPhysicalIndex": 68486798, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/26", "entPhysicalHardwareRev": "", @@ -38831,7 +38831,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38841,7 +38841,7 @@ }, { "entPhysicalIndex": 68486862, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/27", "entPhysicalHardwareRev": "", @@ -38850,7 +38850,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38860,7 +38860,7 @@ }, { "entPhysicalIndex": 68486926, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/28", "entPhysicalHardwareRev": "", @@ -38869,7 +38869,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38879,7 +38879,7 @@ }, { "entPhysicalIndex": 68486990, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/29", "entPhysicalHardwareRev": "", @@ -38888,7 +38888,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38898,7 +38898,7 @@ }, { "entPhysicalIndex": 68487054, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/30", "entPhysicalHardwareRev": "", @@ -38907,7 +38907,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38917,7 +38917,7 @@ }, { "entPhysicalIndex": 68487118, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/31", "entPhysicalHardwareRev": "", @@ -38926,7 +38926,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38936,7 +38936,7 @@ }, { "entPhysicalIndex": 68487182, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/32", "entPhysicalHardwareRev": "", @@ -38945,7 +38945,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38955,7 +38955,7 @@ }, { "entPhysicalIndex": 68487246, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/33", "entPhysicalHardwareRev": "", @@ -38964,7 +38964,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38974,7 +38974,7 @@ }, { "entPhysicalIndex": 68487310, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/34", "entPhysicalHardwareRev": "", @@ -38983,7 +38983,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38993,7 +38993,7 @@ }, { "entPhysicalIndex": 68487374, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/35", "entPhysicalHardwareRev": "", @@ -39002,7 +39002,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39012,7 +39012,7 @@ }, { "entPhysicalIndex": 68487438, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/36", "entPhysicalHardwareRev": "", @@ -39021,7 +39021,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39031,7 +39031,7 @@ }, { "entPhysicalIndex": 68487502, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/37", "entPhysicalHardwareRev": "", @@ -39040,7 +39040,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39050,7 +39050,7 @@ }, { "entPhysicalIndex": 68487566, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/38", "entPhysicalHardwareRev": "", @@ -39059,7 +39059,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39069,7 +39069,7 @@ }, { "entPhysicalIndex": 68487630, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/39", "entPhysicalHardwareRev": "", @@ -39078,7 +39078,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39088,7 +39088,7 @@ }, { "entPhysicalIndex": 68487694, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/40", "entPhysicalHardwareRev": "", @@ -39097,7 +39097,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39107,7 +39107,7 @@ }, { "entPhysicalIndex": 68487758, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/41", "entPhysicalHardwareRev": "", @@ -39116,7 +39116,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39126,7 +39126,7 @@ }, { "entPhysicalIndex": 68487822, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/42", "entPhysicalHardwareRev": "", @@ -39135,7 +39135,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39145,7 +39145,7 @@ }, { "entPhysicalIndex": 68487886, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/43", "entPhysicalHardwareRev": "", @@ -39154,7 +39154,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39164,7 +39164,7 @@ }, { "entPhysicalIndex": 68487950, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/44", "entPhysicalHardwareRev": "", @@ -39173,7 +39173,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39183,7 +39183,7 @@ }, { "entPhysicalIndex": 68488014, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/45", "entPhysicalHardwareRev": "", @@ -39192,7 +39192,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39202,7 +39202,7 @@ }, { "entPhysicalIndex": 68488078, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/46", "entPhysicalHardwareRev": "", @@ -39211,7 +39211,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39221,7 +39221,7 @@ }, { "entPhysicalIndex": 68488142, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/47", "entPhysicalHardwareRev": "", @@ -39230,7 +39230,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39240,7 +39240,7 @@ }, { "entPhysicalIndex": 68488206, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet1/0/48", "entPhysicalHardwareRev": "", @@ -39249,7 +39249,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39268,7 +39268,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39278,7 +39278,7 @@ }, { "entPhysicalIndex": 68518030, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet1/0/2", "entPhysicalHardwareRev": "", @@ -39287,7 +39287,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39297,7 +39297,7 @@ }, { "entPhysicalIndex": 68518094, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet1/0/3", "entPhysicalHardwareRev": "", @@ -39306,7 +39306,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39316,7 +39316,7 @@ }, { "entPhysicalIndex": 68518158, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet1/0/4", "entPhysicalHardwareRev": "", @@ -39325,7 +39325,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39335,7 +39335,7 @@ }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": "", @@ -39344,7 +39344,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -39363,7 +39363,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.12.537094", "entPhysicalSerialNum": "21359576DMHC000230", "entPhysicalContainedIn": 69206021, @@ -39373,7 +39373,7 @@ }, { "entPhysicalIndex": 69222412, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/1", "entPhysicalHardwareRev": "", @@ -39382,7 +39382,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39401,7 +39401,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536752", "entPhysicalSerialNum": "02DWDMHB001110", "entPhysicalContainedIn": 69222412, @@ -39411,7 +39411,7 @@ }, { "entPhysicalIndex": 69222478, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/1/1", "entPhysicalHardwareRev": "", @@ -39420,17 +39420,17 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69222413, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 0 }, { "entPhysicalIndex": 69222542, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/1/2", "entPhysicalHardwareRev": "", @@ -39439,17 +39439,17 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69222413, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 0 }, { "entPhysicalIndex": 69238796, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/2", "entPhysicalHardwareRev": "", @@ -39458,7 +39458,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39468,7 +39468,7 @@ }, { "entPhysicalIndex": 69255180, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/3", "entPhysicalHardwareRev": "", @@ -39477,7 +39477,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39487,7 +39487,7 @@ }, { "entPhysicalIndex": 69271564, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/4", "entPhysicalHardwareRev": "", @@ -39496,7 +39496,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39506,7 +39506,7 @@ }, { "entPhysicalIndex": 69287948, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/5", "entPhysicalHardwareRev": "", @@ -39515,7 +39515,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39534,7 +39534,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVHC001188", "entPhysicalContainedIn": 69287948, @@ -39544,7 +39544,7 @@ }, { "entPhysicalIndex": 69304332, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/6", "entPhysicalHardwareRev": "", @@ -39553,7 +39553,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39572,7 +39572,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVH9003712", "entPhysicalContainedIn": 69304332, @@ -39582,7 +39582,7 @@ }, { "entPhysicalIndex": 69320716, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/7", "entPhysicalHardwareRev": "", @@ -39591,7 +39591,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39610,7 +39610,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.536762", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69320716, @@ -39620,7 +39620,7 @@ }, { "entPhysicalIndex": 69337100, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/8", "entPhysicalHardwareRev": "", @@ -39629,7 +39629,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39639,7 +39639,7 @@ }, { "entPhysicalIndex": 69353484, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/9", "entPhysicalHardwareRev": "", @@ -39648,7 +39648,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39658,7 +39658,7 @@ }, { "entPhysicalIndex": 69369868, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/10", "entPhysicalHardwareRev": "", @@ -39667,7 +39667,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39677,7 +39677,7 @@ }, { "entPhysicalIndex": 69386252, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/11", "entPhysicalHardwareRev": "", @@ -39686,7 +39686,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39696,7 +39696,7 @@ }, { "entPhysicalIndex": 69402636, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/12", "entPhysicalHardwareRev": "", @@ -39705,7 +39705,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39715,7 +39715,7 @@ }, { "entPhysicalIndex": 69419020, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/13", "entPhysicalHardwareRev": "", @@ -39724,7 +39724,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39734,7 +39734,7 @@ }, { "entPhysicalIndex": 69435404, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/14", "entPhysicalHardwareRev": "", @@ -39743,7 +39743,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39753,7 +39753,7 @@ }, { "entPhysicalIndex": 69451788, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/15", "entPhysicalHardwareRev": "", @@ -39762,7 +39762,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39772,7 +39772,7 @@ }, { "entPhysicalIndex": 69468172, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/16", "entPhysicalHardwareRev": "", @@ -39781,7 +39781,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39791,7 +39791,7 @@ }, { "entPhysicalIndex": 69501006, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": "", @@ -39800,7 +39800,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39810,7 +39810,7 @@ }, { "entPhysicalIndex": 69533774, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/1", "entPhysicalHardwareRev": "", @@ -39819,7 +39819,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39829,7 +39829,7 @@ }, { "entPhysicalIndex": 69533838, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/2", "entPhysicalHardwareRev": "", @@ -39838,7 +39838,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39848,7 +39848,7 @@ }, { "entPhysicalIndex": 69533902, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/3", "entPhysicalHardwareRev": "", @@ -39857,7 +39857,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39867,7 +39867,7 @@ }, { "entPhysicalIndex": 69533966, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/4", "entPhysicalHardwareRev": "", @@ -39876,7 +39876,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39886,7 +39886,7 @@ }, { "entPhysicalIndex": 69534030, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/5", "entPhysicalHardwareRev": "", @@ -39895,7 +39895,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39905,7 +39905,7 @@ }, { "entPhysicalIndex": 69534094, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/6", "entPhysicalHardwareRev": "", @@ -39914,7 +39914,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39924,7 +39924,7 @@ }, { "entPhysicalIndex": 69534158, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/7", "entPhysicalHardwareRev": "", @@ -39933,7 +39933,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39943,7 +39943,7 @@ }, { "entPhysicalIndex": 69534222, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/8", "entPhysicalHardwareRev": "", @@ -39952,7 +39952,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39962,7 +39962,7 @@ }, { "entPhysicalIndex": 69534286, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/9", "entPhysicalHardwareRev": "", @@ -39971,7 +39971,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39981,7 +39981,7 @@ }, { "entPhysicalIndex": 69534350, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/10", "entPhysicalHardwareRev": "", @@ -39990,7 +39990,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40000,7 +40000,7 @@ }, { "entPhysicalIndex": 69534414, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/11", "entPhysicalHardwareRev": "", @@ -40009,7 +40009,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40019,7 +40019,7 @@ }, { "entPhysicalIndex": 69534478, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/12", "entPhysicalHardwareRev": "", @@ -40028,7 +40028,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40038,7 +40038,7 @@ }, { "entPhysicalIndex": 69534542, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/13", "entPhysicalHardwareRev": "", @@ -40047,7 +40047,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40057,7 +40057,7 @@ }, { "entPhysicalIndex": 69534606, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/14", "entPhysicalHardwareRev": "", @@ -40066,7 +40066,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40076,7 +40076,7 @@ }, { "entPhysicalIndex": 69534670, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/15", "entPhysicalHardwareRev": "", @@ -40085,7 +40085,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40095,7 +40095,7 @@ }, { "entPhysicalIndex": 69534734, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/16", "entPhysicalHardwareRev": "", @@ -40104,7 +40104,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40114,7 +40114,7 @@ }, { "entPhysicalIndex": 69534798, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/17", "entPhysicalHardwareRev": "", @@ -40123,7 +40123,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40133,7 +40133,7 @@ }, { "entPhysicalIndex": 69534862, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/18", "entPhysicalHardwareRev": "", @@ -40142,7 +40142,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40152,7 +40152,7 @@ }, { "entPhysicalIndex": 69534926, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/19", "entPhysicalHardwareRev": "", @@ -40161,7 +40161,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40171,7 +40171,7 @@ }, { "entPhysicalIndex": 69534990, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/20", "entPhysicalHardwareRev": "", @@ -40180,7 +40180,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40190,7 +40190,7 @@ }, { "entPhysicalIndex": 69535054, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/21", "entPhysicalHardwareRev": "", @@ -40199,7 +40199,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40209,7 +40209,7 @@ }, { "entPhysicalIndex": 69535118, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/22", "entPhysicalHardwareRev": "", @@ -40218,7 +40218,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40228,7 +40228,7 @@ }, { "entPhysicalIndex": 69535182, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/23", "entPhysicalHardwareRev": "", @@ -40237,7 +40237,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40247,7 +40247,7 @@ }, { "entPhysicalIndex": 69535246, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/24", "entPhysicalHardwareRev": "", @@ -40256,7 +40256,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40266,7 +40266,7 @@ }, { "entPhysicalIndex": 69535310, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/25", "entPhysicalHardwareRev": "", @@ -40275,7 +40275,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40285,7 +40285,7 @@ }, { "entPhysicalIndex": 69535374, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/26", "entPhysicalHardwareRev": "", @@ -40294,7 +40294,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40304,7 +40304,7 @@ }, { "entPhysicalIndex": 69535438, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/27", "entPhysicalHardwareRev": "", @@ -40313,7 +40313,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40323,7 +40323,7 @@ }, { "entPhysicalIndex": 69535502, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/28", "entPhysicalHardwareRev": "", @@ -40332,7 +40332,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40342,7 +40342,7 @@ }, { "entPhysicalIndex": 69535566, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/29", "entPhysicalHardwareRev": "", @@ -40351,7 +40351,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40361,7 +40361,7 @@ }, { "entPhysicalIndex": 69535630, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/30", "entPhysicalHardwareRev": "", @@ -40370,7 +40370,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40380,7 +40380,7 @@ }, { "entPhysicalIndex": 69535694, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/31", "entPhysicalHardwareRev": "", @@ -40389,7 +40389,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40399,7 +40399,7 @@ }, { "entPhysicalIndex": 69535758, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/32", "entPhysicalHardwareRev": "", @@ -40408,7 +40408,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40418,7 +40418,7 @@ }, { "entPhysicalIndex": 69535822, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/33", "entPhysicalHardwareRev": "", @@ -40427,7 +40427,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40437,7 +40437,7 @@ }, { "entPhysicalIndex": 69535886, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/34", "entPhysicalHardwareRev": "", @@ -40446,7 +40446,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40456,7 +40456,7 @@ }, { "entPhysicalIndex": 69535950, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/35", "entPhysicalHardwareRev": "", @@ -40465,7 +40465,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40475,7 +40475,7 @@ }, { "entPhysicalIndex": 69536014, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/36", "entPhysicalHardwareRev": "", @@ -40484,7 +40484,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40494,7 +40494,7 @@ }, { "entPhysicalIndex": 69536078, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/37", "entPhysicalHardwareRev": "", @@ -40503,7 +40503,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40513,7 +40513,7 @@ }, { "entPhysicalIndex": 69536142, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/38", "entPhysicalHardwareRev": "", @@ -40522,7 +40522,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40532,7 +40532,7 @@ }, { "entPhysicalIndex": 69536206, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/39", "entPhysicalHardwareRev": "", @@ -40541,7 +40541,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40551,7 +40551,7 @@ }, { "entPhysicalIndex": 69536270, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/40", "entPhysicalHardwareRev": "", @@ -40560,7 +40560,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40570,7 +40570,7 @@ }, { "entPhysicalIndex": 69536334, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/41", "entPhysicalHardwareRev": "", @@ -40579,7 +40579,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40589,7 +40589,7 @@ }, { "entPhysicalIndex": 69536398, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/42", "entPhysicalHardwareRev": "", @@ -40598,7 +40598,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40608,7 +40608,7 @@ }, { "entPhysicalIndex": 69536462, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/43", "entPhysicalHardwareRev": "", @@ -40617,7 +40617,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40627,7 +40627,7 @@ }, { "entPhysicalIndex": 69536526, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/44", "entPhysicalHardwareRev": "", @@ -40636,7 +40636,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40646,7 +40646,7 @@ }, { "entPhysicalIndex": 69536590, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/45", "entPhysicalHardwareRev": "", @@ -40655,7 +40655,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40665,7 +40665,7 @@ }, { "entPhysicalIndex": 69536654, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/46", "entPhysicalHardwareRev": "", @@ -40674,7 +40674,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40684,7 +40684,7 @@ }, { "entPhysicalIndex": 69536718, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/47", "entPhysicalHardwareRev": "", @@ -40693,7 +40693,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40703,7 +40703,7 @@ }, { "entPhysicalIndex": 69536782, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet2/0/48", "entPhysicalHardwareRev": "", @@ -40712,7 +40712,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40731,7 +40731,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40741,7 +40741,7 @@ }, { "entPhysicalIndex": 69566606, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet2/0/2", "entPhysicalHardwareRev": "", @@ -40750,7 +40750,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40760,7 +40760,7 @@ }, { "entPhysicalIndex": 69566670, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet2/0/3", "entPhysicalHardwareRev": "", @@ -40769,7 +40769,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40779,7 +40779,7 @@ }, { "entPhysicalIndex": 69566734, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet2/0/4", "entPhysicalHardwareRev": "", @@ -40788,7 +40788,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40798,7 +40798,7 @@ }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": "", @@ -40807,7 +40807,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40817,7 +40817,7 @@ }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": "", @@ -40826,7 +40826,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40836,7 +40836,7 @@ }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": "", @@ -40845,7 +40845,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40855,7 +40855,7 @@ }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": "", @@ -40864,7 +40864,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40874,7 +40874,7 @@ }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": "", @@ -40883,7 +40883,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40893,7 +40893,7 @@ }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": "", @@ -40902,7 +40902,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, diff --git a/tests/data/vrp_5720.json b/tests/data/vrp_5720.json index 842ffd2579..2af78b13d8 100644 --- a/tests/data/vrp_5720.json +++ b/tests/data/vrp_5720.json @@ -16667,7 +16667,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": null, + "entPhysicalDescr": "HUAWEI S5720 Routing Switch", "entPhysicalClass": "chassis", "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": "", @@ -16676,7 +16676,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.11.536897", "entPhysicalSerialNum": "2102359576DMHC000120", "entPhysicalContainedIn": 0, @@ -16686,7 +16686,7 @@ }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -16695,7 +16695,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -16724,7 +16724,7 @@ }, { "entPhysicalIndex": 67125260, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/1", "entPhysicalHardwareRev": "", @@ -16733,7 +16733,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16743,7 +16743,7 @@ }, { "entPhysicalIndex": 67141644, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/2", "entPhysicalHardwareRev": "", @@ -16752,7 +16752,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16762,7 +16762,7 @@ }, { "entPhysicalIndex": 67158028, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/3", "entPhysicalHardwareRev": "", @@ -16771,7 +16771,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16781,7 +16781,7 @@ }, { "entPhysicalIndex": 67174412, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -16790,7 +16790,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16800,7 +16800,7 @@ }, { "entPhysicalIndex": 67190796, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -16809,7 +16809,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16838,7 +16838,7 @@ }, { "entPhysicalIndex": 67207180, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/6", "entPhysicalHardwareRev": "", @@ -16847,7 +16847,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16857,7 +16857,7 @@ }, { "entPhysicalIndex": 67223564, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/7", "entPhysicalHardwareRev": "", @@ -16866,7 +16866,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16895,7 +16895,7 @@ }, { "entPhysicalIndex": 67239948, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/8", "entPhysicalHardwareRev": "", @@ -16904,7 +16904,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16914,7 +16914,7 @@ }, { "entPhysicalIndex": 67256332, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/9", "entPhysicalHardwareRev": "", @@ -16923,7 +16923,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16933,7 +16933,7 @@ }, { "entPhysicalIndex": 67272716, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/10", "entPhysicalHardwareRev": "", @@ -16942,7 +16942,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16952,7 +16952,7 @@ }, { "entPhysicalIndex": 67289100, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/11", "entPhysicalHardwareRev": "", @@ -16961,7 +16961,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16971,7 +16971,7 @@ }, { "entPhysicalIndex": 67305484, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/12", "entPhysicalHardwareRev": "", @@ -16980,7 +16980,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16990,7 +16990,7 @@ }, { "entPhysicalIndex": 67321868, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/13", "entPhysicalHardwareRev": "", @@ -16999,7 +16999,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17009,7 +17009,7 @@ }, { "entPhysicalIndex": 67338252, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/14", "entPhysicalHardwareRev": "", @@ -17018,7 +17018,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17028,7 +17028,7 @@ }, { "entPhysicalIndex": 67354636, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/15", "entPhysicalHardwareRev": "", @@ -17037,7 +17037,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17047,7 +17047,7 @@ }, { "entPhysicalIndex": 67371020, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/16", "entPhysicalHardwareRev": "", @@ -17056,7 +17056,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17066,7 +17066,7 @@ }, { "entPhysicalIndex": 67403854, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": "", @@ -17085,7 +17085,7 @@ }, { "entPhysicalIndex": 67436622, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/1", "entPhysicalHardwareRev": "", @@ -17104,7 +17104,7 @@ }, { "entPhysicalIndex": 67436686, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -17123,7 +17123,7 @@ }, { "entPhysicalIndex": 67436750, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -17142,7 +17142,7 @@ }, { "entPhysicalIndex": 67436814, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/4", "entPhysicalHardwareRev": "", @@ -17161,7 +17161,7 @@ }, { "entPhysicalIndex": 67436878, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/5", "entPhysicalHardwareRev": "", @@ -17180,7 +17180,7 @@ }, { "entPhysicalIndex": 67436942, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/6", "entPhysicalHardwareRev": "", @@ -17199,7 +17199,7 @@ }, { "entPhysicalIndex": 67437006, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/7", "entPhysicalHardwareRev": "", @@ -17218,7 +17218,7 @@ }, { "entPhysicalIndex": 67437070, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/8", "entPhysicalHardwareRev": "", @@ -17237,7 +17237,7 @@ }, { "entPhysicalIndex": 67437134, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/9", "entPhysicalHardwareRev": "", @@ -17256,7 +17256,7 @@ }, { "entPhysicalIndex": 67437198, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/10", "entPhysicalHardwareRev": "", @@ -17275,7 +17275,7 @@ }, { "entPhysicalIndex": 67437262, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/11", "entPhysicalHardwareRev": "", @@ -17294,7 +17294,7 @@ }, { "entPhysicalIndex": 67437326, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/12", "entPhysicalHardwareRev": "", @@ -17313,7 +17313,7 @@ }, { "entPhysicalIndex": 67437390, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/13", "entPhysicalHardwareRev": "", @@ -17332,7 +17332,7 @@ }, { "entPhysicalIndex": 67437454, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/14", "entPhysicalHardwareRev": "", @@ -17351,7 +17351,7 @@ }, { "entPhysicalIndex": 67437518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/15", "entPhysicalHardwareRev": "", @@ -17370,7 +17370,7 @@ }, { "entPhysicalIndex": 67437582, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/16", "entPhysicalHardwareRev": "", @@ -17389,7 +17389,7 @@ }, { "entPhysicalIndex": 67437646, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/17", "entPhysicalHardwareRev": "", @@ -17408,7 +17408,7 @@ }, { "entPhysicalIndex": 67437710, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/18", "entPhysicalHardwareRev": "", @@ -17427,7 +17427,7 @@ }, { "entPhysicalIndex": 67437774, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/19", "entPhysicalHardwareRev": "", @@ -17446,7 +17446,7 @@ }, { "entPhysicalIndex": 67437838, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/20", "entPhysicalHardwareRev": "", @@ -17465,7 +17465,7 @@ }, { "entPhysicalIndex": 67437902, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/21", "entPhysicalHardwareRev": "", @@ -17484,7 +17484,7 @@ }, { "entPhysicalIndex": 67437966, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/22", "entPhysicalHardwareRev": "", @@ -17503,7 +17503,7 @@ }, { "entPhysicalIndex": 67438030, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/23", "entPhysicalHardwareRev": "", @@ -17522,7 +17522,7 @@ }, { "entPhysicalIndex": 67438094, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/24", "entPhysicalHardwareRev": "", @@ -17541,7 +17541,7 @@ }, { "entPhysicalIndex": 67438158, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/25", "entPhysicalHardwareRev": "", @@ -17560,7 +17560,7 @@ }, { "entPhysicalIndex": 67438222, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/26", "entPhysicalHardwareRev": "", @@ -17579,7 +17579,7 @@ }, { "entPhysicalIndex": 67438286, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/27", "entPhysicalHardwareRev": "", @@ -17598,7 +17598,7 @@ }, { "entPhysicalIndex": 67438350, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/28", "entPhysicalHardwareRev": "", @@ -17617,7 +17617,7 @@ }, { "entPhysicalIndex": 67438414, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/29", "entPhysicalHardwareRev": "", @@ -17636,7 +17636,7 @@ }, { "entPhysicalIndex": 67438478, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/30", "entPhysicalHardwareRev": "", @@ -17655,7 +17655,7 @@ }, { "entPhysicalIndex": 67438542, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/31", "entPhysicalHardwareRev": "", @@ -17674,7 +17674,7 @@ }, { "entPhysicalIndex": 67438606, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/32", "entPhysicalHardwareRev": "", @@ -17693,7 +17693,7 @@ }, { "entPhysicalIndex": 67438670, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/33", "entPhysicalHardwareRev": "", @@ -17712,7 +17712,7 @@ }, { "entPhysicalIndex": 67438734, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/34", "entPhysicalHardwareRev": "", @@ -17731,7 +17731,7 @@ }, { "entPhysicalIndex": 67438798, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/35", "entPhysicalHardwareRev": "", @@ -17750,7 +17750,7 @@ }, { "entPhysicalIndex": 67438862, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/36", "entPhysicalHardwareRev": "", @@ -17769,7 +17769,7 @@ }, { "entPhysicalIndex": 67438926, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/37", "entPhysicalHardwareRev": "", @@ -17788,7 +17788,7 @@ }, { "entPhysicalIndex": 67438990, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/38", "entPhysicalHardwareRev": "", @@ -17807,7 +17807,7 @@ }, { "entPhysicalIndex": 67439054, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/39", "entPhysicalHardwareRev": "", @@ -17826,7 +17826,7 @@ }, { "entPhysicalIndex": 67439118, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/40", "entPhysicalHardwareRev": "", @@ -17845,7 +17845,7 @@ }, { "entPhysicalIndex": 67439182, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/41", "entPhysicalHardwareRev": "", @@ -17864,7 +17864,7 @@ }, { "entPhysicalIndex": 67439246, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/42", "entPhysicalHardwareRev": "", @@ -17883,7 +17883,7 @@ }, { "entPhysicalIndex": 67439310, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/43", "entPhysicalHardwareRev": "", @@ -17902,7 +17902,7 @@ }, { "entPhysicalIndex": 67439374, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/44", "entPhysicalHardwareRev": "", @@ -17921,7 +17921,7 @@ }, { "entPhysicalIndex": 67439438, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/45", "entPhysicalHardwareRev": "", @@ -17940,7 +17940,7 @@ }, { "entPhysicalIndex": 67439502, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/46", "entPhysicalHardwareRev": "", @@ -17959,7 +17959,7 @@ }, { "entPhysicalIndex": 67439566, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/47", "entPhysicalHardwareRev": "", @@ -17978,7 +17978,7 @@ }, { "entPhysicalIndex": 67439630, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/48", "entPhysicalHardwareRev": "", @@ -18035,7 +18035,7 @@ }, { "entPhysicalIndex": 67469518, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -18073,7 +18073,7 @@ }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": "", @@ -18082,7 +18082,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18092,7 +18092,7 @@ }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": "", @@ -18101,7 +18101,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18111,7 +18111,7 @@ }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": "", @@ -18120,7 +18120,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18130,7 +18130,7 @@ }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": "", @@ -18139,7 +18139,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18149,7 +18149,7 @@ }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": "", @@ -18158,7 +18158,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18168,7 +18168,7 @@ }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": "", @@ -18177,7 +18177,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18187,7 +18187,7 @@ }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": "", @@ -18196,7 +18196,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18206,7 +18206,7 @@ }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": "", @@ -18215,7 +18215,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, diff --git a/tests/data/vrp_ac6605-26.json b/tests/data/vrp_ac6605-26.json index 87e1cad19a..de84e3e41b 100644 --- a/tests/data/vrp_ac6605-26.json +++ b/tests/data/vrp_ac6605-26.json @@ -7566,7 +7566,7 @@ "entPhysical": [ { "entPhysicalIndex": 3, - "entPhysicalDescr": "", + "entPhysicalDescr": "acme-pm7-wlc-001", "entPhysicalClass": "chassis", "entPhysicalName": "AC6605-26-PWR", "entPhysicalHardwareRev": "", @@ -7575,7 +7575,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.692225", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, @@ -7585,7 +7585,7 @@ }, { "entPhysicalIndex": 5, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -7604,7 +7604,7 @@ }, { "entPhysicalIndex": 9, - "entPhysicalDescr": "", + "entPhysicalDescr": "SRU Board", "entPhysicalClass": "module", "entPhysicalName": "SRU Board 0", "entPhysicalHardwareRev": "H852V26S VER.B", @@ -7623,7 +7623,7 @@ }, { "entPhysicalIndex": 14, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/1", "entPhysicalHardwareRev": "", @@ -7632,7 +7632,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7642,7 +7642,7 @@ }, { "entPhysicalIndex": 78, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -7651,7 +7651,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7661,7 +7661,7 @@ }, { "entPhysicalIndex": 142, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -7670,7 +7670,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7680,7 +7680,7 @@ }, { "entPhysicalIndex": 206, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/4", "entPhysicalHardwareRev": "", @@ -7689,7 +7689,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7699,7 +7699,7 @@ }, { "entPhysicalIndex": 270, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/5", "entPhysicalHardwareRev": "", @@ -7708,7 +7708,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7718,7 +7718,7 @@ }, { "entPhysicalIndex": 334, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/6", "entPhysicalHardwareRev": "", @@ -7727,7 +7727,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7737,7 +7737,7 @@ }, { "entPhysicalIndex": 398, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/7", "entPhysicalHardwareRev": "", @@ -7746,7 +7746,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7756,7 +7756,7 @@ }, { "entPhysicalIndex": 462, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/8", "entPhysicalHardwareRev": "", @@ -7765,7 +7765,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7775,7 +7775,7 @@ }, { "entPhysicalIndex": 526, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/9", "entPhysicalHardwareRev": "", @@ -7784,7 +7784,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7794,7 +7794,7 @@ }, { "entPhysicalIndex": 590, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/10", "entPhysicalHardwareRev": "", @@ -7803,7 +7803,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7813,7 +7813,7 @@ }, { "entPhysicalIndex": 654, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/11", "entPhysicalHardwareRev": "", @@ -7822,7 +7822,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7832,7 +7832,7 @@ }, { "entPhysicalIndex": 718, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/12", "entPhysicalHardwareRev": "", @@ -7841,7 +7841,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7851,7 +7851,7 @@ }, { "entPhysicalIndex": 782, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/13", "entPhysicalHardwareRev": "", @@ -7860,7 +7860,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7870,7 +7870,7 @@ }, { "entPhysicalIndex": 846, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/14", "entPhysicalHardwareRev": "", @@ -7879,7 +7879,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7889,7 +7889,7 @@ }, { "entPhysicalIndex": 910, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/15", "entPhysicalHardwareRev": "", @@ -7898,7 +7898,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7908,7 +7908,7 @@ }, { "entPhysicalIndex": 974, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/16", "entPhysicalHardwareRev": "", @@ -7917,7 +7917,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7927,7 +7927,7 @@ }, { "entPhysicalIndex": 1038, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/17", "entPhysicalHardwareRev": "", @@ -7936,7 +7936,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7946,7 +7946,7 @@ }, { "entPhysicalIndex": 1102, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/18", "entPhysicalHardwareRev": "", @@ -7955,7 +7955,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7965,7 +7965,7 @@ }, { "entPhysicalIndex": 1166, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/19", "entPhysicalHardwareRev": "", @@ -7974,7 +7974,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -7984,7 +7984,7 @@ }, { "entPhysicalIndex": 1230, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/20", "entPhysicalHardwareRev": "", @@ -7993,7 +7993,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8003,7 +8003,7 @@ }, { "entPhysicalIndex": 1294, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/21", "entPhysicalHardwareRev": "", @@ -8012,7 +8012,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667657", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8022,7 +8022,7 @@ }, { "entPhysicalIndex": 1358, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/22", "entPhysicalHardwareRev": "", @@ -8031,7 +8031,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667657", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8041,7 +8041,7 @@ }, { "entPhysicalIndex": 1422, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/23", "entPhysicalHardwareRev": "", @@ -8050,7 +8050,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667657", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8060,7 +8060,7 @@ }, { "entPhysicalIndex": 1486, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/24", "entPhysicalHardwareRev": "", @@ -8069,7 +8069,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667657", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8079,7 +8079,7 @@ }, { "entPhysicalIndex": 1550, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/1", "entPhysicalHardwareRev": "", @@ -8088,7 +8088,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8098,7 +8098,7 @@ }, { "entPhysicalIndex": 1614, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "XGigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -8107,7 +8107,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8117,7 +8117,7 @@ }, { "entPhysicalIndex": 1678, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": "", @@ -8126,7 +8126,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8136,7 +8136,7 @@ }, { "entPhysicalIndex": 65548, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -8155,7 +8155,7 @@ }, { "entPhysicalIndex": 81932, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -8174,7 +8174,7 @@ }, { "entPhysicalIndex": 81933, - "entPhysicalDescr": "", + "entPhysicalDescr": "PowerSupply", "entPhysicalClass": "powerSupply", "entPhysicalName": "PWR Card 0/5", "entPhysicalHardwareRev": "", diff --git a/tests/data/vrp_ar169sfp.json b/tests/data/vrp_ar169sfp.json index 569e4cbcaf..a02aaf0e41 100644 --- a/tests/data/vrp_ar169sfp.json +++ b/tests/data/vrp_ar169sfp.json @@ -3528,7 +3528,7 @@ "entPhysical": [ { "entPhysicalIndex": 3, - "entPhysicalDescr": "", + "entPhysicalDescr": "acme-lsn-r-002", "entPhysicalClass": "chassis", "entPhysicalName": "AR169F", "entPhysicalHardwareRev": "", @@ -3537,7 +3537,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.667717", "entPhysicalSerialNum": "21500101573GK1000299", "entPhysicalContainedIn": 0, @@ -3547,7 +3547,7 @@ }, { "entPhysicalIndex": 5, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board", "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -3585,7 +3585,7 @@ }, { "entPhysicalIndex": 14, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/0", "entPhysicalHardwareRev": "", @@ -3594,7 +3594,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3604,7 +3604,7 @@ }, { "entPhysicalIndex": 78, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/1", "entPhysicalHardwareRev": "", @@ -3613,7 +3613,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3623,7 +3623,7 @@ }, { "entPhysicalIndex": 142, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/2", "entPhysicalHardwareRev": "", @@ -3632,7 +3632,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3642,7 +3642,7 @@ }, { "entPhysicalIndex": 206, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/3", "entPhysicalHardwareRev": "", @@ -3651,7 +3651,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667652", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3661,7 +3661,7 @@ }, { "entPhysicalIndex": 270, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/4", "entPhysicalHardwareRev": "", @@ -3670,7 +3670,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667656", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3680,7 +3680,7 @@ }, { "entPhysicalIndex": 334, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/5", "entPhysicalHardwareRev": "", @@ -3689,7 +3689,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3699,7 +3699,7 @@ }, { "entPhysicalIndex": 398, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "Cellular0/0/0", "entPhysicalHardwareRev": "", @@ -3708,7 +3708,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667670", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -3718,7 +3718,7 @@ }, { "entPhysicalIndex": 462, - "entPhysicalDescr": "", + "entPhysicalDescr": "Port", "entPhysicalClass": "port", "entPhysicalName": "Ethernet0/0/0", "entPhysicalHardwareRev": "", @@ -3727,7 +3727,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.667666", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, diff --git a/tests/data/vrp_ce12804-entity.json b/tests/data/vrp_ce12804-entity.json index 9ff610bcee..568de06d0f 100644 --- a/tests/data/vrp_ce12804-entity.json +++ b/tests/data/vrp_ce12804-entity.json @@ -44,7 +44,7 @@ }, { "entPhysicalIndex": 16842752, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 1/1", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 1/1", "entPhysicalHardwareRev": "", @@ -538,7 +538,7 @@ }, { "entPhysicalIndex": 16908288, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 1/2", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 1/2", "entPhysicalHardwareRev": "", @@ -557,7 +557,7 @@ }, { "entPhysicalIndex": 16973824, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 1/3", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 1/3", "entPhysicalHardwareRev": "", @@ -576,7 +576,7 @@ }, { "entPhysicalIndex": 17039360, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 1/4", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 1/4", "entPhysicalHardwareRev": "", @@ -1070,7 +1070,7 @@ }, { "entPhysicalIndex": 17104896, - "entPhysicalDescr": "", + "entPhysicalDescr": "MPU slot 1/5", "entPhysicalClass": "container", "entPhysicalName": "MPU slot 1/5", "entPhysicalHardwareRev": "", @@ -1146,7 +1146,7 @@ }, { "entPhysicalIndex": 17113345, - "entPhysicalDescr": "", + "entPhysicalDescr": "MEth1/5/0/0", "entPhysicalClass": "port", "entPhysicalName": "MEth1/5/0/0", "entPhysicalHardwareRev": "", @@ -1165,7 +1165,7 @@ }, { "entPhysicalIndex": 17170432, - "entPhysicalDescr": "", + "entPhysicalDescr": "MPU slot 1/6", "entPhysicalClass": "container", "entPhysicalName": "MPU slot 1/6", "entPhysicalHardwareRev": "", @@ -1241,7 +1241,7 @@ }, { "entPhysicalIndex": 17178881, - "entPhysicalDescr": "", + "entPhysicalDescr": "MEth1/6/0/0", "entPhysicalClass": "port", "entPhysicalName": "MEth1/6/0/0", "entPhysicalHardwareRev": "", @@ -1279,7 +1279,7 @@ }, { "entPhysicalIndex": 17235970, - "entPhysicalDescr": "", + "entPhysicalDescr": "CMU slot 1/7", "entPhysicalClass": "container", "entPhysicalName": "CMU slot 1/7", "entPhysicalHardwareRev": "", @@ -1317,7 +1317,7 @@ }, { "entPhysicalIndex": 17301506, - "entPhysicalDescr": "", + "entPhysicalDescr": "CMU slot 1/8", "entPhysicalClass": "container", "entPhysicalName": "CMU slot 1/8", "entPhysicalHardwareRev": "", @@ -1336,7 +1336,7 @@ }, { "entPhysicalIndex": 17367040, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 1/9", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 1/9", "entPhysicalHardwareRev": "", @@ -1374,7 +1374,7 @@ }, { "entPhysicalIndex": 17432576, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 1/10", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 1/10", "entPhysicalHardwareRev": "", @@ -1412,7 +1412,7 @@ }, { "entPhysicalIndex": 17498112, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 1/11", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 1/11", "entPhysicalHardwareRev": "", @@ -1450,7 +1450,7 @@ }, { "entPhysicalIndex": 17563648, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 1/12", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 1/12", "entPhysicalHardwareRev": "", @@ -1488,7 +1488,7 @@ }, { "entPhysicalIndex": 17629184, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 1/13", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 1/13", "entPhysicalHardwareRev": "", @@ -1526,7 +1526,7 @@ }, { "entPhysicalIndex": 17694720, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 1/14", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 1/14", "entPhysicalHardwareRev": "", @@ -1545,7 +1545,7 @@ }, { "entPhysicalIndex": 17760256, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/1", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/1", "entPhysicalHardwareRev": "", @@ -1583,7 +1583,7 @@ }, { "entPhysicalIndex": 17825792, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/2", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/2", "entPhysicalHardwareRev": "", @@ -1621,7 +1621,7 @@ }, { "entPhysicalIndex": 17891328, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/3", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/3", "entPhysicalHardwareRev": "", @@ -1659,7 +1659,7 @@ }, { "entPhysicalIndex": 17956864, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/4", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/4", "entPhysicalHardwareRev": "", @@ -1697,7 +1697,7 @@ }, { "entPhysicalIndex": 18022400, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/5", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/5", "entPhysicalHardwareRev": "", @@ -1735,7 +1735,7 @@ }, { "entPhysicalIndex": 18087936, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/6", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/6", "entPhysicalHardwareRev": "", @@ -1773,7 +1773,7 @@ }, { "entPhysicalIndex": 18153472, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/7", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/7", "entPhysicalHardwareRev": "", @@ -1811,7 +1811,7 @@ }, { "entPhysicalIndex": 18219008, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/8", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/8", "entPhysicalHardwareRev": "", @@ -1849,7 +1849,7 @@ }, { "entPhysicalIndex": 18284544, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 1/9", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 1/9", "entPhysicalHardwareRev": "", @@ -1887,7 +1887,7 @@ }, { "entPhysicalIndex": 18350080, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 1/1", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 1/1", "entPhysicalHardwareRev": "", @@ -1925,7 +1925,7 @@ }, { "entPhysicalIndex": 18415616, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 1/2", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 1/2", "entPhysicalHardwareRev": "", @@ -1963,7 +1963,7 @@ }, { "entPhysicalIndex": 18481152, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 1/3", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 1/3", "entPhysicalHardwareRev": "", @@ -1982,7 +1982,7 @@ }, { "entPhysicalIndex": 18546688, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 1/4", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 1/4", "entPhysicalHardwareRev": "", @@ -2020,7 +2020,7 @@ }, { "entPhysicalIndex": 33619968, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 2/1", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 2/1", "entPhysicalHardwareRev": "", @@ -2514,7 +2514,7 @@ }, { "entPhysicalIndex": 33685504, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 2/2", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 2/2", "entPhysicalHardwareRev": "", @@ -2533,7 +2533,7 @@ }, { "entPhysicalIndex": 33751040, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 2/3", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 2/3", "entPhysicalHardwareRev": "", @@ -2552,7 +2552,7 @@ }, { "entPhysicalIndex": 33816576, - "entPhysicalDescr": "", + "entPhysicalDescr": "LPU slot 2/4", "entPhysicalClass": "container", "entPhysicalName": "LPU slot 2/4", "entPhysicalHardwareRev": "", @@ -3046,7 +3046,7 @@ }, { "entPhysicalIndex": 33882112, - "entPhysicalDescr": "", + "entPhysicalDescr": "MPU slot 2/5", "entPhysicalClass": "container", "entPhysicalName": "MPU slot 2/5", "entPhysicalHardwareRev": "", @@ -3122,7 +3122,7 @@ }, { "entPhysicalIndex": 33890561, - "entPhysicalDescr": "", + "entPhysicalDescr": "MEth2/5/0/0", "entPhysicalClass": "port", "entPhysicalName": "MEth2/5/0/0", "entPhysicalHardwareRev": "", @@ -3141,7 +3141,7 @@ }, { "entPhysicalIndex": 33947648, - "entPhysicalDescr": "", + "entPhysicalDescr": "MPU slot 2/6", "entPhysicalClass": "container", "entPhysicalName": "MPU slot 2/6", "entPhysicalHardwareRev": "", @@ -3217,7 +3217,7 @@ }, { "entPhysicalIndex": 33956097, - "entPhysicalDescr": "", + "entPhysicalDescr": "MEth0/0/0/0", "entPhysicalClass": "port", "entPhysicalName": "MEth0/0/0/0", "entPhysicalHardwareRev": "", @@ -3255,7 +3255,7 @@ }, { "entPhysicalIndex": 34013186, - "entPhysicalDescr": "", + "entPhysicalDescr": "CMU slot 2/7", "entPhysicalClass": "container", "entPhysicalName": "CMU slot 2/7", "entPhysicalHardwareRev": "", @@ -3293,7 +3293,7 @@ }, { "entPhysicalIndex": 34078722, - "entPhysicalDescr": "", + "entPhysicalDescr": "CMU slot 2/8", "entPhysicalClass": "container", "entPhysicalName": "CMU slot 2/8", "entPhysicalHardwareRev": "", @@ -3312,7 +3312,7 @@ }, { "entPhysicalIndex": 34144256, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 2/9", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 2/9", "entPhysicalHardwareRev": "", @@ -3350,7 +3350,7 @@ }, { "entPhysicalIndex": 34209792, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 2/10", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 2/10", "entPhysicalHardwareRev": "", @@ -3388,7 +3388,7 @@ }, { "entPhysicalIndex": 34275328, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 2/11", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 2/11", "entPhysicalHardwareRev": "", @@ -3426,7 +3426,7 @@ }, { "entPhysicalIndex": 34340864, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 2/12", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 2/12", "entPhysicalHardwareRev": "", @@ -3464,7 +3464,7 @@ }, { "entPhysicalIndex": 34406400, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 2/13", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 2/13", "entPhysicalHardwareRev": "", @@ -3502,7 +3502,7 @@ }, { "entPhysicalIndex": 34471936, - "entPhysicalDescr": "", + "entPhysicalDescr": "SFU slot 2/14", "entPhysicalClass": "container", "entPhysicalName": "SFU slot 2/14", "entPhysicalHardwareRev": "", @@ -3521,7 +3521,7 @@ }, { "entPhysicalIndex": 34537472, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/1", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/1", "entPhysicalHardwareRev": "", @@ -3559,7 +3559,7 @@ }, { "entPhysicalIndex": 34603008, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/2", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/2", "entPhysicalHardwareRev": "", @@ -3597,7 +3597,7 @@ }, { "entPhysicalIndex": 34668544, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/3", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/3", "entPhysicalHardwareRev": "", @@ -3635,7 +3635,7 @@ }, { "entPhysicalIndex": 34734080, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/4", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/4", "entPhysicalHardwareRev": "", @@ -3673,7 +3673,7 @@ }, { "entPhysicalIndex": 34799616, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/5", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/5", "entPhysicalHardwareRev": "", @@ -3711,7 +3711,7 @@ }, { "entPhysicalIndex": 34865152, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/6", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/6", "entPhysicalHardwareRev": "", @@ -3749,7 +3749,7 @@ }, { "entPhysicalIndex": 34930688, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/7", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/7", "entPhysicalHardwareRev": "", @@ -3787,7 +3787,7 @@ }, { "entPhysicalIndex": 34996224, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/8", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/8", "entPhysicalHardwareRev": "", @@ -3825,7 +3825,7 @@ }, { "entPhysicalIndex": 35061760, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 2/9", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 2/9", "entPhysicalHardwareRev": "", @@ -3863,7 +3863,7 @@ }, { "entPhysicalIndex": 35127296, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 2/1", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 2/1", "entPhysicalHardwareRev": "", @@ -3901,7 +3901,7 @@ }, { "entPhysicalIndex": 35192832, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 2/2", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 2/2", "entPhysicalHardwareRev": "", @@ -3939,7 +3939,7 @@ }, { "entPhysicalIndex": 35258368, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 2/3", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 2/3", "entPhysicalHardwareRev": "", @@ -3958,7 +3958,7 @@ }, { "entPhysicalIndex": 35323904, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 2/4", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 2/4", "entPhysicalHardwareRev": "", diff --git a/tests/data/vrp_ne.json b/tests/data/vrp_ne.json index 61917f322c..02cb0aeeb8 100644 --- a/tests/data/vrp_ne.json +++ b/tests/data/vrp_ne.json @@ -6861,7 +6861,7 @@ "entPhysical": [ { "entPhysicalIndex": 16777216, - "entPhysicalDescr": null, + "entPhysicalDescr": "NE40E-M2K-B frame", "entPhysicalClass": "chassis", "entPhysicalName": "NE40E-M2K-B frame", "entPhysicalHardwareRev": "", @@ -6870,7 +6870,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.11.580941", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, @@ -6880,7 +6880,7 @@ }, { "entPhysicalIndex": 16973824, - "entPhysicalDescr": null, + "entPhysicalDescr": "IPU slot 3", "entPhysicalClass": "container", "entPhysicalName": "IPU slot 3", "entPhysicalHardwareRev": "", @@ -6889,7 +6889,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -6899,16 +6899,16 @@ }, { "entPhysicalIndex": 16973825, - "entPhysicalDescr": null, + "entPhysicalDescr": "Integration Processing Unit", "entPhysicalClass": "module", "entPhysicalName": "IPU 3", "entPhysicalHardwareRev": "IPU REV B", - "entPhysicalFirmwareRev": "CPU: EPLD ver 004, FPGA ver 009, FPGA2 ver 008 NPU: FPGA ver 01", + "entPhysicalFirmwareRev": "CPU: EPLD ver 004, FPGA ver 009, FPGA2 ver 008 NPU: FPGA ver 018, FPGA2 ver 007", "entPhysicalSoftwareRev": "BootROM ver 04.73", "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "CR5B0BKP0393", "entPhysicalVendorType": "enterprises.2011.20021210.15.675812", "entPhysicalSerialNum": "2102352DQV10L3000003", "entPhysicalContainedIn": 16973824, @@ -6918,7 +6918,7 @@ }, { "entPhysicalIndex": 16973826, - "entPhysicalDescr": null, + "entPhysicalDescr": "4-Port 100GBase-QSFP28 + 10-Port 10GBase-X-SFP+ + 10-Port 1000Base-X-SFP", "entPhysicalClass": "module", "entPhysicalName": "CX68E4NLAXF0 0/3", "entPhysicalHardwareRev": "", @@ -6927,7 +6927,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "CX68E4NLAXF0", "entPhysicalVendorType": "enterprises.2011.20021210.13.561830", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -6937,7 +6937,7 @@ }, { "entPhysicalIndex": 16974080, - "entPhysicalDescr": null, + "entPhysicalDescr": "CFCARD slot 3/0", "entPhysicalClass": "container", "entPhysicalName": "CFCARD slot 3/0", "entPhysicalHardwareRev": "", @@ -6946,7 +6946,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -6956,7 +6956,7 @@ }, { "entPhysicalIndex": 16978176, - "entPhysicalDescr": null, + "entPhysicalDescr": "CFCARD 3/0", "entPhysicalClass": "module", "entPhysicalName": "CFCARD 3/0", "entPhysicalHardwareRev": "", @@ -6965,7 +6965,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.13.561151", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16974080, @@ -6975,7 +6975,7 @@ }, { "entPhysicalIndex": 16978177, - "entPhysicalDescr": null, + "entPhysicalDescr": "40Gb/s-850nm-MPO-100m(OM3 50um)", "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/0", "entPhysicalHardwareRev": "", @@ -6984,7 +6984,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "G1909057256", "entPhysicalContainedIn": 16973826, @@ -6994,7 +6994,7 @@ }, { "entPhysicalIndex": 16978178, - "entPhysicalDescr": null, + "entPhysicalDescr": "40Gb/s-850nm-MPO-100m(OM3 50um)", "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/1", "entPhysicalHardwareRev": "", @@ -7003,7 +7003,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "G1909057257", "entPhysicalContainedIn": 16973826, @@ -7013,7 +7013,7 @@ }, { "entPhysicalIndex": 16978179, - "entPhysicalDescr": null, + "entPhysicalDescr": "40GE0/3/2", "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/2", "entPhysicalHardwareRev": "", @@ -7022,7 +7022,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7032,7 +7032,7 @@ }, { "entPhysicalIndex": 16978180, - "entPhysicalDescr": null, + "entPhysicalDescr": "40GE0/3/3", "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/3", "entPhysicalHardwareRev": "", @@ -7041,7 +7041,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7051,7 +7051,7 @@ }, { "entPhysicalIndex": 16978181, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/4", "entPhysicalHardwareRev": "", @@ -7060,7 +7060,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7070,7 +7070,7 @@ }, { "entPhysicalIndex": 16978182, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/5", "entPhysicalHardwareRev": "", @@ -7079,7 +7079,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7089,7 +7089,7 @@ }, { "entPhysicalIndex": 16978183, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/6", "entPhysicalHardwareRev": "", @@ -7098,7 +7098,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7108,7 +7108,7 @@ }, { "entPhysicalIndex": 16978184, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1555nm-LC-40km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/7", "entPhysicalHardwareRev": "", @@ -7117,7 +7117,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "S1901513301", "entPhysicalContainedIn": 16973826, @@ -7127,7 +7127,7 @@ }, { "entPhysicalIndex": 16978185, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1554nm-LC-40km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/8", "entPhysicalHardwareRev": "", @@ -7136,7 +7136,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "S1901513801", "entPhysicalContainedIn": 16973826, @@ -7146,7 +7146,7 @@ }, { "entPhysicalIndex": 16978186, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1556nm-LC-40km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/9", "entPhysicalHardwareRev": "", @@ -7155,7 +7155,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "S1901512801", "entPhysicalContainedIn": 16973826, @@ -7165,7 +7165,7 @@ }, { "entPhysicalIndex": 16978187, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/10", "entPhysicalHardwareRev": "", @@ -7174,7 +7174,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7184,7 +7184,7 @@ }, { "entPhysicalIndex": 16978188, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/11", "entPhysicalHardwareRev": "", @@ -7193,7 +7193,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7203,7 +7203,7 @@ }, { "entPhysicalIndex": 16978189, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/12", "entPhysicalHardwareRev": "", @@ -7212,7 +7212,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7222,7 +7222,7 @@ }, { "entPhysicalIndex": 16978190, - "entPhysicalDescr": null, + "entPhysicalDescr": "10300Mb/s-1310nm-LC-10km(0.009mm)", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/13", "entPhysicalHardwareRev": "", @@ -7231,7 +7231,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7241,7 +7241,7 @@ }, { "entPhysicalIndex": 16978191, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/14", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/14", "entPhysicalHardwareRev": "", @@ -7250,7 +7250,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7260,7 +7260,7 @@ }, { "entPhysicalIndex": 16978192, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/15", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/15", "entPhysicalHardwareRev": "", @@ -7269,7 +7269,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7279,7 +7279,7 @@ }, { "entPhysicalIndex": 16978193, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/16", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/16", "entPhysicalHardwareRev": "", @@ -7288,7 +7288,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7298,7 +7298,7 @@ }, { "entPhysicalIndex": 16978194, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/17", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/17", "entPhysicalHardwareRev": "", @@ -7307,7 +7307,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7317,7 +7317,7 @@ }, { "entPhysicalIndex": 16978195, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/18", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/18", "entPhysicalHardwareRev": "", @@ -7326,7 +7326,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7336,7 +7336,7 @@ }, { "entPhysicalIndex": 16978196, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/19", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/19", "entPhysicalHardwareRev": "", @@ -7345,7 +7345,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7355,7 +7355,7 @@ }, { "entPhysicalIndex": 16978197, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/20", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/20", "entPhysicalHardwareRev": "", @@ -7364,7 +7364,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7374,7 +7374,7 @@ }, { "entPhysicalIndex": 16978198, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/21", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/21", "entPhysicalHardwareRev": "", @@ -7383,7 +7383,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7393,7 +7393,7 @@ }, { "entPhysicalIndex": 16978199, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/22", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/22", "entPhysicalHardwareRev": "", @@ -7402,7 +7402,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7412,7 +7412,7 @@ }, { "entPhysicalIndex": 16978200, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/3/23", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/23", "entPhysicalHardwareRev": "", @@ -7421,7 +7421,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7431,7 +7431,7 @@ }, { "entPhysicalIndex": 16978689, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet3/2/0", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet3/2/0", "entPhysicalHardwareRev": "", @@ -7440,7 +7440,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.574", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -7450,7 +7450,7 @@ }, { "entPhysicalIndex": 16978690, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet3/2/1", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet3/2/1", "entPhysicalHardwareRev": "", @@ -7459,7 +7459,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.574", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -7469,7 +7469,7 @@ }, { "entPhysicalIndex": 16982273, - "entPhysicalDescr": null, + "entPhysicalDescr": "GigabitEthernet0/0/0", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/0", "entPhysicalHardwareRev": "", @@ -7478,17 +7478,17 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", - "ifIndex": 0 + "ifIndex": 4 }, { "entPhysicalIndex": 17039360, - "entPhysicalDescr": null, + "entPhysicalDescr": "POWER slot 4", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 4", "entPhysicalHardwareRev": "", @@ -7497,7 +7497,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7507,7 +7507,7 @@ }, { "entPhysicalIndex": 17039361, - "entPhysicalDescr": null, + "entPhysicalDescr": "Function Module,PAC700S53-CL,PAC700S53-CL,AC Power Supply Uint 700W", "entPhysicalClass": "powerSupply", "entPhysicalName": "POWER 4", "entPhysicalHardwareRev": "PSU700A REV E", @@ -7516,7 +7516,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.15.564801", "entPhysicalSerialNum": "2102312HGXBTL2000042", "entPhysicalContainedIn": 17039360, @@ -7526,7 +7526,7 @@ }, { "entPhysicalIndex": 17104896, - "entPhysicalDescr": null, + "entPhysicalDescr": "POWER slot 5", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 5", "entPhysicalHardwareRev": "", @@ -7535,7 +7535,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7545,7 +7545,7 @@ }, { "entPhysicalIndex": 17104897, - "entPhysicalDescr": null, + "entPhysicalDescr": "Function Module,PAC700S53-CL,PAC700S53-CL,AC Power Supply Uint 700W", "entPhysicalClass": "powerSupply", "entPhysicalName": "POWER 5", "entPhysicalHardwareRev": "PSU700A REV E", @@ -7554,7 +7554,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.15.564801", "entPhysicalSerialNum": "2102312HGXBTL2000041", "entPhysicalContainedIn": 17104896, @@ -7564,7 +7564,7 @@ }, { "entPhysicalIndex": 17170432, - "entPhysicalDescr": null, + "entPhysicalDescr": "FAN slot 6", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 6", "entPhysicalHardwareRev": "", @@ -7573,7 +7573,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7583,7 +7583,7 @@ }, { "entPhysicalIndex": 17170433, - "entPhysicalDescr": null, + "entPhysicalDescr": "Function Module,NE40E,CR5M0M2HBX70,Fan Box", "entPhysicalClass": "fan", "entPhysicalName": "FAN 6", "entPhysicalHardwareRev": "", @@ -7592,7 +7592,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.15.564799", "entPhysicalSerialNum": "2102311PBL10L3000057", "entPhysicalContainedIn": 17170432, @@ -7602,7 +7602,7 @@ }, { "entPhysicalIndex": 17235968, - "entPhysicalDescr": null, + "entPhysicalDescr": "CLK slot 7", "entPhysicalClass": "container", "entPhysicalName": "CLK slot 7", "entPhysicalHardwareRev": "", @@ -7611,7 +7611,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7621,7 +7621,7 @@ }, { "entPhysicalIndex": 17235969, - "entPhysicalDescr": null, + "entPhysicalDescr": "CLK 7", "entPhysicalClass": "module", "entPhysicalName": "CLK 7", "entPhysicalHardwareRev": "", @@ -7630,7 +7630,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": null, + "entPhysicalModelName": "", "entPhysicalVendorType": "enterprises.2011.20021210.12.561156", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 17235968, diff --git a/tests/data/vrp_ne8000-m8.json b/tests/data/vrp_ne8000-m8.json index 3d985baf78..d57be94c9f 100644 --- a/tests/data/vrp_ne8000-m8.json +++ b/tests/data/vrp_ne8000-m8.json @@ -13353,7 +13353,7 @@ }, { "entPhysicalIndex": 17240323, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/7/2", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/7/2", "entPhysicalHardwareRev": "", @@ -13391,7 +13391,7 @@ }, { "entPhysicalIndex": 17240325, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/7/4", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/7/4", "entPhysicalHardwareRev": "", @@ -13410,7 +13410,7 @@ }, { "entPhysicalIndex": 17240326, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/7/5", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/7/5", "entPhysicalHardwareRev": "", @@ -13429,7 +13429,7 @@ }, { "entPhysicalIndex": 17240327, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/7/6", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/7/6", "entPhysicalHardwareRev": "", @@ -13448,7 +13448,7 @@ }, { "entPhysicalIndex": 17240328, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/7/7", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/7/7", "entPhysicalHardwareRev": "", @@ -13562,7 +13562,7 @@ }, { "entPhysicalIndex": 17305859, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/8/2", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/8/2", "entPhysicalHardwareRev": "", @@ -13581,7 +13581,7 @@ }, { "entPhysicalIndex": 17305860, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/8/3", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/8/3", "entPhysicalHardwareRev": "", @@ -13600,7 +13600,7 @@ }, { "entPhysicalIndex": 17305861, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/8/4", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/8/4", "entPhysicalHardwareRev": "", @@ -13619,7 +13619,7 @@ }, { "entPhysicalIndex": 17305862, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/8/5", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/8/5", "entPhysicalHardwareRev": "", @@ -13638,7 +13638,7 @@ }, { "entPhysicalIndex": 17305863, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/8/6", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/8/6", "entPhysicalHardwareRev": "", @@ -13676,7 +13676,7 @@ }, { "entPhysicalIndex": 17305865, - "entPhysicalDescr": "", + "entPhysicalDescr": "GigabitEthernet0/8/8", "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/8/8", "entPhysicalHardwareRev": "", @@ -13714,7 +13714,7 @@ }, { "entPhysicalIndex": 17367040, - "entPhysicalDescr": "", + "entPhysicalDescr": "IPU slot 9", "entPhysicalClass": "container", "entPhysicalName": "IPU slot 9", "entPhysicalHardwareRev": "", @@ -13733,7 +13733,7 @@ }, { "entPhysicalIndex": 17432576, - "entPhysicalDescr": "", + "entPhysicalDescr": "IPU slot 10", "entPhysicalClass": "container", "entPhysicalName": "IPU slot 10", "entPhysicalHardwareRev": "", @@ -13771,7 +13771,7 @@ }, { "entPhysicalIndex": 17432832, - "entPhysicalDescr": "", + "entPhysicalDescr": "CFCARD slot 10/0", "entPhysicalClass": "container", "entPhysicalName": "CFCARD slot 10/0", "entPhysicalHardwareRev": "", @@ -13790,7 +13790,7 @@ }, { "entPhysicalIndex": 17436928, - "entPhysicalDescr": "", + "entPhysicalDescr": "CFCARD 10/0", "entPhysicalClass": "module", "entPhysicalName": "CFCARD 10/0", "entPhysicalHardwareRev": "", @@ -13809,7 +13809,7 @@ }, { "entPhysicalIndex": 17441025, - "entPhysicalDescr": "", + "entPhysicalDescr": "Ethernet0/0/0", "entPhysicalClass": "port", "entPhysicalName": "Ethernet0/0/0", "entPhysicalHardwareRev": "", @@ -13828,7 +13828,7 @@ }, { "entPhysicalIndex": 17498112, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 11", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 11", "entPhysicalHardwareRev": "", @@ -13866,7 +13866,7 @@ }, { "entPhysicalIndex": 17563648, - "entPhysicalDescr": "", + "entPhysicalDescr": "POWER slot 12", "entPhysicalClass": "container", "entPhysicalName": "POWER slot 12", "entPhysicalHardwareRev": "", @@ -13904,7 +13904,7 @@ }, { "entPhysicalIndex": 17629184, - "entPhysicalDescr": "", + "entPhysicalDescr": "FAN slot 13", "entPhysicalClass": "container", "entPhysicalName": "FAN slot 13", "entPhysicalHardwareRev": "", @@ -13942,7 +13942,7 @@ }, { "entPhysicalIndex": 17694720, - "entPhysicalDescr": "", + "entPhysicalDescr": "CLK slot 14", "entPhysicalClass": "container", "entPhysicalName": "CLK slot 14", "entPhysicalHardwareRev": "", @@ -13961,7 +13961,7 @@ }, { "entPhysicalIndex": 17760256, - "entPhysicalDescr": "", + "entPhysicalDescr": "CLK slot 15", "entPhysicalClass": "container", "entPhysicalName": "CLK slot 15", "entPhysicalHardwareRev": "", @@ -13980,7 +13980,7 @@ }, { "entPhysicalIndex": 17760257, - "entPhysicalDescr": "", + "entPhysicalDescr": "CLK 15", "entPhysicalClass": "module", "entPhysicalName": "CLK 15", "entPhysicalHardwareRev": "", diff --git a/tests/data/vrp_power.json b/tests/data/vrp_power.json index 928802d306..076be8376c 100644 --- a/tests/data/vrp_power.json +++ b/tests/data/vrp_power.json @@ -1463,7 +1463,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": null, + "entPhysicalDescr": "HUAWEI S5720 Routing Switch", "entPhysicalClass": null, "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": null, @@ -1476,13 +1476,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": null, @@ -1495,13 +1495,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": null, @@ -1514,13 +1514,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68157449, - "entPhysicalDescr": null, + "entPhysicalDescr": "MPU Board", "entPhysicalClass": null, "entPhysicalName": "MPU Board 1", "entPhysicalHardwareRev": null, @@ -1533,13 +1533,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68173836, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/1", "entPhysicalHardwareRev": null, @@ -1552,13 +1552,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68173837, - "entPhysicalDescr": null, + "entPhysicalDescr": "ES5D21VST000 Card", "entPhysicalClass": null, "entPhysicalName": "ES5D21VST000 Card 1/1", "entPhysicalHardwareRev": null, @@ -1571,13 +1571,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68190220, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/2", "entPhysicalHardwareRev": null, @@ -1590,13 +1590,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68206604, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/3", "entPhysicalHardwareRev": null, @@ -1609,13 +1609,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68222988, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/4", "entPhysicalHardwareRev": null, @@ -1628,13 +1628,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68239372, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/5", "entPhysicalHardwareRev": null, @@ -1647,13 +1647,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68239373, - "entPhysicalDescr": null, + "entPhysicalDescr": "POWER Card", "entPhysicalClass": null, "entPhysicalName": "POWER Card 1/PWR1", "entPhysicalHardwareRev": null, @@ -1666,13 +1666,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68255756, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/6", "entPhysicalHardwareRev": null, @@ -1685,13 +1685,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68255757, - "entPhysicalDescr": null, + "entPhysicalDescr": "POWER Card", "entPhysicalClass": null, "entPhysicalName": "POWER Card 1/PWR2", "entPhysicalHardwareRev": null, @@ -1704,13 +1704,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68272140, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/7", "entPhysicalHardwareRev": null, @@ -1723,13 +1723,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68272141, - "entPhysicalDescr": null, + "entPhysicalDescr": "FAN Card", "entPhysicalClass": null, "entPhysicalName": "FAN Card 1/FAN1", "entPhysicalHardwareRev": null, @@ -1742,13 +1742,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68288524, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/8", "entPhysicalHardwareRev": null, @@ -1761,13 +1761,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68304908, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/9", "entPhysicalHardwareRev": null, @@ -1780,13 +1780,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68321292, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/10", "entPhysicalHardwareRev": null, @@ -1799,13 +1799,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68337676, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/11", "entPhysicalHardwareRev": null, @@ -1818,13 +1818,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68354060, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/12", "entPhysicalHardwareRev": null, @@ -1837,13 +1837,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68370444, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/13", "entPhysicalHardwareRev": null, @@ -1856,13 +1856,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68386828, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/14", "entPhysicalHardwareRev": null, @@ -1875,13 +1875,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68403212, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/15", "entPhysicalHardwareRev": null, @@ -1894,13 +1894,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68419596, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 1/16", "entPhysicalHardwareRev": null, @@ -1913,13 +1913,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68452430, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": null, @@ -1932,13 +1932,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485198, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/1", "entPhysicalHardwareRev": null, @@ -1951,13 +1951,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485262, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/2", "entPhysicalHardwareRev": null, @@ -1970,13 +1970,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485326, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/3", "entPhysicalHardwareRev": null, @@ -1989,13 +1989,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485390, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/4", "entPhysicalHardwareRev": null, @@ -2008,13 +2008,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485454, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/5", "entPhysicalHardwareRev": null, @@ -2027,13 +2027,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485518, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/6", "entPhysicalHardwareRev": null, @@ -2046,13 +2046,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485582, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/7", "entPhysicalHardwareRev": null, @@ -2065,13 +2065,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485646, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/8", "entPhysicalHardwareRev": null, @@ -2084,13 +2084,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485710, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/9", "entPhysicalHardwareRev": null, @@ -2103,13 +2103,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485774, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/10", "entPhysicalHardwareRev": null, @@ -2122,13 +2122,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485838, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/11", "entPhysicalHardwareRev": null, @@ -2141,13 +2141,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485902, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/12", "entPhysicalHardwareRev": null, @@ -2160,13 +2160,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485966, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/13", "entPhysicalHardwareRev": null, @@ -2179,13 +2179,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486030, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/14", "entPhysicalHardwareRev": null, @@ -2198,13 +2198,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486094, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/15", "entPhysicalHardwareRev": null, @@ -2217,13 +2217,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486158, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/16", "entPhysicalHardwareRev": null, @@ -2236,13 +2236,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486222, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/17", "entPhysicalHardwareRev": null, @@ -2255,13 +2255,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486286, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/18", "entPhysicalHardwareRev": null, @@ -2274,13 +2274,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486350, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/19", "entPhysicalHardwareRev": null, @@ -2293,13 +2293,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486414, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/20", "entPhysicalHardwareRev": null, @@ -2312,13 +2312,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486478, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/21", "entPhysicalHardwareRev": null, @@ -2331,13 +2331,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486542, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/22", "entPhysicalHardwareRev": null, @@ -2350,13 +2350,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486606, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/23", "entPhysicalHardwareRev": null, @@ -2369,13 +2369,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486670, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/24", "entPhysicalHardwareRev": null, @@ -2388,13 +2388,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486734, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/25", "entPhysicalHardwareRev": null, @@ -2407,13 +2407,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486798, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/26", "entPhysicalHardwareRev": null, @@ -2426,13 +2426,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486862, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/27", "entPhysicalHardwareRev": null, @@ -2445,13 +2445,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486926, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/28", "entPhysicalHardwareRev": null, @@ -2464,13 +2464,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486990, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/29", "entPhysicalHardwareRev": null, @@ -2483,13 +2483,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487054, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/30", "entPhysicalHardwareRev": null, @@ -2502,13 +2502,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487118, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/31", "entPhysicalHardwareRev": null, @@ -2521,13 +2521,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487182, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/32", "entPhysicalHardwareRev": null, @@ -2540,13 +2540,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487246, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/33", "entPhysicalHardwareRev": null, @@ -2559,13 +2559,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487310, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/34", "entPhysicalHardwareRev": null, @@ -2578,13 +2578,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487374, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/35", "entPhysicalHardwareRev": null, @@ -2597,13 +2597,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487438, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/36", "entPhysicalHardwareRev": null, @@ -2616,13 +2616,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487502, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/37", "entPhysicalHardwareRev": null, @@ -2635,13 +2635,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487566, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/38", "entPhysicalHardwareRev": null, @@ -2654,13 +2654,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487630, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/39", "entPhysicalHardwareRev": null, @@ -2673,13 +2673,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487694, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/40", "entPhysicalHardwareRev": null, @@ -2692,13 +2692,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487758, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/41", "entPhysicalHardwareRev": null, @@ -2711,13 +2711,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487822, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/42", "entPhysicalHardwareRev": null, @@ -2730,13 +2730,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487886, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/43", "entPhysicalHardwareRev": null, @@ -2749,13 +2749,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487950, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/44", "entPhysicalHardwareRev": null, @@ -2768,13 +2768,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488014, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/45", "entPhysicalHardwareRev": null, @@ -2787,13 +2787,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488078, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/46", "entPhysicalHardwareRev": null, @@ -2806,13 +2806,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488142, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/47", "entPhysicalHardwareRev": null, @@ -2825,13 +2825,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488206, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/48", "entPhysicalHardwareRev": null, @@ -2844,13 +2844,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68517966, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/1", "entPhysicalHardwareRev": null, @@ -2863,13 +2863,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68518030, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/2", "entPhysicalHardwareRev": null, @@ -2882,13 +2882,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68518094, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/3", "entPhysicalHardwareRev": null, @@ -2901,13 +2901,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68518158, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/4", "entPhysicalHardwareRev": null, @@ -2920,13 +2920,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": null, @@ -2939,13 +2939,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69206025, - "entPhysicalDescr": null, + "entPhysicalDescr": "MPU Board", "entPhysicalClass": null, "entPhysicalName": "MPU Board 2", "entPhysicalHardwareRev": null, @@ -2958,13 +2958,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69222412, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/1", "entPhysicalHardwareRev": null, @@ -2977,13 +2977,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69222413, - "entPhysicalDescr": null, + "entPhysicalDescr": "ES5D21VST000 Card", "entPhysicalClass": null, "entPhysicalName": "ES5D21VST000 Card 2/1", "entPhysicalHardwareRev": null, @@ -2996,13 +2996,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69238796, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/2", "entPhysicalHardwareRev": null, @@ -3015,13 +3015,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69255180, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/3", "entPhysicalHardwareRev": null, @@ -3034,13 +3034,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69271564, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/4", "entPhysicalHardwareRev": null, @@ -3053,13 +3053,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69287948, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/5", "entPhysicalHardwareRev": null, @@ -3072,13 +3072,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69287949, - "entPhysicalDescr": null, + "entPhysicalDescr": "POWER Card", "entPhysicalClass": null, "entPhysicalName": "POWER Card 2/PWR1", "entPhysicalHardwareRev": null, @@ -3091,13 +3091,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69304332, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/6", "entPhysicalHardwareRev": null, @@ -3110,13 +3110,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69304333, - "entPhysicalDescr": null, + "entPhysicalDescr": "POWER Card", "entPhysicalClass": null, "entPhysicalName": "POWER Card 2/PWR2", "entPhysicalHardwareRev": null, @@ -3129,13 +3129,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69320716, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/7", "entPhysicalHardwareRev": null, @@ -3148,13 +3148,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69320717, - "entPhysicalDescr": null, + "entPhysicalDescr": "FAN Card", "entPhysicalClass": null, "entPhysicalName": "FAN Card 2/FAN1", "entPhysicalHardwareRev": null, @@ -3167,13 +3167,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69337100, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/8", "entPhysicalHardwareRev": null, @@ -3186,13 +3186,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69353484, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/9", "entPhysicalHardwareRev": null, @@ -3205,13 +3205,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69369868, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/10", "entPhysicalHardwareRev": null, @@ -3224,13 +3224,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69386252, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/11", "entPhysicalHardwareRev": null, @@ -3243,13 +3243,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69402636, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/12", "entPhysicalHardwareRev": null, @@ -3262,13 +3262,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69419020, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/13", "entPhysicalHardwareRev": null, @@ -3281,13 +3281,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69435404, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/14", "entPhysicalHardwareRev": null, @@ -3300,13 +3300,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69451788, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/15", "entPhysicalHardwareRev": null, @@ -3319,13 +3319,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69468172, - "entPhysicalDescr": null, + "entPhysicalDescr": "Card slot", "entPhysicalClass": null, "entPhysicalName": "Card slot 2/16", "entPhysicalHardwareRev": null, @@ -3338,13 +3338,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69501006, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": null, @@ -3357,13 +3357,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533774, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/1", "entPhysicalHardwareRev": null, @@ -3376,13 +3376,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533838, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/2", "entPhysicalHardwareRev": null, @@ -3395,13 +3395,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533902, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/3", "entPhysicalHardwareRev": null, @@ -3414,13 +3414,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533966, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/4", "entPhysicalHardwareRev": null, @@ -3433,13 +3433,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534030, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/5", "entPhysicalHardwareRev": null, @@ -3452,13 +3452,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534094, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/6", "entPhysicalHardwareRev": null, @@ -3471,13 +3471,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534158, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/7", "entPhysicalHardwareRev": null, @@ -3490,13 +3490,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534222, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/8", "entPhysicalHardwareRev": null, @@ -3509,13 +3509,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534286, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/9", "entPhysicalHardwareRev": null, @@ -3528,13 +3528,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534350, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/10", "entPhysicalHardwareRev": null, @@ -3547,13 +3547,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534414, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/11", "entPhysicalHardwareRev": null, @@ -3566,13 +3566,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534478, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/12", "entPhysicalHardwareRev": null, @@ -3585,13 +3585,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534542, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/13", "entPhysicalHardwareRev": null, @@ -3604,13 +3604,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534606, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/14", "entPhysicalHardwareRev": null, @@ -3623,13 +3623,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534670, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/15", "entPhysicalHardwareRev": null, @@ -3642,13 +3642,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534734, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/16", "entPhysicalHardwareRev": null, @@ -3661,13 +3661,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534798, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/17", "entPhysicalHardwareRev": null, @@ -3680,13 +3680,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534862, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/18", "entPhysicalHardwareRev": null, @@ -3699,13 +3699,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534926, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/19", "entPhysicalHardwareRev": null, @@ -3718,13 +3718,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534990, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/20", "entPhysicalHardwareRev": null, @@ -3737,13 +3737,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535054, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/21", "entPhysicalHardwareRev": null, @@ -3756,13 +3756,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535118, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/22", "entPhysicalHardwareRev": null, @@ -3775,13 +3775,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535182, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/23", "entPhysicalHardwareRev": null, @@ -3794,13 +3794,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535246, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/24", "entPhysicalHardwareRev": null, @@ -3813,13 +3813,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535310, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/25", "entPhysicalHardwareRev": null, @@ -3832,13 +3832,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535374, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/26", "entPhysicalHardwareRev": null, @@ -3851,13 +3851,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535438, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/27", "entPhysicalHardwareRev": null, @@ -3870,13 +3870,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535502, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/28", "entPhysicalHardwareRev": null, @@ -3889,13 +3889,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535566, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/29", "entPhysicalHardwareRev": null, @@ -3908,13 +3908,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535630, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/30", "entPhysicalHardwareRev": null, @@ -3927,13 +3927,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535694, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/31", "entPhysicalHardwareRev": null, @@ -3946,13 +3946,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535758, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/32", "entPhysicalHardwareRev": null, @@ -3965,13 +3965,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535822, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/33", "entPhysicalHardwareRev": null, @@ -3984,13 +3984,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535886, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/34", "entPhysicalHardwareRev": null, @@ -4003,13 +4003,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535950, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/35", "entPhysicalHardwareRev": null, @@ -4022,13 +4022,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536014, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/36", "entPhysicalHardwareRev": null, @@ -4041,13 +4041,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536078, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/37", "entPhysicalHardwareRev": null, @@ -4060,13 +4060,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536142, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/38", "entPhysicalHardwareRev": null, @@ -4079,13 +4079,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536206, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/39", "entPhysicalHardwareRev": null, @@ -4098,13 +4098,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536270, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/40", "entPhysicalHardwareRev": null, @@ -4117,13 +4117,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536334, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/41", "entPhysicalHardwareRev": null, @@ -4136,13 +4136,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536398, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/42", "entPhysicalHardwareRev": null, @@ -4155,13 +4155,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536462, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/43", "entPhysicalHardwareRev": null, @@ -4174,13 +4174,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536526, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/44", "entPhysicalHardwareRev": null, @@ -4193,13 +4193,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536590, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/45", "entPhysicalHardwareRev": null, @@ -4212,13 +4212,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536654, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/46", "entPhysicalHardwareRev": null, @@ -4231,13 +4231,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536718, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/47", "entPhysicalHardwareRev": null, @@ -4250,13 +4250,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536782, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/48", "entPhysicalHardwareRev": null, @@ -4269,13 +4269,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566542, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/1", "entPhysicalHardwareRev": null, @@ -4288,13 +4288,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566606, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/2", "entPhysicalHardwareRev": null, @@ -4307,13 +4307,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566670, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/3", "entPhysicalHardwareRev": null, @@ -4326,13 +4326,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566734, - "entPhysicalDescr": null, + "entPhysicalDescr": "Port", "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/4", "entPhysicalHardwareRev": null, @@ -4345,13 +4345,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": null, @@ -4364,13 +4364,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": null, @@ -4383,13 +4383,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": null, @@ -4402,13 +4402,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": null, @@ -4421,13 +4421,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": null, @@ -4440,13 +4440,13 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": null, + "entPhysicalDescr": "Board slot", "entPhysicalClass": null, "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": null, @@ -4459,7 +4459,7 @@ "entPhysicalVendorType": null, "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, + "entPhysicalParentRelPos": -1, "entPhysicalMfgName": null, "ifIndex": null } diff --git a/tests/data/xos_sfp.json b/tests/data/xos_sfp.json index 61f82e5c09..c5593f8574 100644 --- a/tests/data/xos_sfp.json +++ b/tests/data/xos_sfp.json @@ -5604,17 +5604,17 @@ "entPhysicalClass": "chassis", "entPhysicalName": "", "entPhysicalHardwareRev": "06", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.1916.5.112", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5623,17 +5623,17 @@ "entPhysicalClass": "container", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5642,17 +5642,17 @@ "entPhysicalClass": "module", "entPhysicalName": "", "entPhysicalHardwareRev": "06", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.1916.5.112", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -5661,17 +5661,17 @@ "entPhysicalClass": "port", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1001 }, { @@ -5680,17 +5680,17 @@ "entPhysicalClass": "port", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1002 }, { @@ -5699,17 +5699,17 @@ "entPhysicalClass": "port", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1003 }, { @@ -5718,17 +5718,17 @@ "entPhysicalClass": "port", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1004 }, { @@ -5737,17 +5737,17 @@ "entPhysicalClass": "port", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1005 }, { @@ -5756,6325 +5756,6325 @@ "entPhysicalClass": "port", "entPhysicalName": "", "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1006 }, { "entPhysicalIndex": 10, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1007 }, { "entPhysicalIndex": 11, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1008 }, { "entPhysicalIndex": 12, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1009 }, { "entPhysicalIndex": 13, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1010 }, { "entPhysicalIndex": 14, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1011 }, { "entPhysicalIndex": 15, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1012 }, { "entPhysicalIndex": 16, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1013 }, { "entPhysicalIndex": 17, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1014 }, { "entPhysicalIndex": 18, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1015 }, { "entPhysicalIndex": 19, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1016 }, { "entPhysicalIndex": 20, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1017 }, { "entPhysicalIndex": 21, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1018 }, { "entPhysicalIndex": 22, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1019 }, { "entPhysicalIndex": 23, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1020 }, { "entPhysicalIndex": 24, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1021 }, { "entPhysicalIndex": 25, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1022 }, { "entPhysicalIndex": 26, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1023 }, { "entPhysicalIndex": 27, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1024 }, { "entPhysicalIndex": 28, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1025 }, { "entPhysicalIndex": 29, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1026 }, { "entPhysicalIndex": 30, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1027 }, { "entPhysicalIndex": 31, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1028 }, { "entPhysicalIndex": 32, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1029 }, { "entPhysicalIndex": 33, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1030 }, { "entPhysicalIndex": 34, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1031 }, { "entPhysicalIndex": 35, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1032 }, { "entPhysicalIndex": 36, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1033 }, { "entPhysicalIndex": 37, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1034 }, { "entPhysicalIndex": 38, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1035 }, { "entPhysicalIndex": 39, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1036 }, { "entPhysicalIndex": 40, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1037 }, { "entPhysicalIndex": 41, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1038 }, { "entPhysicalIndex": 42, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1039 }, { "entPhysicalIndex": 43, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1040 }, { "entPhysicalIndex": 44, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1041 }, { "entPhysicalIndex": 45, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1042 }, { "entPhysicalIndex": 46, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1043 }, { "entPhysicalIndex": 47, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1044 }, { "entPhysicalIndex": 48, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1045 }, { "entPhysicalIndex": 49, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1046 }, { "entPhysicalIndex": 50, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1047 }, { "entPhysicalIndex": 51, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1048 }, { "entPhysicalIndex": 52, "entPhysicalDescr": "40 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1049 }, { "entPhysicalIndex": 53, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1050 }, { "entPhysicalIndex": 54, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1051 }, { "entPhysicalIndex": 55, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1052 }, { "entPhysicalIndex": 56, "entPhysicalDescr": "40 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1053 }, { "entPhysicalIndex": 57, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1054 }, { "entPhysicalIndex": 58, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1055 }, { "entPhysicalIndex": 59, "entPhysicalDescr": "10 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1056 }, { "entPhysicalIndex": 60, "entPhysicalDescr": "40 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1057 }, { "entPhysicalIndex": 61, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1058 }, { "entPhysicalIndex": 62, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1059 }, { "entPhysicalIndex": 63, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1060 }, { "entPhysicalIndex": 64, "entPhysicalDescr": "100 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1061 }, { "entPhysicalIndex": 65, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1062 }, { "entPhysicalIndex": 66, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1063 }, { "entPhysicalIndex": 67, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1064 }, { "entPhysicalIndex": 68, "entPhysicalDescr": "40 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1065 }, { "entPhysicalIndex": 69, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1066 }, { "entPhysicalIndex": 70, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1067 }, { "entPhysicalIndex": 71, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1068 }, { "entPhysicalIndex": 72, "entPhysicalDescr": "100 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1069 }, { "entPhysicalIndex": 73, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1070 }, { "entPhysicalIndex": 74, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1071 }, { "entPhysicalIndex": 75, "entPhysicalDescr": "25 Gbps Ethernet Port", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 3, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": 1072 }, { "entPhysicalIndex": 132, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 133, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 134, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 135, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 136, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 4, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 142, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 5, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 143, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 5, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 144, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 5, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 145, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 5, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 146, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 5, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 152, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 6, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 153, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 6, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 154, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 6, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 155, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 6, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 156, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 6, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 162, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 7, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 163, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 7, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 164, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 7, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 165, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 7, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 166, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 7, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 172, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 8, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 173, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 8, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 174, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 8, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 175, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 8, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 176, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 8, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 182, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 9, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 183, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 9, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 184, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 9, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 185, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 9, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 186, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 9, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 192, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 193, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 194, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 195, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 196, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 202, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 203, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 204, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 205, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 206, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 11, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 212, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 12, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 213, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 12, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 214, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 12, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 215, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 12, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 216, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 12, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 222, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 13, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 223, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 13, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 224, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 13, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 225, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 13, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 226, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 13, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 232, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 233, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 234, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 235, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 236, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 14, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 242, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 15, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 243, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 15, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 244, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 15, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 245, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 15, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 246, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 15, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 252, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 16, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 253, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 16, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 254, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 16, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 255, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 16, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 256, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 16, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 262, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 17, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 263, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 17, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 264, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 17, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 265, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 17, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 266, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 17, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 272, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 18, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 273, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 18, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 274, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 18, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 275, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 18, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 276, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 18, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 282, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 19, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 283, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 19, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 284, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 19, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 285, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 19, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 286, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 19, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 292, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 20, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 293, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 20, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 294, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 20, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 295, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 20, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 296, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 20, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 302, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 21, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 303, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 21, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 304, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 21, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 305, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 21, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 306, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 21, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 312, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 22, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 313, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 22, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 314, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 22, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 315, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 22, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 316, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 22, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 322, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 23, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 323, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 23, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 324, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 23, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 325, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 23, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 326, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 23, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 332, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 24, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 333, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 24, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 334, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 24, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 335, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 24, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 336, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 24, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 342, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 25, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 343, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 25, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 344, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 25, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 345, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 25, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 346, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 25, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 352, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 26, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 353, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 26, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 354, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 26, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 355, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 26, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 356, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 26, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 362, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 27, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 363, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 27, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 364, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 27, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 365, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 27, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 366, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 27, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 372, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 28, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 373, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 28, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 374, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 28, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 375, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 28, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 376, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 28, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 382, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 29, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 383, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 29, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 384, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 29, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 385, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 29, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 386, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 29, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 392, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 30, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 393, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 30, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 394, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 30, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 395, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 30, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 396, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 30, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 402, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 31, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 403, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 31, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 404, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 31, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 405, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 31, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 406, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 31, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 412, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 32, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 413, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 32, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 414, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 32, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 415, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 32, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 416, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 32, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 422, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 33, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 423, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 33, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 424, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 33, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 425, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 33, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 426, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 33, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 432, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 34, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 433, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 34, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 434, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 34, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 435, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 34, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 436, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 34, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 442, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 35, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 443, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 35, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 444, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 35, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 445, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 35, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 446, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 35, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 452, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 36, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 453, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 36, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 454, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 36, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 455, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 36, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 456, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 36, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 462, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 37, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 463, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 37, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 464, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 37, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 465, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 37, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 466, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 37, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 472, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 38, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 473, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 38, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 474, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 38, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 475, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 38, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 476, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 38, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 482, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 39, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 483, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 39, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 484, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 39, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 485, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 39, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 486, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 39, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 492, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 40, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 493, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 40, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 494, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 40, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 495, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 40, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 496, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 40, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 502, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 41, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 503, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 41, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 504, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 41, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 505, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 41, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 506, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 41, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 512, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 42, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 513, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 42, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 514, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 42, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 515, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 42, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 516, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 42, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 522, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 43, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 523, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 43, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 524, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 43, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 525, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 43, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 526, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 43, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 532, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 44, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 533, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 44, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 534, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 44, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 535, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 44, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 536, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 44, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 542, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 45, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 543, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 45, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 544, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 45, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 545, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 45, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 546, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 45, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 552, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 46, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 553, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 46, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 554, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 46, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 555, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 46, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 556, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 46, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 562, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 47, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 563, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 47, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 564, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 47, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 565, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 47, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 566, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 47, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 572, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 48, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 573, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 48, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 574, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 48, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 575, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 48, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 576, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 48, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 582, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 49, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 583, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 49, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 584, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 49, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 585, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 49, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 586, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 49, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 592, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 50, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 593, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 50, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 594, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 50, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 595, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 50, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 596, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 50, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 602, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 51, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 603, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 51, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 604, "entPhysicalDescr": "SFP TX Bias Current Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 51, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 605, "entPhysicalDescr": "SFP TX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 51, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 606, "entPhysicalDescr": "SFP RX Power Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 51, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 772, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 773, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 774, "entPhysicalDescr": "SFP RX Power Channel 1 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 775, "entPhysicalDescr": "SFP RX Power Channel 2 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 776, "entPhysicalDescr": "SFP RX Power Channel 3 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 777, "entPhysicalDescr": "SFP RX Power Channel 4 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 778, "entPhysicalDescr": "SFP TX Bias Current Channel 1 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 779, "entPhysicalDescr": "SFP TX Bias Current Channel 2 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 780, "entPhysicalDescr": "SFP TX Bias Current Channel 3 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 781, "entPhysicalDescr": "SFP TX Bias Current Channel 4 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 68, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 812, "entPhysicalDescr": "SFP Temperature Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 813, "entPhysicalDescr": "SFP VCC Voltage Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 814, "entPhysicalDescr": "SFP RX Power Channel 1 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 815, "entPhysicalDescr": "SFP RX Power Channel 2 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 816, "entPhysicalDescr": "SFP RX Power Channel 3 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 817, "entPhysicalDescr": "SFP RX Power Channel 4 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 818, "entPhysicalDescr": "SFP TX Bias Current Channel 1 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 819, "entPhysicalDescr": "SFP TX Bias Current Channel 2 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 820, "entPhysicalDescr": "SFP TX Bias Current Channel 3 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 821, "entPhysicalDescr": "SFP TX Bias Current Channel 4 Sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 72, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 90240, "entPhysicalDescr": "Slot-1 PowerSupply Slot 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 90241, "entPhysicalDescr": "PowerSupply-Internal", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 90240, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 90242, "entPhysicalDescr": "Slot-1 PowerSupply Slot 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 90243, "entPhysicalDescr": "PowerSupply-Internal", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 90242, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 90752, "entPhysicalDescr": "Slot-1 FanTray Slot 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 2, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 90753, "entPhysicalDescr": "FanTray", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "", - "entPhysicalHardwareRev": "", - "entPhysicalFirmwareRev": "", - "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", - "entPhysicalIsFRU": "", - "entPhysicalModelName": "", - "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 90752, - "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/yunshan_s5735-v2.json b/tests/data/yunshan_s5735-v2.json index 7a411c4030..b9c3ba3f83 100644 --- a/tests/data/yunshan_s5735-v2.json +++ b/tests/data/yunshan_s5735-v2.json @@ -7488,10 +7488,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.537717", "entPhysicalSerialNum": "4E2310017813", "entPhysicalContainedIn": 0, @@ -7507,10 +7507,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7526,10 +7526,10 @@ "entPhysicalHardwareRev": "ES5D2V30S037 VER A", "entPhysicalFirmwareRev": "CPLD ver 257", "entPhysicalSoftwareRev": "V600R022C01SPC500", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.12.537901", "entPhysicalSerialNum": "4E2310017813", "entPhysicalContainedIn": 16842752, @@ -7545,10 +7545,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, @@ -7564,10 +7564,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, @@ -7583,16 +7583,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 3 }, { "entPhysicalIndex": 16847107, @@ -7602,16 +7602,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 4 }, { "entPhysicalIndex": 16847108, @@ -7621,16 +7621,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 5 }, { "entPhysicalIndex": 16847109, @@ -7640,16 +7640,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 6 }, { "entPhysicalIndex": 16847110, @@ -7659,16 +7659,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 7, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 7 }, { "entPhysicalIndex": 16847111, @@ -7678,16 +7678,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 8, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 8 }, { "entPhysicalIndex": 16847112, @@ -7697,16 +7697,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 9, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 9 }, { "entPhysicalIndex": 16847113, @@ -7716,16 +7716,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 10, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 10 }, { "entPhysicalIndex": 16847114, @@ -7735,16 +7735,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 11, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 11 }, { "entPhysicalIndex": 16847115, @@ -7754,16 +7754,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 12, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 12 }, { "entPhysicalIndex": 16847116, @@ -7773,16 +7773,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 13, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 13 }, { "entPhysicalIndex": 16847117, @@ -7792,16 +7792,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 14, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 14 }, { "entPhysicalIndex": 16847118, @@ -7811,16 +7811,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 15, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 15 }, { "entPhysicalIndex": 16847119, @@ -7830,16 +7830,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 16, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 16 }, { "entPhysicalIndex": 16847120, @@ -7849,16 +7849,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 17, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 17 }, { "entPhysicalIndex": 16847121, @@ -7868,16 +7868,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 18, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 18 }, { "entPhysicalIndex": 16847122, @@ -7887,16 +7887,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 19, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 19 }, { "entPhysicalIndex": 16847123, @@ -7906,16 +7906,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 20, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 20 }, { "entPhysicalIndex": 16847124, @@ -7925,16 +7925,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 21, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 21 }, { "entPhysicalIndex": 16847125, @@ -7944,16 +7944,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 22, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 22 }, { "entPhysicalIndex": 16847126, @@ -7963,16 +7963,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 23, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 23 }, { "entPhysicalIndex": 16847127, @@ -7982,16 +7982,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 24, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 24 }, { "entPhysicalIndex": 16847128, @@ -8001,16 +8001,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 25, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 25 }, { "entPhysicalIndex": 16847129, @@ -8020,16 +8020,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 26, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 26 }, { "entPhysicalIndex": 16847360, @@ -8039,10 +8039,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "V600R022C01SPC500", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16843520, @@ -8058,10 +8058,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "V600R022C01SPC500", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.688128", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16843776, @@ -8077,16 +8077,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688130", "entPhysicalSerialNum": "TC1603060008", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 27, "entPhysicalMfgName": "OEM", - "ifIndex": null + "ifIndex": 27 }, { "entPhysicalIndex": 16850179, @@ -8096,16 +8096,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688130", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 28, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 28 }, { "entPhysicalIndex": 16850180, @@ -8115,16 +8115,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688130", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 29, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 29 }, { "entPhysicalIndex": 16850181, @@ -8134,16 +8134,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688130", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 30, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 30 }, { "entPhysicalIndex": 16850182, @@ -8153,16 +8153,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688130", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 31, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 31 }, { "entPhysicalIndex": 16850183, @@ -8172,16 +8172,16 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.688130", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16842753, "entPhysicalParentRelPos": 32, "entPhysicalMfgName": "", - "ifIndex": null + "ifIndex": 32 }, { "entPhysicalIndex": 16908288, @@ -8191,10 +8191,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8210,10 +8210,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8229,10 +8229,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8248,10 +8248,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8267,10 +8267,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8286,10 +8286,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8305,10 +8305,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -8324,10 +8324,10 @@ "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", - "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAlias": null, + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, diff --git a/tests/data/zxa10_c320.json b/tests/data/zxa10_c320.json index c77950d566..9bd59b4f84 100644 --- a/tests/data/zxa10_c320.json +++ b/tests/data/zxa10_c320.json @@ -2760,34 +2760,53 @@ "entPhysicalIndex": 1, "entPhysicalDescr": "C320 shelf", "entPhysicalClass": "container", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "", "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", "entPhysicalModelName": "C320_SHELF", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "210108318193", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "ZTE", "ifIndex": null }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "", + "entPhysicalClass": "other", + "entPhysicalName": null, + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": null, + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "ZTE", + "ifIndex": null + }, { "entPhysicalIndex": 10, "entPhysicalDescr": "8 ports GPON OLT line card.", "entPhysicalClass": "chassis", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "140600", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "V2.1.0", "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "GTGO", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "731946300021", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 0, @@ -2798,15 +2817,15 @@ "entPhysicalIndex": 30, "entPhysicalDescr": "General Power Card.", "entPhysicalClass": "powerSupply", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": "", "entPhysicalSoftwareRev": "V1.01", "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "PRAM", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "734971900061", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 2, @@ -2817,15 +2836,15 @@ "entPhysicalIndex": 40, "entPhysicalDescr": "Type A switch management card.", "entPhysicalClass": "chassis", - "entPhysicalName": "", + "entPhysicalName": null, "entPhysicalHardwareRev": "131201", "entPhysicalFirmwareRev": "V2.1.0", "entPhysicalSoftwareRev": "V2.1.0", "entPhysicalAlias": "", - "entPhysicalAssetID": "", + "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", "entPhysicalModelName": "SMXA", - "entPhysicalVendorType": "", + "entPhysicalVendorType": null, "entPhysicalSerialNum": "734499700312", "entPhysicalContainedIn": 1, "entPhysicalParentRelPos": 3, diff --git a/tests/data/zynos_gs1900-fdb.json b/tests/data/zynos_gs1900-fdb.json index c07c521a7f..c97ebd1344 100644 --- a/tests/data/zynos_gs1900-fdb.json +++ b/tests/data/zynos_gs1900-fdb.json @@ -10847,6 +10847,956 @@ "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "", "ifIndex": null + }, + { + "entPhysicalIndex": 68424769, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 1 + }, + { + "entPhysicalIndex": 68424770, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 2 + }, + { + "entPhysicalIndex": 68424771, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 3 + }, + { + "entPhysicalIndex": 68424772, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": 4 + }, + { + "entPhysicalIndex": 68424773, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": 5 + }, + { + "entPhysicalIndex": 68424774, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": 6 + }, + { + "entPhysicalIndex": 68424775, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": 7 + }, + { + "entPhysicalIndex": 68424776, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": 8 + }, + { + "entPhysicalIndex": 68424777, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": "", + "ifIndex": 9 + }, + { + "entPhysicalIndex": 68424778, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": "", + "ifIndex": 10 + }, + { + "entPhysicalIndex": 68424779, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": "", + "ifIndex": 11 + }, + { + "entPhysicalIndex": 68424780, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": "", + "ifIndex": 12 + }, + { + "entPhysicalIndex": 68424781, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": "", + "ifIndex": 13 + }, + { + "entPhysicalIndex": 68424782, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": "", + "ifIndex": 14 + }, + { + "entPhysicalIndex": 68424783, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": "", + "ifIndex": 15 + }, + { + "entPhysicalIndex": 68424784, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": "", + "ifIndex": 16 + }, + { + "entPhysicalIndex": 68424785, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": "", + "ifIndex": 17 + }, + { + "entPhysicalIndex": 68424786, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": "", + "ifIndex": 18 + }, + { + "entPhysicalIndex": 68424787, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": "", + "ifIndex": 19 + }, + { + "entPhysicalIndex": 68424788, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": "", + "ifIndex": 20 + }, + { + "entPhysicalIndex": 68424789, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": "", + "ifIndex": 21 + }, + { + "entPhysicalIndex": 68424790, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": "", + "ifIndex": 22 + }, + { + "entPhysicalIndex": 68424791, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": "", + "ifIndex": 23 + }, + { + "entPhysicalIndex": 68424792, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": "", + "ifIndex": 24 + }, + { + "entPhysicalIndex": 68424793, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 25, + "entPhysicalMfgName": "", + "ifIndex": 25 + }, + { + "entPhysicalIndex": 68424794, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 26, + "entPhysicalMfgName": "", + "ifIndex": 26 + }, + { + "entPhysicalIndex": 68424795, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 27, + "entPhysicalMfgName": "", + "ifIndex": 27 + }, + { + "entPhysicalIndex": 68424796, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 28, + "entPhysicalMfgName": "", + "ifIndex": 28 + }, + { + "entPhysicalIndex": 68424797, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 29, + "entPhysicalMfgName": "", + "ifIndex": 29 + }, + { + "entPhysicalIndex": 68424798, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 30, + "entPhysicalMfgName": "", + "ifIndex": 30 + }, + { + "entPhysicalIndex": 68424799, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 31, + "entPhysicalMfgName": "", + "ifIndex": 31 + }, + { + "entPhysicalIndex": 68424800, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 32, + "entPhysicalMfgName": "", + "ifIndex": 32 + }, + { + "entPhysicalIndex": 68424801, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 33, + "entPhysicalMfgName": "", + "ifIndex": 33 + }, + { + "entPhysicalIndex": 68424802, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 34, + "entPhysicalMfgName": "", + "ifIndex": 34 + }, + { + "entPhysicalIndex": 68424803, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 35, + "entPhysicalMfgName": "", + "ifIndex": 35 + }, + { + "entPhysicalIndex": 68424804, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 36, + "entPhysicalMfgName": "", + "ifIndex": 36 + }, + { + "entPhysicalIndex": 68424805, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 37, + "entPhysicalMfgName": "", + "ifIndex": 37 + }, + { + "entPhysicalIndex": 68424806, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 38, + "entPhysicalMfgName": "", + "ifIndex": 38 + }, + { + "entPhysicalIndex": 68424807, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 39, + "entPhysicalMfgName": "", + "ifIndex": 39 + }, + { + "entPhysicalIndex": 68424808, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 40, + "entPhysicalMfgName": "", + "ifIndex": 40 + }, + { + "entPhysicalIndex": 68424809, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 41, + "entPhysicalMfgName": "", + "ifIndex": 41 + }, + { + "entPhysicalIndex": 68424810, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 42, + "entPhysicalMfgName": "", + "ifIndex": 42 + }, + { + "entPhysicalIndex": 68424811, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 43, + "entPhysicalMfgName": "", + "ifIndex": 43 + }, + { + "entPhysicalIndex": 68424812, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 44, + "entPhysicalMfgName": "", + "ifIndex": 44 + }, + { + "entPhysicalIndex": 68424813, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 45, + "entPhysicalMfgName": "", + "ifIndex": 45 + }, + { + "entPhysicalIndex": 68424814, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 46, + "entPhysicalMfgName": "", + "ifIndex": 46 + }, + { + "entPhysicalIndex": 68424815, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 47, + "entPhysicalMfgName": "", + "ifIndex": 47 + }, + { + "entPhysicalIndex": 68424816, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 48, + "entPhysicalMfgName": "", + "ifIndex": 48 + }, + { + "entPhysicalIndex": 68424817, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 49, + "entPhysicalMfgName": "", + "ifIndex": 49 + }, + { + "entPhysicalIndex": 68424818, + "entPhysicalDescr": "", + "entPhysicalClass": "port", + "entPhysicalName": "", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "zeroDotZero.0", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 68424704, + "entPhysicalParentRelPos": 50, + "entPhysicalMfgName": "", + "ifIndex": 50 } ] }, diff --git a/tests/module_tables.yaml b/tests/module_tables.yaml index 2557029473..8b1e2c2a57 100644 --- a/tests/module_tables.yaml +++ b/tests/module_tables.yaml @@ -19,10 +19,6 @@ bgp-peers: - { left: bgpPeers.vrf_id, right: vrfs.vrf_id, select: [vrfs.bgpLocalAs as vrfLocalAs] } bgpPeers_cbgp: excluded_fields: [device_id] -entity-physical: - entPhysical: - excluded_fields: [device_id, entPhysical_id] - order_by: entPhysicalIndex fdb-table: ports_fdb: excluded_fields: [device_id, ports_fdb_id, port_id, vlan_id, created_at, updated_at] diff --git a/tests/snmpsim/icotera.snmprec b/tests/snmpsim/icotera.snmprec index cb9f1f9984..a4d9ecd3b8 100644 --- a/tests/snmpsim/icotera.snmprec +++ b/tests/snmpsim/icotera.snmprec @@ -174,3 +174,4 @@ 1.3.6.1.2.1.47.1.1.1.1.14.1|4| 1.3.6.1.2.1.47.1.1.1.1.15.1|4| 1.3.6.1.2.1.47.1.1.1.1.16.1|2|0 +1.3.6.1.6.3.10.2.1.3.0|2|80085 diff --git a/tests/snmpsim/ruijie.snmprec b/tests/snmpsim/ruijie.snmprec index 519493f1d8..7440426a5c 100644 --- a/tests/snmpsim/ruijie.snmprec +++ b/tests/snmpsim/ruijie.snmprec @@ -3571,3 +3571,4 @@ 1.3.6.1.2.1.47.1.1.1.1.16.69|2|1 1.3.6.1.2.1.47.1.1.1.1.16.70|2|1 1.3.6.1.2.1.47.1.1.1.1.16.71|2|1 +1.3.6.1.6.3.10.2.1.3|2|42069 diff --git a/tests/snmpsim/saf-cfm.snmprec b/tests/snmpsim/saf-cfm.snmprec index 1ef6908490..850deba27d 100644 --- a/tests/snmpsim/saf-cfm.snmprec +++ b/tests/snmpsim/saf-cfm.snmprec @@ -428,3 +428,4 @@ 1.3.6.1.4.1.7571.100.1.1.2.22.6.4.24.3.0|2|0 1.3.6.1.4.1.7571.100.1.1.2.22.6.4.24.4.0|2|0 1.3.6.1.4.1.7571.100.1.1.2.22.6.4.24.5.0|2|0 +1.3.6.1.6.3.10.2.1.3|2|42069 diff --git a/tests/snmpsim/ubiquoss-pon_9500.snmprec b/tests/snmpsim/ubiquoss-pon_9500.snmprec index bf40aa27c4..040c0867f0 100644 --- a/tests/snmpsim/ubiquoss-pon_9500.snmprec +++ b/tests/snmpsim/ubiquoss-pon_9500.snmprec @@ -9653,3 +9653,4 @@ 1.3.6.1.2.1.47.1.1.1.1.17.1635|4| 1.3.6.1.2.1.47.1.1.1.1.17.1636|4| 1.3.6.1.2.1.47.1.1.1.1.17.1637|4| +1.3.6.1.6.3.10.2.1.3|2|42069