mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added Cambium PTP670 (#11186)
* cambium PTP670 * Wireless data * space * space
This commit is contained in:
167
LibreNMS/OS/Ptp670.php
Normal file
167
LibreNMS/OS/Ptp670.php
Normal file
@ -0,0 +1,167 @@
|
||||
<?php
|
||||
/**
|
||||
* ptp670.php
|
||||
*
|
||||
* Cambium
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://librenms.org
|
||||
* @copyright 2017 Paul Heinrichs
|
||||
* @author Paul Heinrichs<pdheinrichs@gmail.com>
|
||||
*/
|
||||
|
||||
namespace LibreNMS\OS;
|
||||
|
||||
use LibreNMS\Device\WirelessSensor;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSsrDiscovery;
|
||||
|
||||
use LibreNMS\OS;
|
||||
|
||||
class Ptp670 extends OS implements
|
||||
WirelessPowerDiscovery,
|
||||
WirelessRateDiscovery,
|
||||
WirelessSsrDiscovery
|
||||
{
|
||||
/**
|
||||
* Discover wireless tx or rx power. This is in dBm. Type is power.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function discoverWirelessPower()
|
||||
{
|
||||
$transmit = '.1.3.6.1.4.1.17713.11.12.4.0'; //CAMBIUM-PTP670-MIB::transmitPower.0
|
||||
$receive = '.1.3.6.1.4.1.17713.11.12.12.0'; //CAMBIUM-PTP670-MIB::rawReceivePower.0
|
||||
return array(
|
||||
new WirelessSensor(
|
||||
'power',
|
||||
$this->getDeviceId(),
|
||||
$transmit,
|
||||
'ptp670-tx',
|
||||
0,
|
||||
'ptp670 Transmit',
|
||||
null,
|
||||
1,
|
||||
10
|
||||
),
|
||||
new WirelessSensor(
|
||||
'power',
|
||||
$this->getDeviceId(),
|
||||
$receive,
|
||||
'ptp670-rx',
|
||||
0,
|
||||
'ptp670 Receive',
|
||||
null,
|
||||
1,
|
||||
10
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Discover wireless rate. This is in bps. Type is rate.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function discoverWirelessRate()
|
||||
{
|
||||
$receive = '.1.3.6.1.4.1.17713.11.20.1.0'; //CAMBIUM-PTP670-MIB::receiveDataRate.0
|
||||
$transmit = '.1.3.6.1.4.1.17713.11.20.2.0'; //CAMBIUM-PTP670-MIB::transmitDataRate.0
|
||||
$aggregate = '.1.3.6.1.4.1.17713.11.20.3.0'; //CAMBIUM-PTP670-MIB::aggregateDataRate.0
|
||||
$txModulation = ".1.3.6.1.4.1.17713.11.12.15.0";
|
||||
$rxModulation = ".1.3.6.1.4.1.17713.11.12.14.0";
|
||||
return array(
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
$receive,
|
||||
'ptp670-rx-rate',
|
||||
0,
|
||||
'PTP670 Receive Rate',
|
||||
null,
|
||||
1000,
|
||||
1
|
||||
),
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
$transmit,
|
||||
'ptp670-tx-rate',
|
||||
0,
|
||||
'PTP670 Transmit Rate',
|
||||
null,
|
||||
1000,
|
||||
1
|
||||
),
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
$aggregate,
|
||||
'ptp670-ag-rate',
|
||||
0,
|
||||
'PTP670 Aggregate Rate',
|
||||
null,
|
||||
1000,
|
||||
1
|
||||
),
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
$txModulation,
|
||||
'ptp670-tx-mod',
|
||||
0,
|
||||
'PTP670 Transmit Modulation Rate',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
'rate',
|
||||
$this->getDeviceId(),
|
||||
$rxModulation,
|
||||
'ptp670-rx-mod',
|
||||
0,
|
||||
'PTP670 Receive Modulation Rate',
|
||||
null
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Discover wireless SSR. This is in dB. Type is ssr.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array Sensors
|
||||
*/
|
||||
public function discoverWirelessSsr()
|
||||
{
|
||||
$ssr = '.1.3.6.1.4.1.17713.11.12.9.0'; // CAMBIUM-PTP670-MIB::signalStrengthRatio.0
|
||||
return array(
|
||||
new WirelessSensor(
|
||||
'ssr',
|
||||
$this->getDeviceId(),
|
||||
$ssr,
|
||||
'ptp670',
|
||||
0,
|
||||
'PTP670 Signal Strength Ratio',
|
||||
null,
|
||||
1,
|
||||
10
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
21
includes/definitions/discovery/ptp670.yaml
Normal file
21
includes/definitions/discovery/ptp670.yaml
Normal file
@ -0,0 +1,21 @@
|
||||
mib: CAMBIUM-PTP670-MIB
|
||||
modules:
|
||||
sensors:
|
||||
state:
|
||||
data:
|
||||
-
|
||||
oid: tDDSynchronizationStatus
|
||||
num_oid: '.1.3.6.1.4.1.17713.7.13.11.{{ $index }}'
|
||||
index: 0
|
||||
descr: Sync Status
|
||||
states:
|
||||
- { value: 0, generic: 0, graph: 1, descr: locked }
|
||||
- { value: 1, generic: 0, graph: 1, descr: holdover }
|
||||
- { value: 2, generic: 1, graph: 1, descr: holdoverNoGPSSyncIn }
|
||||
- { value: 3, generic: 2, graph: 1, descr: notSynchronized }
|
||||
- { value: 4, generic: 2, graph: 1, descr: notSynchronizedNoGPSSyncIn }
|
||||
- { value: 5, generic: 0, graph: 1, descr: pTPSYNCNotConnected }
|
||||
- { value: 6, generic: 0, graph: 1, descr: initialising }
|
||||
- { value: 7, generic: 0, graph: 1, descr: clusterTimingMaster }
|
||||
- { value: 8, generic: 0, graph: 1, descr: acquiringLock }
|
||||
- { value: 9, generic: 0, graph: 1, descr: inactive }
|
12
includes/definitions/ptp670.yaml
Normal file
12
includes/definitions/ptp670.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
os: ptp670
|
||||
text: 'Cambium PTP 670'
|
||||
type: wireless
|
||||
icon: cambium
|
||||
group: cambium
|
||||
over:
|
||||
- { graph: device_bits, text: 'Device Traffic' }
|
||||
- { graph: device_wireless_ssr, text: 'Device SSR' }
|
||||
- { graph: device_wireless_rate, text: 'Device Rate' }
|
||||
discovery:
|
||||
- sysObjectID:
|
||||
- .1.3.6.1.4.1.17713.11
|
19
includes/polling/os/ptp670.inc.php
Normal file
19
includes/polling/os/ptp670.inc.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS
|
||||
*
|
||||
* Copyright (c) 2015 Christophe Martinet Chrisgfx <martinet.christophe@gmail.com>
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or (at your
|
||||
* option) any later version. Please see LICENSE.txt at the top level of
|
||||
* the source code distribution for details.
|
||||
*/
|
||||
|
||||
$version = preg_replace("/.*Version (.*)$/", "\\1", $device['sysDescr']);
|
||||
$data = snmp_get_multi($device, ['masterSlaveMode.0', 'hardwareVersion.0'], '-OQU', 'CAMBIUM-PTP670-MIB');
|
||||
|
||||
$masterSlaveMode = ucfirst($data[0]['CAMBIUM-PTP670-MIB::masterSlaveMode']);
|
||||
$hwversion = ucfirst($data[0]['CAMBIUM-PTP670-MIB::hardwareVersion']);
|
||||
|
||||
$hardware = 'PTP 670 ' . $masterSlaveMode . "($hwversion)";
|
7737
mibs/cambium/CAMBIUM-PTP670-MIB
Executable file
7737
mibs/cambium/CAMBIUM-PTP670-MIB
Executable file
File diff suppressed because it is too large
Load Diff
1438
tests/data/ptp670.json
Normal file
1438
tests/data/ptp670.json
Normal file
File diff suppressed because it is too large
Load Diff
285
tests/snmpsim/ptp670.snmprec
Normal file
285
tests/snmpsim/ptp670.snmprec
Normal file
@ -0,0 +1,285 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Cambium PTP 50670 PTP Wireless Ethernet Bridge, Version 50670-02-00
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.17713.11
|
||||
1.3.6.1.2.1.1.3.0|67|1789144300
|
||||
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.1|4|wireless interface
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|main (psu) ethernet interface
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|aux ethernet interface
|
||||
1.3.6.1.2.1.2.2.1.2.4|4|sfp ethernet interface
|
||||
1.3.6.1.2.1.2.2.1.2.5|4|nidu lan ethernet interface
|
||||
1.3.6.1.2.1.2.2.1.2.6|4|nidu tdm channel 1 interface
|
||||
1.3.6.1.2.1.2.2.1.2.7|4|nidu tdm channel 2 interface
|
||||
1.3.6.1.2.1.2.2.1.2.8|4|nidu tdm channel 3 interface
|
||||
1.3.6.1.2.1.2.2.1.2.9|4|nidu tdm channel 4 interface
|
||||
1.3.6.1.2.1.2.2.1.2.10|4|nidu tdm channel 5 interface
|
||||
1.3.6.1.2.1.2.2.1.2.11|4|nidu tdm channel 6 interface
|
||||
1.3.6.1.2.1.2.2.1.2.12|4|nidu tdm channel 7 interface
|
||||
1.3.6.1.2.1.2.2.1.2.13|4|nidu tdm channel 8 interface
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|157
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.3|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.4|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.5|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.6|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.7|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.8|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.9|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.10|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.11|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.12|2|18
|
||||
1.3.6.1.2.1.2.2.1.3.13|2|18
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|9600
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|9600
|
||||
1.3.6.1.2.1.2.2.1.4.3|2|2000
|
||||
1.3.6.1.2.1.2.2.1.4.4|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.5|2|9600
|
||||
1.3.6.1.2.1.2.2.1.4.6|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.7|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.8|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.9|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.10|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.11|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.12|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.13|2|0
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|000456581442
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|000456581442
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|000456581442
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|000456581442
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|000456581442
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.3|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.4|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.5|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.6|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.7|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.8|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.9|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.10|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.11|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.12|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.13|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.3|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.4|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.5|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.6|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.7|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.8|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.9|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.10|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.11|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.12|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.13|2|6
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|2500
|
||||
1.3.6.1.2.1.2.2.1.9.2|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.3|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.4|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.5|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.6|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.7|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.8|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.9|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.10|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.11|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.12|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.13|67|0
|
||||
1.3.6.1.2.1.2.2.1.13.1|65|4906088
|
||||
1.3.6.1.2.1.2.2.1.13.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.5|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.1|65|5823832
|
||||
1.3.6.1.2.1.2.2.1.14.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.5|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.1|65|285773
|
||||
1.3.6.1.2.1.2.2.1.19.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.5|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.5|65|0
|
||||
1.3.6.1.2.1.4.20.1.1.1|64|10.0.0.1
|
||||
1.3.6.1.2.1.4.20.1.2.1|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.1|64|255.255.255.252
|
||||
1.3.6.1.2.1.11.1.0|65|3603407
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
1.3.6.1.2.1.11.4.0|65|0
|
||||
1.3.6.1.2.1.11.5.0|65|0
|
||||
1.3.6.1.2.1.11.6.0|65|0
|
||||
1.3.6.1.2.1.11.30.0|2|1
|
||||
1.3.6.1.2.1.11.31.0|65|0
|
||||
1.3.6.1.2.1.11.32.0|65|0
|
||||
1.3.6.1.2.1.17.1.1.0|4x|000456581442
|
||||
1.3.6.1.2.1.17.1.4.1.2.1|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|wireless interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|main (psu) ethernet interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|aux ethernet interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.4|4|sfp ethernet interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.5|4|nidu lan ethernet interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.6|4|nidu tdm channel 1 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.7|4|nidu tdm channel 2 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.8|4|nidu tdm channel 3 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.9|4|nidu tdm channel 4 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.10|4|nidu tdm channel 5 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.11|4|nidu tdm channel 6 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.12|4|nidu tdm channel 7 interface
|
||||
1.3.6.1.2.1.31.1.1.1.1.13|4|nidu tdm channel 8 interface
|
||||
1.3.6.1.2.1.31.1.1.1.2.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.2|65|3
|
||||
1.3.6.1.2.1.31.1.1.1.3.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.2|65|423442
|
||||
1.3.6.1.2.1.31.1.1.1.5.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|74542027830569
|
||||
1.3.6.1.2.1.31.1.1.1.6.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|3
|
||||
1.3.6.1.2.1.31.1.1.1.9.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|45520075773163
|
||||
1.3.6.1.2.1.31.1.1.1.10.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|423442
|
||||
1.3.6.1.2.1.31.1.1.1.13.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.14.1|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.14.2|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.3|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.4|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.5|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.6|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.7|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.8|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.9|2|2
|
||||
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.11|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.12|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.14.13|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.1|66|323
|
||||
1.3.6.1.2.1.31.1.1.1.15.2|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.3|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.4|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.5|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.6|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.7|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.8|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.9|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.10|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.11|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.12|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.15.13|66|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.1|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.2|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.3|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.4|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.5|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.6|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.7|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.8|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.9|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.10|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.11|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.12|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.16.13|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.1|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.2|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.3|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.4|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.5|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.6|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.7|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.8|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.9|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.10|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.11|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.12|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.13|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.3|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.4|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.5|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.6|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.7|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.8|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.9|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.10|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.11|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.12|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.13|4|
|
||||
1.3.6.1.2.1.31.1.1.1.19.1|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.2|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.3|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.4|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.5|67|0
|
||||
1.3.6.1.4.1.17713.11.5.5.0|2|0
|
||||
1.3.6.1.4.1.17713.11.12.4.0|2|230
|
||||
1.3.6.1.4.1.17713.11.12.9.0|2|-8
|
||||
1.3.6.1.4.1.17713.11.12.12.0|2|-528
|
||||
1.3.6.1.4.1.17713.11.12.14.0|2|24
|
||||
1.3.6.1.4.1.17713.11.12.15.0|2|24
|
||||
1.3.6.1.4.1.17713.11.13.11.0|2|9
|
||||
1.3.6.1.4.1.17713.11.19.2.0|4|B0P01.01-C-FPS
|
||||
1.3.6.1.4.1.17713.11.20.1.0|2|161340
|
||||
1.3.6.1.4.1.17713.11.20.2.0|2|161340
|
||||
1.3.6.1.4.1.17713.11.20.3.0|2|322680
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|17891438
|
Reference in New Issue
Block a user