Added Tegile Storage OS detection, storage pool, and project storage. (#8464)

* added Tegile Storage 001

* Tegile fixed whitespace 002

* Added tegile.snmprec 003

* Added TEGILE-MIB

* Tried to fix svg size issue

* Tried to fix svg size issue 005

* Tried to fix svg size issue 006

* Trying dedup 007

* Revert "Trying dedup 007"

This reverts commit b30a3edb49.

* Tried to fix svg size issue 009

* Tried to fix svg size issue 010

* Reverted changes and created new branch

* changed tegile to intelliflash

* changed tegile to intelliflash

* changed tegile to intelliflash 002

* added intelliflash snmprec

* added Json test data

* Update intelliflash.json

* Redid logo

* Update tegile.svg

* changed to intelliflash1. intelliflash2 will come later.

* removed previous commit I made

* Adding project usage

* simplified project calculations

* simplified project calculations

* simplified project calculations

* simplified project calculations

* Cleaned up comments

* Added disco OS if check and removed network over graph

* chenged os detection to sysObjectID. Fixed disco if check.

* Updated json test file

* Fixed intelliflash-pr storage units.

* Updated test data

* Updated test data to remove bgp module
This commit is contained in:
theherodied 2018-04-09 01:57:22 -04:00 committed by Tony Murray
parent e0b7cc1b5f
commit 313b46236e
8 changed files with 6370 additions and 0 deletions

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 633.162 642.612" version="1"><circle r="85.445" cy="85.445" cx="227.198"/><circle r="105.921" cy="303.587" cx="105.921"/><circle r="120.884" cy="521.729" cx="287.837"/><circle r="74.026" cy="477.234" cx="558.348"/><circle r="40.557" cy="272.086" cx="592.605"/><circle r="63.395" cy="107.496" cx="451.64"/></svg>

After

Width:  |  Height:  |  Size: 365 B

View File

@ -0,0 +1,11 @@
os: intelliflash
text: 'Tegile IntelliFlash'
type: storage
icon: tegile
over:
- { graph: device_storage, text: 'Storage Usage' }
mib_dir:
- tegile
discovery:
- sysObjectID:
- .1.3.6.1.4.1.43906.1

View File

@ -0,0 +1,66 @@
<?php
/**
* tegile.inc.php
*
* LibreNMS storage discovery module for Tegile Storage
*
* 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.storage snmpgnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2018 Ryan Finney
* @author https://github.com/theherodied/
*/
use LibreNMS\Config;
if($device['os'] == 'intelliflash') {
$tegile_storage = snmpwalk_cache_oid($device, 'poolEntry', null, 'TEGILE-MIB');
if (is_array($tegile_storage)) {
echo 'poolEntry ';
foreach ($tegile_storage as $index => $storage) {
$units = 1;
$fstype = $storage['poolState'];
$descr = $storage['poolName'];
//Tegile uses a high 32bit counter and a low 32bit counter to make a 64bit counter. Storage units are in bytes.
$size = (($storage['poolSizeHigh'] << 32 ) + $storage['poolSizeLow']) * $units;
$used = (($storage['poolUsedSizeHigh'] << 32 ) + $storage['poolUsedSizeLow']) * $units;
if (is_numeric($index)) {
discover_storage($valid_storage, $device, $index, $fstype, 'intelliflash-pl', $descr, $size, $units, $used);
}
unset($deny, $fstype, $descr, $size, $used, $units, $storage_rrd, $old_storage_rrd, $hrstorage_array);
}
}
$tegile_storage2 = snmpwalk_cache_oid($device, 'projectEntry', null, 'TEGILE-MIB');
if (is_array($tegile_storage2)) {
echo 'projectEntry ';
foreach ($tegile_storage2 as $index => $storage) {
$units = 1;
$descr = $storage['projectName'];
$fstype = 1;
$pdsh = ($storage['projectDataSizeHigh'] << 32 );
$pdsl = ($storage['projectDataSizeLow']);
$pdst = (($pdsh + $pdsl) * $units);
$pfsh = ($storae['projectFreeSizeHigh'] << 32 );
$pfsl = ($storage['projectFreeSizeLow']);
$pfst = (($pfsh + $pfsl) * $units);
//Tegile uses a high 32bit counter and a low 32bit counter to make a 64bit counter. Storage units are in bytes.
$size = ($pdst + $pfst);
$used = ($pdst);
$free = ($pfst);
if (is_numeric($index)) {
discover_storage($valid_storage, $device, $index, $fstype, 'intelliflash-pr', $descr, $size, $units, $used);
}
unset($deny, $fstype, $descr, $size, $used2, $units, $storage_rrd, $old_storage_rrd, $hrstorage_array);
}
}
}

View File

@ -0,0 +1,34 @@
<?php
/**
* tegile.inc.php
*
* LibreNMS storage polling module for Tegile Storage
*
* 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 2018 Ryan Finney
* @author https://github.com/theherodied/
*/
if (!is_array($storage_cache['intelliflash-pl'])) {
$storage_cache['intelliflash-pl'] = snmpwalk_cache_oid($device, 'poolEntry', null, 'TEGILE-MIB');
d_echo($storage_cache);
}
//Tegile uses a high 32bit counter and a low 32bit counter to make a 64bit counter. Storage units are in bytes.
$entry = $storage_cache['intelliflash-pl'][$storage[storage_index]];
$storage['units'] = 1;
$storage['size'] = (($entry['poolSizeHigh'] << 32 ) + $entry['poolSizeLow']) * $storage['units'];
$storage['used'] = (($entry['poolUsedSizeHigh'] << 32 ) + $entry['poolUsedSizeLow']) * $storage['units'];
$storage['free'] = ($storage['size'] - $storage['used']);

View File

@ -0,0 +1,40 @@
<?php
/**
* tegile.inc.php
*
* LibreNMS storage polling module for Tegile Storage
*
* 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 2018 Ryan Finney
* @author https://github.com/theherodied/
*/
if (!is_array($storage_cache['intelliflash-pr'])) {
$storage_cache['intelliflash-pr'] = snmpwalk_cache_oid($device, 'projectEntry', null, 'TEGILE-MIB');
d_echo($storage_cache);
}
//Tegile uses a high 32bit counter and a low 32bit counter to make a 64bit counter. Storage units are in bytes.
$entry = $storage_cache['intelliflash-pr'][$storage[storage_index]];
$storage['units'] = 1;
$pdsh = ($entry['projectDataSizeHigh'] << 32 );
$pdsl = ($entry['projectDataSizeLow']);
$pdst = (($pdsh + $pdsl) * $storage['units']);
$pfsh = ($entry['projectFreeSizeHigh'] << 32 );
$pfsl = ($entry['projectFreeSizeLow']);
$pfst = (($pfsh + $pfsl) * $storage['units']);
$storage['used'] = ($pdst);
$storage['free'] = ($pfst);
$storage['size'] = ($pdst + $pfst);

5353
mibs/tegile/TEGILE-MIB Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,189 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "",
"sysObjectID": ".1.3.6.1.4.1.43906.1",
"sysDescr": "Tegile IntelliFlash (3.5.4.1.171031) SNMP Agent",
"sysContact": null,
"version": null,
"hardware": "",
"features": null,
"location": null,
"os": "intelliflash",
"type": "storage",
"serial": null,
"icon": "tegile.svg"
}
]
},
"poller": "matches discovery"
},
"storage": {
"discovery": {
"storage": [
{
"storage_mib": "intelliflash-pl",
"storage_index": "1",
"storage_type": "ONLINE",
"storage_descr": "ZebiSystem-B",
"storage_size": "249381038592",
"storage_units": "1",
"storage_used": "131131516416",
"storage_free": "0",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pl",
"storage_index": "2",
"storage_type": "ONLINE",
"storage_descr": "ZebiSystem-A",
"storage_size": "249271112704",
"storage_units": "1",
"storage_used": "131131610112",
"storage_free": "0",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pl",
"storage_index": "3",
"storage_type": "ONLINE",
"storage_descr": "pool-a",
"storage_size": "23776899446784",
"storage_units": "1",
"storage_used": "8246337208320",
"storage_free": "0",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pr",
"storage_index": "3.1",
"storage_type": "1",
"storage_descr": "fileserver",
"storage_size": "6352124462592",
"storage_units": "1",
"storage_used": "6347866291712",
"storage_free": "0",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pr",
"storage_index": "3.2",
"storage_type": "1",
"storage_descr": "servers",
"storage_size": "2940800152064",
"storage_units": "1",
"storage_used": "2936541981184",
"storage_free": "0",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pr",
"storage_index": "3.3",
"storage_type": "1",
"storage_descr": "Backups",
"storage_size": "4258197504",
"storage_units": "1",
"storage_used": "26624",
"storage_free": "0",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
}
]
},
"poller": {
"storage": [
{
"storage_mib": "intelliflash-pl",
"storage_index": "1",
"storage_type": "ONLINE",
"storage_descr": "ZebiSystem-B",
"storage_size": "249381038592",
"storage_units": "1",
"storage_used": "131131516416",
"storage_free": "118249522176",
"storage_perc": "53",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pl",
"storage_index": "2",
"storage_type": "ONLINE",
"storage_descr": "ZebiSystem-A",
"storage_size": "249271112704",
"storage_units": "1",
"storage_used": "131131610112",
"storage_free": "118139502592",
"storage_perc": "53",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pl",
"storage_index": "3",
"storage_type": "ONLINE",
"storage_descr": "pool-a",
"storage_size": "23776899446784",
"storage_units": "1",
"storage_used": "8246337208320",
"storage_free": "15530562238464",
"storage_perc": "35",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pr",
"storage_index": "3.1",
"storage_type": "1",
"storage_descr": "fileserver",
"storage_size": "21878431237632",
"storage_units": "1",
"storage_used": "6347866291712",
"storage_free": "15530564945920",
"storage_perc": "29",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pr",
"storage_index": "3.2",
"storage_type": "1",
"storage_descr": "servers",
"storage_size": "18467106927104",
"storage_units": "1",
"storage_used": "2936541981184",
"storage_free": "15530564945920",
"storage_perc": "16",
"storage_perc_warn": "60",
"storage_deleted": "0"
},
{
"storage_mib": "intelliflash-pr",
"storage_index": "3.3",
"storage_type": "1",
"storage_descr": "Backups",
"storage_size": "15530564972544",
"storage_units": "1",
"storage_used": "26624",
"storage_free": "15530564945920",
"storage_perc": "0",
"storage_perc_warn": "60",
"storage_deleted": "0"
}
]
}
}
}

View File

@ -0,0 +1,676 @@
1.3.6.1.2.1.1.1.0|4|Tegile IntelliFlash (3.5.4.1.171031) SNMP Agent
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.43906.1
1.3.6.1.2.1.1.3.0|67|268087492
1.3.6.1.2.1.1.4.0|4|
1.3.6.1.2.1.1.5.0|4|
1.3.6.1.2.1.1.6.0|4|
1.3.6.1.2.1.1.7.0|2|72
1.3.6.1.2.1.1.8.0|67|0
1.3.6.1.2.1.11.1.0|65|313757
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|3
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.4.1.4976.10.1.1.1.1.1.1.0|4|org.snmp4j.log.LogFactory@3b0a7fef
1.3.6.1.4.1.4976.10.1.1.1.1.1.2.0|4|org.snmp4j.log.LogFactory
1.3.6.1.4.1.4976.10.1.1.1.1.2.1.0|2|0
1.3.6.1.4.1.4976.10.1.1.1.1.2.2.1.2.46|2|1
1.3.6.1.4.1.4976.10.1.1.1.1.2.2.1.3.46|2|1
1.3.6.1.4.1.4976.10.1.1.1.1.2.2.1.4.46|2|1
1.3.6.1.4.1.4976.10.1.1.1.1.2.2.1.5.46|2|2
1.3.6.1.4.1.4976.10.1.1.1.1.2.2.1.6.46|2|1
1.3.6.1.4.1.4976.10.1.1.2.1.1.1.0|2|2
1.3.6.1.4.1.4976.10.1.1.2.1.2.1.1.2.7.112.114.105.109.97.114.121|4|/zebi/opt/tomcat/webapps/TegileSNMPAgentConfig.cfg
1.3.6.1.4.1.4976.10.1.1.2.1.2.1.1.6.7.112.114.105.109.97.114.121|2|1
1.3.6.1.4.1.4976.10.1.1.2.1.2.1.1.7.7.112.114.105.109.97.114.121|2|1
1.3.6.1.4.1.4976.10.1.1.2.1.2.1.1.8.7.112.114.105.109.97.114.121|2|4
1.3.6.1.4.1.4976.10.1.1.2.1.2.1.1.9.7.112.114.105.109.97.114.121|2|1
1.3.6.1.4.1.4976.10.1.1.2.1.2.1.1.10.7.112.114.105.109.97.114.121|4|default
1.3.6.1.4.1.43906.1.1.1.0|4|controller-a
1.3.6.1.4.1.43906.1.1.2.0|64|172.16.0.102
1.3.6.1.4.1.43906.1.1.3.0|4|3.5.4.1.171031
1.3.6.1.4.1.43906.1.1.4.0|4| 31 days 0:43
1.3.6.1.4.1.43906.1.1.5.0|4|controller-b
1.3.6.1.4.1.43906.1.1.6.0|64|172.16.0.103
1.3.6.1.4.1.43906.1.1.7.0|4|3.5.4.1.171031
1.3.6.1.4.1.43906.1.1.8.0|4| 31 days 0:42
1.3.6.1.4.1.43906.1.1.9.0|4|T4200 C1
1.3.6.1.4.1.43906.1.1.10.0|4|1.0.1.0
1.3.6.1.4.1.43906.1.2.1.0|66|0
1.3.6.1.4.1.43906.1.2.2.0|66|2605
1.3.6.1.4.1.43906.1.2.3.0|66|2394
1.3.6.1.4.1.43906.1.2.4.0|66|0
1.3.6.1.4.1.43906.1.2.5.0|66|0
1.3.6.1.4.1.43906.1.2.6.0|66|0
1.3.6.1.4.1.43906.1.2.7.0|66|0
1.3.6.1.4.1.43906.1.2.8.0|66|100
1.3.6.1.4.1.43906.1.2.9.0|66|0
1.3.6.1.4.1.43906.1.2.10.0|66|0
1.3.6.1.4.1.43906.1.2.11.0|66|0
1.3.6.1.4.1.43906.1.2.12.0|66|0
1.3.6.1.4.1.43906.1.2.13.0|66|0
1.3.6.1.4.1.43906.1.2.14.0|66|0
1.3.6.1.4.1.43906.1.2.15.0|66|0
1.3.6.1.4.1.43906.1.2.16.0|66|0
1.3.6.1.4.1.43906.1.2.17.0|66|0
1.3.6.1.4.1.43906.1.2.18.0|66|0
1.3.6.1.4.1.43906.1.2.19.0|66|0
1.3.6.1.4.1.43906.1.2.20.0|66|55
1.3.6.1.4.1.43906.1.2.21.0|66|49
1.3.6.1.4.1.43906.1.2.22.0|66|6
1.3.6.1.4.1.43906.1.2.23.0|66|0
1.3.6.1.4.1.43906.1.2.24.0|66|0
1.3.6.1.4.1.43906.1.2.25.0|66|0
1.3.6.1.4.1.43906.1.2.26.0|66|0
1.3.6.1.4.1.43906.1.2.27.0|66|0
1.3.6.1.4.1.43906.1.2.28.0|66|0
1.3.6.1.4.1.43906.1.2.29.0|66|0
1.3.6.1.4.1.43906.1.2.30.0|66|0
1.3.6.1.4.1.43906.1.2.31.0|66|0
1.3.6.1.4.1.43906.1.2.32.0|66|0
1.3.6.1.4.1.43906.1.2.33.0|66|0
1.3.6.1.4.1.43906.1.2.34.0|66|0
1.3.6.1.4.1.43906.1.2.35.0|66|0
1.3.6.1.4.1.43906.1.2.36.0|66|0
1.3.6.1.4.1.43906.1.2.37.0|66|0
1.3.6.1.4.1.43906.1.2.38.0|66|0
1.3.6.1.4.1.43906.1.2.39.0|66|0
1.3.6.1.4.1.43906.1.2.40.0|66|0
1.3.6.1.4.1.43906.1.2.41.0|66|0
1.3.6.1.4.1.43906.1.2.42.0|66|0
1.3.6.1.4.1.43906.1.2.43.0|66|0
1.3.6.1.4.1.43906.1.2.44.0|66|0
1.3.6.1.4.1.43906.1.2.45.0|66|0
1.3.6.1.4.1.43906.1.2.46.0|66|0
1.3.6.1.4.1.43906.1.2.47.0|66|0
1.3.6.1.4.1.43906.1.2.48.0|66|0
1.3.6.1.4.1.43906.1.2.49.0|66|0
1.3.6.1.4.1.43906.1.2.50.0|66|0
1.3.6.1.4.1.43906.1.2.51.0|66|0
1.3.6.1.4.1.43906.1.2.52.0|66|0
1.3.6.1.4.1.43906.1.2.53.0|66|0
1.3.6.1.4.1.43906.1.2.54.0|66|0
1.3.6.1.4.1.43906.1.2.55.0|66|0
1.3.6.1.4.1.43906.1.2.56.0|66|0
1.3.6.1.4.1.43906.1.2.57.0|66|0
1.3.6.1.4.1.43906.1.2.58.0|66|0
1.3.6.1.4.1.43906.1.2.59.0|66|0
1.3.6.1.4.1.43906.1.2.60.0|66|0
1.3.6.1.4.1.43906.1.3.1.0|66|16
1.3.6.1.4.1.43906.1.3.2.1.3.0.0|4|c2t5000CCA25C062E58d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.1|4|c2t5000CCA25C062CF8d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.2|4|c2t5000CCA25C0823E4d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.3|4|c2t5000CCA25C082200d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.4|4|c2t5000CCA25C07FE14d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.5|4|c2t5000CCA06CBD94E8d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.6|4|c2t5000CCA06CBD93D0d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.7|4|c2t5000CCA06CBD9370d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.8|4|c2t5000CCA25C062EA8d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.9|4|c2t5000CCA25C0799F8d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.10|4|c2t5000CCA25C080FACd0
1.3.6.1.4.1.43906.1.3.2.1.3.0.11|4|c2t5000CCA25C05FE80d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.12|4|c2t5000CCA25C05C8E8d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.13|4|c2t5000CCA25C05FF3Cd0
1.3.6.1.4.1.43906.1.3.2.1.3.0.14|4|c2t5000CCA25C0619B8d0
1.3.6.1.4.1.43906.1.3.2.1.3.0.15|4|c2t5000CCA25C05FEBCd0
1.3.6.1.4.1.43906.1.3.2.1.4.0.0|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.1|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.2|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.3|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.4|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.5|66|533028864
1.3.6.1.4.1.43906.1.3.2.1.4.0.6|66|533028864
1.3.6.1.4.1.43906.1.3.2.1.4.0.7|66|533028864
1.3.6.1.4.1.43906.1.3.2.1.4.0.8|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.9|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.10|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.11|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.12|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.13|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.14|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.4.0.15|66|2172477440
1.3.6.1.4.1.43906.1.3.2.1.5.0.0|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.1|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.2|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.3|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.4|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.5|66|447
1.3.6.1.4.1.43906.1.3.2.1.5.0.6|66|447
1.3.6.1.4.1.43906.1.3.2.1.5.0.7|66|447
1.3.6.1.4.1.43906.1.3.2.1.5.0.8|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.9|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.10|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.11|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.12|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.13|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.14|66|931
1.3.6.1.4.1.43906.1.3.2.1.5.0.15|66|931
1.3.6.1.4.1.43906.1.3.2.1.6.0.0|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.1|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.2|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.3|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.4|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.5|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.6|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.7|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.8|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.9|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.10|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.11|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.12|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.13|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.14|4|Online
1.3.6.1.4.1.43906.1.3.2.1.6.0.15|4|Online
1.3.6.1.4.1.43906.1.3.2.1.7.0.0|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.1|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.2|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.3|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.4|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.5|4|RW_META_SSD
1.3.6.1.4.1.43906.1.3.2.1.7.0.6|4|RW_META_SSD
1.3.6.1.4.1.43906.1.3.2.1.7.0.7|4|RW_META_SSD
1.3.6.1.4.1.43906.1.3.2.1.7.0.8|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.9|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.10|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.11|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.12|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.13|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.14|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.7.0.15|4|HDD
1.3.6.1.4.1.43906.1.3.2.1.8.0.0|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.1|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.2|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.3|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.4|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.5|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.6|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.7|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.8|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.9|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.10|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.11|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.12|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.13|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.14|4|pool-a
1.3.6.1.4.1.43906.1.3.2.1.8.0.15|4|pool-a
1.3.6.1.4.1.43906.1.4.1.0|66|3
1.3.6.1.4.1.43906.1.4.2.1.2.1|4|ZebiSystem-B
1.3.6.1.4.1.43906.1.4.2.1.2.2|4|ZebiSystem-A
1.3.6.1.4.1.43906.1.4.2.1.2.3|4|pool-a
1.3.6.1.4.1.43906.1.4.2.1.3.1|4|ONLINE
1.3.6.1.4.1.43906.1.4.2.1.3.2|4|ONLINE
1.3.6.1.4.1.43906.1.4.2.1.3.3|4|ONLINE
1.3.6.1.4.1.43906.1.4.2.1.4.1|4|The pool is healthy
1.3.6.1.4.1.43906.1.4.2.1.4.2|4|The pool is healthy
1.3.6.1.4.1.43906.1.4.2.1.4.3|4|The pool is healthy
1.3.6.1.4.1.43906.1.4.2.1.5.1|4|ha-controller-b
1.3.6.1.4.1.43906.1.4.2.1.5.2|4|ha-controller-a
1.3.6.1.4.1.43906.1.4.2.1.5.3|4|ha-controller-b
1.3.6.1.4.1.43906.1.4.2.1.6.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.6.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.6.3|66|3
1.3.6.1.4.1.43906.1.4.2.1.7.1|66|272935424
1.3.6.1.4.1.43906.1.4.2.1.7.2|66|163009536
1.3.6.1.4.1.43906.1.4.2.1.7.3|66|4255463424
1.3.6.1.4.1.43906.1.4.2.1.8.1|66|58
1.3.6.1.4.1.43906.1.4.2.1.8.2|66|58
1.3.6.1.4.1.43906.1.4.2.1.8.3|66|5535
1.3.6.1.4.1.43906.1.4.2.1.9.1|66|2282497536
1.3.6.1.4.1.43906.1.4.2.1.9.2|66|2282591232
1.3.6.1.4.1.43906.1.4.2.1.9.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.10.1|66|30
1.3.6.1.4.1.43906.1.4.2.1.10.2|66|30
1.3.6.1.4.1.43906.1.4.2.1.10.3|66|1920
1.3.6.1.4.1.43906.1.4.2.1.11.1|66|2285405184
1.3.6.1.4.1.43906.1.4.2.1.11.2|66|2175385600
1.3.6.1.4.1.43906.1.4.2.1.11.3|66|4255463424
1.3.6.1.4.1.43906.1.4.2.1.12.1|66|27
1.3.6.1.4.1.43906.1.4.2.1.12.2|66|27
1.3.6.1.4.1.43906.1.4.2.1.12.3|66|3615
1.3.6.1.4.1.43906.1.4.2.1.13.1|66|3847867881
1.3.6.1.4.1.43906.1.4.2.1.13.2|66|3933186594
1.3.6.1.4.1.43906.1.4.2.1.13.3|66|1278641553
1.3.6.1.4.1.43906.1.4.2.1.14.1|66|29
1.3.6.1.4.1.43906.1.4.2.1.14.2|66|29
1.3.6.1.4.1.43906.1.4.2.1.14.3|66|2714
1.3.6.1.4.1.43906.1.4.2.1.15.1|66|2147483648
1.3.6.1.4.1.43906.1.4.2.1.15.2|66|2147483648
1.3.6.1.4.1.43906.1.4.2.1.15.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.16.1|66|29
1.3.6.1.4.1.43906.1.4.2.1.16.2|66|29
1.3.6.1.4.1.43906.1.4.2.1.16.3|66|1920
1.3.6.1.4.1.43906.1.4.2.1.17.1|66|2207596544
1.3.6.1.4.1.43906.1.4.2.1.17.2|66|2317304832
1.3.6.1.4.1.43906.1.4.2.1.17.3|66|474337792
1.3.6.1.4.1.43906.1.4.2.1.18.1|66|29
1.3.6.1.4.1.43906.1.4.2.1.18.2|66|29
1.3.6.1.4.1.43906.1.4.2.1.18.3|66|2162
1.3.6.1.4.1.43906.1.4.2.1.19.1|66|135013888
1.3.6.1.4.1.43906.1.4.2.1.19.2|66|135107584
1.3.6.1.4.1.43906.1.4.2.1.19.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.20.1|66|1
1.3.6.1.4.1.43906.1.4.2.1.20.2|66|1
1.3.6.1.4.1.43906.1.4.2.1.20.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.21.1|4|1.32%
1.3.6.1.4.1.43906.1.4.2.1.21.2|4|1.39%
1.3.6.1.4.1.43906.1.4.2.1.21.3|4|29.26%
1.3.6.1.4.1.43906.1.4.2.1.22.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.22.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.22.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.23.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.23.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.23.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.24.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.24.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.24.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.25.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.25.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.25.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.26.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.26.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.26.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.27.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.27.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.27.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.28.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.28.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.28.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.29.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.29.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.29.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.30.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.30.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.30.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.31.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.31.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.31.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.32.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.32.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.32.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.33.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.33.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.33.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.34.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.34.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.34.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.35.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.35.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.35.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.36.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.36.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.36.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.37.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.37.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.37.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.38.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.38.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.38.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.39.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.39.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.39.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.40.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.40.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.40.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.41.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.41.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.41.3|66|0
1.3.6.1.4.1.43906.1.4.2.1.42.1|66|0
1.3.6.1.4.1.43906.1.4.2.1.42.2|66|0
1.3.6.1.4.1.43906.1.4.2.1.42.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.2.3.1|4|fileserver
1.3.6.1.4.1.43906.1.4.3.1.1.2.3.2|4|servers
1.3.6.1.4.1.43906.1.4.3.1.1.2.3.3|4|Backups
1.3.6.1.4.1.43906.1.4.3.1.1.3.3.1|4|pool-a
1.3.6.1.4.1.43906.1.4.3.1.1.3.3.2|4|pool-a
1.3.6.1.4.1.43906.1.4.3.1.1.3.3.3|4|pool-a
1.3.6.1.4.1.43906.1.4.3.1.1.4.3.1|4|on
1.3.6.1.4.1.43906.1.4.3.1.1.4.3.2|4|on
1.3.6.1.4.1.43906.1.4.3.1.1.4.3.3|4|on
1.3.6.1.4.1.43906.1.4.3.1.1.5.3.1|4|lz4
1.3.6.1.4.1.43906.1.4.3.1.1.5.3.2|4|lz4
1.3.6.1.4.1.43906.1.4.3.1.1.5.3.3|4|gzip-9
1.3.6.1.4.1.43906.1.4.3.1.1.6.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.6.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.6.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.7.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.7.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.7.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.8.3.1|66|4199595520
1.3.6.1.4.1.43906.1.4.3.1.1.8.3.2|66|3079318016
1.3.6.1.4.1.43906.1.4.3.1.1.8.3.3|66|26624
1.3.6.1.4.1.43906.1.4.3.1.1.9.3.1|66|1477
1.3.6.1.4.1.43906.1.4.3.1.1.9.3.2|66|683
1.3.6.1.4.1.43906.1.4.3.1.1.9.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.10.3.1|66|4258170880
1.3.6.1.4.1.43906.1.4.3.1.1.10.3.2|66|4258170880
1.3.6.1.4.1.43906.1.4.3.1.1.10.3.3|66|4258170880
1.3.6.1.4.1.43906.1.4.3.1.1.11.3.1|66|3615
1.3.6.1.4.1.43906.1.4.3.1.1.11.3.2|66|3615
1.3.6.1.4.1.43906.1.4.3.1.1.11.3.3|66|3615
1.3.6.1.4.1.43906.1.4.3.1.1.12.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.12.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.12.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.13.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.13.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.13.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.14.3.1|66|4199595520
1.3.6.1.4.1.43906.1.4.3.1.1.14.3.2|66|3079318016
1.3.6.1.4.1.43906.1.4.3.1.1.14.3.3|66|26624
1.3.6.1.4.1.43906.1.4.3.1.1.15.3.1|66|1477
1.3.6.1.4.1.43906.1.4.3.1.1.15.3.2|66|683
1.3.6.1.4.1.43906.1.4.3.1.1.15.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.16.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.16.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.16.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.17.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.17.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.17.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.18.3.1|4|9.0 %
1.3.6.1.4.1.43906.1.4.3.1.1.18.3.2|4|37.0 %
1.3.6.1.4.1.43906.1.4.3.1.1.18.3.3|4|0.0 %
1.3.6.1.4.1.43906.1.4.3.1.1.19.3.1|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.19.3.2|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.19.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.1.1.20.3.1|66|1
1.3.6.1.4.1.43906.1.4.3.1.1.20.3.2|66|1
1.3.6.1.4.1.43906.1.4.3.1.1.20.3.3|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.2.3.1.1|4|fileshare
1.3.6.1.4.1.43906.1.4.3.3.1.1.2.3.2.1|4|vmdatastores
1.3.6.1.4.1.43906.1.4.3.3.1.1.3.3.1.1|4|/export/fileserver/fileshare
1.3.6.1.4.1.43906.1.4.3.3.1.1.3.3.2.1|4|/export/servers/vmwaredatastores
1.3.6.1.4.1.43906.1.4.3.3.1.1.4.3.1.1|4|fileserver
1.3.6.1.4.1.43906.1.4.3.3.1.1.4.3.2.1|4|servers
1.3.6.1.4.1.43906.1.4.3.3.1.1.5.3.1.1|4|pool-a
1.3.6.1.4.1.43906.1.4.3.3.1.1.5.3.2.1|4|pool-a
1.3.6.1.4.1.43906.1.4.3.3.1.1.6.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.6.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.7.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.7.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.8.3.1.1|4|on
1.3.6.1.4.1.43906.1.4.3.3.1.1.8.3.2.1|4|on
1.3.6.1.4.1.43906.1.4.3.3.1.1.9.3.1.1|4|off
1.3.6.1.4.1.43906.1.4.3.3.1.1.9.3.2.1|4|off
1.3.6.1.4.1.43906.1.4.3.3.1.1.10.3.1.1|4|on
1.3.6.1.4.1.43906.1.4.3.3.1.1.10.3.2.1|4|on
1.3.6.1.4.1.43906.1.4.3.3.1.1.11.3.1.1|4|lz4
1.3.6.1.4.1.43906.1.4.3.3.1.1.11.3.2.1|4|lz4
1.3.6.1.4.1.43906.1.4.3.3.1.1.12.3.1.1|66|4199568896
1.3.6.1.4.1.43906.1.4.3.3.1.1.12.3.2.1|66|3079291392
1.3.6.1.4.1.43906.1.4.3.3.1.1.13.3.1.1|66|1477
1.3.6.1.4.1.43906.1.4.3.3.1.1.13.3.2.1|66|683
1.3.6.1.4.1.43906.1.4.3.3.1.1.14.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.14.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.15.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.15.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.16.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.16.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.17.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.17.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.18.3.1.1|66|9
1.3.6.1.4.1.43906.1.4.3.3.1.1.18.3.2.1|66|37
1.3.6.1.4.1.43906.1.4.3.3.1.1.19.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.19.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.20.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.20.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.21.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.21.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.22.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.22.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.23.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.23.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.24.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.24.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.25.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.25.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.26.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.26.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.27.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.27.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.28.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.28.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.29.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.29.3.2.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.30.3.1.1|66|0
1.3.6.1.4.1.43906.1.4.3.3.1.1.30.3.2.1|66|0
1.3.6.1.4.1.43906.1.5.1.1.2.1|4|ixgbe0
1.3.6.1.4.1.43906.1.5.1.1.2.2|4|ixgbe1
1.3.6.1.4.1.43906.1.5.1.1.2.3|4|ixgbe4
1.3.6.1.4.1.43906.1.5.1.1.2.4|4|ixgbe5
1.3.6.1.4.1.43906.1.5.1.1.3.1|4|up
1.3.6.1.4.1.43906.1.5.1.1.3.2|4|down
1.3.6.1.4.1.43906.1.5.1.1.3.3|4|up
1.3.6.1.4.1.43906.1.5.1.1.3.4|4|up
1.3.6.1.4.1.43906.1.5.1.1.4.1|4|mgmt0
1.3.6.1.4.1.43906.1.5.1.1.4.2|4|mgmt0
1.3.6.1.4.1.43906.1.5.1.1.4.3|4|nfs1
1.3.6.1.4.1.43906.1.5.1.1.4.4|4|nfs1
1.3.6.1.4.1.43906.1.5.1.1.5.1|66|1500
1.3.6.1.4.1.43906.1.5.1.1.5.2|66|1500
1.3.6.1.4.1.43906.1.5.1.1.5.3|66|9000
1.3.6.1.4.1.43906.1.5.1.1.5.4|66|9000
1.3.6.1.4.1.43906.1.5.1.1.6.1|66|0
1.3.6.1.4.1.43906.1.5.1.1.6.2|66|0
1.3.6.1.4.1.43906.1.5.1.1.6.3|66|0
1.3.6.1.4.1.43906.1.5.1.1.6.4|66|0
1.3.6.1.4.1.43906.1.5.1.1.7.1|66|0
1.3.6.1.4.1.43906.1.5.1.1.7.2|66|0
1.3.6.1.4.1.43906.1.5.1.1.7.3|66|0
1.3.6.1.4.1.43906.1.5.1.1.7.4|66|0
1.3.6.1.4.1.43906.1.6.1.1.1.1.2.1|4|iqn.2012-02.com.tegile:controller-pool-a
1.3.6.1.4.1.43906.1.6.1.1.1.1.3.1|4|controller-pool-a
1.3.6.1.4.1.43906.1.6.1.1.1.1.4.1|4|default-pool-a-iscsi-target-group
1.3.6.1.4.1.43906.1.6.1.1.1.1.5.1|4|none
1.3.6.1.4.1.43906.1.6.1.1.1.1.6.1|66|0
1.3.6.1.4.1.43906.1.6.1.1.1.1.7.1|66|0
1.3.6.1.4.1.43906.1.6.1.1.1.1.8.1|66|0
1.3.6.1.4.1.43906.1.6.1.1.1.1.9.1|66|0
1.3.6.1.4.1.43906.1.6.1.1.1.1.10.1|66|0
1.3.6.1.4.1.43906.1.6.1.1.1.1.11.1|66|0
1.3.6.1.4.1.43906.1.8.1.1.2.1|4|host_192__168__5__51
1.3.6.1.4.1.43906.1.8.1.1.2.2|4|pool_pool-a
1.3.6.1.4.1.43906.1.8.1.1.2.3|4|host_192__168__5__50
1.3.6.1.4.1.43906.1.8.1.1.3.1|4|nfs1@ha-controller-a,nfs1@ha-controller-b
1.3.6.1.4.1.43906.1.8.1.1.3.2|4|
1.3.6.1.4.1.43906.1.8.1.1.3.3|4|nfs1@ha-controller-a,nfs1@ha-controller-b
1.3.6.1.4.1.43906.1.8.1.1.4.1|4|Online
1.3.6.1.4.1.43906.1.8.1.1.4.2|4|Online
1.3.6.1.4.1.43906.1.8.1.1.4.3|4|Online
1.3.6.1.4.1.43906.1.8.1.1.5.1|4|Resource Group B
1.3.6.1.4.1.43906.1.8.1.1.5.2|4|Resource Group A
1.3.6.1.4.1.43906.1.8.1.1.5.3|4|Resource Group A
1.3.6.1.4.1.43906.1.8.1.1.6.1|4|ha-controller-b
1.3.6.1.4.1.43906.1.8.1.1.6.2|4|ha-controller-b
1.3.6.1.4.1.43906.1.8.1.1.6.3|4|ha-controller-b
1.3.6.1.4.1.43906.2.1.1.1.0|4|
1.3.6.1.4.1.43906.2.1.1.2.0|4|
1.3.6.1.4.1.43906.2.1.1.3.0|4|
1.3.6.1.4.1.43906.2.1.1.4.0|4|
1.3.6.1.4.1.43906.2.1.1.5.0|4|
1.3.6.1.4.1.43906.2.1.1.6.0|4|
1.3.6.1.4.1.43906.2.1.1.7.0|4|
1.3.6.1.4.1.43906.2.1.1.8.0|4|
1.3.6.1.4.1.43906.2.1.1.9.0|4|
1.3.6.1.4.1.43906.2.1.1.10.0|4|
1.3.6.1.4.1.43906.2.1.1.11.0|4|
1.3.6.1.4.1.43906.2.1.1.12.0|4|
1.3.6.1.6.3.1.1.6.1.0|2|0
1.3.6.1.6.3.10.2.1.1.0|4x|8000137001AC100066B9E81F86
1.3.6.1.6.3.10.2.1.2.0|2|2
1.3.6.1.6.3.10.2.1.3.0|2|2680891
1.3.6.1.6.3.10.2.1.4.0|2|65535
1.3.6.1.6.3.12.1.1.0|2|0
1.3.6.1.6.3.12.1.2.1.2.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|6|1.3.6.1.2.1.100.1.1
1.3.6.1.6.3.12.1.2.1.2.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|6|1.3.6.1.2.1.100.1.1
1.3.6.1.6.3.12.1.2.1.2.110.111.116.105.102.105.99.97.116.105.111.110.86.51|6|1.3.6.1.2.1.100.1.1
1.3.6.1.6.3.12.1.2.1.3.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|4x|AC10004500A2
1.3.6.1.6.3.12.1.2.1.3.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|4x|7F00000100A2
1.3.6.1.6.3.12.1.2.1.3.110.111.116.105.102.105.99.97.116.105.111.110.86.51|4x|7F000001048A
1.3.6.1.6.3.12.1.2.1.4.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|2|200
1.3.6.1.6.3.12.1.2.1.4.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|2|200
1.3.6.1.6.3.12.1.2.1.4.110.111.116.105.102.105.99.97.116.105.111.110.86.51|2|200
1.3.6.1.6.3.12.1.2.1.5.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.5.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|2|1
1.3.6.1.6.3.12.1.2.1.5.110.111.116.105.102.105.99.97.116.105.111.110.86.51|2|1
1.3.6.1.6.3.12.1.2.1.6.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|4|notify
1.3.6.1.6.3.12.1.2.1.6.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|4|notify
1.3.6.1.6.3.12.1.2.1.6.110.111.116.105.102.105.99.97.116.105.111.110.86.51|4|notify
1.3.6.1.6.3.12.1.2.1.7.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|4|v2c
1.3.6.1.6.3.12.1.2.1.7.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|4|v2c
1.3.6.1.6.3.12.1.2.1.7.110.111.116.105.102.105.99.97.116.105.111.110.86.51|4|v3notify
1.3.6.1.6.3.12.1.2.1.8.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|2|4
1.3.6.1.6.3.12.1.2.1.8.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|2|4
1.3.6.1.6.3.12.1.2.1.8.110.111.116.105.102.105.99.97.116.105.111.110.86.51|2|4
1.3.6.1.6.3.12.1.2.1.9.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|2|1
1.3.6.1.6.3.12.1.2.1.9.110.111.116.105.102.105.99.97.116.105.111.110.86.51|2|1
1.3.6.1.6.3.12.1.3.1.2.118.50.99|2|1
1.3.6.1.6.3.12.1.3.1.2.118.51.110.111.116.105.102.121|2|3
1.3.6.1.6.3.12.1.3.1.3.118.50.99|2|2
1.3.6.1.6.3.12.1.3.1.3.118.51.110.111.116.105.102.121|2|3
1.3.6.1.6.3.12.1.3.1.4.118.50.99|4|cpublic
1.3.6.1.6.3.12.1.3.1.4.118.51.110.111.116.105.102.121|4|v3notify
1.3.6.1.6.3.12.1.3.1.5.118.50.99|2|3
1.3.6.1.6.3.12.1.3.1.5.118.51.110.111.116.105.102.121|2|1
1.3.6.1.6.3.12.1.3.1.6.118.50.99|2|4
1.3.6.1.6.3.12.1.3.1.6.118.51.110.111.116.105.102.121|2|4
1.3.6.1.6.3.12.1.3.1.7.118.50.99|2|1
1.3.6.1.6.3.12.1.3.1.7.118.51.110.111.116.105.102.121|2|1
1.3.6.1.6.3.12.1.4.0|65|0
1.3.6.1.6.3.12.1.5.0|65|0
1.3.6.1.6.3.13.1.1.1.2.100.101.102.97.117.108.116|4|notify
1.3.6.1.6.3.13.1.1.1.3.100.101.102.97.117.108.116|2|2
1.3.6.1.6.3.13.1.1.1.4.100.101.102.97.117.108.116|2|4
1.3.6.1.6.3.13.1.1.1.5.100.101.102.97.117.108.116|2|1
1.3.6.1.6.3.15.1.1.1.0|65|0
1.3.6.1.6.3.15.1.1.2.0|65|0
1.3.6.1.6.3.15.1.1.3.0|65|0
1.3.6.1.6.3.15.1.1.4.0|65|0
1.3.6.1.6.3.15.1.1.5.0|65|0
1.3.6.1.6.3.15.1.1.6.0|65|0
1.3.6.1.6.3.15.1.2.1.0|2|0
1.3.6.1.6.3.15.1.2.2.1.3.13.46.46.46.112.46.46.46.46.102.46.46.46.46.3.83.72.65|4|SHA
1.3.6.1.6.3.15.1.2.2.1.3.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|4|TEST
1.3.6.1.6.3.15.1.2.2.1.3.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|4|SHADES
1.3.6.1.6.3.15.1.2.2.1.3.13.46.46.46.112.46.46.46.46.102.46.46.46.46.8.118.51.110.111.116.105.102.121|4|v3notify
1.3.6.1.6.3.15.1.2.2.1.4.13.46.46.46.112.46.46.46.46.102.46.46.46.46.3.83.72.65|6|0.0
1.3.6.1.6.3.15.1.2.2.1.4.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|6|0.0
1.3.6.1.6.3.15.1.2.2.1.4.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|6|0.0
1.3.6.1.6.3.15.1.2.2.1.4.13.46.46.46.112.46.46.46.46.102.46.46.46.46.8.118.51.110.111.116.105.102.121|6|0.0
1.3.6.1.6.3.15.1.2.2.1.5.13.46.46.46.112.46.46.46.46.102.46.46.46.46.3.83.72.65|6|1.3.6.1.6.3.10.1.1.3
1.3.6.1.6.3.15.1.2.2.1.5.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|6|1.3.6.1.6.3.10.1.1.3
1.3.6.1.6.3.15.1.2.2.1.5.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|6|1.3.6.1.6.3.10.1.1.3
1.3.6.1.6.3.15.1.2.2.1.8.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|6|1.3.6.1.6.3.10.1.2.2
1.3.6.1.6.3.15.1.2.2.1.8.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|6|1.3.6.1.6.3.10.1.2.2
1.3.6.1.6.3.15.1.2.2.1.11.13.46.46.46.112.46.46.46.46.102.46.46.46.46.3.83.72.65|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.46.46.46.112.46.46.46.46.102.46.46.46.46.8.118.51.110.111.116.105.102.121|4|
1.3.6.1.6.3.15.1.2.2.1.12.13.46.46.46.112.46.46.46.46.102.46.46.46.46.3.83.72.65|2|3
1.3.6.1.6.3.15.1.2.2.1.12.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|2|3
1.3.6.1.6.3.15.1.2.2.1.12.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|2|3
1.3.6.1.6.3.15.1.2.2.1.12.13.46.46.46.112.46.46.46.46.102.46.46.46.46.8.118.51.110.111.116.105.102.121|2|3
1.3.6.1.6.3.15.1.2.2.1.13.13.46.46.46.112.46.46.46.46.102.46.46.46.46.3.83.72.65|2|1
1.3.6.1.6.3.15.1.2.2.1.13.13.46.46.46.112.46.46.46.46.102.46.46.46.46.4.84.69.83.84|2|1
1.3.6.1.6.3.15.1.2.2.1.13.13.46.46.46.112.46.46.46.46.102.46.46.46.46.6.83.72.65.68.69.83|2|1
1.3.6.1.6.3.15.1.2.2.1.13.13.46.46.46.112.46.46.46.46.102.46.46.46.46.8.118.51.110.111.116.105.102.121|2|1
1.3.6.1.6.3.16.1.1.1.1.6.112.117.98.108.105.99|4|public
1.3.6.1.6.3.16.1.2.1.3.1.7.99.112.117.98.108.105.99|4|v1v2group
1.3.6.1.6.3.16.1.2.1.3.2.7.99.112.117.98.108.105.99|4|v1v2group
1.3.6.1.6.3.16.1.2.1.3.3.3.83.72.65|4|v3restricted
1.3.6.1.6.3.16.1.2.1.3.3.4.84.69.83.84|4|v3test
1.3.6.1.6.3.16.1.2.1.3.3.6.83.72.65.68.69.83|4|v3group
1.3.6.1.6.3.16.1.2.1.4.1.7.99.112.117.98.108.105.99|2|3
1.3.6.1.6.3.16.1.2.1.4.2.7.99.112.117.98.108.105.99|2|3
1.3.6.1.6.3.16.1.2.1.4.3.3.83.72.65|2|3
1.3.6.1.6.3.16.1.2.1.4.3.4.84.69.83.84|2|3
1.3.6.1.6.3.16.1.2.1.4.3.6.83.72.65.68.69.83|2|3
1.3.6.1.6.3.16.1.2.1.5.1.7.99.112.117.98.108.105.99|2|1
1.3.6.1.6.3.16.1.2.1.5.2.7.99.112.117.98.108.105.99|2|1
1.3.6.1.6.3.16.1.2.1.5.3.3.83.72.65|2|1
1.3.6.1.6.3.16.1.2.1.5.3.4.84.69.83.84|2|1
1.3.6.1.6.3.16.1.2.1.5.3.6.83.72.65.68.69.83|2|1
1.3.6.1.6.3.16.1.4.1.4.6.118.51.116.101.115.116.0.3.3|2|1
1.3.6.1.6.3.16.1.4.1.4.7.118.51.103.114.111.117.112.0.3.3|2|1
1.3.6.1.6.3.16.1.4.1.4.9.118.49.118.50.103.114.111.117.112.6.112.117.98.108.105.99.0.1|2|1
1.3.6.1.6.3.16.1.4.1.4.12.118.51.114.101.115.116.114.105.99.116.101.100.0.3.3|2|1
1.3.6.1.6.3.16.1.4.1.5.6.118.51.116.101.115.116.0.3.3|4|testReadView
1.3.6.1.6.3.16.1.4.1.5.7.118.51.103.114.111.117.112.0.3.3|4|fullReadView
1.3.6.1.6.3.16.1.4.1.5.9.118.49.118.50.103.114.111.117.112.6.112.117.98.108.105.99.0.1|4|fullReadView
1.3.6.1.6.3.16.1.4.1.5.12.118.51.114.101.115.116.114.105.99.116.101.100.0.3.3|4|restrictedReadView
1.3.6.1.6.3.16.1.4.1.6.6.118.51.116.101.115.116.0.3.3|4|testWriteView
1.3.6.1.6.3.16.1.4.1.6.7.118.51.103.114.111.117.112.0.3.3|4|fullWriteView
1.3.6.1.6.3.16.1.4.1.6.9.118.49.118.50.103.114.111.117.112.6.112.117.98.108.105.99.0.1|4|fullWriteView
1.3.6.1.6.3.16.1.4.1.6.12.118.51.114.101.115.116.114.105.99.116.101.100.0.3.3|4|restrictedWriteView
1.3.6.1.6.3.16.1.4.1.7.6.118.51.116.101.115.116.0.3.3|4|testNotifyView
1.3.6.1.6.3.16.1.4.1.7.7.118.51.103.114.111.117.112.0.3.3|4|fullNotifyView
1.3.6.1.6.3.16.1.4.1.7.9.118.49.118.50.103.114.111.117.112.6.112.117.98.108.105.99.0.1|4|fullNotifyView
1.3.6.1.6.3.16.1.4.1.7.12.118.51.114.101.115.116.114.105.99.116.101.100.0.3.3|4|restrictedNotifyView
1.3.6.1.6.3.16.1.4.1.8.6.118.51.116.101.115.116.0.3.3|2|3
1.3.6.1.6.3.16.1.4.1.8.7.118.51.103.114.111.117.112.0.3.3|2|3
1.3.6.1.6.3.16.1.4.1.8.9.118.49.118.50.103.114.111.117.112.6.112.117.98.108.105.99.0.1|2|3
1.3.6.1.6.3.16.1.4.1.8.12.118.51.114.101.115.116.114.105.99.116.101.100.0.3.3|2|3
1.3.6.1.6.3.16.1.4.1.9.6.118.51.116.101.115.116.0.3.3|2|1
1.3.6.1.6.3.16.1.4.1.9.7.118.51.103.114.111.117.112.0.3.3|2|1
1.3.6.1.6.3.16.1.4.1.9.9.118.49.118.50.103.114.111.117.112.6.112.117.98.108.105.99.0.1|2|1
1.3.6.1.6.3.16.1.4.1.9.12.118.51.114.101.115.116.114.105.99.116.101.100.0.3.3|2|1
1.3.6.1.6.3.16.1.5.1.0|2|0
1.3.6.1.6.3.16.1.5.2.1.3.12.102.117.108.108.82.101.97.100.86.105.101.119.2.1.3|4|
1.3.6.1.6.3.16.1.5.2.1.3.12.116.101.115.116.82.101.97.100.86.105.101.119.5.1.3.6.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.12.116.101.115.116.82.101.97.100.86.105.101.119.7.1.3.6.1.2.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.13.102.117.108.108.87.114.105.116.101.86.105.101.119.2.1.3|4|
1.3.6.1.6.3.16.1.5.2.1.3.13.116.101.115.116.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.14.102.117.108.108.78.111.116.105.102.121.86.105.101.119.2.1.3|4|
1.3.6.1.6.3.16.1.5.2.1.3.14.116.101.115.116.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.18.114.101.115.116.114.105.99.116.101.100.82.101.97.100.86.105.101.119.5.1.3.6.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.19.114.101.115.116.114.105.99.116.101.100.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.7.1.3.6.1.6.3.1|4|
1.3.6.1.6.3.16.1.5.2.1.4.12.102.117.108.108.82.101.97.100.86.105.101.119.2.1.3|2|1
1.3.6.1.6.3.16.1.5.2.1.4.12.116.101.115.116.82.101.97.100.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.4.12.116.101.115.116.82.101.97.100.86.105.101.119.7.1.3.6.1.2.1.1|2|2
1.3.6.1.6.3.16.1.5.2.1.4.13.102.117.108.108.87.114.105.116.101.86.105.101.119.2.1.3|2|1
1.3.6.1.6.3.16.1.5.2.1.4.13.116.101.115.116.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|2|1
1.3.6.1.6.3.16.1.5.2.1.4.14.102.117.108.108.78.111.116.105.102.121.86.105.101.119.2.1.3|2|1
1.3.6.1.6.3.16.1.5.2.1.4.14.116.101.115.116.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.4.18.114.101.115.116.114.105.99.116.101.100.82.101.97.100.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.4.19.114.101.115.116.114.105.99.116.101.100.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|2|1
1.3.6.1.6.3.16.1.5.2.1.4.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.4.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.7.1.3.6.1.6.3.1|2|1
1.3.6.1.6.3.16.1.5.2.1.5.12.102.117.108.108.82.101.97.100.86.105.101.119.2.1.3|2|3
1.3.6.1.6.3.16.1.5.2.1.5.12.116.101.115.116.82.101.97.100.86.105.101.119.5.1.3.6.1.2|2|3
1.3.6.1.6.3.16.1.5.2.1.5.12.116.101.115.116.82.101.97.100.86.105.101.119.7.1.3.6.1.2.1.1|2|3
1.3.6.1.6.3.16.1.5.2.1.5.13.102.117.108.108.87.114.105.116.101.86.105.101.119.2.1.3|2|3
1.3.6.1.6.3.16.1.5.2.1.5.13.116.101.115.116.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|2|3
1.3.6.1.6.3.16.1.5.2.1.5.14.102.117.108.108.78.111.116.105.102.121.86.105.101.119.2.1.3|2|3
1.3.6.1.6.3.16.1.5.2.1.5.14.116.101.115.116.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|2|3
1.3.6.1.6.3.16.1.5.2.1.5.18.114.101.115.116.114.105.99.116.101.100.82.101.97.100.86.105.101.119.5.1.3.6.1.2|2|3
1.3.6.1.6.3.16.1.5.2.1.5.19.114.101.115.116.114.105.99.116.101.100.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|2|3
1.3.6.1.6.3.16.1.5.2.1.5.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|2|3
1.3.6.1.6.3.16.1.5.2.1.5.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.7.1.3.6.1.6.3.1|2|3
1.3.6.1.6.3.16.1.5.2.1.6.12.102.117.108.108.82.101.97.100.86.105.101.119.2.1.3|2|1
1.3.6.1.6.3.16.1.5.2.1.6.12.116.101.115.116.82.101.97.100.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.12.116.101.115.116.82.101.97.100.86.105.101.119.7.1.3.6.1.2.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.13.102.117.108.108.87.114.105.116.101.86.105.101.119.2.1.3|2|1
1.3.6.1.6.3.16.1.5.2.1.6.13.116.101.115.116.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.14.102.117.108.108.78.111.116.105.102.121.86.105.101.119.2.1.3|2|1
1.3.6.1.6.3.16.1.5.2.1.6.14.116.101.115.116.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.18.114.101.115.116.114.105.99.116.101.100.82.101.97.100.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.19.114.101.115.116.114.105.99.116.101.100.87.114.105.116.101.86.105.101.119.6.1.3.6.1.2.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.5.1.3.6.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.20.114.101.115.116.114.105.99.116.101.100.78.111.116.105.102.121.86.105.101.119.7.1.3.6.1.6.3.1|2|1
1.3.6.1.6.3.18.1.1.1.2.112.117.98.108.105.99.50.112.117.98.108.105.99|4|green1111
1.3.6.1.6.3.18.1.1.1.3.112.117.98.108.105.99.50.112.117.98.108.105.99|4|cpublic
1.3.6.1.6.3.18.1.1.1.4.112.117.98.108.105.99.50.112.117.98.108.105.99|4x|8000137001AC100066B9E81F86
1.3.6.1.6.3.18.1.1.1.5.112.117.98.108.105.99.50.112.117.98.108.105.99|4|public
1.3.6.1.6.3.18.1.1.1.6.112.117.98.108.105.99.50.112.117.98.108.105.99|4|
1.3.6.1.6.3.18.1.1.1.7.112.117.98.108.105.99.50.112.117.98.108.105.99|2|3
1.3.6.1.6.3.18.1.1.1.8.112.117.98.108.105.99.50.112.117.98.108.105.99|2|1
1.3.6.1.6.3.18.1.2.1.1.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|4|
1.3.6.1.6.3.18.1.2.1.1.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|4|
1.3.6.1.6.3.18.1.2.1.1.110.111.116.105.102.105.99.97.116.105.111.110.86.51|4|
1.3.6.1.6.3.18.1.2.1.2.49.55.50.46.49.54.46.48.46.54.57.47.49.54.50|2|484
1.3.6.1.6.3.18.1.2.1.2.110.111.116.105.102.105.99.97.116.105.111.110.86.50.99|2|484
1.3.6.1.6.3.18.1.2.1.2.110.111.116.105.102.105.99.97.116.105.111.110.86.51|2|484