Adding Fortigate HA checks (#12300)

* Adding Fortigate HA checks

* Fixed issues the linter had

* Moving sync checks to the poller since standalone units was marked as unsynchronized

* Whitespace lint corrections

* More whitespace linting fixes

* Removing haState since it only showed the state of one device in the cluster.

* Adding a third state fo sync where it will show a warning if a device that is part of a cluster does not have a peer

* Updating snmp test data for fortigate 1500d

* Changing numerical oids to names

* Restoring the original 1500d json file

* Adding cleaned test data

* Removing tags to see if that makes Travis happier

* Removing duplicate rows in SNMP data

* Take this Travis!

* Pretty please Travis?

* Fourth time's a charm?
This commit is contained in:
Patrik Jonsson 2020-11-09 07:07:45 +01:00 committed by GitHub
parent 76ab814647
commit 591384f321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7632 additions and 0 deletions

View File

@ -0,0 +1,124 @@
<?php
/**
* fortigate.inc.php
*
* LibreNMS state sensor discovery module for Fortigate Firewalls
*
* 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/>.
*
* @link http://librenms.org
* @copyright 2020 Net Entertainment AB
* @author Patrik Jonsson <patrik.jonsson@gmail.com>
*/
$index = 0;
$fgHaSystemModeOid = 'fgHaSystemMode.0';
$systemMode = snmp_get($device, $fgHaSystemModeOid, '-Ovq', 'FORTINET-FORTIGATE-MIB');
// Verify that the device is clustered
if ($systemMode == 'activePassive' || $systemMode == 'activeActive') {
$fgHaStatsEntryOid = 'fgHaStatsEntry';
// Fetch the cluster members
$haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsEntryOid, [], 'FORTINET-FORTIGATE-MIB');
if (is_array($haStatsEntries)) {
$stateName = 'clusterState';
$descr = 'Cluster State';
$states = [
['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'CRITICAL'],
['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'OK'],
];
create_state_index($stateName, $states);
$clusterMemberCount = count($haStatsEntries);
// If the device is part of a cluster but the member count is 1 the cluster has issues
$clusterState = $clusterMemberCount == 1 ? 0 : 1;
discover_sensor(
$valid['sensor'],
'state',
$device,
$fgHaSystemModeOid,
$index,
$stateName,
$descr,
1,
1,
null,
null,
null,
null,
$clusterState,
'snmp',
null,
null,
null,
'HA'
);
create_sensor_to_state_index($device, $stateName, $index);
// Setup a sensor for the cluster sync state
$stateName = 'haSyncStatus';
$descr = 'HA sync status';
$states = [
['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'Out Of Sync'],
['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'In Sync'],
['value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'No Peer'],
];
create_state_index($stateName, $states);
discover_sensor(
$valid['sensor'],
'state',
$device,
$fgHaStatsEntryOid,
$index,
$stateName,
$descr,
1,
1,
null,
null,
null,
null,
1,
'snmp',
$index,
null,
null,
'HA'
);
create_sensor_to_state_index($device, $stateName, $index);
}
}
unset(
$index,
$fgHaSystemModeOid,
$systemMode,
$fgHaStatsEntryOid,
$haStatsEntries,
$stateName,
$descr,
$states,
$clusterMemberCount,
$clusterState,
$entry
);

View File

@ -0,0 +1,57 @@
<?php
/**
* fortigate.inc.php
*
* LibreNMS state sensor state polling module for Fortigate Firewalls
*
* 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/>.
*
* @link http://librenms.org
* @copyright 2020 Net Entertainment AB
* @author Patrik Jonsson <patrik.jonsson@gmail.com>
*/
if ($device['os'] == 'fortigate') {
if (in_array($sensor['sensor_type'], ['clusterState', 'haSyncStatus'])) {
// Fetch the cluster members and their data
$fgHaStatsEntryOid = 'fgHaStatsEntry';
$haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsEntryOid, [], 'FORTINET-FORTIGATE-MIB');
if ($sensor['sensor_type'] == 'clusterState') {
// Determine if the cluster contains more than 1 device
$clusterState = 0;
if (is_array($haStatsEntries)) {
$clusterMemberCount = count($haStatsEntries);
$clusterState = $clusterMemberCount == 1 ? 0 : 1;
}
$sensor_value = $clusterState;
} elseif ($sensor['sensor_type'] == 'haSyncStatus') {
// 0 = Out of sync, 1 = In Sync, 2 = No Peer
$synchronized = 1;
$clusterMemberCount = count($haStatsEntries);
if ($clusterMemberCount == 1) {
$synchronized = 2;
} else {
foreach ($haStatsEntries as $entry) {
if ($entry['fgHaStatsSyncStatus'] == 'unsynchronized') {
$synchronized = 0;
}
}
}
$sensor_value = $synchronized;
}
unset($fgHaStatsEntryOid, $haStatsEntries, $clusterMemberCount, $synchronized, $clusterState, $clusterMemberCount);
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,626 @@
1.3.6.1.2.1.1.1.0|4|our firewall
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.101.1.15000
1.3.6.1.2.1.1.3.0|67|3885731864
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.47.1.1.1.1.2.1|4|Fortinet FGT_1500D, HW Serial#: FG1K5D3I10000000
1.3.6.1.2.1.47.1.1.1.1.2.2|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.3|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.4|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.5|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.6|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.7|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.8|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.9|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.10|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.11|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.12|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.13|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.14|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.15|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.16|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.17|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.18|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.19|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.20|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.21|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.22|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.23|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.24|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.25|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.26|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.27|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.28|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.29|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.30|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.31|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.32|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.33|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.34|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.35|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.36|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.37|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.38|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.39|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.40|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.41|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.42|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.43|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.2.44|4|Ethernet Port, Vitual Domain: root
1.3.6.1.2.1.47.1.1.1.1.7.1|4|FGT_1500D
1.3.6.1.2.1.47.1.1.1.1.7.2|4|mgmt1
1.3.6.1.2.1.47.1.1.1.1.7.3|4|port1
1.3.6.1.2.1.47.1.1.1.1.7.4|4|modem
1.3.6.1.2.1.47.1.1.1.1.7.5|4|port2
1.3.6.1.2.1.47.1.1.1.1.7.6|4|port3
1.3.6.1.2.1.47.1.1.1.1.7.7|4|port4
1.3.6.1.2.1.47.1.1.1.1.7.8|4|port5
1.3.6.1.2.1.47.1.1.1.1.7.9|4|port6
1.3.6.1.2.1.47.1.1.1.1.7.10|4|port7
1.3.6.1.2.1.47.1.1.1.1.7.11|4|port8
1.3.6.1.2.1.47.1.1.1.1.7.12|4|port9
1.3.6.1.2.1.47.1.1.1.1.7.13|4|port10
1.3.6.1.2.1.47.1.1.1.1.7.14|4|port11
1.3.6.1.2.1.47.1.1.1.1.7.15|4|port12
1.3.6.1.2.1.47.1.1.1.1.7.16|4|port13
1.3.6.1.2.1.47.1.1.1.1.7.17|4|port14
1.3.6.1.2.1.47.1.1.1.1.7.18|4|port15
1.3.6.1.2.1.47.1.1.1.1.7.19|4|port16
1.3.6.1.2.1.47.1.1.1.1.7.20|4|port17
1.3.6.1.2.1.47.1.1.1.1.7.21|4|port18
1.3.6.1.2.1.47.1.1.1.1.7.22|4|port19
1.3.6.1.2.1.47.1.1.1.1.7.23|4|port20
1.3.6.1.2.1.47.1.1.1.1.7.24|4|port21
1.3.6.1.2.1.47.1.1.1.1.7.25|4|port22
1.3.6.1.2.1.47.1.1.1.1.7.26|4|port23
1.3.6.1.2.1.47.1.1.1.1.7.27|4|port24
1.3.6.1.2.1.47.1.1.1.1.7.28|4|port25
1.3.6.1.2.1.47.1.1.1.1.7.29|4|port26
1.3.6.1.2.1.47.1.1.1.1.7.30|4|port27
1.3.6.1.2.1.47.1.1.1.1.7.31|4|port28
1.3.6.1.2.1.47.1.1.1.1.7.32|4|port29
1.3.6.1.2.1.47.1.1.1.1.7.33|4|port30
1.3.6.1.2.1.47.1.1.1.1.7.34|4|port31
1.3.6.1.2.1.47.1.1.1.1.7.35|4|port32
1.3.6.1.2.1.47.1.1.1.1.7.36|4|port33
1.3.6.1.2.1.47.1.1.1.1.7.37|4|port34
1.3.6.1.2.1.47.1.1.1.1.7.38|4|port35
1.3.6.1.2.1.47.1.1.1.1.7.39|4|port36
1.3.6.1.2.1.47.1.1.1.1.7.40|4|port37
1.3.6.1.2.1.47.1.1.1.1.7.41|4|port38
1.3.6.1.2.1.47.1.1.1.1.7.42|4|port39
1.3.6.1.2.1.47.1.1.1.1.7.43|4|port40
1.3.6.1.2.1.47.1.1.1.1.7.44|4|mgmt2
1.3.6.1.4.1.12356.101.4.1.3.0|66|6
1.3.6.1.4.1.12356.101.4.1.8.0|66|26190
1.3.6.1.4.1.12356.101.4.1.11.0|66|203
1.3.6.1.4.1.12356.101.4.1.12.0|66|218
1.3.6.1.4.1.12356.101.4.1.13.0|66|214
1.3.6.1.4.1.12356.101.4.1.14.0|66|212
1.3.6.1.4.1.12356.101.4.3.1.0|2|54
1.3.6.1.4.1.12356.101.4.3.2.1.1.1|2|1
1.3.6.1.4.1.12356.101.4.3.2.1.1.2|2|2
1.3.6.1.4.1.12356.101.4.3.2.1.1.3|2|3
1.3.6.1.4.1.12356.101.4.3.2.1.1.4|2|4
1.3.6.1.4.1.12356.101.4.3.2.1.1.5|2|5
1.3.6.1.4.1.12356.101.4.3.2.1.1.6|2|6
1.3.6.1.4.1.12356.101.4.3.2.1.1.7|2|7
1.3.6.1.4.1.12356.101.4.3.2.1.1.8|2|8
1.3.6.1.4.1.12356.101.4.3.2.1.1.9|2|9
1.3.6.1.4.1.12356.101.4.3.2.1.1.10|2|10
1.3.6.1.4.1.12356.101.4.3.2.1.1.11|2|11
1.3.6.1.4.1.12356.101.4.3.2.1.1.12|2|12
1.3.6.1.4.1.12356.101.4.3.2.1.1.13|2|13
1.3.6.1.4.1.12356.101.4.3.2.1.1.14|2|14
1.3.6.1.4.1.12356.101.4.3.2.1.1.15|2|15
1.3.6.1.4.1.12356.101.4.3.2.1.1.16|2|16
1.3.6.1.4.1.12356.101.4.3.2.1.1.17|2|17
1.3.6.1.4.1.12356.101.4.3.2.1.1.18|2|18
1.3.6.1.4.1.12356.101.4.3.2.1.1.19|2|19
1.3.6.1.4.1.12356.101.4.3.2.1.1.20|2|20
1.3.6.1.4.1.12356.101.4.3.2.1.1.21|2|21
1.3.6.1.4.1.12356.101.4.3.2.1.1.22|2|22
1.3.6.1.4.1.12356.101.4.3.2.1.1.23|2|23
1.3.6.1.4.1.12356.101.4.3.2.1.1.24|2|24
1.3.6.1.4.1.12356.101.4.3.2.1.1.25|2|25
1.3.6.1.4.1.12356.101.4.3.2.1.1.26|2|26
1.3.6.1.4.1.12356.101.4.3.2.1.1.27|2|27
1.3.6.1.4.1.12356.101.4.3.2.1.1.28|2|28
1.3.6.1.4.1.12356.101.4.3.2.1.1.29|2|29
1.3.6.1.4.1.12356.101.4.3.2.1.1.30|2|30
1.3.6.1.4.1.12356.101.4.3.2.1.1.31|2|31
1.3.6.1.4.1.12356.101.4.3.2.1.1.32|2|32
1.3.6.1.4.1.12356.101.4.3.2.1.1.33|2|33
1.3.6.1.4.1.12356.101.4.3.2.1.1.34|2|34
1.3.6.1.4.1.12356.101.4.3.2.1.1.35|2|35
1.3.6.1.4.1.12356.101.4.3.2.1.1.36|2|36
1.3.6.1.4.1.12356.101.4.3.2.1.1.37|2|37
1.3.6.1.4.1.12356.101.4.3.2.1.1.38|2|38
1.3.6.1.4.1.12356.101.4.3.2.1.1.39|2|39
1.3.6.1.4.1.12356.101.4.3.2.1.1.40|2|40
1.3.6.1.4.1.12356.101.4.3.2.1.1.41|2|41
1.3.6.1.4.1.12356.101.4.3.2.1.1.42|2|42
1.3.6.1.4.1.12356.101.4.3.2.1.1.43|2|43
1.3.6.1.4.1.12356.101.4.3.2.1.1.44|2|44
1.3.6.1.4.1.12356.101.4.3.2.1.1.45|2|45
1.3.6.1.4.1.12356.101.4.3.2.1.1.46|2|46
1.3.6.1.4.1.12356.101.4.3.2.1.1.47|2|47
1.3.6.1.4.1.12356.101.4.3.2.1.1.48|2|48
1.3.6.1.4.1.12356.101.4.3.2.1.1.49|2|49
1.3.6.1.4.1.12356.101.4.3.2.1.1.50|2|50
1.3.6.1.4.1.12356.101.4.3.2.1.1.51|2|51
1.3.6.1.4.1.12356.101.4.3.2.1.1.52|2|52
1.3.6.1.4.1.12356.101.4.3.2.1.1.53|2|53
1.3.6.1.4.1.12356.101.4.3.2.1.1.54|2|54
1.3.6.1.4.1.12356.101.4.3.2.1.2.1|4|+3.3V
1.3.6.1.4.1.12356.101.4.3.2.1.2.2|4|+5V
1.3.6.1.4.1.12356.101.4.3.2.1.2.3|4|+12V
1.3.6.1.4.1.12356.101.4.3.2.1.2.4|4|CPU Vcore
1.3.6.1.4.1.12356.101.4.3.2.1.2.5|4|CPU VTT
1.3.6.1.4.1.12356.101.4.3.2.1.2.6|4|CPU VSA
1.3.6.1.4.1.12356.101.4.3.2.1.2.7|4|DDR3 VDQ1
1.3.6.1.4.1.12356.101.4.3.2.1.2.8|4|DDR3 VDQ2
1.3.6.1.4.1.12356.101.4.3.2.1.2.9|4|NCT Vcore
1.3.6.1.4.1.12356.101.4.3.2.1.2.10|4|NCT VDQ1
1.3.6.1.4.1.12356.101.4.3.2.1.2.11|4|DDR3 VTT1
1.3.6.1.4.1.12356.101.4.3.2.1.2.12|4|NCT VDQ2
1.3.6.1.4.1.12356.101.4.3.2.1.2.13|4|DDR3 VTT2
1.3.6.1.4.1.12356.101.4.3.2.1.2.14|4|MAC_AVS_1V
1.3.6.1.4.1.12356.101.4.3.2.1.2.15|4|NCT7904D 3VDD
1.3.6.1.4.1.12356.101.4.3.2.1.2.16|4|NCT7904D 3VSB
1.3.6.1.4.1.12356.101.4.3.2.1.2.17|4|NCT7904D VTT
1.3.6.1.4.1.12356.101.4.3.2.1.2.18|4|DTS CPU
1.3.6.1.4.1.12356.101.4.3.2.1.2.19|4|CPU Core 0
1.3.6.1.4.1.12356.101.4.3.2.1.2.20|4|CPU Core 1
1.3.6.1.4.1.12356.101.4.3.2.1.2.21|4|CPU Core 2
1.3.6.1.4.1.12356.101.4.3.2.1.2.22|4|CPU Core 3
1.3.6.1.4.1.12356.101.4.3.2.1.2.23|4|CPU Core 4
1.3.6.1.4.1.12356.101.4.3.2.1.2.24|4|CPU Core 5
1.3.6.1.4.1.12356.101.4.3.2.1.2.25|4|TD1
1.3.6.1.4.1.12356.101.4.3.2.1.2.26|4|TD2
1.3.6.1.4.1.12356.101.4.3.2.1.2.27|4|TD3
1.3.6.1.4.1.12356.101.4.3.2.1.2.28|4|TD4
1.3.6.1.4.1.12356.101.4.3.2.1.2.29|4|TS1
1.3.6.1.4.1.12356.101.4.3.2.1.2.30|4|TS2
1.3.6.1.4.1.12356.101.4.3.2.1.2.31|4|TS3
1.3.6.1.4.1.12356.101.4.3.2.1.2.32|4|TS4
1.3.6.1.4.1.12356.101.4.3.2.1.2.33|4|TS5
1.3.6.1.4.1.12356.101.4.3.2.1.2.34|4|TS6
1.3.6.1.4.1.12356.101.4.3.2.1.2.35|4|Fan 1
1.3.6.1.4.1.12356.101.4.3.2.1.2.36|4|Fan 2
1.3.6.1.4.1.12356.101.4.3.2.1.2.37|4|Fan 3
1.3.6.1.4.1.12356.101.4.3.2.1.2.38|4|Fan 4
1.3.6.1.4.1.12356.101.4.3.2.1.2.39|4|Fan 5
1.3.6.1.4.1.12356.101.4.3.2.1.2.40|4|Fan 6
1.3.6.1.4.1.12356.101.4.3.2.1.2.41|4|PS1 Temp
1.3.6.1.4.1.12356.101.4.3.2.1.2.42|4|PS1 Fan 1
1.3.6.1.4.1.12356.101.4.3.2.1.2.43|4|PS1 VIN
1.3.6.1.4.1.12356.101.4.3.2.1.2.44|4|PS1 VOUT_12V
1.3.6.1.4.1.12356.101.4.3.2.1.2.45|4|PS1 Status
1.3.6.1.4.1.12356.101.4.3.2.1.2.46|4|PS2 Temp
1.3.6.1.4.1.12356.101.4.3.2.1.2.47|4|PS2 Fan 1
1.3.6.1.4.1.12356.101.4.3.2.1.2.48|4|PS2 VIN
1.3.6.1.4.1.12356.101.4.3.2.1.2.49|4|PS2 VOUT_12V
1.3.6.1.4.1.12356.101.4.3.2.1.2.50|4|PS2 Status
1.3.6.1.4.1.12356.101.4.3.2.1.2.51|4|INA219 PS1 Vsht
1.3.6.1.4.1.12356.101.4.3.2.1.2.52|4|INA219 PS1 Vbus
1.3.6.1.4.1.12356.101.4.3.2.1.2.53|4|INA219 PS2 Vsht
1.3.6.1.4.1.12356.101.4.3.2.1.2.54|4|INA219 PS2 Vbus
1.3.6.1.4.1.12356.101.4.3.2.1.3.1|4|3.3504
1.3.6.1.4.1.12356.101.4.3.2.1.3.2|4|5.097
1.3.6.1.4.1.12356.101.4.3.2.1.3.3|4|11.959
1.3.6.1.4.1.12356.101.4.3.2.1.3.4|4|1.1373
1.3.6.1.4.1.12356.101.4.3.2.1.3.5|4|1.0589
1.3.6.1.4.1.12356.101.4.3.2.1.3.6|4|0.8629
1.3.6.1.4.1.12356.101.4.3.2.1.3.7|4|1.3431
1.3.6.1.4.1.12356.101.4.3.2.1.3.8|4|1.3431
1.3.6.1.4.1.12356.101.4.3.2.1.3.9|4|1.136
1.3.6.1.4.1.12356.101.4.3.2.1.3.10|4|1.344
1.3.6.1.4.1.12356.101.4.3.2.1.3.11|4|0.664
1.3.6.1.4.1.12356.101.4.3.2.1.3.12|4|1.344
1.3.6.1.4.1.12356.101.4.3.2.1.3.13|4|0.664
1.3.6.1.4.1.12356.101.4.3.2.1.3.14|4|0.968
1.3.6.1.4.1.12356.101.4.3.2.1.3.15|4|3.264
1.3.6.1.4.1.12356.101.4.3.2.1.3.16|4|3.264
1.3.6.1.4.1.12356.101.4.3.2.1.3.17|4|1.056
1.3.6.1.4.1.12356.101.4.3.2.1.3.18|4|53
1.3.6.1.4.1.12356.101.4.3.2.1.3.19|4|52
1.3.6.1.4.1.12356.101.4.3.2.1.3.20|4|53
1.3.6.1.4.1.12356.101.4.3.2.1.3.21|4|54
1.3.6.1.4.1.12356.101.4.3.2.1.3.22|4|49
1.3.6.1.4.1.12356.101.4.3.2.1.3.23|4|50
1.3.6.1.4.1.12356.101.4.3.2.1.3.24|4|53
1.3.6.1.4.1.12356.101.4.3.2.1.3.25|4|39
1.3.6.1.4.1.12356.101.4.3.2.1.3.26|4|28
1.3.6.1.4.1.12356.101.4.3.2.1.3.27|4|30
1.3.6.1.4.1.12356.101.4.3.2.1.3.28|4|33
1.3.6.1.4.1.12356.101.4.3.2.1.3.29|4|36
1.3.6.1.4.1.12356.101.4.3.2.1.3.30|4|30
1.3.6.1.4.1.12356.101.4.3.2.1.3.31|4|33
1.3.6.1.4.1.12356.101.4.3.2.1.3.32|4|34
1.3.6.1.4.1.12356.101.4.3.2.1.3.33|4|29
1.3.6.1.4.1.12356.101.4.3.2.1.3.34|4|30
1.3.6.1.4.1.12356.101.4.3.2.1.3.35|4|3800
1.3.6.1.4.1.12356.101.4.3.2.1.3.36|4|3200
1.3.6.1.4.1.12356.101.4.3.2.1.3.37|4|3700
1.3.6.1.4.1.12356.101.4.3.2.1.3.38|4|3100
1.3.6.1.4.1.12356.101.4.3.2.1.3.39|4|3900
1.3.6.1.4.1.12356.101.4.3.2.1.3.40|4|3400
1.3.6.1.4.1.12356.101.4.3.2.1.3.41|4|26
1.3.6.1.4.1.12356.101.4.3.2.1.3.42|4|12160
1.3.6.1.4.1.12356.101.4.3.2.1.3.43|4|226
1.3.6.1.4.1.12356.101.4.3.2.1.3.44|4|12.032
1.3.6.1.4.1.12356.101.4.3.2.1.3.45|4|0
1.3.6.1.4.1.12356.101.4.3.2.1.3.46|4|25
1.3.6.1.4.1.12356.101.4.3.2.1.3.47|4|12032
1.3.6.1.4.1.12356.101.4.3.2.1.3.48|4|232
1.3.6.1.4.1.12356.101.4.3.2.1.3.49|4|11.969
1.3.6.1.4.1.12356.101.4.3.2.1.3.50|4|0
1.3.6.1.4.1.12356.101.4.3.2.1.3.51|4|0.00736
1.3.6.1.4.1.12356.101.4.3.2.1.3.52|4|11.904
1.3.6.1.4.1.12356.101.4.3.2.1.3.53|4|0.00832
1.3.6.1.4.1.12356.101.4.3.2.1.3.54|4|11.904
1.3.6.1.4.1.12356.101.4.3.2.1.4.1|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.2|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.3|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.4|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.5|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.6|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.7|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.8|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.9|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.10|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.11|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.12|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.13|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.14|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.15|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.16|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.17|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.18|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.19|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.20|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.21|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.22|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.23|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.24|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.25|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.26|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.27|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.28|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.29|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.30|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.31|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.32|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.33|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.34|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.35|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.36|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.37|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.38|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.39|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.40|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.41|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.42|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.43|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.44|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.45|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.46|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.47|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.48|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.49|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.50|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.51|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.52|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.53|2|0
1.3.6.1.4.1.12356.101.4.3.2.1.4.54|2|0
1.3.6.1.4.1.12356.101.12.1.1.0|2|35
1.3.6.1.4.1.12356.101.12.2.2.1.2.1|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.2|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.3|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.4|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.5|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.6|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.7|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.8|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.9|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.10|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.11|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.12|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.13|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.14|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.15|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.16|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.17|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.18|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.19|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.20|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.21|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.22|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.23|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.24|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.25|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.26|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.27|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.28|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.29|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.30|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.31|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.32|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.33|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.34|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.35|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.36|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.37|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.38|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.39|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.40|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.41|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.42|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.43|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.44|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.45|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.46|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.47|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.48|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.49|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.50|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.51|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.52|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.53|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.54|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.55|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.56|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.57|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.58|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.59|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.60|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.61|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.62|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.63|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.64|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.65|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.66|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.67|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.68|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.69|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.70|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.71|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.2.72|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.1|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.2|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.3|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.4|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.5|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.6|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.7|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.8|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.9|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.10|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.11|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.12|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.13|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.14|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.15|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.16|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.17|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.18|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.19|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.20|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.21|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.22|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.23|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.24|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.25|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.26|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.27|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.28|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.29|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.30|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.31|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.32|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.33|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.34|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.35|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.36|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.37|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.38|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.39|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.40|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.41|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.42|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.43|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.44|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.45|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.46|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.47|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.48|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.49|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.50|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.51|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.52|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.53|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.54|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.55|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.56|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.57|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.58|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.59|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.60|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.61|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.62|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.63|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.64|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.65|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.66|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.67|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.68|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.69|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.70|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.71|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.3.72|4|redacted
1.3.6.1.4.1.12356.101.12.2.2.1.4.1|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.2|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.3|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.4|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.5|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.6|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.7|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.8|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.9|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.10|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.11|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.12|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.13|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.14|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.15|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.16|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.17|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.18|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.19|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.20|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.21|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.22|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.23|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.24|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.25|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.26|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.27|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.28|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.29|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.30|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.31|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.32|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.33|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.34|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.35|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.36|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.37|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.38|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.39|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.40|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.41|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.42|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.43|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.44|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.45|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.46|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.47|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.48|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.49|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.50|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.51|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.52|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.53|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.54|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.55|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.56|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.57|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.58|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.59|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.60|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.61|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.62|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.63|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.64|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.65|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.66|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.67|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.68|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.69|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.70|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.71|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.4.72|64|1.1.1.1
1.3.6.1.4.1.12356.101.12.2.2.1.20.1|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.2|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.3|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.4|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.5|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.6|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.7|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.8|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.9|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.10|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.11|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.12|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.13|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.14|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.15|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.16|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.17|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.18|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.19|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.20|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.21|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.22|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.23|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.24|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.25|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.26|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.27|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.28|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.29|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.30|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.31|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.32|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.33|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.34|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.35|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.36|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.37|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.38|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.39|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.40|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.41|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.42|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.43|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.44|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.45|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.46|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.47|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.48|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.49|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.50|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.51|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.52|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.53|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.54|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.55|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.56|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.57|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.58|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.59|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.60|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.61|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.62|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.63|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.64|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.65|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.66|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.67|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.68|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.69|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.70|2|1
1.3.6.1.4.1.12356.101.12.2.2.1.20.71|2|2
1.3.6.1.4.1.12356.101.12.2.2.1.20.72|2|2
1.3.6.1.4.1.12356.101.12.2.3.1.1.1|2|2
1.3.6.1.4.1.12356.101.12.2.3.1.2.1|66|16
1.3.6.1.4.1.12356.101.12.2.3.1.6.1|66|11
1.3.6.1.4.1.12356.101.13.1.1.0|2|3
1.3.6.1.4.1.12356.101.13.2.1.1.1.1|2|1
1.3.6.1.4.1.12356.101.13.2.1.1.2.1|4|FG1K5D3I10000000
1.3.6.1.4.1.12356.101.13.2.1.1.3.1|66|7
1.3.6.1.4.1.12356.101.13.2.1.1.4.1|66|75
1.3.6.1.4.1.12356.101.13.2.1.1.5.1|66|100550
1.3.6.1.4.1.12356.101.13.2.1.1.6.1|66|26190
1.3.6.1.4.1.12356.101.13.2.1.1.7.1|65|1587877738
1.3.6.1.4.1.12356.101.13.2.1.1.8.1|65|347750579
1.3.6.1.4.1.12356.101.13.2.1.1.9.1|65|7664
1.3.6.1.4.1.12356.101.13.2.1.1.10.1|65|102
1.3.6.1.4.1.12356.101.13.2.1.1.11.1|4|sto-fw-01
1.3.6.1.4.1.12356.101.13.2.1.1.12.1|2|1
1.3.6.1.4.1.12356.101.13.2.1.1.13.1|4|
1.3.6.1.4.1.12356.101.13.2.1.1.14.1|4|
1.3.6.1.4.1.12356.101.13.2.1.1.15.1|4|5CD13AE32CBFE763F110CC4C3ED116DF
1.3.6.1.4.1.12356.101.13.2.1.1.16.1|4|FG1K5D3I10000000
1.3.6.1.6.3.10.2.1.3.0|2|38855745