mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
TP-Link Jetstream DDM and PoE Support (#12990)
* Add TP-Link's DDM and PoE MIBs via their 20210310 archive. * Add support for DDM sensors on TP-Link Jetstream switches. * Add support for PoE on TP-Link switches. * Fix linting issues. * Fix group discrepancy in test data. * Fix multiple discrepancies in DDM test data. * Improve `num_oid` and `index` fields for Jetstream PoE sensors. * Test data for PoE sensor `index` change. * Convert Jetstream sensors to YAML and refine index names.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
mib: TPLINK-SYSINFO-MIB:TPLINK-SYSMONITOR-MIB
|
||||
---
|
||||
mib: TPLINK-SYSINFO-MIB:TPLINK-SYSMONITOR-MIB:TPLINK-DDMSTATUS-MIB:TPLINK-DDMBIASCURTHRESHOLD-MIB:TPLINK-DDMRXPOWTHRESHOLD-MIB:TPLINK-DDMTXPOWTHRESHOLD-MIB:TPLINK-DDMTEMPTHRESHOLD-MIB:TPLINK-DDMVOLTHRESHOLD-MIB:TPLINK-POWER-OVER-ETHERNET-MIB
|
||||
modules:
|
||||
os:
|
||||
hardware: TPLINK-SYSINFO-MIB::tpSysInfoHwVersion.0
|
||||
@@ -14,5 +15,173 @@ modules:
|
||||
-
|
||||
oid: tpSysMonitorCpu5Seconds
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.4.1.1.1.1.2.{{ $index }}'
|
||||
index: '{{ $index }}'
|
||||
index: '{{ $index }}'
|
||||
descr: 'Proc #{{ $index }}'
|
||||
sensors:
|
||||
pre-cache:
|
||||
data:
|
||||
-
|
||||
oid:
|
||||
- ddmBiasCurThresholdLowAlarm
|
||||
- ddmBiasCurThresholdLowWarn
|
||||
- ddmBiasCurThresholdHighAlarm
|
||||
- ddmBiasCurThresholdHighWarn
|
||||
- ddmTempThresholdLowAlarm
|
||||
- ddmTempThresholdLowWarn
|
||||
- ddmTempThresholdHighAlarm
|
||||
- ddmTempThresholdHighWarn
|
||||
- ddmVolThresholdLowAlarm
|
||||
- ddmVolThresholdLowWarn
|
||||
- ddmVolThresholdHighAlarm
|
||||
- ddmVolThresholdHighWarn
|
||||
- ddmRxPowThresholdLowAlarm
|
||||
- ddmRxPowThresholdLowWarn
|
||||
- ddmRxPowThresholdHighAlarm
|
||||
- ddmRxPowThresholdHighWarn
|
||||
- ddmTxPowThresholdLowAlarm
|
||||
- ddmTxPowThresholdLowWarn
|
||||
- ddmTxPowThresholdHighAlarm
|
||||
- ddmTxPowThresholdHighWarn
|
||||
current:
|
||||
data:
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.4.{{ $index }}'
|
||||
value: ddmStatusBiasCurrent
|
||||
descr: 'DDM Bias Current {{ $ddmStatusPort }}'
|
||||
divisor: 1000
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: 'ddmStatusBiasCurrent.{{ $index }}'
|
||||
low_limit: ddmBiasCurThresholdLowAlarm
|
||||
low_warn_limit: ddmBiasCurThresholdLowWarn
|
||||
high_limit: ddmBiasCurThresholdHighAlarm
|
||||
warn_limit: ddmBiasCurThresholdHighWarn
|
||||
dbm:
|
||||
data:
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.5.{{ $index }}'
|
||||
value: ddmStatusTxPow
|
||||
descr: 'DDM TX Power {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: 'ddmStatusTxPow.{{ $index }}'
|
||||
user_func: mw_to_dbm
|
||||
low_limit: ddmTxPowThresholdLowAlarm
|
||||
low_warn_limit: ddmTxPowThresholdLowWarn
|
||||
high_limit: ddmTxPowThresholdHighAlarm
|
||||
warn_limit: ddmTxPowThresholdHighWarn
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.6.{{ $index }}'
|
||||
value: ddmStatusRxPow
|
||||
descr: 'DDM RX Power {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: 'ddmStatusRxPow.{{ $index }}'
|
||||
user_func: mw_to_dbm
|
||||
low_limit: ddmRxPowThresholdLowAlarm
|
||||
low_warn_limit: ddmRxPowThresholdLowWarn
|
||||
high_limit: ddmRxPowThresholdHighAlarm
|
||||
warn_limit: ddmRxPowThresholdHighWarn
|
||||
power:
|
||||
data:
|
||||
-
|
||||
oid: tpPoeGlobal
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.56.1.1.1.3.{{ $index }}'
|
||||
value: tpSystemPowerConsumption
|
||||
descr: 'Power Consumption'
|
||||
divisor: 10
|
||||
index: tpSystemPowerConsumption
|
||||
group: PoE
|
||||
-
|
||||
oid: tpPoeGlobal
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.56.1.1.1.4.{{ $index }}'
|
||||
value: tpSystemPowerRemain
|
||||
descr: 'Power Remaining'
|
||||
divisor: 10
|
||||
index: tpSystemPowerRemain
|
||||
group: PoE
|
||||
-
|
||||
oid: tpPoeGlobal
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.56.1.1.1.1.{{ $index }}'
|
||||
value: tpSystemPowerLimit
|
||||
descr: 'Power Limit'
|
||||
divisor: 10
|
||||
index: tpSystemPowerLimit
|
||||
group: PoE
|
||||
state:
|
||||
data:
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.7.{{ $index }}'
|
||||
value: ddmStatusDataReady
|
||||
descr: 'DDM Data Ready {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: '{{ $index }}'
|
||||
skip_values: 2
|
||||
states: &ddm_states
|
||||
- {value: 0, generic: 0, graph: 0, descr: 'False'}
|
||||
- {value: 1, generic: 2, graph: 1, descr: 'True'}
|
||||
- {value: 2, generic: 2, graph: 2, descr: N/A}
|
||||
state_name: ddmStatusDataReady
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.8.{{ $index }}'
|
||||
value: ddmStatusLossSignal
|
||||
descr: 'DDM Loss of Signal {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: '{{ $index }}'
|
||||
skip_values: 2
|
||||
states: *ddm_states
|
||||
state_name: ddmStatusLossSignal
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.9.{{ $index }}'
|
||||
value: ddmStatusTxFault
|
||||
descr: 'DDM TX Fault {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: '{{ $index }}'
|
||||
skip_values: 2
|
||||
states: *ddm_states
|
||||
state_name: ddmStatusTxFault
|
||||
temperature:
|
||||
data:
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.2.{{ $index }}'
|
||||
value: ddmStatusTemperature
|
||||
descr: 'DDM Temperature {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: 'ddmStatusTemperature.{{ $index }}'
|
||||
low_limit: ddmTempThresholdLowAlarm
|
||||
low_warn_limit: ddmTempThresholdLowWarn
|
||||
high_limit: ddmTempThresholdHighAlarm
|
||||
warn_limit: ddmTempThresholdHighWarn
|
||||
voltage:
|
||||
data:
|
||||
-
|
||||
oid: ddmStatusEntry
|
||||
num_oid: '.1.3.6.1.4.1.11863.6.96.1.7.1.1.3.{{ $index }}'
|
||||
value: ddmStatusVoltage
|
||||
descr: 'DDM Voltage {{ $ddmStatusPort }}'
|
||||
entPhysicalIndex: '{{ $index }}'
|
||||
entPhysicalIndex_measured: ports
|
||||
group: SFPs
|
||||
index: 'ddmStatusVoltage.{{ $index }}'
|
||||
low_limit: ddmVolThresholdLowAlarm
|
||||
low_warn_limit: ddmVolThresholdLowWarn
|
||||
high_limit: ddmVolThresholdHighAlarm
|
||||
warn_limit: ddmVolThresholdHighWarn
|
||||
|
@@ -391,6 +391,22 @@ if (Config::get('enable_ports_poe')) {
|
||||
[$group_id, $if_id] = explode('.', $key);
|
||||
$port_stats[$if_id] = array_merge($port_stats[$if_id], $value);
|
||||
}
|
||||
} elseif ($device['os'] == 'jetstream') {
|
||||
echo 'tpPoePortConfigEntry';
|
||||
$port_stats_poe = snmpwalk_cache_oid($device, 'tpPoePortConfigEntry', [], 'TPLINK-POWER-OVER-ETHERNET-MIB');
|
||||
$ifTable_ifDescr = snmpwalk_cache_oid($device, 'ifDescr', [], 'IF-MIB');
|
||||
|
||||
$port_ent_to_if = [];
|
||||
foreach ($ifTable_ifDescr as $if_index => $if_descr) {
|
||||
if (preg_match('/^[a-z]+ethernet \d+\/\d+\/(\d+)$/i', $if_descr['ifDescr'], $matches)) {
|
||||
$port_ent_to_if[$matches[1]] = $if_index;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($port_stats_poe as $p_index => $p_stats) {
|
||||
$if_id = $port_ent_to_if[$p_index];
|
||||
$port_stats[$if_id] = array_merge($port_stats[$if_id], $p_stats);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -59,4 +59,18 @@ if (($device['os'] == 'vrp')) {
|
||||
data_update($device, 'poe', $tags, $fields);
|
||||
echo 'PoE(IOS) ';
|
||||
}//end if
|
||||
} elseif (($device['os'] == 'jetstream')) {
|
||||
if (isset($this_port['tpPoePortStatus'])) {
|
||||
// TP-Link uses .1W for their units; convert to milliwatts.
|
||||
$fields = [
|
||||
'PortPwrAllocated' => $this_port['tpPoePowerLimit'] * 100,
|
||||
'PortPwrAvailable' => $this_port['tpPoePowerLimit'] * 100,
|
||||
'PortConsumption' => $this_port['tpPoePower'] * 100,
|
||||
'PortMaxPwrDrawn' => $this_port['tpPoePowerLimit'] * 100,
|
||||
];
|
||||
|
||||
$tags = compact('ifName', 'rrd_name', 'rrd_def');
|
||||
data_update($device, 'poe', $tags, $fields);
|
||||
echo 'PoE(jetstream) ';
|
||||
}
|
||||
}
|
||||
|
99
mibs/tplink/TPLINK-DDMBIASCURTHRESHOLD-MIB
Normal file
99
mibs/tplink/TPLINK-DDMBIASCURTHRESHOLD-MIB
Normal file
@@ -0,0 +1,99 @@
|
||||
TPLINK-DDMBIASCURTHRESHOLD-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkDdmManageMIBObjects
|
||||
FROM TPLINK-DDMMANAGE-MIB;
|
||||
|
||||
ddmBiasCurThreshold MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "The config of DDM bias current threshold."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkDdmManageMIBObjects 4 }
|
||||
|
||||
ddmBiasCurThresholdTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DDMBiasCurThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table that is used to configure the DDM Bias Current Threshold for specific ports on the Switch."
|
||||
::= { ddmBiasCurThreshold 1 }
|
||||
|
||||
ddmBiasCurThresholdEntry OBJECT-TYPE
|
||||
SYNTAX DDMBiasCurThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of information for every port."
|
||||
INDEX { ifIndex }
|
||||
::= { ddmBiasCurThresholdTable 1 }
|
||||
|
||||
DDMBiasCurThresholdEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
ddmBiasCurThresholdPort DisplayString(SIZE(0..255)),
|
||||
ddmBiasCurThresholdHighAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmBiasCurThresholdLowAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmBiasCurThresholdHighWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmBiasCurThresholdLowWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmBiasCurThresholdPortLAG OCTET STRING(SIZE(0..30))
|
||||
}
|
||||
|
||||
ddmBiasCurThresholdPort OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the port number."
|
||||
::= { ddmBiasCurThresholdEntry 1 }
|
||||
|
||||
ddmBiasCurThresholdHighAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the alarm."
|
||||
::= { ddmBiasCurThresholdEntry 2 }
|
||||
|
||||
ddmBiasCurThresholdLowAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the alarm."
|
||||
::= { ddmBiasCurThresholdEntry 3 }
|
||||
|
||||
ddmBiasCurThresholdHighWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the warning."
|
||||
::= { ddmBiasCurThresholdEntry 4 }
|
||||
|
||||
ddmBiasCurThresholdLowWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the warning."
|
||||
::= { ddmBiasCurThresholdEntry 5 }
|
||||
|
||||
ddmBiasCurThresholdPortLAG OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lag number of the port."
|
||||
::= { ddmBiasCurThresholdEntry 6 }
|
||||
|
||||
END
|
||||
|
81
mibs/tplink/TPLINK-DDMMANAGE-MIB
Normal file
81
mibs/tplink/TPLINK-DDMMANAGE-MIB
Normal file
@@ -0,0 +1,81 @@
|
||||
TPLINK-DDMMANAGE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkMgmt
|
||||
FROM TPLINK-MIB;
|
||||
|
||||
tplinkDdmManageMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "Private MIB for DDM configuration."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION
|
||||
"Initial version of this MIB module."
|
||||
::= { tplinkMgmt 96 }
|
||||
|
||||
tplinkDdmManageMIBObjects OBJECT IDENTIFIER ::= { tplinkDdmManageMIB 1 }
|
||||
tplinkDdmManageNotifications OBJECT IDENTIFIER ::= { tplinkDdmManageMIB 2 }
|
||||
|
||||
tempExceedThreshold NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
ifIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A tempExceedThreshold notification is sent when the
|
||||
value of temperature exceeds the threshold. "
|
||||
::= { tplinkDdmManageNotifications 1 }
|
||||
|
||||
volExceedThreshold NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
ifIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A volExceedThreshold notification is sent when the
|
||||
value of voltage exceeds the threshold. "
|
||||
::= { tplinkDdmManageNotifications 2 }
|
||||
|
||||
biasCurExceedThreshold NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
ifIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A biasCurExceedThreshold notification is sent when the
|
||||
value of bias current exceeds the threshold. "
|
||||
::= { tplinkDdmManageNotifications 3 }
|
||||
|
||||
txPowExceedThreshold NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
ifIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A txPowExceedThreshold notification is sent when the
|
||||
value of Tx power exceeds the threshold. "
|
||||
::= { tplinkDdmManageNotifications 4 }
|
||||
|
||||
rxPowExceedThreshold NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
ifIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A rxPowExceedThreshold notification is sent when the
|
||||
value of Rx power exceeds the threshold. "
|
||||
::= { tplinkDdmManageNotifications 5 }
|
||||
|
||||
END
|
99
mibs/tplink/TPLINK-DDMRXPOWTHRESHOLD-MIB
Normal file
99
mibs/tplink/TPLINK-DDMRXPOWTHRESHOLD-MIB
Normal file
@@ -0,0 +1,99 @@
|
||||
TPLINK-DDMRXPOWTHRESHOLD-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkDdmManageMIBObjects
|
||||
FROM TPLINK-DDMMANAGE-MIB;
|
||||
|
||||
ddmRxPowThreshold MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "The config of DDM Rx Power threshold."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkDdmManageMIBObjects 6 }
|
||||
|
||||
ddmRxPowThresholdTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DDMRxPowThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table that is used to configure the DDM Rx Power Threshold for specific ports on the Switch."
|
||||
::= { ddmRxPowThreshold 1 }
|
||||
|
||||
ddmRxPowThresholdEntry OBJECT-TYPE
|
||||
SYNTAX DDMRxPowThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of information for every port."
|
||||
INDEX { ifIndex }
|
||||
::= { ddmRxPowThresholdTable 1 }
|
||||
|
||||
DDMRxPowThresholdEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
ddmRxPowThresholdPort DisplayString(SIZE(0..255)),
|
||||
ddmRxPowThresholdHighAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmRxPowThresholdLowAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmRxPowThresholdHighWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmRxPowThresholdLowWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmRxPowThresholdPortLAG OCTET STRING(SIZE(0..30))
|
||||
}
|
||||
|
||||
ddmRxPowThresholdPort OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the port number."
|
||||
::= { ddmRxPowThresholdEntry 1 }
|
||||
|
||||
ddmRxPowThresholdHighAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the alarm."
|
||||
::= { ddmRxPowThresholdEntry 2 }
|
||||
|
||||
ddmRxPowThresholdLowAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the alarm."
|
||||
::= { ddmRxPowThresholdEntry 3 }
|
||||
|
||||
ddmRxPowThresholdHighWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the warning."
|
||||
::= { ddmRxPowThresholdEntry 4 }
|
||||
|
||||
ddmRxPowThresholdLowWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the warning."
|
||||
::= { ddmRxPowThresholdEntry 5 }
|
||||
|
||||
ddmRxPowThresholdPortLAG OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lag number of the port."
|
||||
::= { ddmRxPowThresholdEntry 6 }
|
||||
|
||||
END
|
||||
|
126
mibs/tplink/TPLINK-DDMSTATUS-MIB
Normal file
126
mibs/tplink/TPLINK-DDMSTATUS-MIB
Normal file
@@ -0,0 +1,126 @@
|
||||
TPLINK-DDMSTATUS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkDdmManageMIBObjects
|
||||
FROM TPLINK-DDMMANAGE-MIB;
|
||||
|
||||
ddmStatus MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "The view of DDM status."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkDdmManageMIBObjects 7 }
|
||||
|
||||
ddmStatusTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DDMStatusEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table that is used to view the DDM status for specific ports on the Switch."
|
||||
::= { ddmStatus 1 }
|
||||
|
||||
ddmStatusEntry OBJECT-TYPE
|
||||
SYNTAX DDMStatusEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of information for every port."
|
||||
INDEX { ifIndex }
|
||||
::= { ddmStatusTable 1 }
|
||||
|
||||
DDMStatusEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
ddmStatusPort DisplayString(SIZE(0..255)),
|
||||
ddmStatusTemperature DisplayString(SIZE(0..30)),
|
||||
ddmStatusVoltage DisplayString(SIZE(0..30)),
|
||||
ddmStatusBiasCurrent DisplayString(SIZE(0..30)),
|
||||
ddmStatusTxPow DisplayString(SIZE(0..30)),
|
||||
ddmStatusRxPow DisplayString(SIZE(0..30)),
|
||||
ddmStatusDataReady DisplayString(SIZE(0..30)),
|
||||
ddmStatusLossSignal DisplayString(SIZE(0..30)),
|
||||
ddmStatusTxFault DisplayString(SIZE(0..30))
|
||||
}
|
||||
|
||||
ddmStatusPort OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the port number."
|
||||
::= { ddmStatusEntry 1 }
|
||||
|
||||
ddmStatusTemperature OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the temperature of the port."
|
||||
::= { ddmStatusEntry 2 }
|
||||
|
||||
ddmStatusVoltage OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the voltage of the port."
|
||||
::= { ddmStatusEntry 3 }
|
||||
|
||||
ddmStatusBiasCurrent OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the bias current of the port."
|
||||
::= { ddmStatusEntry 4 }
|
||||
|
||||
ddmStatusTxPow OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the tx power of the port."
|
||||
::= { ddmStatusEntry 5 }
|
||||
|
||||
ddmStatusRxPow OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the rx power of the port."
|
||||
::= { ddmStatusEntry 6 }
|
||||
|
||||
ddmStatusDataReady OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates whether SFP is operational or not."
|
||||
::= { ddmStatusEntry 7 }
|
||||
|
||||
ddmStatusLossSignal OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates whether local SFP reports signal loss or not."
|
||||
::= { ddmStatusEntry 8 }
|
||||
|
||||
ddmStatusTxFault OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates whether remote SFP reports signal loss or not."
|
||||
::= { ddmStatusEntry 9 }
|
||||
|
||||
END
|
||||
|
99
mibs/tplink/TPLINK-DDMTEMPTHRESHOLD-MIB
Normal file
99
mibs/tplink/TPLINK-DDMTEMPTHRESHOLD-MIB
Normal file
@@ -0,0 +1,99 @@
|
||||
TPLINK-DDMTEMPTHRESHOLD-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkDdmManageMIBObjects
|
||||
FROM TPLINK-DDMMANAGE-MIB;
|
||||
|
||||
ddmTempThreshold MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "The config of DDM temperature threshold."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkDdmManageMIBObjects 2 }
|
||||
|
||||
ddmTempThresholdTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DDMTempThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table that is used to configure the DDM Temperature Threshold for specific ports on the Switch."
|
||||
::= { ddmTempThreshold 1 }
|
||||
|
||||
ddmTempThresholdEntry OBJECT-TYPE
|
||||
SYNTAX DDMTempThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of information for every port."
|
||||
INDEX { ifIndex }
|
||||
::= { ddmTempThresholdTable 1 }
|
||||
|
||||
DDMTempThresholdEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
ddmTempThresholdPort DisplayString(SIZE(0..255)),
|
||||
ddmTempThresholdHighAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmTempThresholdLowAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmTempThresholdHighWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmTempThresholdLowWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmTempThresholdPortLAG OCTET STRING(SIZE(0..30))
|
||||
}
|
||||
|
||||
ddmTempThresholdPort OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the port number."
|
||||
::= { ddmTempThresholdEntry 1 }
|
||||
|
||||
ddmTempThresholdHighAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the alarm."
|
||||
::= { ddmTempThresholdEntry 2 }
|
||||
|
||||
ddmTempThresholdLowAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the alarm."
|
||||
::= { ddmTempThresholdEntry 3 }
|
||||
|
||||
ddmTempThresholdHighWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the warning."
|
||||
::= { ddmTempThresholdEntry 4 }
|
||||
|
||||
ddmTempThresholdLowWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the warning."
|
||||
::= { ddmTempThresholdEntry 5 }
|
||||
|
||||
ddmTempThresholdPortLAG OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lag number of the port."
|
||||
::= { ddmTempThresholdEntry 6 }
|
||||
|
||||
END
|
||||
|
99
mibs/tplink/TPLINK-DDMTXPOWTHRESHOLD-MIB
Normal file
99
mibs/tplink/TPLINK-DDMTXPOWTHRESHOLD-MIB
Normal file
@@ -0,0 +1,99 @@
|
||||
TPLINK-DDMTXPOWTHRESHOLD-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkDdmManageMIBObjects
|
||||
FROM TPLINK-DDMMANAGE-MIB;
|
||||
|
||||
ddmTxPowThreshold MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "The config of DDM Tx Power threshold."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkDdmManageMIBObjects 5 }
|
||||
|
||||
ddmTxPowThresholdTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DDMTxPowThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table that is used to configure the DDM Tx Power Threshold for specific ports on the Switch."
|
||||
::= { ddmTxPowThreshold 1 }
|
||||
|
||||
ddmTxPowThresholdEntry OBJECT-TYPE
|
||||
SYNTAX DDMTxPowThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of information for every port."
|
||||
INDEX { ifIndex }
|
||||
::= { ddmTxPowThresholdTable 1 }
|
||||
|
||||
DDMTxPowThresholdEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
ddmTxPowThresholdPort DisplayString(SIZE(0..255)),
|
||||
ddmTxPowThresholdHighAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmTxPowThresholdLowAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmTxPowThresholdHighWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmTxPowThresholdLowWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmTxPowThresholdPortLAG OCTET STRING(SIZE(0..30))
|
||||
}
|
||||
|
||||
ddmTxPowThresholdPort OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the port number."
|
||||
::= { ddmTxPowThresholdEntry 1 }
|
||||
|
||||
ddmTxPowThresholdHighAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the alarm."
|
||||
::= { ddmTxPowThresholdEntry 2 }
|
||||
|
||||
ddmTxPowThresholdLowAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the alarm."
|
||||
::= { ddmTxPowThresholdEntry 3 }
|
||||
|
||||
ddmTxPowThresholdHighWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the warning."
|
||||
::= { ddmTxPowThresholdEntry 4 }
|
||||
|
||||
ddmTxPowThresholdLowWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the warning."
|
||||
::= { ddmTxPowThresholdEntry 5 }
|
||||
|
||||
ddmTxPowThresholdPortLAG OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lag number of the port."
|
||||
::= { ddmTxPowThresholdEntry 6 }
|
||||
|
||||
END
|
||||
|
99
mibs/tplink/TPLINK-DDMVOLTHRESHOLD-MIB
Normal file
99
mibs/tplink/TPLINK-DDMVOLTHRESHOLD-MIB
Normal file
@@ -0,0 +1,99 @@
|
||||
TPLINK-DDMVOLTHRESHOLD-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
tplinkDdmManageMIBObjects
|
||||
FROM TPLINK-DDMMANAGE-MIB;
|
||||
|
||||
ddmVolThreshold MODULE-IDENTITY
|
||||
LAST-UPDATED "200908270000Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "The config of DDM voltage threshold."
|
||||
REVISION "200908270000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkDdmManageMIBObjects 3 }
|
||||
|
||||
ddmVolThresholdTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DDMVolThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table that is used to configure the DDM Voltage Threshold for specific ports on the Switch."
|
||||
::= { ddmVolThreshold 1 }
|
||||
|
||||
ddmVolThresholdEntry OBJECT-TYPE
|
||||
SYNTAX DDMVolThresholdEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of information for every port."
|
||||
INDEX { ifIndex }
|
||||
::= { ddmVolThresholdTable 1 }
|
||||
|
||||
DDMVolThresholdEntry ::=
|
||||
SEQUENCE
|
||||
{
|
||||
ddmVolThresholdPort DisplayString(SIZE(0..255)),
|
||||
ddmVolThresholdHighAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmVolThresholdLowAlarm OCTET STRING(SIZE(0..30)),
|
||||
ddmVolThresholdHighWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmVolThresholdLowWarn OCTET STRING(SIZE(0..30)),
|
||||
ddmVolThresholdPortLAG OCTET STRING(SIZE(0..30))
|
||||
}
|
||||
|
||||
ddmVolThresholdPort OBJECT-TYPE
|
||||
SYNTAX DisplayString(SIZE(0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the port number."
|
||||
::= { ddmVolThresholdEntry 1 }
|
||||
|
||||
ddmVolThresholdHighAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the alarm."
|
||||
::= { ddmVolThresholdEntry 2 }
|
||||
|
||||
ddmVolThresholdLowAlarm OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the alarm."
|
||||
::= { ddmVolThresholdEntry 3 }
|
||||
|
||||
ddmVolThresholdHighWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the highest threshold for the warning."
|
||||
::= { ddmVolThresholdEntry 4 }
|
||||
|
||||
ddmVolThresholdLowWarn OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lowest threshold for the warning."
|
||||
::= { ddmVolThresholdEntry 5 }
|
||||
|
||||
ddmVolThresholdPortLAG OBJECT-TYPE
|
||||
SYNTAX OCTET STRING(SIZE(0..30))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the lag number of the port."
|
||||
::= { ddmVolThresholdEntry 6 }
|
||||
|
||||
END
|
||||
|
594
mibs/tplink/TPLINK-POWER-OVER-ETHERNET-MIB
Normal file
594
mibs/tplink/TPLINK-POWER-OVER-ETHERNET-MIB
Normal file
@@ -0,0 +1,594 @@
|
||||
TPLINK-POWER-OVER-ETHERNET-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
TPRowStatus
|
||||
FROM TPLINK-TC-MIB
|
||||
tplinkMgmt
|
||||
FROM TPLINK-MIB;
|
||||
|
||||
tplinkPowerOverEthernetMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201307030000Z"
|
||||
ORGANIZATION "TP-LINK"
|
||||
CONTACT-INFO " www.tplink.com"
|
||||
DESCRIPTION "Private MIB for PoE module."
|
||||
REVISION "201307030000Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkMgmt 56 }
|
||||
|
||||
-- (Top) SubNodes
|
||||
tplinkPoeMIBObjects OBJECT IDENTIFIER ::= {tplinkPowerOverEthernetMIB 1}
|
||||
tplinkPoeNotifications OBJECT IDENTIFIER ::= {tplinkPowerOverEthernetMIB 2}
|
||||
|
||||
-------------- tplinkPoeMIBObjects Overview------------
|
||||
tpPoeConfig OBJECT IDENTIFIER ::= {tplinkPoeMIBObjects 1}
|
||||
tpPoeProfile OBJECT IDENTIFIER ::= {tplinkPoeMIBObjects 2}
|
||||
tpPoeRecovery OBJECT IDENTIFIER ::= {tplinkPoeMIBObjects 3}
|
||||
tpPoeExtend OBJECT IDENTIFIER ::= {tplinkPoeMIBObjects 4}
|
||||
|
||||
-- (1) tpPoeConfig Objects
|
||||
tpPoeGlobal OBJECT IDENTIFIER ::= {tpPoeConfig 1}
|
||||
tpPoePort OBJECT IDENTIFIER ::= {tpPoeConfig 2}
|
||||
|
||||
tpSystemPowerLimit OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..3200)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Define max power the PoE switch supply. The unit is 0.1W."
|
||||
::= { tpPoeGlobal 1 }
|
||||
|
||||
tpPowerDisconnectMethod OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
deny-lower-priority(1)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The PoE Switch use this method to offset the power
|
||||
limit being exceeded and keep the switch system using
|
||||
power at a usable level."
|
||||
::= { tpPoeGlobal 2 }
|
||||
|
||||
tpSystemPowerConsumption OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..3200)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Display the PoE switch's real time system power consumption. The unit is 0.1W."
|
||||
::= { tpPoeGlobal 3 }
|
||||
|
||||
tpSystemPowerRemain OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..3200)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Display the PoE switch's real time remaining system power. The unit is 0.1W."
|
||||
::= { tpPoeGlobal 4 }
|
||||
|
||||
tpPoePortConfigTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF POEPORTCONFIGENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of PoE entries.
|
||||
Here you can configure the PoE feature on each port."
|
||||
::= { tpPoePort 1 }
|
||||
|
||||
tpPoePortConfigEntry OBJECT-TYPE
|
||||
SYNTAX POEPORTCONFIGENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry contains of the configuration and information of poe port."
|
||||
INDEX { tpPoePortIndex }
|
||||
::= { tpPoePortConfigTable 1 }
|
||||
|
||||
POEPORTCONFIGENTRY ::=
|
||||
SEQUENCE {
|
||||
|
||||
tpPoePortIndex
|
||||
INTEGER,
|
||||
tpPoePortStatus
|
||||
INTEGER,
|
||||
tpPoePriority
|
||||
INTEGER,
|
||||
tpPoePowerLimit
|
||||
INTEGER,
|
||||
tpPoePortTimeRangeName
|
||||
OCTET STRING (SIZE (0..255)),
|
||||
tpPoePortProfileName
|
||||
OCTET STRING (SIZE (0..255)),
|
||||
tpPoePower
|
||||
INTEGER,
|
||||
tpPoeCurrent
|
||||
INTEGER,
|
||||
tpPoeVoltage
|
||||
INTEGER,
|
||||
tpPoeClass
|
||||
INTEGER,
|
||||
tpPoePowerStatus
|
||||
INTEGER
|
||||
}
|
||||
tpPoePortIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The port number of the Switch."
|
||||
::= { tpPoePortConfigEntry 1 }
|
||||
|
||||
tpPoePortStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Select to disable/enable the PoE feature
|
||||
for the corresponding port. If set enable,
|
||||
the corresponding port can supply power to
|
||||
the linked PD (Powered Device)."
|
||||
::= { tpPoePortConfigEntry 2 }
|
||||
|
||||
tpPoePriority OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
high(0),
|
||||
middle(1),
|
||||
low(2)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Cooperates with the Power Disconnected Method
|
||||
to decide the way to supply power to the new
|
||||
linked PD (Powered Device) when the surplus
|
||||
power is inadequate."
|
||||
::= { tpPoePortConfigEntry 3 }
|
||||
tpPoePowerLimit OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..300)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the max power the corresponding port can supply.The unit is 0.1W"
|
||||
::= { tpPoePortConfigEntry 4 }
|
||||
|
||||
tpPoePortTimeRangeName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (0..255))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Select time range by entering its name."
|
||||
::= { tpPoePortConfigEntry 5 }
|
||||
|
||||
tpPoePortProfileName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (0..255))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Select profile by entering its name. "
|
||||
::= { tpPoePortConfigEntry 6 }
|
||||
tpPoePower OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..300)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's real time power supply in 0.1W."
|
||||
::= { tpPoePortConfigEntry 7 }
|
||||
tpPoeCurrent OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..1000)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's real time current in 1mA."
|
||||
::= { tpPoePortConfigEntry 8 }
|
||||
tpPoeVoltage OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..300)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's real time voltage in 0.1V."
|
||||
::= { tpPoePortConfigEntry 9 }
|
||||
tpPoeClass OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
class0(0),
|
||||
class1(1),
|
||||
class2(2),
|
||||
class3(3),
|
||||
class4(4),
|
||||
class-not-defined(7)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the class the linked PD (Powered Device) belongs to."
|
||||
::= { tpPoePortConfigEntry 10 }
|
||||
tpPoePowerStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
off(0),
|
||||
turning-on(1),
|
||||
on(2),
|
||||
overload(3),
|
||||
short(4),
|
||||
nonstandard-pd(5),
|
||||
voltage-high(6),
|
||||
voltage-low(7),
|
||||
hardware-fault(8),
|
||||
overtemperature(9)
|
||||
}
|
||||
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's real time power status."
|
||||
::= { tpPoePortConfigEntry 11 }
|
||||
|
||||
-- (2) tpPoeProfile Objects
|
||||
tpPoeProfileTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF POEPROFILEENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of PoE profile entries.
|
||||
Here you can define the PoE profile."
|
||||
::= { tpPoeProfile 1 }
|
||||
|
||||
tpPoeProfileEntry OBJECT-TYPE
|
||||
SYNTAX POEPROFILEENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry contains of the information of PoE profile."
|
||||
INDEX { tpPoeProfileName }
|
||||
::= { tpPoeProfileTable 1 }
|
||||
|
||||
|
||||
POEPROFILEENTRY ::=
|
||||
SEQUENCE {
|
||||
tpPoeProfileIndex
|
||||
INTEGER,
|
||||
tpPoeProfileName
|
||||
OCTET STRING (SIZE (0..255)),
|
||||
tpPoeProfilePortStatus
|
||||
INTEGER,
|
||||
tpPoeProfilePriority
|
||||
INTEGER,
|
||||
tpPoeProfilePowerLimit
|
||||
INTEGER,
|
||||
tpPoeProfileStatus
|
||||
TPRowStatus
|
||||
}
|
||||
tpPoeProfileIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index number of the Switch."
|
||||
::= { tpPoeProfileEntry 1 }
|
||||
|
||||
tpPoeProfileName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (0..255))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" the name of PoE profile."
|
||||
::= { tpPoeProfileEntry 2 }
|
||||
|
||||
tpPoeProfilePortStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Select to disable/enable the PoE feature
|
||||
for the corresponding profile. If set enable,
|
||||
the port selected the profile can supply power to
|
||||
the linked PD (Powered Device)."
|
||||
::= { tpPoeProfileEntry 3 }
|
||||
|
||||
tpPoeProfilePriority OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
high(0),
|
||||
middle(1),
|
||||
low(2)
|
||||
}
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Cooperates with the Power Disconnected Method
|
||||
to decide the way to supply power to the new
|
||||
linked PD (Powered Device) when the surplus
|
||||
power is inadequate."
|
||||
::= { tpPoeProfileEntry 4 }
|
||||
|
||||
tpPoeProfilePowerLimit OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..300)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the max power the corresponding port can supply.The unit is 0.1W."
|
||||
::= { tpPoeProfileEntry 5 }
|
||||
|
||||
tpPoeProfileStatus OBJECT-TYPE
|
||||
SYNTAX TPRowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { tpPoeProfileEntry 6 }
|
||||
|
||||
-- (3) tpPoeRecovery Objects
|
||||
tpPoeRecoveryGlobal OBJECT IDENTIFIER ::= {tpPoeRecovery 1}
|
||||
tpPoeRecoveryPort OBJECT IDENTIFIER ::= {tpPoeRecovery 2}
|
||||
|
||||
tpPoeRecoveryGlobalStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Enable the PoE Auto Recovery function."
|
||||
::= { tpPoeRecoveryGlobal 1 }
|
||||
|
||||
tpPoeRecoveryPortTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF POERECOVERYPORTENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of PoE Auto Recovery entries. Here you can configure the PoE Auto Recovery feature on each port."
|
||||
::= { tpPoeRecoveryPort 1 }
|
||||
|
||||
tpPoeRecoveryPortEntry OBJECT-TYPE
|
||||
SYNTAX POERECOVERYPORTENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry contains of the poe auto recovery configuration and information of poe port."
|
||||
INDEX { tpPoePortIndex }
|
||||
::= { tpPoeRecoveryPortTable 1 }
|
||||
|
||||
POERECOVERYPORTENTRY ::=
|
||||
SEQUENCE {
|
||||
|
||||
tpPoeRecoveryPort
|
||||
INTEGER,
|
||||
tpPoeRecoveryIp
|
||||
OCTET STRING (SIZE (0..255)),
|
||||
tpPoeRecoveryStartup
|
||||
INTEGER,
|
||||
tpPoeRecoveryInterval
|
||||
INTEGER,
|
||||
tpPoeRecoveryRetry
|
||||
INTEGER,
|
||||
tpPoeRecoveryBreak
|
||||
INTEGER,
|
||||
tpPoeRecoveryStatus
|
||||
INTEGER,
|
||||
tpPoeRecoveryFailure
|
||||
INTEGER,
|
||||
tpPoeRecoveryRestart
|
||||
INTEGER,
|
||||
tpPoeRecoveryTotal
|
||||
INTEGER
|
||||
}
|
||||
tpPoeRecoveryPort OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The port number of the Switch."
|
||||
::= { tpPoeRecoveryPortEntry 1 }
|
||||
|
||||
tpPoeRecoveryIp OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (0..255))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the ping IP address for the corresponding port. (Format: x.x.x.x)"
|
||||
::= { tpPoeRecoveryPortEntry 2 }
|
||||
|
||||
tpPoeRecoveryStartup OBJECT-TYPE
|
||||
SYNTAX INTEGER(30..600)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the startup delay for the corresponding port.(30-600 Seconds)"
|
||||
::= { tpPoeRecoveryPortEntry 3 }
|
||||
|
||||
tpPoeRecoveryInterval OBJECT-TYPE
|
||||
SYNTAX INTEGER(10..120)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the ping interval for the corresponding port. (10-120 Seconds)"
|
||||
::= { tpPoeRecoveryPortEntry 4 }
|
||||
|
||||
tpPoeRecoveryRetry OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..10)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the ping failure threshold for the corresponding port. (1-10) "
|
||||
::= { tpPoeRecoveryPortEntry 5 }
|
||||
|
||||
tpPoeRecoveryBreak OBJECT-TYPE
|
||||
SYNTAX INTEGER(3..120)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Defines the break time for the corresponding port. (3-120 Seconds)"
|
||||
::= { tpPoeRecoveryPortEntry 6 }
|
||||
|
||||
tpPoeRecoveryStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Select to disable/enable the PoE Auto Recovery feature for the corresponding port."
|
||||
::= { tpPoeRecoveryPortEntry 7 }
|
||||
|
||||
tpPoeRecoveryFailure OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..9999)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's ping failures."
|
||||
::= { tpPoeRecoveryPortEntry 8 }
|
||||
|
||||
tpPoeRecoveryRestart OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..9999)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's restarts."
|
||||
::= { tpPoeRecoveryPortEntry 9 }
|
||||
|
||||
tpPoeRecoveryTotal OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..9999)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" Displays the port's total pings."
|
||||
::= { tpPoeRecoveryPortEntry 10 }
|
||||
|
||||
---(4) tpPoeExtend Objects
|
||||
tpPoeExtendPort OBJECT IDENTIFIER ::= {tpPoeExtend 1}
|
||||
|
||||
tpPoeExtendPortTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF POEEXTENDPORTENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of PoE Extend Mode entries. Here you can configure the PoE Extend Mode feature on each port."
|
||||
::= { tpPoeExtendPort 1 }
|
||||
|
||||
tpPoeExtendPortEntry OBJECT-TYPE
|
||||
SYNTAX POEEXTENDPORTENTRY
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry contains of the poe extend mode configuration and information of poe port."
|
||||
INDEX { tpPoePortIndex }
|
||||
::= { tpPoeExtendPortTable 1 }
|
||||
|
||||
POEEXTENDPORTENTRY ::=
|
||||
SEQUENCE {
|
||||
|
||||
tpPoeExtendPort
|
||||
INTEGER,
|
||||
tpPoeExtendStatus
|
||||
INTEGER
|
||||
}
|
||||
tpPoeExtendPort OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The port number of the Switch."
|
||||
::= { tpPoeExtendPortEntry 1 }
|
||||
|
||||
tpPoeExtendStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Select to disable/enable the PoE Extend Mode feature for the corresponding port."
|
||||
::= { tpPoeExtendPortEntry 2 }
|
||||
|
||||
-- (5) poeNotifications Objects
|
||||
tpPoePortPowerChange NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpPoePortIndex,
|
||||
tpPoePortStatus
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poePortPowerChange notification is sent when the status of a port power changes."
|
||||
::= {tplinkPoeNotifications 1}
|
||||
|
||||
tpPoePortPowerOverLoading NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpPoePortIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poePortPowerOverLoading notification is sent when a port is over loading."
|
||||
::= {tplinkPoeNotifications 2}
|
||||
|
||||
tpPoePortShortCircuit NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpPoePortIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poePortShortCircuit notification is sent when short circuit occurs on a port."
|
||||
::= {tplinkPoeNotifications 3}
|
||||
|
||||
tpPoePortPowerOver30Watts NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpPoePortIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poePortPowerOver30Watts notification is sent when a port's consumption is over 30W."
|
||||
::= {tplinkPoeNotifications 4}
|
||||
|
||||
tpPoePortPowerDeny NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpPoePortIndex
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poePowerDeny notification is sent when a port's power supply is denied."
|
||||
::= {tplinkPoeNotifications 5}
|
||||
|
||||
tpPoeThermalShutdown NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpPoePortIndex -- an dummpy object, for compile pass
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poeThermalShutdown notification is sent when the power supply shutdown occurs because temperature is too high."
|
||||
::= {tplinkPoeNotifications 6}
|
||||
|
||||
tpPoeOverMaxPowerBudget NOTIFICATION-TYPE
|
||||
OBJECTS
|
||||
{
|
||||
tpSystemPowerLimit
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A poeOverMaxPowerBudget notification is sent when the total power is over the budget."
|
||||
::= {tplinkPoeNotifications 7}
|
||||
END
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -64,5 +64,913 @@
|
||||
]
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
},
|
||||
"sensors": {
|
||||
"discovery": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "current",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49177",
|
||||
"sensor_index": "ddmStatusBiasCurrent.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Bias Current 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1000,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0.009568,
|
||||
"sensor_limit": 0.015,
|
||||
"sensor_limit_warn": 0.013,
|
||||
"sensor_limit_low": 0.001,
|
||||
"sensor_limit_low_warn": 0.002,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "current",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49178",
|
||||
"sensor_index": "ddmStatusBiasCurrent.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Bias Current 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1000,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0.009176,
|
||||
"sensor_limit": 0.015,
|
||||
"sensor_limit_warn": 0.013,
|
||||
"sensor_limit_low": 0.001,
|
||||
"sensor_limit_low_warn": 0.002,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49177",
|
||||
"sensor_index": "ddmStatusRxPow.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM RX Power 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -5.9998036493484,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -28.538719643218,
|
||||
"sensor_limit_low_warn": -26.98970004336,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49178",
|
||||
"sensor_index": "ddmStatusRxPow.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM RX Power 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -5.9998036493484,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -28.538719643218,
|
||||
"sensor_limit_low_warn": -26.98970004336,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49177",
|
||||
"sensor_index": "ddmStatusTxPow.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM TX Power 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -4.0011692792631,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -11.999706407559,
|
||||
"sensor_limit_low_warn": -11.001794975729,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49178",
|
||||
"sensor_index": "ddmStatusTxPow.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM TX Power 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -3.9902710431325,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -11.999706407559,
|
||||
"sensor_limit_low_warn": -11.001794975729,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49177",
|
||||
"sensor_index": "49177",
|
||||
"sensor_type": "ddmStatusDataReady",
|
||||
"sensor_descr": "DDM Data Ready 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusDataReady"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49178",
|
||||
"sensor_index": "49178",
|
||||
"sensor_type": "ddmStatusDataReady",
|
||||
"sensor_descr": "DDM Data Ready 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusDataReady"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49177",
|
||||
"sensor_index": "49177",
|
||||
"sensor_type": "ddmStatusLossSignal",
|
||||
"sensor_descr": "DDM Loss of Signal 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusLossSignal"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49178",
|
||||
"sensor_index": "49178",
|
||||
"sensor_type": "ddmStatusLossSignal",
|
||||
"sensor_descr": "DDM Loss of Signal 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusLossSignal"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49177",
|
||||
"sensor_index": "49177",
|
||||
"sensor_type": "ddmStatusTxFault",
|
||||
"sensor_descr": "DDM TX Fault 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusTxFault"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49178",
|
||||
"sensor_index": "49178",
|
||||
"sensor_type": "ddmStatusTxFault",
|
||||
"sensor_descr": "DDM TX Fault 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusTxFault"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49177",
|
||||
"sensor_index": "ddmStatusTemperature.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Temperature 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 50,
|
||||
"sensor_limit": 80,
|
||||
"sensor_limit_warn": 75,
|
||||
"sensor_limit_low": -10,
|
||||
"sensor_limit_low_warn": -5,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49178",
|
||||
"sensor_index": "ddmStatusTemperature.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Temperature 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 52,
|
||||
"sensor_limit": 80,
|
||||
"sensor_limit_warn": 75,
|
||||
"sensor_limit_low": -10,
|
||||
"sensor_limit_low_warn": -5,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49177",
|
||||
"sensor_index": "ddmStatusVoltage.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Voltage 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 3.4162,
|
||||
"sensor_limit": 3.6,
|
||||
"sensor_limit_warn": 3.5,
|
||||
"sensor_limit_low": 3,
|
||||
"sensor_limit_low_warn": 3.1,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49178",
|
||||
"sensor_index": "ddmStatusVoltage.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Voltage 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 3.385,
|
||||
"sensor_limit": 3.6,
|
||||
"sensor_limit_warn": 3.5,
|
||||
"sensor_limit_low": 3,
|
||||
"sensor_limit_low_warn": 3.1,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
{
|
||||
"state_name": "ddmStatusDataReady",
|
||||
"state_descr": "False",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusDataReady",
|
||||
"state_descr": "True",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusDataReady",
|
||||
"state_descr": "N/A",
|
||||
"state_draw_graph": 2,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusLossSignal",
|
||||
"state_descr": "False",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusLossSignal",
|
||||
"state_descr": "True",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusLossSignal",
|
||||
"state_descr": "N/A",
|
||||
"state_draw_graph": 2,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusTxFault",
|
||||
"state_descr": "False",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusTxFault",
|
||||
"state_descr": "True",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusTxFault",
|
||||
"state_descr": "N/A",
|
||||
"state_draw_graph": 2,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "current",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49177",
|
||||
"sensor_index": "ddmStatusBiasCurrent.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Bias Current 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1000,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0.009568,
|
||||
"sensor_limit": 0.015,
|
||||
"sensor_limit_warn": 0.013,
|
||||
"sensor_limit_low": 0.001,
|
||||
"sensor_limit_low_warn": 0.002,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "current",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49178",
|
||||
"sensor_index": "ddmStatusBiasCurrent.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Bias Current 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1000,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0.009176,
|
||||
"sensor_limit": 0.015,
|
||||
"sensor_limit_warn": 0.013,
|
||||
"sensor_limit_low": 0.001,
|
||||
"sensor_limit_low_warn": 0.002,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49177",
|
||||
"sensor_index": "ddmStatusRxPow.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM RX Power 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -5.9998036493484,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -28.538719643218,
|
||||
"sensor_limit_low_warn": -26.98970004336,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": -5.9998036493484,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49178",
|
||||
"sensor_index": "ddmStatusRxPow.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM RX Power 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -5.9998036493484,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -28.538719643218,
|
||||
"sensor_limit_low_warn": -26.98970004336,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": -5.9998036493484,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49177",
|
||||
"sensor_index": "ddmStatusTxPow.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM TX Power 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -4.0011692792631,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -11.999706407559,
|
||||
"sensor_limit_low_warn": -11.001794975729,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": -4.0011692792631,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49178",
|
||||
"sensor_index": "ddmStatusTxPow.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM TX Power 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -3.9902710431325,
|
||||
"sensor_limit": 0,
|
||||
"sensor_limit_warn": -1.0001543745061,
|
||||
"sensor_limit_low": -11.999706407559,
|
||||
"sensor_limit_low_warn": -11.001794975729,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": -3.9902710431325,
|
||||
"user_func": "mw_to_dbm",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49177",
|
||||
"sensor_index": "49177",
|
||||
"sensor_type": "ddmStatusDataReady",
|
||||
"sensor_descr": "DDM Data Ready 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusDataReady"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49178",
|
||||
"sensor_index": "49178",
|
||||
"sensor_type": "ddmStatusDataReady",
|
||||
"sensor_descr": "DDM Data Ready 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusDataReady"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49177",
|
||||
"sensor_index": "49177",
|
||||
"sensor_type": "ddmStatusLossSignal",
|
||||
"sensor_descr": "DDM Loss of Signal 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusLossSignal"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49178",
|
||||
"sensor_index": "49178",
|
||||
"sensor_type": "ddmStatusLossSignal",
|
||||
"sensor_descr": "DDM Loss of Signal 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusLossSignal"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49177",
|
||||
"sensor_index": "49177",
|
||||
"sensor_type": "ddmStatusTxFault",
|
||||
"sensor_descr": "DDM TX Fault 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusTxFault"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49178",
|
||||
"sensor_index": "49178",
|
||||
"sensor_type": "ddmStatusTxFault",
|
||||
"sensor_descr": "DDM TX Fault 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "ddmStatusTxFault"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49177",
|
||||
"sensor_index": "ddmStatusTemperature.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Temperature 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 50,
|
||||
"sensor_limit": 80,
|
||||
"sensor_limit_warn": 75,
|
||||
"sensor_limit_low": -10,
|
||||
"sensor_limit_low_warn": -5,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49178",
|
||||
"sensor_index": "ddmStatusTemperature.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Temperature 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 52,
|
||||
"sensor_limit": 80,
|
||||
"sensor_limit_warn": 75,
|
||||
"sensor_limit_low": -10,
|
||||
"sensor_limit_low_warn": -5,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49177",
|
||||
"sensor_index": "ddmStatusVoltage.49177",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Voltage 1/0/25",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 3.4162,
|
||||
"sensor_limit": 3.6,
|
||||
"sensor_limit_warn": 3.5,
|
||||
"sensor_limit_low": 3,
|
||||
"sensor_limit_low_warn": 3.1,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49177",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49178",
|
||||
"sensor_index": "ddmStatusVoltage.49178",
|
||||
"sensor_type": "jetstream",
|
||||
"sensor_descr": "DDM Voltage 1/0/26",
|
||||
"group": "SFPs",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 3.385,
|
||||
"sensor_limit": 3.6,
|
||||
"sensor_limit_warn": 3.5,
|
||||
"sensor_limit_low": 3,
|
||||
"sensor_limit_low_warn": 3.1,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "49178",
|
||||
"entPhysicalIndex_measured": "ports",
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": null
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
{
|
||||
"state_name": "ddmStatusDataReady",
|
||||
"state_descr": "False",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusDataReady",
|
||||
"state_descr": "True",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusDataReady",
|
||||
"state_descr": "N/A",
|
||||
"state_draw_graph": 2,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusLossSignal",
|
||||
"state_descr": "False",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusLossSignal",
|
||||
"state_descr": "True",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusLossSignal",
|
||||
"state_descr": "N/A",
|
||||
"state_draw_graph": 2,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusTxFault",
|
||||
"state_descr": "False",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusTxFault",
|
||||
"state_descr": "True",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "ddmStatusTxFault",
|
||||
"state_descr": "N/A",
|
||||
"state_draw_graph": 2,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -4,8 +4,482 @@
|
||||
1.3.6.1.2.1.1.4.0|4|<private>
|
||||
1.3.6.1.2.1.1.5.0|4|<private>
|
||||
1.3.6.1.2.1.1.6.0|4|<private>
|
||||
1.3.6.1.2.1.2.2.1.2.10|4|Vlan-interface10
|
||||
1.3.6.1.2.1.2.2.1.2.32769|4|port-channel 1
|
||||
1.3.6.1.2.1.2.2.1.2.49153|4|gigabitEthernet 1/0/1
|
||||
1.3.6.1.2.1.2.2.1.2.49154|4|gigabitEthernet 1/0/2
|
||||
1.3.6.1.2.1.2.2.1.2.49155|4|gigabitEthernet 1/0/3
|
||||
1.3.6.1.2.1.2.2.1.2.49156|4|gigabitEthernet 1/0/4
|
||||
1.3.6.1.2.1.2.2.1.2.49157|4|gigabitEthernet 1/0/5
|
||||
1.3.6.1.2.1.2.2.1.2.49158|4|gigabitEthernet 1/0/6
|
||||
1.3.6.1.2.1.2.2.1.2.49159|4|gigabitEthernet 1/0/7
|
||||
1.3.6.1.2.1.2.2.1.2.49160|4|gigabitEthernet 1/0/8
|
||||
1.3.6.1.2.1.2.2.1.2.49161|4|gigabitEthernet 1/0/9
|
||||
1.3.6.1.2.1.2.2.1.2.49162|4|gigabitEthernet 1/0/10
|
||||
1.3.6.1.2.1.2.2.1.3.10|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.32769|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49153|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49154|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49155|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49156|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49157|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49158|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49159|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49160|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49161|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.49162|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.10|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.32769|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49153|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49154|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49155|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49156|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49157|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49158|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49159|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49160|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49161|2|9216
|
||||
1.3.6.1.2.1.2.2.1.4.49162|2|9216
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.32769|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49153|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49154|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49155|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49156|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49157|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49158|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49159|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49160|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49161|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.6.49162|4x|3C846A08F29C
|
||||
1.3.6.1.2.1.2.2.1.7.10|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.32769|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49153|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49154|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.49155|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.49156|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.49157|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49158|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49159|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49160|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49161|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.49162|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.10|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.32769|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.49153|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.49154|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.49155|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.49156|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.49157|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.49158|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.49159|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.49160|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.49161|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.49162|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.10|67|6776
|
||||
1.3.6.1.2.1.2.2.1.9.32769|67|145462622
|
||||
1.3.6.1.2.1.2.2.1.9.49153|67|213895652
|
||||
1.3.6.1.2.1.2.2.1.9.49154|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.49155|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.49156|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.49157|67|206127406
|
||||
1.3.6.1.2.1.2.2.1.9.49158|67|558831107
|
||||
1.3.6.1.2.1.2.2.1.9.49159|67|558785875
|
||||
1.3.6.1.2.1.2.2.1.9.49160|67|558667073
|
||||
1.3.6.1.2.1.2.2.1.9.49161|67|145462122
|
||||
1.3.6.1.2.1.2.2.1.9.49162|67|145130902
|
||||
1.3.6.1.2.1.2.2.1.13.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.32769|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49153|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49154|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49155|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49156|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49157|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49158|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49159|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49160|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49161|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.49162|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.32769|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49153|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49154|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49155|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49156|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49157|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49158|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49159|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49160|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49161|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.49162|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.32769|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49153|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49154|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49155|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49156|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49157|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49158|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49159|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49160|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49161|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.49162|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.32769|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49153|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49154|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49155|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49156|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49157|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49158|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49159|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49160|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49161|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.49162|65|0
|
||||
1.3.6.1.2.1.10.7.2.1.1.32769|2|11
|
||||
1.3.6.1.2.1.10.7.2.1.1.49153|2|1
|
||||
1.3.6.1.2.1.10.7.2.1.1.49154|2|2
|
||||
1.3.6.1.2.1.10.7.2.1.1.49155|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.1.49156|2|4
|
||||
1.3.6.1.2.1.10.7.2.1.1.49157|2|5
|
||||
1.3.6.1.2.1.10.7.2.1.1.49158|2|6
|
||||
1.3.6.1.2.1.10.7.2.1.1.49159|2|7
|
||||
1.3.6.1.2.1.10.7.2.1.1.49160|2|8
|
||||
1.3.6.1.2.1.10.7.2.1.1.49161|2|9
|
||||
1.3.6.1.2.1.10.7.2.1.1.49162|2|10
|
||||
1.3.6.1.2.1.10.7.2.1.19.32769|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49153|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49154|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49155|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49156|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49157|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49158|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49159|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49160|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49161|2|3
|
||||
1.3.6.1.2.1.10.7.2.1.19.49162|2|3
|
||||
1.3.6.1.2.1.31.1.1.1.1.10|4|Vlan-interface10
|
||||
1.3.6.1.2.1.31.1.1.1.1.32769|4|port-channel 1
|
||||
1.3.6.1.2.1.31.1.1.1.1.49153|4|gigabitEthernet 1/0/1
|
||||
1.3.6.1.2.1.31.1.1.1.1.49154|4|gigabitEthernet 1/0/2
|
||||
1.3.6.1.2.1.31.1.1.1.1.49155|4|gigabitEthernet 1/0/3
|
||||
1.3.6.1.2.1.31.1.1.1.1.49156|4|gigabitEthernet 1/0/4
|
||||
1.3.6.1.2.1.31.1.1.1.1.49157|4|gigabitEthernet 1/0/5
|
||||
1.3.6.1.2.1.31.1.1.1.1.49158|4|gigabitEthernet 1/0/6
|
||||
1.3.6.1.2.1.31.1.1.1.1.49159|4|gigabitEthernet 1/0/7
|
||||
1.3.6.1.2.1.31.1.1.1.1.49160|4|gigabitEthernet 1/0/8
|
||||
1.3.6.1.2.1.31.1.1.1.1.49161|4|gigabitEthernet 1/0/9
|
||||
1.3.6.1.2.1.31.1.1.1.1.49162|4|gigabitEthernet 1/0/10
|
||||
1.3.6.1.2.1.31.1.1.1.2.10|65|333
|
||||
1.3.6.1.2.1.31.1.1.1.2.32769|65|2735531492
|
||||
1.3.6.1.2.1.31.1.1.1.2.49153|65|38
|
||||
1.3.6.1.2.1.31.1.1.1.2.49154|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.49155|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.49156|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.49157|65|384522
|
||||
1.3.6.1.2.1.31.1.1.1.2.49158|65|2088
|
||||
1.3.6.1.2.1.31.1.1.1.2.49159|65|2084
|
||||
1.3.6.1.2.1.31.1.1.1.2.49160|65|2152
|
||||
1.3.6.1.2.1.31.1.1.1.2.49161|65|1758944955
|
||||
1.3.6.1.2.1.31.1.1.1.2.49162|65|976586843
|
||||
1.3.6.1.2.1.31.1.1.1.3.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.32769|65|1017884
|
||||
1.3.6.1.2.1.31.1.1.1.3.49153|65|13
|
||||
1.3.6.1.2.1.31.1.1.1.3.49154|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.49155|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.49156|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.49157|65|24744
|
||||
1.3.6.1.2.1.31.1.1.1.3.49158|65|4587
|
||||
1.3.6.1.2.1.31.1.1.1.3.49159|65|3202
|
||||
1.3.6.1.2.1.31.1.1.1.3.49160|65|3446
|
||||
1.3.6.1.2.1.31.1.1.1.3.49161|65|633115
|
||||
1.3.6.1.2.1.31.1.1.1.3.49162|65|384769
|
||||
1.3.6.1.2.1.31.1.1.1.4.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.32769|65|857569
|
||||
1.3.6.1.2.1.31.1.1.1.4.49153|65|1946
|
||||
1.3.6.1.2.1.31.1.1.1.4.49154|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.49155|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.49156|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.49157|65|11992249
|
||||
1.3.6.1.2.1.31.1.1.1.4.49158|65|40094874
|
||||
1.3.6.1.2.1.31.1.1.1.4.49159|65|40094060
|
||||
1.3.6.1.2.1.31.1.1.1.4.49160|65|40090304
|
||||
1.3.6.1.2.1.31.1.1.1.4.49161|65|596137
|
||||
1.3.6.1.2.1.31.1.1.1.4.49162|65|261432
|
||||
1.3.6.1.2.1.31.1.1.1.5.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.32769|65|66186
|
||||
1.3.6.1.2.1.31.1.1.1.5.49153|65|62
|
||||
1.3.6.1.2.1.31.1.1.1.5.49154|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.49155|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.49156|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.49157|65|551299
|
||||
1.3.6.1.2.1.31.1.1.1.5.49158|65|1069793
|
||||
1.3.6.1.2.1.31.1.1.1.5.49159|65|1069266
|
||||
1.3.6.1.2.1.31.1.1.1.5.49160|65|1066260
|
||||
1.3.6.1.2.1.31.1.1.1.5.49161|65|59462
|
||||
1.3.6.1.2.1.31.1.1.1.5.49162|65|6724
|
||||
1.3.6.1.2.1.31.1.1.1.6.10|70|207202737
|
||||
1.3.6.1.2.1.31.1.1.1.6.32769|70|1389744124629
|
||||
1.3.6.1.2.1.31.1.1.1.6.49153|70|10555877
|
||||
1.3.6.1.2.1.31.1.1.1.6.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.49157|70|103912525332
|
||||
1.3.6.1.2.1.31.1.1.1.6.49158|70|50508239371
|
||||
1.3.6.1.2.1.31.1.1.1.6.49159|70|98173978656
|
||||
1.3.6.1.2.1.31.1.1.1.6.49160|70|84360609719
|
||||
1.3.6.1.2.1.31.1.1.1.6.49161|70|290697226374
|
||||
1.3.6.1.2.1.31.1.1.1.6.49162|70|1099046946848
|
||||
1.3.6.1.2.1.31.1.1.1.7.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.32769|70|586033081
|
||||
1.3.6.1.2.1.31.1.1.1.7.49153|70|139819
|
||||
1.3.6.1.2.1.31.1.1.1.7.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.49157|70|169964829
|
||||
1.3.6.1.2.1.31.1.1.1.7.49158|70|337540337
|
||||
1.3.6.1.2.1.31.1.1.1.7.49159|70|498877790
|
||||
1.3.6.1.2.1.31.1.1.1.7.49160|70|468619941
|
||||
1.3.6.1.2.1.31.1.1.1.7.49161|70|261680130
|
||||
1.3.6.1.2.1.31.1.1.1.7.49162|70|324352968
|
||||
1.3.6.1.2.1.31.1.1.1.8.10|70|333
|
||||
1.3.6.1.2.1.31.1.1.1.8.32769|70|2735534361
|
||||
1.3.6.1.2.1.31.1.1.1.8.49153|70|38
|
||||
1.3.6.1.2.1.31.1.1.1.8.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.49157|70|384522
|
||||
1.3.6.1.2.1.31.1.1.1.8.49158|70|2088
|
||||
1.3.6.1.2.1.31.1.1.1.8.49159|70|2084
|
||||
1.3.6.1.2.1.31.1.1.1.8.49160|70|2152
|
||||
1.3.6.1.2.1.31.1.1.1.8.49161|70|1758945444
|
||||
1.3.6.1.2.1.31.1.1.1.8.49162|70|976589206
|
||||
1.3.6.1.2.1.31.1.1.1.9.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.32769|70|1017884
|
||||
1.3.6.1.2.1.31.1.1.1.9.49153|70|13
|
||||
1.3.6.1.2.1.31.1.1.1.9.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.49157|70|24744
|
||||
1.3.6.1.2.1.31.1.1.1.9.49158|70|4587
|
||||
1.3.6.1.2.1.31.1.1.1.9.49159|70|3202
|
||||
1.3.6.1.2.1.31.1.1.1.9.49160|70|3446
|
||||
1.3.6.1.2.1.31.1.1.1.9.49161|70|633115
|
||||
1.3.6.1.2.1.31.1.1.1.9.49162|70|384769
|
||||
1.3.6.1.2.1.31.1.1.1.10.10|70|556004047
|
||||
1.3.6.1.2.1.31.1.1.1.10.32769|70|178473296560
|
||||
1.3.6.1.2.1.31.1.1.1.10.49153|70|456359453
|
||||
1.3.6.1.2.1.31.1.1.1.10.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.49157|70|195626015155
|
||||
1.3.6.1.2.1.31.1.1.1.10.49158|70|76132998043
|
||||
1.3.6.1.2.1.31.1.1.1.10.49159|70|92175415628
|
||||
1.3.6.1.2.1.31.1.1.1.10.49160|70|94114738646
|
||||
1.3.6.1.2.1.31.1.1.1.10.49161|70|41191008044
|
||||
1.3.6.1.2.1.31.1.1.1.10.49162|70|137282290373
|
||||
1.3.6.1.2.1.31.1.1.1.11.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.32769|70|553247159
|
||||
1.3.6.1.2.1.31.1.1.1.11.49153|70|305872
|
||||
1.3.6.1.2.1.31.1.1.1.11.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.49157|70|172988725
|
||||
1.3.6.1.2.1.31.1.1.1.11.49158|70|311345457
|
||||
1.3.6.1.2.1.31.1.1.1.11.49159|70|531042886
|
||||
1.3.6.1.2.1.31.1.1.1.11.49160|70|492233366
|
||||
1.3.6.1.2.1.31.1.1.1.11.49161|70|192788800
|
||||
1.3.6.1.2.1.31.1.1.1.11.49162|70|360458387
|
||||
1.3.6.1.2.1.31.1.1.1.12.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.32769|70|857569
|
||||
1.3.6.1.2.1.31.1.1.1.12.49153|70|1946
|
||||
1.3.6.1.2.1.31.1.1.1.12.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.49157|70|11992291
|
||||
1.3.6.1.2.1.31.1.1.1.12.49158|70|40094925
|
||||
1.3.6.1.2.1.31.1.1.1.12.49159|70|40094111
|
||||
1.3.6.1.2.1.31.1.1.1.12.49160|70|40090355
|
||||
1.3.6.1.2.1.31.1.1.1.12.49161|70|596137
|
||||
1.3.6.1.2.1.31.1.1.1.12.49162|70|261432
|
||||
1.3.6.1.2.1.31.1.1.1.13.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.32769|70|66186
|
||||
1.3.6.1.2.1.31.1.1.1.13.49153|70|62
|
||||
1.3.6.1.2.1.31.1.1.1.13.49154|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.49155|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.49156|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.49157|70|551299
|
||||
1.3.6.1.2.1.31.1.1.1.13.49158|70|1069793
|
||||
1.3.6.1.2.1.31.1.1.1.13.49159|70|1069266
|
||||
1.3.6.1.2.1.31.1.1.1.13.49160|70|1066260
|
||||
1.3.6.1.2.1.31.1.1.1.13.49161|70|59462
|
||||
1.3.6.1.2.1.31.1.1.1.13.49162|70|6724
|
||||
1.3.6.1.2.1.31.1.1.1.14.10|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.32769|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.49153|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49154|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49155|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49156|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49157|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49158|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49159|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49160|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49161|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.49162|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.15.10|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.32769|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.49153|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.49154|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.49155|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.49156|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.49157|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.49158|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.49159|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.49160|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.49161|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.49162|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.16.10|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.32769|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49153|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49154|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49155|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49156|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49157|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49158|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49159|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49160|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49161|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.49162|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.10|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.32769|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49153|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49154|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49155|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49156|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49157|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49158|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49159|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49160|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49161|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.49162|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.18.10|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.32769|4|trunk
|
||||
1.3.6.1.2.1.31.1.1.1.18.49153|4|access
|
||||
1.3.6.1.2.1.31.1.1.1.18.49154|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49155|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49156|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49157|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49158|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49159|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49160|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.49161|4|trunk 1
|
||||
1.3.6.1.2.1.31.1.1.1.18.49162|4|trunk 2
|
||||
1.3.6.1.2.1.31.1.1.1.19.10|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.32769|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49153|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49154|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49155|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49156|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49157|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49158|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49159|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49160|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49161|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.49162|67|0
|
||||
1.3.6.1.4.1.11863.6.1.1.5.0|4|TL-SG2210P 3.20
|
||||
1.3.6.1.4.1.11863.6.1.1.6.0|4|3.20.0 Build 20200730 Rel.32643
|
||||
1.3.6.1.4.1.11863.6.1.1.8.0|4|22064D8000919
|
||||
1.3.6.1.4.1.11863.6.4.1.1.1.1.2.1|2|29
|
||||
1.3.6.1.4.1.11863.6.4.1.2.1.1.2.1|2|34
|
||||
1.3.6.1.4.1.11863.6.56.1.1.1.1.0|2|580
|
||||
1.3.6.1.4.1.11863.6.56.1.1.1.2.0|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.1.3.0|2|327
|
||||
1.3.6.1.4.1.11863.6.56.1.1.1.4.0|2|221
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.1|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.2|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.3|2|3
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.4|2|4
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.5|2|5
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.6|2|6
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.7|2|7
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.1.8|2|8
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.1|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.2|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.3|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.4|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.5|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.6|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.7|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.2.8|2|1
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.1|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.2|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.3|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.4|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.5|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.6|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.7|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.3.8|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.1|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.2|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.3|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.4|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.5|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.6|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.7|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.4.8|2|300
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.1|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.2|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.3|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.4|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.5|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.6|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.7|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.5.8|4|No Limit
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.1|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.2|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.3|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.4|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.5|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.6|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.7|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.6.8|4|None
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.1|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.2|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.3|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.4|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.5|2|64
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.6|2|117
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.7|2|72
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.7.8|2|77
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.1|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.2|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.3|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.4|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.5|2|122
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.6|2|221
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.7|2|138
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.8.8|2|146
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.1|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.2|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.3|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.4|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.5|2|527
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.6|2|530
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.7|2|525
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.9.8|2|528
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.1|2|7
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.2|2|7
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.3|2|7
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.4|2|7
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.5|2|4
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.6|2|4
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.7|2|4
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.10.8|2|4
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.1|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.2|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.3|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.4|2|0
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.5|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.6|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.7|2|2
|
||||
1.3.6.1.4.1.11863.6.56.1.1.2.1.1.11.8|2|2
|
||||
|
@@ -9,3 +9,159 @@
|
||||
1.3.6.1.4.1.11863.6.1.1.8.0|4|217B851000014
|
||||
1.3.6.1.4.1.11863.6.4.1.1.1.1.2.1|2|27
|
||||
1.3.6.1.4.1.11863.6.4.1.2.1.1.2.1|2|68
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.1.49177|4|1/0/25
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.1.49178|4|1/0/26
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.1.49179|4|1/0/27
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.1.49180|4|1/0/28
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.2.49177|4|80.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.2.49178|4|80.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.2.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.2.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.3.49177|4|-10.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.3.49178|4|-10.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.3.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.3.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.4.49177|4|75.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.4.49178|4|75.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.4.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.4.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.5.49177|4|-5.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.5.49178|4|-5.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.5.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.5.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.6.49177|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.6.49178|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.6.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.2.1.1.6.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.1.49177|4|1/0/25
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.1.49178|4|1/0/26
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.1.49179|4|1/0/27
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.1.49180|4|1/0/28
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.2.49177|4|3.600000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.2.49178|4|3.600000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.2.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.2.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.3.49177|4|3.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.3.49178|4|3.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.3.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.3.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.4.49177|4|3.500000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.4.49178|4|3.500000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.4.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.4.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.5.49177|4|3.100000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.5.49178|4|3.100000
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.5.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.5.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.6.49177|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.6.49178|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.6.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.3.1.1.6.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.1.49177|4|1/0/25
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.1.49178|4|1/0/26
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.1.49179|4|1/0/27
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.1.49180|4|1/0/28
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.2.49177|4|15.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.2.49178|4|15.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.2.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.2.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.3.49177|4|1.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.3.49178|4|1.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.3.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.3.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.4.49177|4|13.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.4.49178|4|13.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.4.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.4.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.5.49177|4|2.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.5.49178|4|2.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.5.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.5.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.6.49177|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.6.49178|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.6.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.4.1.1.6.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.1.49177|4|1/0/25
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.1.49178|4|1/0/26
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.1.49179|4|1/0/27
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.1.49180|4|1/0/28
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.2.49177|4|1.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.2.49178|4|1.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.2.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.2.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.3.49177|4|0.063100
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.3.49178|4|0.063100
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.3.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.3.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.4.49177|4|0.794300
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.4.49178|4|0.794300
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.4.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.4.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.5.49177|4|0.079400
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.5.49178|4|0.079400
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.5.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.5.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.6.49177|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.6.49178|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.6.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.5.1.1.6.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.1.49177|4|1/0/25
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.1.49178|4|1/0/26
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.1.49179|4|1/0/27
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.1.49180|4|1/0/28
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.2.49177|4|1.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.2.49178|4|1.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.2.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.2.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.3.49177|4|0.001400
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.3.49178|4|0.001400
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.3.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.3.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.4.49177|4|0.794300
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.4.49178|4|0.794300
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.4.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.4.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.5.49177|4|0.002000
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.5.49178|4|0.002000
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.5.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.5.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.6.49177|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.6.49178|4|LAG1
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.6.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.6.1.1.6.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.1.49177|4|1/0/25
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.1.49178|4|1/0/26
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.1.49179|4|1/0/27
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.1.49180|4|1/0/28
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49177|4|50.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49178|4|52.000000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.2.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49177|4|3.416200
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49178|4|3.385000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.3.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49177|4|9.568000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49178|4|9.176000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.4.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49177|4|0.398000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49178|4|0.399000
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.5.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49177|4|0.251200
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49178|4|0.251200
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.6.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49177|4|False
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49178|4|False
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.7.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49177|4|False
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49178|4|False
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.8.49180|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49177|4|False
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49178|4|False
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49179|4|N/A
|
||||
1.3.6.1.4.1.11863.6.96.1.7.1.1.9.49180|4|N/A
|
||||
|
Reference in New Issue
Block a user