devices - Ciena RLS 6500 (#15909)

* rls definition
* Adding discovery
* Temp Sensor Discovery
* files for discovery
* Adding and updating MIBS
* Add snmpsim
* Modified yaml for unit test
* phpfmt format
* ci changes
* fixing temp sensor
* fix json
* db schema out of date causing bad snmpsim json
* changed temperature discovery to php
* With updated snmpsim data
* index_string restored, YAML for temperature
* style
* Fixed index_string usage in JUNOS files
* Update YamlDiscovery.php
Allow filtering on "index" in skip_values
* Move DBM to YAML as well
* style
* schema update
* Slot XX Yyyyyy
remove unwanted dot
* matching tests
* schema, round 2
* states in YAML
* put temp sensor back in yaml
* enable default poll and discovery modules
---------

Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com>
This commit is contained in:
Heath Barnhart 2024-04-01 11:52:03 -05:00 committed by GitHub
parent af2f953c7f
commit d457f92f22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
17 changed files with 19710 additions and 152 deletions

View File

@ -188,6 +188,11 @@ class YamlDiscovery
$variables = [
'index' => $index,
'count' => $count,
// we compute a numOid compatible version of index
// string length followed by ASCII of each char.
'index_string' => implode('.', array_map(function ($index) {
return strlen($index) . '.' . implode('.', unpack('c*', $index));
}, explode('.', $index))),
];
foreach (explode('.', $index) as $pos => $subindex) {
$variables['subindex' . $pos] = $subindex;
@ -378,6 +383,8 @@ class YamlDiscovery
if (isset($skip_value['device'])) {
// field from device model
$tmp_value = \DeviceCache::getPrimary()[$skip_value['device']] ?? null;
} elseif ($skip_value['oid'] == 'index') {
$tmp_value = $index;
} else {
// oid previously fetched from the device
$tmp_value = static::getValueFromData($skip_value['oid'], $index, $yaml_item_data, $pre_cache);

View File

@ -0,0 +1,11 @@
os: ciena-rls
text: 'Ciena Reconfigurable Line System'
icon: ciena
over:
- { graph: device_bits, text: Traffic }
type: network
mib_dir: ciena
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.1271.1.2.12

View File

@ -0,0 +1,128 @@
mib: CIENA-PRO-SOFTWARE-MIB:CIENA-6500R-INVENTORY-MIB:CIENA-6500R-INVENTORY-AMPS-MIB
modules:
os:
hardware: SNMPv2-MIB::sysDescr.0
version: CIENA-PRO-SOFTWARE-MIB::cienaProSoftwareRunningVersion.0
sensors:
pre-cache:
data:
-
oid:
- rlsCircuitPackCtype
temperature:
data:
-
oid: rlsCircuitPackCurrTemprature
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.1.1.1.29.{{ $index_string }}'
index: 'rlsCircuitPackCurrTemprature.{{ $index_string }}'
descr: '{{ $rlsCircuitPackCtype }} Slot {{ $index }}'
state:
data:
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsAmpMode
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.3.{{ $index_string }}'
index: 'rlsInventoryAmpsAmpMode.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Mode'
state_name: rlsInventoryAmpsAmpMode
states:
- { descr: Power, graph: 0, value: 1, generic: 0 }
- { descr: Gain, graph: 0, value: 2, generic: 0 }
- { descr: GainClamp, graph: 0, value: 3, generic: 0 }
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsState
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.4.{{ $index_string }}'
index: 'rlsInventoryAmpsState.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier State'
state_name: rlsInventoryAmpsState
states:
- { descr: Unknown, graph: 0, value: 0, generic: 3 }
- { descr: Off, graph: 0, value: 1, generic: 1 }
- { descr: APR, graph: 0, value: 2, generic: 1 }
- { descr: Normal, graph: 0, value: 3, generic: 0 }
- { descr: Clamped, graph: 0, value: 4, generic: 0 }
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsGainMode
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.5.{{ $index_string }}'
index: 'rlsInventoryAmpsGainMode.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Gain Mode'
state_name: rlsInventoryAmpsGainMode
states:
- { descr: Low, graph: 0, value: 1, generic: 0 }
- { descr: High, graph: 0, value: 2, generic: 0 }
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsForcedShutdown
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.6.{{ $index_string }}'
index: 'rlsInventoryAmpsForcedShutdown.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Forced Shutdown State'
state_name: rlsInventoryAmpsForcedShutdown
states:
- { descr: Disabled, graph: 0, value: 1, generic: 0 }
- { descr: Enabled, graph: 0, value: 2, generic: 1 }
dbm:
data:
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsInCurrPower
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.48.{{ $index_string }}'
index: 'rlsInventoryAmpsInCurrPower.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Input - Current'
low_limit: rlsInventoryAmpsInputLosThreshold
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsInMinPower
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.49.{{ $index_string }}'
index: 'rlsInventoryAmpsInMinPower.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Input - Minimum'
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsInMaxPower
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.50.{{ $index_string }}'
index: 'rlsInventoryAmpsInMaxPower.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Input - Maximum'
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsOutCurrPower
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.51.{{ $index_string }}'
index: 'rlsInventoryAmpsOutCurrPower.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Output - Current'
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsOutMinPower
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.52.{{ $index_string }}'
index: 'rlsInventoryAmpsOutMinPower.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Output - Minimum'
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsOutMaxPower
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.53.{{ $index_string }}'
index: 'rlsInventoryAmpsOutMaxPower.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Output - Maximum'
-
oid: rlsInventoryAmpsTable
value: rlsInventoryAmpsOpticalReturnLoss
num_oid: '.1.3.6.1.4.1.1271.4.1.1.1.2.1.1.1.54.{{ $index_string }}'
index: 'rlsInventoryAmpsOpticalReturnLoss.{{ $index_string }}'
descr: 'Slot {{ $subindex0 }} {{ $subindex1 }}'
group: 'Amplifier Optical Return Loss'
low_warn_limit: rlsInventoryAmpsOrlThreshold
low_limit: rlsInventoryAmpsAprThreshold
skip_values:
-
oid: index
op: 'contains'
value: 'Pre-Amp'

View File

@ -0,0 +1,77 @@
<?php
/**
* ciena-rls.inc.php
*
* -Description-
*
* Chassis inventory for a Ciena Reconfigurable Line System (RLS).
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* 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 <hbarnhart@kanren.net>
*/
$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
);

View File

@ -996,10 +996,8 @@ function discovery_process(&$valid, $os, $sensor_class, $pre_cache)
if ($skippedFromYaml === false && is_numeric($value)) {
d_echo("Sensor fetched value: $value\n");
$oid = str_replace('{{ $index }}', $index, $data['num_oid']);
// if index is a string, we need to convert it to OID
// strlen($index) as first number, and each letter converted to a number, separated by dots
$oid = str_replace('{{ $index_string }}', strlen($index) . '.' . implode('.', unpack('c*', $index)), $oid);
// process the oid (num_oid will contain index or str2num replacement calls)
$oid = trim(YamlDiscovery::replaceValues('num_oid', $index, null, $data, []));
// process the description
$descr = trim(YamlDiscovery::replaceValues('descr', $index, null, $data, $pre_cache));

View File

@ -0,0 +1,672 @@
--
-- CIENA-6500R-INVENTORY-AMPS-MIB.
--
CIENA-6500R-INVENTORY-AMPS-MIB DEFINITIONS ::= BEGIN
IMPORTS
rlsInventoryAmps
FROM CIENA-6500R-INVENTORY-MIB
AdminState, OrlState
FROM CIENA-6500R-TYPES-MIB
DisplayString32, DisplayString128
FROM CIENA-PRO-TYPES-MIB
Integer32, MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC;
cienaRlsInventoryAmpsMIB MODULE-IDENTITY
LAST-UPDATED "202009300000Z"
ORGANIZATION
"Ciena Corporation"
CONTACT-INFO
"Web URL: http://www.ciena.com/
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A.
Phone: +1 800-921-1144
Fax: Inventory +1 410-694-5750"
DESCRIPTION
"This modules describes Ciena's photonic amplifier object."
REVISION "202009300000Z"
DESCRIPTION
"Initial revision."
::= { rlsInventoryAmps 1 }
rlsInventoryAmpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlsInventoryAmpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { cienaRlsInventoryAmpsMIB 1 }
rlsInventoryAmpsEntry OBJECT-TYPE
SYNTAX RlsInventoryAmpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { rlsInventoryAmpsSlotName, rlsInventoryAmpsName}
::= { rlsInventoryAmpsTable 1 }
RlsInventoryAmpsEntry ::= SEQUENCE {
rlsInventoryAmpsSlotName DisplayString32,
rlsInventoryAmpsName DisplayString128,
rlsInventoryAmpsAmpMode INTEGER,
rlsInventoryAmpsState INTEGER,
rlsInventoryAmpsGainMode INTEGER,
rlsInventoryAmpsForcedShutdown INTEGER,
rlsInventoryAmpsTargetGain DisplayString32,
rlsInventoryAmpsBaselineTargetGain DisplayString32,
rlsInventoryAmpsBaselineTimestamp DisplayString32,
rlsInventoryAmpsTargetGainRangesLowMin DisplayString32,
rlsInventoryAmpsTargetGainRangesLowMax DisplayString32,
rlsInventoryAmpsTargetGainRangesHighMin DisplayString32,
rlsInventoryAmpsTargetGainRangesHighMax DisplayString32,
rlsInventoryAmpsTargetPower DisplayString32,
rlsInventoryAmpsTargetPowerRangesMin DisplayString32,
rlsInventoryAmpsTargetPowerRangesMax DisplayString32,
rlsInventoryAmpsTargetGainTilt DisplayString32,
rlsInventoryAmpsTargetGainTiltRangesMin DisplayString32,
rlsInventoryAmpsTargetGainTiltRangesMax DisplayString32,
rlsInventoryAmpsShutoffThreshold DisplayString32,
rlsInventoryAmpsShutoffThresholdRangesMin DisplayString32,
rlsInventoryAmpsShutoffThresholdRangesMax DisplayString32,
rlsInventoryAmpsShutoffHysteresis DisplayString32,
rlsInventoryAmpsInputLosThreshold DisplayString32,
rlsInventoryAmpsInputLosThresholdRangesMin DisplayString32,
rlsInventoryAmpsInputLosThresholdRangesMax DisplayString32,
rlsInventoryAmpsInputLosHysteresis DisplayString32,
rlsInventoryAmpsOrlThreshold DisplayString32,
rlsInventoryAmpsOrlThresholdRangesMin DisplayString32,
rlsInventoryAmpsOrlThresholdRangesMax DisplayString32,
rlsInventoryAmpsLowOrlHysteresis DisplayString32,
rlsInventoryAmpsOrlState OrlState,
rlsInventoryAmpsGainOffset DisplayString32,
rlsInventoryAmpsGainOffsetRangesMin DisplayString32,
rlsInventoryAmpsGainOffsetRangesMax DisplayString32,
rlsInventoryAmpsGain DisplayString32,
rlsInventoryAmpsMaxTargetPower DisplayString32,
rlsInventoryAmpsMaxTargetPowerRangesMin DisplayString32,
rlsInventoryAmpsMaxTargetPowerRangesMax DisplayString32,
rlsInventoryAmpsAprThreshold DisplayString32,
rlsInventoryAmpsAprHysteresis DisplayString32,
rlsInventoryAmpsForceApr TruthValue,
rlsInventoryAmpsAprPowerLevel DisplayString32,
rlsInventoryAmpsOverloadThresholdsInputPsdLowGain DisplayString32,
rlsInventoryAmpsOverloadThresholdsInputPsdHighGain DisplayString32,
rlsInventoryAmpsAdminState AdminState,
rlsInventoryAmpsServiceState INTEGER,
rlsInventoryAmpsInCurrPower DisplayString32,
rlsInventoryAmpsInMinPower DisplayString32,
rlsInventoryAmpsInMaxPower DisplayString32,
rlsInventoryAmpsOutCurrPower DisplayString32,
rlsInventoryAmpsOutMinPower DisplayString32,
rlsInventoryAmpsOutMaxPower DisplayString32,
rlsInventoryAmpsOpticalReturnLoss DisplayString32,
rlsInventoryAmpsDiagnosticInputLossSignal TruthValue,
rlsInventoryAmpsDiagnosticShutoffThresholdCrossed TruthValue,
rlsInventoryAmpsDignosticAutomaticShutoff TruthValue,
rlsInventoryAmpsDiagnosticAutomaticPowerReductionActive TruthValue,
rlsInventoryAmpsDignosticParentFailed TruthValue,
rlsInventoryAmpsDignosticOpticalLineFailed TruthValue,
rlsInventoryAmpsDignosticLowOpticalReturnLoss TruthValue,
rlsInventoryAmpsDignosticLossOfSignal TruthValue,
rlsInventoryAmpsDignosticInputOpticalOverload TruthValue
}
rlsInventoryAmpsSlotName OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the slot."
::= { rlsInventoryAmpsEntry 1 }
rlsInventoryAmpsName OBJECT-TYPE
SYNTAX DisplayString128
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Amplifier name."
::= { rlsInventoryAmpsEntry 2 }
rlsInventoryAmpsAmpMode OBJECT-TYPE
SYNTAX INTEGER {
power(1),
gain(2),
gainclamp(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Control Mode of the AMP."
DEFVAL { 2 }
::= { rlsInventoryAmpsEntry 3 }
rlsInventoryAmpsState OBJECT-TYPE
SYNTAX INTEGER {
unkown(0),
shutoff(1),
apr(2),
normal(3),
clamped(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State the amp is in reported by the card."
::= { rlsInventoryAmpsEntry 4 }
rlsInventoryAmpsGainMode OBJECT-TYPE
SYNTAX INTEGER {
low(1),
high(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gain Mode of the AMP."
DEFVAL { 2 }
::= { rlsInventoryAmpsEntry 5 }
rlsInventoryAmpsForcedShutdown OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Forced EDFA Shutoff State."
DEFVAL { 2 }
::= { rlsInventoryAmpsEntry 6 }
rlsInventoryAmpsTargetGain OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Target Gain in dB."
::= { rlsInventoryAmpsEntry 7 }
rlsInventoryAmpsBaselineTargetGain OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Target Gain baseline in dB."
::= { rlsInventoryAmpsEntry 8 }
rlsInventoryAmpsBaselineTimestamp OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time stamp for target gain baseline."
::= { rlsInventoryAmpsEntry 9 }
rlsInventoryAmpsTargetGainRangesLowMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 10 }
rlsInventoryAmpsTargetGainRangesLowMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 11 }
rlsInventoryAmpsTargetGainRangesHighMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 12 }
rlsInventoryAmpsTargetGainRangesHighMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 13 }
rlsInventoryAmpsTargetPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Target Total Power in dBm."
::= { rlsInventoryAmpsEntry 14 }
rlsInventoryAmpsTargetPowerRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 15 }
rlsInventoryAmpsTargetPowerRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 16 }
rlsInventoryAmpsTargetGainTilt OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gain tilt in dB."
::= { rlsInventoryAmpsEntry 17 }
rlsInventoryAmpsTargetGainTiltRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 18 }
rlsInventoryAmpsTargetGainTiltRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 19 }
rlsInventoryAmpsShutoffThreshold OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shutoff Threshold in dBm."
::= { rlsInventoryAmpsEntry 20 }
rlsInventoryAmpsShutoffThresholdRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 21 }
rlsInventoryAmpsShutoffThresholdRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 22 }
rlsInventoryAmpsShutoffHysteresis OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shutoff Hysteresis in dBm."
::= { rlsInventoryAmpsEntry 23 }
rlsInventoryAmpsInputLosThreshold OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Threshold at which to declare input loss of signal in dBm."
::= { rlsInventoryAmpsEntry 24 }
rlsInventoryAmpsInputLosThresholdRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 25 }
rlsInventoryAmpsInputLosThresholdRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 26 }
rlsInventoryAmpsInputLosHysteresis OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hysteresis at which to declare of clear the input loss of signal of signal alarm in dB."
DEFVAL { "3" }
::= { rlsInventoryAmpsEntry 27 }
rlsInventoryAmpsOrlThreshold OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Threshold at which to declare the optical return loss alarm."
::= { rlsInventoryAmpsEntry 28 }
rlsInventoryAmpsOrlThresholdRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 29 }
rlsInventoryAmpsOrlThresholdRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 30 }
rlsInventoryAmpsLowOrlHysteresis OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hysteresis at which to declare low optical return loss alarm in dB."
DEFVAL { "3" }
::= { rlsInventoryAmpsEntry 31 }
rlsInventoryAmpsOrlState OBJECT-TYPE
SYNTAX OrlState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ORL State"
::= { rlsInventoryAmpsEntry 32 }
rlsInventoryAmpsGainOffset OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gain Offset of the AMP in dB."
::= { rlsInventoryAmpsEntry 33 }
rlsInventoryAmpsGainOffsetRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 34 }
rlsInventoryAmpsGainOffsetRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 35 }
rlsInventoryAmpsGain OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current gain of the amplifier in dB."
::= { rlsInventoryAmpsEntry 36 }
rlsInventoryAmpsMaxTargetPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Target Power in dBm."
::= { rlsInventoryAmpsEntry 37 }
rlsInventoryAmpsMaxTargetPowerRangesMin OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 38 }
rlsInventoryAmpsMaxTargetPowerRangesMax OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 39 }
rlsInventoryAmpsAprThreshold OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Threshold at which the amplifier enters reduced power mode in dBm."
::= { rlsInventoryAmpsEntry 40 }
rlsInventoryAmpsAprHysteresis OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hysteresis at which the amplifier enters reduced power mode in dB."
::= { rlsInventoryAmpsEntry 41 }
rlsInventoryAmpsForceApr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Forced APR."
::= { rlsInventoryAmpsEntry 42 }
rlsInventoryAmpsAprPowerLevel OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power level of the amplifier when the EDFA is in Automatic Power Reduction mode in dBm."
::= { rlsInventoryAmpsEntry 43 }
rlsInventoryAmpsOverloadThresholdsInputPsdLowGain OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 44 }
rlsInventoryAmpsOverloadThresholdsInputPsdHighGain OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsInventoryAmpsEntry 45 }
rlsInventoryAmpsAdminState OBJECT-TYPE
SYNTAX AdminState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Resource administrative state."
::= { rlsInventoryAmpsEntry 46 }
rlsInventoryAmpsServiceState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
idle(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Service state of the amp."
::= { rlsInventoryAmpsEntry 47 }
rlsInventoryAmpsInCurrPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input power to the AMP in dBm."
::= { rlsInventoryAmpsEntry 48 }
rlsInventoryAmpsInMinPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum tidemarked input power to the AMP in dBm. This should be the min power measured since the last measuremnt request in dBm."
::= { rlsInventoryAmpsEntry 49 }
rlsInventoryAmpsInMaxPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum tidemarked input power to the AMP in dBm. This should be the max power measured since the last measuremnt request."
::= { rlsInventoryAmpsEntry 50 }
rlsInventoryAmpsOutCurrPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Output power from the AMP in dBm."
::= { rlsInventoryAmpsEntry 51 }
rlsInventoryAmpsOutMinPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum tidemarked output power from the AMP in dBm. This should be the min power measured since the last measuremnt request."
::= { rlsInventoryAmpsEntry 52 }
rlsInventoryAmpsOutMaxPower OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum tidemarked output power from the AMP in dBm. This should be the max power measured since the last measuremnt request in dBm."
::= { rlsInventoryAmpsEntry 53 }
rlsInventoryAmpsOpticalReturnLoss OBJECT-TYPE
SYNTAX DisplayString32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Optical return loss (ORL) is the amount of light that is reflected back up the fiber toward the source by
light reflections off the interface of the polished end surface of the mated connectors and air, you should
probably check you connection in dB"
::= { rlsInventoryAmpsEntry 54 }
rlsInventoryAmpsDiagnosticInputLossSignal OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input Loss of Signal."
::= { rlsInventoryAmpsEntry 55 }
rlsInventoryAmpsDiagnosticShutoffThresholdCrossed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shutoff Threshold Crossed."
::= { rlsInventoryAmpsEntry 56 }
rlsInventoryAmpsDignosticAutomaticShutoff OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Automatic Shutoff."
::= { rlsInventoryAmpsEntry 57 }
rlsInventoryAmpsDiagnosticAutomaticPowerReductionActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Automatic Power Reduction Active."
::= { rlsInventoryAmpsEntry 58 }
rlsInventoryAmpsDignosticParentFailed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Parent Object Failed."
::= { rlsInventoryAmpsEntry 59 }
rlsInventoryAmpsDignosticOpticalLineFailed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Optical Line Failed."
::= { rlsInventoryAmpsEntry 60 }
rlsInventoryAmpsDignosticLowOpticalReturnLoss OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Low Optical Return Loss."
::= { rlsInventoryAmpsEntry 61 }
rlsInventoryAmpsDignosticLossOfSignal OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of Signal."
::= { rlsInventoryAmpsEntry 62 }
rlsInventoryAmpsDignosticInputOpticalOverload OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input Optical Overload."
::= { rlsInventoryAmpsEntry 63 }
END -- end of module CIENA-6500R-AMPS-MIB.

View File

@ -0,0 +1,415 @@
--
-- CIENA-6500R-INVENTORY-MIB.
--
CIENA-6500R-INVENTORY-MIB DEFINITIONS ::= BEGIN
IMPORTS
rlsInventory
FROM CIENA-6500R-SLOTS-MIB
DisplayString16, DisplayString32, DisplayString64
FROM CIENA-PRO-TYPES-MIB
AdminState, BandOccupancy, MeansurementType,
PecCode, PowerEnum, RamEnum, RestartType
FROM CIENA-6500R-TYPES-MIB
Integer32, MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC;
cienaRlsInventoryMIB MODULE-IDENTITY
LAST-UPDATED "202009300000Z"
ORGANIZATION
"Ciena Corporation"
CONTACT-INFO
"Web URL: http://www.ciena.com/
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A.
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION
"This modules describes inventory for the 6500r platform"
REVISION "202009300000Z"
DESCRIPTION
"Initial revision."
::= { rlsInventory 1 }
rlsCircuitPack OBJECT IDENTIFIER
::= { cienaRlsInventoryMIB 1 }
rlsInventoryAmps OBJECT IDENTIFIER
::= { cienaRlsInventoryMIB 2 }
rlsInventoryProtectionGrp OBJECT IDENTIFIER
::= { cienaRlsInventoryMIB 3 }
rlsCircuitPackTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlsCircuitPackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { rlsCircuitPack 1 }
rlsCircuitPackEntry OBJECT-TYPE
SYNTAX RlsCircuitPackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { rlsCircuitPackSlotName }
::= { rlsCircuitPackTable 1 }
RlsCircuitPackEntry ::= SEQUENCE {
rlsCircuitPackSlotName DisplayString32,
rlsCircuitPackPec PecCode,
rlsCircuitPackCtype DisplayString64,
rlsCircuitPackLabel DisplayString64,
rlsCircuitPackLowPower Integer32,
rlsCircuitPackMaxPower Integer32,
rlsCircuitPackAdminState AdminState,
rlsCircuitPackOperationalState INTEGER,
rlsCircuitPackSlotType INTEGER,
rlsCircuitPackType DisplayString32,
rlsCircuitPackFormFactor INTEGER,
rlsCircuitPackPowerType PowerEnum,
rlsCircuitPackRamSize RamEnum,
rlsCircuitPackBandInfo BandOccupancy,
rlsCircuitPackCctEncoding INTEGER,
rlsCircuitPackDiagActive TruthValue,
rlsCircuitPackDiagFailed TruthValue,
rlsCircuitPackDiagHardwareSubsystemFailed TruthValue,
rlsCircuitPackDiagSoftwareSubsytemFailed TruthValue,
rlsCircuitPackDiagHiTempWarning TruthValue,
rlsCircuitPackDiagHiTemp TruthValue,
rlsCircuitPackHardwareRelease DisplayString32,
rlsCircuitPackCommonLanguageEquipmentIndentifier DisplayString32,
rlsCircuitPackSerialNumber DisplayString32,
rlsCircuitPackManufacturingDate DisplayString32,
rlsCircuitPackAge DisplayString16,
rlsCircuitPackUptime DisplayString16,
rlsCircuitPackLastRestartType RestartType,
rlsCircuitPackCurrTemprature Integer32,
rlsCircuitPackAvgTemprature Integer32,
rlsCircuitPackFanSpeedValue Integer32,
rlsCircuitPackFanSpeedMeansurementType MeansurementType,
rlsCircuitPackCurrPowerValue Integer32,
rlsCircuitPackCurrPowerMeansurementType MeansurementType,
rlsCircuitPackPoweredUpTime DisplayString16
}
rlsCircuitPackSlotName OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the slot."
::= { rlsCircuitPackEntry 1 }
rlsCircuitPackPec OBJECT-TYPE
SYNTAX PecCode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Product equipment code."
::= { rlsCircuitPackEntry 2 }
rlsCircuitPackCtype OBJECT-TYPE
SYNTAX DisplayString64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"c-type."
::= { rlsCircuitPackEntry 3 }
rlsCircuitPackLabel OBJECT-TYPE
SYNTAX DisplayString64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operator identifier for equipment description. 64 Character Maximum."
::= { rlsCircuitPackEntry 4 }
rlsCircuitPackLowPower OBJECT-TYPE
SYNTAX Integer32 (0..960)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Low power (in W) for this card."
::= { rlsCircuitPackEntry 5 }
rlsCircuitPackMaxPower OBJECT-TYPE
SYNTAX Integer32 (0..960)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum power (in W) for this card."
::= { rlsCircuitPackEntry 6 }
rlsCircuitPackAdminState OBJECT-TYPE
SYNTAX AdminState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identify the administrative state."
::= { rlsCircuitPackEntry 7 }
rlsCircuitPackOperationalState OBJECT-TYPE
SYNTAX INTEGER {
active(0),
idle(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"operational state."
::= { rlsCircuitPackEntry 8 }
rlsCircuitPackSlotType OBJECT-TYPE
SYNTAX INTEGER {
single(0),
doubleWide(1),
doubleHigh(2),
quad(3),
tripleHigh(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Card Slot type."
::= { rlsCircuitPackEntry 9 }
rlsCircuitPackType OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated equipment family."
::= { rlsCircuitPackEntry 10 }
rlsCircuitPackFormFactor OBJECT-TYPE
SYNTAX INTEGER {
backplane(0),
accessPanel(1),
ctm(2),
fan(3),
power(4),
i2c(5),
passive(6),
sfp(7),
sfpplus(8),
cfp(9),
cfp2(10),
xfp(11),
qsfp(12),
qsfp28(13),
ctmFrontPanel(14),
backplane300mm(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { rlsCircuitPackEntry 11 }
rlsCircuitPackPowerType OBJECT-TYPE
SYNTAX PowerEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power Input Module type, i.e. DC or AC."
::= { rlsCircuitPackEntry 12 }
rlsCircuitPackRamSize OBJECT-TYPE
SYNTAX RamEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RAM size, i.e. 8G or 16G."
::= { rlsCircuitPackEntry 13 }
rlsCircuitPackBandInfo OBJECT-TYPE
SYNTAX BandOccupancy
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"supported band types of the circuit-pack"
::= { rlsCircuitPackEntry 14 }
rlsCircuitPackCctEncoding OBJECT-TYPE
SYNTAX INTEGER {
none(0),
snBin(1),
xml(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate how CCT is being encoded for the supported circuit-pack."
::= { rlsCircuitPackEntry 15 }
rlsCircuitPackDiagActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active, carrying traffic."
::= { rlsCircuitPackEntry 16 }
rlsCircuitPackDiagFailed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Card Failed."
::= { rlsCircuitPackEntry 17 }
rlsCircuitPackDiagHardwareSubsystemFailed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Equipment hardware subsystem fail."
::= { rlsCircuitPackEntry 18 }
rlsCircuitPackDiagSoftwareSubsytemFailed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Equipment software subsystem fail."
::= { rlsCircuitPackEntry 19 }
rlsCircuitPackDiagHiTempWarning OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"High temperature warning."
::= { rlsCircuitPackEntry 20 }
rlsCircuitPackDiagHiTemp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"High temperature."
::= { rlsCircuitPackEntry 21 }
rlsCircuitPackHardwareRelease OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Release Level."
::= { rlsCircuitPackEntry 22 }
rlsCircuitPackCommonLanguageEquipmentIndentifier OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Common language equipment identifier."
::= { rlsCircuitPackEntry 23 }
rlsCircuitPackSerialNumber OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial Number."
::= { rlsCircuitPackEntry 24 }
rlsCircuitPackManufacturingDate OBJECT-TYPE
SYNTAX DisplayString32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date of Manufacture, in the format: year-week of year (YYYY-MM-DD)."
::= { rlsCircuitPackEntry 25 }
rlsCircuitPackAge OBJECT-TYPE
SYNTAX DisplayString16
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cumulative in-service time elapsed since manufacture, in the format: days:hours:minutes:seconds (DDDD:HH:MM:00)."
::= { rlsCircuitPackEntry 26 }
rlsCircuitPackUptime OBJECT-TYPE
SYNTAX DisplayString16
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cumulative uptime since the unit was last restarted (warm or cold), in the format: days:hours:minutes:seconds (DDDD:HH:MM:SS)."
::= { rlsCircuitPackEntry 27 }
rlsCircuitPackLastRestartType OBJECT-TYPE
SYNTAX RestartType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last restart type reported by the card."
::= { rlsCircuitPackEntry 28 }
rlsCircuitPackCurrTemprature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current card temperature in celsius."
::= { rlsCircuitPackEntry 29 }
rlsCircuitPackAvgTemprature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average card temperature in celsius."
::= { rlsCircuitPackEntry 30 }
rlsCircuitPackFanSpeedValue OBJECT-TYPE
SYNTAX Integer32
UNITS "rpm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current fan speed value (units rpm)."
::= { rlsCircuitPackEntry 31 }
rlsCircuitPackFanSpeedMeansurementType OBJECT-TYPE
SYNTAX MeansurementType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flag to indicate if fan speed is measured, estimated or unknown."
::= { rlsCircuitPackEntry 32 }
rlsCircuitPackCurrPowerValue OBJECT-TYPE
SYNTAX Integer32
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current power value (units W)."
::= { rlsCircuitPackEntry 33 }
rlsCircuitPackCurrPowerMeansurementType OBJECT-TYPE
SYNTAX MeansurementType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flag to indicate if current power is measured, estimated or unknown."
::= { rlsCircuitPackEntry 34 }
rlsCircuitPackPoweredUpTime OBJECT-TYPE
SYNTAX DisplayString16
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cumulative time since the card was last powered on, in the format: days:hours:minutes:seconds (DDDD:HH:MM:SS)."
::= { rlsCircuitPackEntry 35 }
END -- end of module CIENA-6500R-INVENTORY-MIB.

View File

@ -0,0 +1,35 @@
--
-- CIENA-6500R-SLOTS-MIB.
--
CIENA-6500R-SLOTS-MIB DEFINITIONS ::= BEGIN
IMPORTS
cienaRls
FROM CIENA-SMI
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI;
cienaRlsSlotsMIB MODULE-IDENTITY
LAST-UPDATED "202009300000Z"
ORGANIZATION
"Ciena Corporation"
CONTACT-INFO
"Web URL: http://www.ciena.com/
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A.
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION
"This modules describes slots for the 6500r platform"
REVISION "202009300000Z"
DESCRIPTION
"Initial revision."
::= { cienaRls 1 }
rlsInventory OBJECT IDENTIFIER
::= { cienaRlsSlotsMIB 1 }
END -- end of module CIENA-6500R-SLOTS-MIB.

View File

@ -0,0 +1,81 @@
CIENA-6500R-TYPES-MIB DEFINITIONS ::= BEGIN
IMPORTS
cienaRls
FROM CIENA-SMI
Counter64, MODULE-IDENTITY
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC;
cienaRlsTypesMIB MODULE-IDENTITY
LAST-UPDATED "202010010000Z"
ORGANIZATION
"Ciena Corporation"
CONTACT-INFO
"Web: http://www.ciena.com
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION
"This modules describes Ciena's release object for the 6500r platform."
REVISION "202010010000Z"
DESCRIPTION
"Initial Revision."
::= { cienaRls 2 }
PecCode ::= TEXTUAL-CONVENTION
DISPLAY-HINT "16t"
STATUS current
DESCRIPTION
"A UTF-8 string with a max length of 16 characters"
SYNTAX OCTET STRING (SIZE(1..16))
MeansurementType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Flag to indicate if current power is measured, estimated or unknown."
SYNTAX INTEGER { measured(0), estimated(1), unknown(2) }
BandOccupancy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Band Type"
SYNTAX BITS { bandC(0), bandL(1), osc(2), telmetry(3), total(4) }
PowerEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Power supply type"
SYNTAX INTEGER { ac(0), dc(1) }
RamEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER { size16G(0), size32G(1) }
RestartType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Restart type"
SYNTAX INTEGER { warm(1), cold(2) }
OrlState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The ORL State."
SYNTAX INTEGER { valid(1), outputOORL(2), reflectOORL(3),
reflectOORH(4), hssf(5), shutoff(6), unknown(7),
notApplicable(8) }
AdminState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identify the administrative state"
SYNTAX INTEGER { enabled(1), disabled(2), unassigned(3) }
END -- end of module CIENA-6500R-TYPES-MIB.

View File

@ -0,0 +1,235 @@
CIENA-PRO-SOFTWARE-MIB DEFINITIONS ::= BEGIN
IMPORTS
cienaPro
FROM CIENA-SMI
DateTime
FROM CIENA-PRO-TYPES-MIB
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC;
cienaProSoftwareMIB MODULE-IDENTITY
LAST-UPDATED "202010010000Z"
ORGANIZATION
"Ciena Corporation"
CONTACT-INFO
"Web: http://www.ciena.com
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION
"This module defines software upgrade support for Ciena Platform's."
REVISION "202010010000Z"
DESCRIPTION
"Initial Revision."
::= { cienaPro 2 }
--
-- Textual Conventions
--
UpgradeOpState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Software upgrade operational state."
SYNTAX INTEGER {
unknown(0),
idle(1),
loadInProgress(2),
loadComplete(3),
loadFailed(4),
invokeInProgress(5),
invokeComplete(6),
invokeFailed(7),
installationInProgress(8),
installationComplete(9),
installationFailed(10),
commitInProgress(11),
commitComplete(12),
commitFailed(13),
cancelInProgress(14),
cancelComplete(15),
cancelFailed(16),
deleteInProgress(17),
deleteComplete(18),
deleteFailed(19),
automaticUpgradeInProgress(20),
automaticUpgradeComplete(21),
automaticUpgradeFailed(22),
moduleColdRestartRequired(23),
componentUpgradeInProgress(24),
componentUpgradeComplete(25),
componentUpgradeFailed(26),
deliveryInProgress(27),
deliveryComplete(28),
deliveryFailed(29)
}
UpgradeOperation ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Software upgrade operation"
SYNTAX INTEGER {
unknown(0),
none(1),
softwareInstall(2),
softwareDeliver(3),
softwareLoad(4),
softwareActivate(5),
softwareCommit(6),
softwareCancel(7),
softwareDelete(8),
autoUpgrade(9)
}
OperationResultType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Software upgrade result"
SYNTAX INTEGER {
ok(0),
failed(1),
unknownError(2),
timeout(3),
packageDeliveryFailure(4),
packageValidationFailure(5),
insufficientDiskSpace(6),
packageExtractionFailure(7),
systemError(8),
dependentServiceError(9),
packageInformationUnavailable(10),
upgradeVersionUnknown(11),
authenticationFailure(12),
fileNotFound(13),
fileTransferFailure(14),
invalidUri(15),
invalidState(16),
dataConversionFailure(17),
licenseCheckFailure(18)
}
--
-- Node definitions
--
cienaProSoftware OBJECT IDENTIFIER
::= { cienaProSoftwareMIB 1 }
cienaProSoftwareUpgradeOperationalState OBJECT-TYPE
SYNTAX UpgradeOpState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current software manager state.
Examples: <op>-in-progress, <op>-complete, <op>-failed or Idle."
::= { cienaProSoftware 1 }
cienaProSoftwareEntityReportedState OBJECT-TYPE
SYNTAX UpgradeOpState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state reported by the managed upgrade entity.
Examples: <op>-in-progress, <op>-complete, <op>-failed or Idle."
::= { cienaProSoftware 2 }
cienaProSoftwareOperationInProgress OBJECT-TYPE
SYNTAX UpgradeOperation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current software manager operation in progress, if applicable."
::= { cienaProSoftware 3 }
cienaProSoftwareOperationStartTimestamp OBJECT-TYPE
SYNTAX DateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp when the current software manager operation in progress started.
(Not supported in this software release version)."
::= { cienaProSoftware 4 }
cienaProSoftwareLastOperation OBJECT-TYPE
SYNTAX UpgradeOperation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp when the current software manager operation in progress started.
(Not supported in this software release version)."
::= { cienaProSoftware 5 }
cienaProSoftwareLastOperationResult OBJECT-TYPE
SYNTAX OperationResultType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last completed software manager operation."
::= { cienaProSoftware 6 }
cienaProSoftwareLastOperationResultStr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result description details of the last completed software manager operation."
::= { cienaProSoftware 7 }
cienaProSoftwareLastOperationStartTimestamp OBJECT-TYPE
SYNTAX DateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp when the Timestamp when the last software manager operation had started."
::= { cienaProSoftware 8 }
cienaProSoftwareLastOperationEndTimestamp OBJECT-TYPE
SYNTAX DateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp when the last software manager operation completed."
::= { cienaProSoftware 9 }
cienaProSoftwareCommittedVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last successfully upgraded software release version.
Format: RLS-xx.yy.zz.bbbb."
::= { cienaProSoftware 10 }
cienaProSoftwareActiveVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Target software release version which was activated by an upgrade.
UNKNOWN implies an upgrade is required.
Format: RLS-xx.yy.zz.bbbb."
::= { cienaProSoftware 11 }
cienaProSoftwareUpgradeToVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Target software release version of an in-progress upgrade.
Format: RLS-xx.yy.zz.bbbb."
::= { cienaProSoftware 12 }
cienaProSoftwareRunningVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual software release version that is currently running
and is expected to match active-version after an upgrade is completed.
Format: RLS-xx.yy.zz.bbbb."
::= { cienaProSoftware 13 }
END -- end of module CIENA-PRO-SOFTWARE-MIB.

View File

@ -0,0 +1,117 @@
CIENA-PRO-TYPES-MIB DEFINITIONS ::= BEGIN
IMPORTS
cienaPro
FROM CIENA-SMI
Counter64, MODULE-IDENTITY
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC;
cienaProTypesMIB MODULE-IDENTITY
LAST-UPDATED "202010010000Z"
ORGANIZATION
"Ciena Corporation"
CONTACT-INFO
"Web: http://www.ciena.com
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION
"This modules describes Ciena's release object for the all platform's"
REVISION "202010010000Z"
DESCRIPTION
"Initial Revision."
::= { cienaPro 4 }
TimeTicks64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This type is based on the timeticks type, but with 64-bit width."
SYNTAX Counter64
DateTime ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"YYYY-MM-DDTHH:MM:SSZ+-hh:mm
where YYYY is the year, MM is the month expressed as a two-digit
month (zero padding if required), DD is the day of the month,
expressed as a two digit value. T is the literal character 'T',
HH is the hour of the day expressed as a two digit number, using
the 24-hour clock, MM is the minute of the hour expressed as a
two digit number. Z is the literal character 'Z', followed by a
timezone offset expressed in hours (hh) and minutes (mm), both
expressed as two digit numbers. The time offset is specified as
a positive or negative offset to UTC using the '+' or '-'
character preceding the offset.
Optionally, fractional seconds can be expressed after the minute
of the hour as a decimal number of unspecified precision
reflecting fractions of a second."
SYNTAX OCTET STRING
DomainName ::= TEXTUAL-CONVENTION
DISPLAY-HINT "253t"
STATUS current
DESCRIPTION
"A UTF-8 string with a max length of 253 characters"
SYNTAX OCTET STRING (SIZE(1..253))
AlarmDirection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER { tx(1), rx(2), bi(3) }
AlarmLocation ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER { nearend(2), farend(3) }
AlarmSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Severity, based on X.733 perceived severity."
SYNTAX INTEGER { unknown(1), critical(2), major(3), minor(4),
warning(5) }
AlarmServiceImpact ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Service impact, either sa (service-affecting) or nsa (not-service-affecting)."
SYNTAX INTEGER { nsa(1), sa(2) }
DisplayString16 ::= TEXTUAL-CONVENTION
DISPLAY-HINT "16t"
STATUS current
DESCRIPTION
"A UTF-8 string with a max length of 16 characters"
SYNTAX OCTET STRING (SIZE(1..16))
DisplayString32 ::= TEXTUAL-CONVENTION
DISPLAY-HINT "32t"
STATUS current
DESCRIPTION
"A UTF-8 string with a max length of 32 characters"
SYNTAX OCTET STRING (SIZE(1..32))
DisplayString64 ::= TEXTUAL-CONVENTION
DISPLAY-HINT "64t"
STATUS current
DESCRIPTION
"A UTF-8 string with a max length of 64 characters"
SYNTAX OCTET STRING (SIZE(1..64))
DisplayString128 ::= TEXTUAL-CONVENTION
DISPLAY-HINT "128t"
STATUS current
DESCRIPTION
"A UTF-8 string with a max length of 128 characters"
SYNTAX OCTET STRING (SIZE(1..128))
END -- end of module CIENA-PRO-TYPES-MIB.

View File

@ -1,4 +1,3 @@
-- This file was included in Ciena MIB release MIBS-CIENA-CES-08-07-00-024
--
-- CIENA-SMI.my
--
@ -11,7 +10,7 @@
FROM SNMPv2-SMI;
ciena MODULE-IDENTITY
LAST-UPDATED "201903010756Z"
LAST-UPDATED "202011240000Z"
ORGANIZATION "Ciena Corp."
CONTACT-INFO
" Mib Meister
@ -21,25 +20,29 @@
Phone: +1 800 921 1144
Email: support@ciena.com"
DESCRIPTION
"MIB Version: 08-07-00-024."
"MIB Version: MIBS-CIENA-CES-XX-XX-XX-XXX."
REVISION "201903010756Z"
REVISION "202011240000Z"
DESCRIPTION
"Updated for cienaRls and cienaPro."
REVISION "201706070000Z"
DESCRIPTION
"Updated contact info."
REVISION "201903010756Z"
REVISION "201507150000Z"
DESCRIPTION
"Updated for cienaGenericMIBs and cienaOpterametro."
REVISION "201903010756Z"
REVISION "201304220000Z"
DESCRIPTION
"Fixed miscellaneous spelling and description errors."
REVISION "201903010756Z"
REVISION "201212260000Z"
DESCRIPTION
"Fixed the revision and description minor errors."
REVISION "201903010756Z"
REVISION "201009272317Z"
DESCRIPTION
"Initial creation of MIB file structure for Ciena Packet Networking Products."
::= { enterprises 1271 }
@ -95,6 +98,13 @@
"Provides a root object identifier for all the Trap MIBs."
::= { cienaCes 1 }
cienaRls OBJECT-IDENTITY
STATUS current
DESCRIPTION
"cienaRls provides a root object identifier that is used to define MIBs
pertaining to Ciena's 6500 Reconfigurable Line System product."
::= { ciena 4 }
cienaGenericMIBs OBJECT-IDENTITY
STATUS current
DESCRIPTION
@ -102,6 +112,13 @@
products."
::= { ciena 29 }
cienaPro OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This module represents the top-level MIB branch for some of the PRO (Portable Resource Object) MIBs
which are platform independent and are used in a variety of Ciena products."
::= { ciena 30 }
cienaOpterametro OBJECT-IDENTITY
STATUS current
DESCRIPTION

View File

@ -229,7 +229,7 @@
},
"num_oid": {
"type": "string",
"pattern": "^(\\.\\d+)+(\\.?\\{\\{ \\$index \\}\\})?(\\.\\d+)*$"
"pattern": "^(\\.\\d+)+(\\.?\\{\\{ \\$index(.string)? \\}\\})?(\\.\\d+)*$"
},
"descr": {
"type": "string"
@ -414,7 +414,7 @@
},
"num_oid": {
"type": "string",
"pattern": "^(\\.\\d+)+\\.?\\{\\{ \\$index \\}\\}(\\.\\d+)*$"
"pattern": "^(\\.\\d+)+(\\.?\\{\\{ \\$index(.string)? \\}\\})?(\\.\\d+)*$"
},
"index": {
"type": ["integer", "string"]

File diff suppressed because it is too large Load Diff

View File

@ -5837,8 +5837,8 @@
"ifName": "fxp2",
"portName": null,
"ifIndex": 3,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "true",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -5937,8 +5937,8 @@
"ifName": "lo0",
"portName": null,
"ifIndex": 6,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6037,8 +6037,8 @@
"ifName": "tap",
"portName": null,
"ifIndex": 7,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6137,8 +6137,8 @@
"ifName": "gre",
"portName": null,
"ifIndex": 8,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6237,8 +6237,8 @@
"ifName": "ipip",
"portName": null,
"ifIndex": 9,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6337,8 +6337,8 @@
"ifName": "pime",
"portName": null,
"ifIndex": 10,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6437,8 +6437,8 @@
"ifName": "pimd",
"portName": null,
"ifIndex": 11,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6537,8 +6537,8 @@
"ifName": "mtun",
"portName": null,
"ifIndex": 12,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6637,8 +6637,8 @@
"ifName": "fxp2.0",
"portName": null,
"ifIndex": 15,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6737,8 +6737,8 @@
"ifName": "lo0.0",
"portName": null,
"ifIndex": 16,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6837,8 +6837,8 @@
"ifName": "lo0.16384",
"portName": null,
"ifIndex": 21,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6937,8 +6937,8 @@
"ifName": "lo0.16385",
"portName": null,
"ifIndex": 22,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7037,8 +7037,8 @@
"ifName": "lo0.32768",
"portName": null,
"ifIndex": 248,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7137,8 +7137,8 @@
"ifName": "ae0",
"portName": null,
"ifIndex": 501,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -7237,8 +7237,8 @@
"ifName": "pp0",
"portName": null,
"ifIndex": 502,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7337,8 +7337,8 @@
"ifName": "irb",
"portName": null,
"ifIndex": 503,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7437,8 +7437,8 @@
"ifName": "st0",
"portName": null,
"ifIndex": 504,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7537,8 +7537,8 @@
"ifName": "st0.0",
"portName": null,
"ifIndex": 505,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7837,8 +7837,8 @@
"ifName": "st0.1",
"portName": null,
"ifIndex": 508,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8037,8 +8037,8 @@
"ifName": "st0.2",
"portName": null,
"ifIndex": 510,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8137,8 +8137,8 @@
"ifName": "st0.3",
"portName": null,
"ifIndex": 511,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8237,8 +8237,8 @@
"ifName": "st0.4",
"portName": null,
"ifIndex": 512,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8337,8 +8337,8 @@
"ifName": "vlan.1",
"portName": null,
"ifIndex": 513,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8437,8 +8437,8 @@
"ifName": "vlan.2",
"portName": null,
"ifIndex": 514,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8537,8 +8537,8 @@
"ifName": "vlan.5",
"portName": null,
"ifIndex": 515,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8637,8 +8637,8 @@
"ifName": "vlan.10",
"portName": null,
"ifIndex": 516,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8737,8 +8737,8 @@
"ifName": "vlan.112",
"portName": null,
"ifIndex": 517,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -11738,7 +11738,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.20.75.80.78.46.75.80.78.45.82.80.77.46.97.108.108.84.101.115.116.115",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.3.75.80.78.7.75.80.78.45.82.80.77.8.97.108.108.84.101.115.116.115",
"sensor_index": "jnxRpmResSumPercentLost.KPN.KPN-RPM.allTests",
"sensor_type": "junos",
"sensor_descr": "KPN.KPN-RPM.allTests Probe Loss",
@ -11763,7 +11763,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.23.75.80.78.46.75.80.78.45.82.80.77.46.99.117.114.114.101.110.116.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.3.75.80.78.7.75.80.78.45.82.80.77.11.99.117.114.114.101.110.116.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.KPN.KPN-RPM.currentTest",
"sensor_type": "junos",
"sensor_descr": "KPN.KPN-RPM.currentTest Probe Loss",
@ -11788,7 +11788,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.29.75.80.78.46.75.80.78.45.82.80.77.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.3.75.80.78.7.75.80.78.45.82.80.77.17.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.KPN.KPN-RPM.lastCompletedTest",
"sensor_type": "junos",
"sensor_descr": "KPN.KPN-RPM.lastCompletedTest Probe Loss",
@ -11813,7 +11813,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.24.90.73.71.71.79.46.90.73.71.71.79.45.82.80.77.46.97.108.108.84.101.115.116.115",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.8.97.108.108.84.101.115.116.115",
"sensor_index": "jnxRpmResSumPercentLost.ZIGGO.ZIGGO-RPM.allTests",
"sensor_type": "junos",
"sensor_descr": "ZIGGO.ZIGGO-RPM.allTests Probe Loss",
@ -11838,7 +11838,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.27.90.73.71.71.79.46.90.73.71.71.79.45.82.80.77.46.99.117.114.114.101.110.116.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.11.99.117.114.114.101.110.116.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.ZIGGO.ZIGGO-RPM.currentTest",
"sensor_type": "junos",
"sensor_descr": "ZIGGO.ZIGGO-RPM.currentTest Probe Loss",
@ -11863,7 +11863,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.33.90.73.71.71.79.46.90.73.71.71.79.45.82.80.77.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.5.90.73.71.71.79.9.90.73.71.71.79.45.82.80.77.17.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.ZIGGO.ZIGGO-RPM.lastCompletedTest",
"sensor_type": "junos",
"sensor_descr": "ZIGGO.ZIGGO-RPM.lastCompletedTest Probe Loss",

View File

@ -5937,8 +5937,8 @@
"ifName": "dsc",
"portName": null,
"ifIndex": 5,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6037,8 +6037,8 @@
"ifName": "lo0",
"portName": null,
"ifIndex": 6,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6137,8 +6137,8 @@
"ifName": "tap",
"portName": null,
"ifIndex": 7,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6237,8 +6237,8 @@
"ifName": "gre",
"portName": null,
"ifIndex": 8,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6337,8 +6337,8 @@
"ifName": "ipip",
"portName": null,
"ifIndex": 9,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6437,8 +6437,8 @@
"ifName": "pime",
"portName": null,
"ifIndex": 10,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6537,8 +6537,8 @@
"ifName": "pimd",
"portName": null,
"ifIndex": 11,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6637,8 +6637,8 @@
"ifName": "mtun",
"portName": null,
"ifIndex": 12,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6837,8 +6837,8 @@
"ifName": "lo0.16384",
"portName": null,
"ifIndex": 21,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -6937,8 +6937,8 @@
"ifName": "lo0.16385",
"portName": null,
"ifIndex": 22,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7237,8 +7237,8 @@
"ifName": "cbp0",
"portName": null,
"ifIndex": 501,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7337,8 +7337,8 @@
"ifName": "demux0",
"portName": null,
"ifIndex": 502,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7437,8 +7437,8 @@
"ifName": "esi",
"portName": null,
"ifIndex": 503,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7537,8 +7537,8 @@
"ifName": "fti0",
"portName": null,
"ifIndex": 504,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7637,8 +7637,8 @@
"ifName": "fti1",
"portName": null,
"ifIndex": 505,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7737,8 +7737,8 @@
"ifName": "fti2",
"portName": null,
"ifIndex": 506,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7837,8 +7837,8 @@
"ifName": "fti3",
"portName": null,
"ifIndex": 507,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -7937,8 +7937,8 @@
"ifName": "fti4",
"portName": null,
"ifIndex": 508,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8037,8 +8037,8 @@
"ifName": "fti5",
"portName": null,
"ifIndex": 509,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8137,8 +8137,8 @@
"ifName": "fti6",
"portName": null,
"ifIndex": 510,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8237,8 +8237,8 @@
"ifName": "fti7",
"portName": null,
"ifIndex": 511,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8337,8 +8337,8 @@
"ifName": "irb",
"portName": null,
"ifIndex": 512,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8437,8 +8437,8 @@
"ifName": "jsrv",
"portName": null,
"ifIndex": 513,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8637,8 +8637,8 @@
"ifName": "pip0",
"portName": null,
"ifIndex": 515,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8737,8 +8737,8 @@
"ifName": "pp0",
"portName": null,
"ifIndex": 516,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8837,8 +8837,8 @@
"ifName": "rbeb",
"portName": null,
"ifIndex": 517,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -8937,8 +8937,8 @@
"ifName": "vtep",
"portName": null,
"ifIndex": 518,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -9137,8 +9137,8 @@
"ifName": "lc-0/0/0.32769",
"portName": null,
"ifIndex": 520,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -9437,8 +9437,8 @@
"ifName": "pfe-0/0/0.16383",
"portName": null,
"ifIndex": 523,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -9537,8 +9537,8 @@
"ifName": "pfh-0/0/0.16383",
"portName": null,
"ifIndex": 524,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -9637,8 +9637,8 @@
"ifName": "pfh-0/0/0.16384",
"portName": null,
"ifIndex": 525,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -11337,8 +11337,8 @@
"ifName": "lo0.100",
"portName": null,
"ifIndex": 542,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -11437,8 +11437,8 @@
"ifName": "lo0.200",
"portName": null,
"ifIndex": 543,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -11805,7 +11805,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.26.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.97.108.108.84.101.115.116.115",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.8.97.108.108.84.101.115.116.115",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.allTests",
"sensor_type": "junos",
"sensor_descr": "test-rpm.internet.allTests Probe Loss",
@ -11830,7 +11830,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.29.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.99.117.114.114.101.110.116.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.11.99.117.114.114.101.110.116.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.currentTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm.internet.currentTest Probe Loss",
@ -11855,7 +11855,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.35.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.17.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.lastCompletedTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm.internet.lastCompletedTest Probe Loss",
@ -11880,7 +11880,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.28.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.97.108.108.84.101.115.116.115",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.8.97.108.108.84.101.115.116.115",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.allTests",
"sensor_type": "junos",
"sensor_descr": "test-rpm3.timestamp.allTests Probe Loss",
@ -11905,7 +11905,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.31.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.99.117.114.114.101.110.116.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.11.99.117.114.114.101.110.116.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.currentTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm3.timestamp.currentTest Probe Loss",
@ -11930,7 +11930,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.37.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.17.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.lastCompletedTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm3.timestamp.lastCompletedTest Probe Loss",
@ -12223,7 +12223,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.26.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.97.108.108.84.101.115.116.115",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.8.97.108.108.84.101.115.116.115",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.allTests",
"sensor_type": "junos",
"sensor_descr": "test-rpm.internet.allTests Probe Loss",
@ -12248,7 +12248,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.29.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.99.117.114.114.101.110.116.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.11.99.117.114.114.101.110.116.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.currentTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm.internet.currentTest Probe Loss",
@ -12273,7 +12273,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.35.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.17.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.lastCompletedTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm.internet.lastCompletedTest Probe Loss",
@ -12298,7 +12298,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.28.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.97.108.108.84.101.115.116.115",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.8.97.108.108.84.101.115.116.115",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.allTests",
"sensor_type": "junos",
"sensor_descr": "test-rpm3.timestamp.allTests Probe Loss",
@ -12323,7 +12323,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.31.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.99.117.114.114.101.110.116.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.11.99.117.114.114.101.110.116.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.currentTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm3.timestamp.currentTest Probe Loss",
@ -12348,7 +12348,7 @@
"sensor_deleted": 0,
"sensor_class": "loss",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.37.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.17.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116",
"sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.lastCompletedTest",
"sensor_type": "junos",
"sensor_descr": "test-rpm3.timestamp.lastCompletedTest Probe Loss",

File diff suppressed because it is too large Load Diff