NEW OS Aruba Instant (#9954)

* New OS: Aruba Instant

* New OS: Aruba Instant

* recreate test data

* remove aruba_instant test data

* remove empty file includes/definitions/discovery/aruba-instant.yaml

* fix state sensor discovery

* remove minor changes to includes/polling/functions.inc.phpwq

* move mac helper functions to Rewrite class

* simplify snmpwalk_group usage, general code cleanup

* fixes

* fixes

* fixes

* fixes

* fixes

* fixes

* recreate test data for 105 variant

* Add Client sensors for 8.4.0.0+

* begin stream-lining discovery and polling. separating discovery functions

* update test data

* update test data

* update test data

* improve mempool discovery/polling, clean up os polling, improve state discovery, improve os definition, misc fixes to wireless sensors module

* attempt to implement custom AP and client discovery and polling

* code fixes

* re-add ap count top graph

* more fixes

* more fixes

* more fixes

* more fixes

* remove some debugging, update test data

* code cleanup

* code cleanup

* address some scrutinizer warnings
This commit is contained in:
Timothy Willey
2019-05-13 08:06:13 -07:00
committed by Kevin Krumm
parent 32e5ef15e9
commit 0d656590ec
15 changed files with 7165 additions and 3461 deletions

View File

@@ -0,0 +1,343 @@
<?php
/**
* ArubaInstant.php
*
* HPE Aruba Instant
*
*
* 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 2019 Timothy Willey
* @author Timothy Willey <developer@timothywilley.net>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\Processor;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\ProcessorDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessApCountDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessNoiseFloorDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessUtilizationDiscovery;
use LibreNMS\Interfaces\Polling\Sensors\WirelessApCountPolling;
use LibreNMS\Interfaces\Polling\Sensors\WirelessClientsPolling;
use LibreNMS\Interfaces\Polling\Sensors\WirelessFrequencyPolling;
use LibreNMS\OS;
use LibreNMS\Util\Rewrite;
class ArubaInstant extends OS implements
ProcessorDiscovery,
WirelessApCountDiscovery,
WirelessApCountPolling,
WirelessClientsDiscovery,
WirelessClientsPolling,
WirelessFrequencyDiscovery,
WirelessFrequencyPolling,
WirelessNoiseFloorDiscovery,
WirelessPowerDiscovery,
WirelessUtilizationDiscovery
{
/**
* Discover processors.
* Returns an array of LibreNMS\Device\Processor objects that have been discovered
*
* @return array Processors
*/
public function discoverProcessors()
{
$processors = array();
$ai_mib = 'AI-AP-MIB';
$ai_ap_data = $this->getCacheTable('aiAccessPointEntry', $ai_mib);
foreach ($ai_ap_data as $ai_ap => $ai_ap_oid) {
$value = $ai_ap_oid['aiAPCPUUtilization'];
$combined_oid = sprintf('%s::%s.%s', $ai_mib, 'aiAPCPUUtilization', Rewrite::oidMac($ai_ap));
$oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$description = $ai_ap_data[$ai_ap]['aiAPSerialNum'];
$processors[] = Processor::discover('aruba-instant', $this->getDeviceId(), $oid, Rewrite::macToHex($ai_ap), $description, 1, $value);
} // end foreach
return $processors;
}
/**
* Discover wireless client counts. Type is clients.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessClients()
{
$sensors = array();
$device = $this->getDevice();
$ai_mib = 'AI-AP-MIB';
if (intval(explode('.', $device['version'])[0]) >= 8 && intval(explode('.', $device['version'])[1]) >= 4) {
// version is at least 8.4.0.0
$ssid_data = $this->getCacheTable('aiWlanSSIDEntry', $ai_mib);
$ap_data = array_merge_recursive(
$this->getCacheTable('aiAccessPointEntry', $ai_mib),
$this->getCacheTable('aiRadioClientNum', $ai_mib)
);
$oids = array();
$total_clients = 0;
// Clients Per SSID
foreach ($ssid_data as $index => $entry) {
$combined_oid = sprintf('%s::%s.%s', $ai_mib, 'aiSSIDClientNum', $index);
$oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$description = sprintf('SSID %s Clients', $entry['aiSSID']);
$oids[] = $oid;
$total_clients += $entry['aiSSIDClientNum'];
$sensors[] = new WirelessSensor('clients', $this->getDeviceId(), $oid, 'aruba-instant', $index, $description, $entry['aiSSIDClientNum']);
}
// Total Clients across all SSIDs
$sensors[] = new WirelessSensor('clients', $this->getDeviceId(), $oids, 'aruba-instant', 'total-clients', 'Total Clients', $total_clients);
// Clients Per Radio
foreach ($ap_data as $index => $entry) {
foreach ($entry['aiRadioClientNum'] as $radio => $value) {
$combined_oid = sprintf('%s::%s.%s.%s', $ai_mib, 'aiRadioClientNum', Rewrite::oidMac($index), $radio);
$oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$description = sprintf('%s Radio %s', $entry['aiAPSerialNum'], $radio);
$sensor_index = sprintf('%s.%s', Rewrite::macToHex($index), $radio);
$sensors[] = new WirelessSensor('clients', $this->getDeviceId(), $oid, 'aruba-instant', $sensor_index, $description, $value);
}
}
} else {
// version is lower than 8.4.0.0
// fetch the MAC addresses of currently connected clients, then count them to get an overall total
$client_data = $this->getCacheTable('aiClientMACAddress', $ai_mib);
$total_clients = sizeof($client_data);
$combined_oid = sprintf('%s::%s', $ai_mib, 'aiClientMACAddress');
$oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$sensors[] = new WirelessSensor('clients', $this->getDeviceId(), $oid, 'aruba-instant', 'total-clients', 'Total Clients', $total_clients);
}
return $sensors;
}
/**
* Discover wireless AP counts. Type is ap-count.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessApCount()
{
$sensors = array();
$ai_mib = 'AI-AP-MIB';
$ap_data = $this->getCacheTable('aiAPSerialNum', $ai_mib);
$total_aps = sizeof($ap_data);
$combined_oid = sprintf('%s::%s', $ai_mib, 'aiAPSerialNum');
$oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$sensors[] = new WirelessSensor('ap-count', $this->getDeviceId(), $oid, 'aruba-instant', 'total-aps', 'Total APs', $total_aps);
return $sensors;
}
/**
* Discover wireless frequency. This is in MHz. Type is frequency.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessFrequency()
{
// instant
return $this->discoverInstantRadio('frequency', 'aiRadioChannel');
}
/**
* Discover wireless noise floor. This is in dBm/Hz. Type is noise-floor.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessNoiseFloor()
{
// instant
return $this->discoverInstantRadio('noise-floor', 'aiRadioNoiseFloor');
}
/**
* 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()
{
// instant
return $this->discoverInstantRadio('power', 'aiRadioTransmitPower', "%s Radio %s: Tx Power");
}
/**
* Discover wireless utilization. This is in %. Type is utilization.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessUtilization()
{
// instant
return $this->discoverInstantRadio('utilization', 'aiRadioUtilization64');
}
/**
* Aruba Instant Radio Discovery
*
* @return array Sensors
*/
private function discoverInstantRadio($type, $mib, $desc = '%s Radio %s')
{
$ai_mib = 'AI-AP-MIB';
$ai_sg_data = array_merge_recursive(
$this->getCacheTable('aiAPSerialNum', $ai_mib),
$this->getCacheTable('aiRadioChannel', $ai_mib),
$this->getCacheTable('aiRadioNoiseFloor', $ai_mib),
$this->getCacheTable('aiRadioTransmitPower', $ai_mib),
$this->getCacheTable('aiRadioUtilization64', $ai_mib)
);
$sensors = array();
foreach ($ai_sg_data as $ai_ap => $ai_ap_oid) {
if (isset($ai_ap_oid[$mib])) {
foreach ($ai_ap_oid[$mib] as $ai_ap_radio => $value) {
$multiplier = 1;
if ($type == 'frequency') {
$value = WirelessSensor::channelToFrequency($this->decodeChannel($value));
}
if ($type == 'noise-floor') {
$multiplier = -1;
$value = $value * $multiplier;
}
$combined_oid = sprintf('%s::%s.%s.%s', $ai_mib, $mib, Rewrite::oidMac($ai_ap), $ai_ap_radio);
$oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$description = sprintf($desc, $ai_sg_data[$ai_ap]['aiAPSerialNum'], $ai_ap_radio);
$index = sprintf('%s.%s', Rewrite::macToHex($ai_ap), $ai_ap_radio);
$sensors[] = new WirelessSensor($type, $this->getDeviceId(), $oid, 'aruba-instant', $index, $description, $value, $multiplier);
} // end foreach
} // end if
} // end foreach
return $sensors;
}
protected function decodeChannel($channel)
{
return $channel & 255; // mask off the channel width information
}
/**
* Poll wireless frequency as MHz
* The returned array should be sensor_id => value pairs
*
* @param array $sensors Array of sensors needed to be polled
* @return array of polled data
*/
public function pollWirelessFrequency(array $sensors)
{
return $this->pollWirelessChannelAsFrequency($sensors, [$this, 'decodeChannel']);
}
/**
* Poll wireless clients
* The returned array should be sensor_id => value pairs
*
* @param array $sensors Array of sensors needed to be polled
* @return array of polled data
*/
public function pollWirelessClients(array $sensors)
{
$data = array();
if (!empty($sensors)) {
$device = $this->getDevice();
if (intval(explode('.', $device['version'])[0]) >= 8 && intval(explode('.', $device['version'])[1]) >= 4) {
// version is at least 8.4.0.0
$oids = array();
foreach ($sensors as $sensor) {
$oids[$sensor['sensor_id']] = current($sensor['sensor_oids']);
}
$snmp_data = snmp_get_multi_oid($this->getDevice(), $oids);
foreach ($oids as $id => $oid) {
$data[$id] = $snmp_data[$oid];
}
} else {
// version is lower than 8.4.0.0
if (!empty($sensors) && sizeof($sensors) == 1) {
$ai_mib = 'AI-AP-MIB';
$client_data = $this->getCacheTable('aiClientMACAddress', $ai_mib);
if (empty($client_data)) {
$total_clients = 0;
} else {
$total_clients = sizeof($client_data);
}
$data[$sensors[0]['sensor_id']] = $total_clients;
}
}
}
return $data;
}
/**
* Poll AP Count
* The returned array should be sensor_id => value pairs
*
* @param array $sensors Array of sensors needed to be polled
* @return array of polled data
*/
public function pollWirelessApCount(array $sensors)
{
$data = array();
if (!empty($sensors) && sizeof($sensors) == 1) {
$ai_mib = 'AI-AP-MIB';
$ap_data = $this->getCacheTable('aiAPSerialNum', $ai_mib);
$total_aps = 0;
if (!empty($ap_data)) {
$total_aps = sizeof($ap_data);
}
$data[$sensors[0]['sensor_id']] = $total_aps;
}
return $data;
}
}

View File

@@ -122,6 +122,46 @@ class Rewrite
return rtrim(chunk_split($mac, 2, ':'), ':');
}
/**
* Reformat hex MAC as oid MAC (dotted-decimal)
*
* 00:12:34:AB:CD:EF becomes 0.18.52.171.205.239
* 0:12:34:AB:CD:EF becomes 0.18.52.171.205.239
* 00:02:04:0B:0D:0F becomes 0.2.4.11.13.239
* 0:2:4:B:D:F becomes 0.2.4.11.13.15
*
* @param string $mac
* @return string oid representation of a MAC address
*/
public static function oidMac($mac)
{
return implode('.', array_map('hexdec', explode(':', $mac)));
}
/**
* Reformat Hex MAC with delimiters to Hex String without delimiters
*
* Assumes the MAC address is well-formed and in a common format.
* 00:12:34:ab:cd:ef becomes 001234abcdef
* 00:12:34:AB:CD:EF becomes 001234ABCDEF
* 0:12:34:AB:CD:EF becomes 001234ABCDEF
* 00-12-34-AB-CD-EF becomes 001234ABCDEF
* 001234-ABCDEF becomes 001234ABCDEF
* 0012.34AB.CDEF becomes 001234ABCDEF
* 00:02:04:0B:0D:0F becomes 0002040B0D0F
* 0:2:4:B:D:F becomes 0002040B0D0F
*
* @param string $mac hexadecimal MAC address with or without common delimiters
* @return string undelimited hexadecimal MAC address
*/
public static function macToHex($mac)
{
$mac_array = explode(':', str_replace(['-','.'], ':', $mac));
$mac_padding = array_fill(0, count($mac_array), 12/count($mac_array));
return implode(array_map('zeropad', $mac_array, $mac_padding));
}
/**
* Make Cisco hardware human readable
*

View File

@@ -0,0 +1,13 @@
os: aruba-instant
text: 'Aruba Instant'
type: wireless
icon: aruba
mib_dir:
- arubaos
over:
- { graph: device_wireless_ap-count, text: 'AP Count' }
- { graph: device_wireless_clients, text: 'Client Count' }
discovery:
-
sysObjectID: .1.3.6.1.4.1.14823.1.2. #Aruba apProducts (Aruba Instant)
sysDescr: ArubaOS

View File

@@ -11,5 +11,9 @@ discovery:
- sysObjectID:
- .1.3.6.1.4.1.14823. #ArubaOS
- .1.3.6.1.4.1.6486.800.1.1.2.2.2. #AOS-W
sysObjectID_except:
- .1.3.6.1.4.1.14823.1.2 #Aruba apProducts (Aruba Instant)
- sysDescr:
- ArubaOS
sysObjectID_except:
- .1.3.6.1.4.1.14823.1.2 #Aruba apProducts (Aruba Instant)

View File

@@ -6,6 +6,36 @@ if ($device['os'] == 'junos') {
$entity_array = array();
echo ' jnxBoxAnatomy';
$entity_array = snmpwalk_cache_oid($device, 'jnxBoxAnatomy', $entity_array, 'JUNIPER-MIB');
} elseif ($device['os'] == 'aruba-instant') {
$entity_array = array();
echo 'aruba-instant';
$ai_mib = 'AI-AP-MIB';
$ai_ig_data = snmpwalk_group($device, 'aiInfoGroup', $ai_mib);
discover_entity_physical(
$valid,
$device,
1, // entPhysicalIndex
$ai_ig_data['aiVirtualControllerIPAddress.0'], // entPhysicalDescr
'chassis', // entPhysicalClass
$ai_ig_data['aiVirtualControllerName.0'], // entPhysicalName
'Instant Virutal Controller Cluster', // entPhysicalModelName
$ai_ig_data['aiVirtualControllerKey.0'], // entPhysicalSerialNum
'0', // entPhysicalContainedIn
'Aruba', // entPhysicalMfgName
'-1', // entPhysicalParentRelPos
'Aruba', // entPhysicalVendorType
null, // entPhysicalHardwareRev
null, // entPhysicalFirmwareRev
null, // entPhysicalSoftwareRev
null, // entPhysicalIsFRU
null, // entPhysicalAlias
null, // entPhysicalAssetID
null // ifIndex
);
$entity_array = snmpwalk_group($device, 'aiAccessPointEntry', $ai_mib);
$instant_index = 2;
} elseif ($device['os'] == 'timos') {
$entity_array = array();
echo 'tmnxHwObjs';
@@ -108,6 +138,24 @@ foreach ($entity_array as $entPhysicalIndex => $entry) {
// fix for issue 1865, $entPhysicalIndex, as it contains a quad dotted number on newer Junipers
// using str_replace to remove all dots should fix this even if it changes in future
$entPhysicalIndex = str_replace('.', '', $entPhysicalIndex);
} elseif ($device['os'] == 'aruba-instant') {
$entPhysicalDescr = $entry['aiAPMACAddress'];
$entPhysicalContainedIn = 1;
$entPhysicalSerialNum = $entry['aiAPSerialNum'];
$entPhysicalModelName = $entry['aiAPModel'];
$entPhysicalMfgName = 'Aruba';
$entPhysicalVendorType = 'Aruba';
$entPhysicalParentRelPos = -1;
$entPhysicalSoftwareRev = $device['version'];
$entPhysicalIndex = $instant_index;
if ($entry['aiAPIPAddress'] == $ai_ig_data['aiMasterIPAddress.0']) {
$entPhysicalName = sprintf('%s %s Cluster Master', $entry['aiAPName'], $entry['aiAPIPAddress']);
} else {
$entPhysicalName = sprintf('%s %s Cluster Member', $entry['aiAPName'], $entry['aiAPIPAddress']);
}
$instant_index += 1;
} elseif ($device['os'] == 'timos') {
$entPhysicalDescr = $entry['tmnxCardTypeDescription'];
$entPhysicalContainedIn = $entry['tmnxHwContainedIn'];

View File

@@ -0,0 +1,52 @@
<?php
/**
* aruba-instant.inc.php
*
* LibreNMS mempools discovery module for Aruba Instant
*
* 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 2019 Timothy Willey
* @author Timothy Willey <developer@timothywilley.net>
*/
if ($device['os'] === 'aruba-instant') {
echo 'aruba-instant-MEMORY-POOL: ';
$mempool_data = snmpwalk_group($device, 'aiAPSerialNum', 'AI-AP-MIB');
$mempool_data = snmpwalk_group($device, 'aiAPTotalMemory', 'AI-AP-MIB', 1, $mempool_data);
$mempool_data = snmpwalk_group($device, 'aiAPMemoryFree', 'AI-AP-MIB', 1, $mempool_data);
d_echo('$mempool_data:'.PHP_EOL);
d_echo($mempool_data);
foreach ($mempool_data as $index => $entry) {
d_echo($entry['aiAPSerialNum'].' '.$entry['aiAPTotalMemory'].' / '.$entry['aiAPMemoryFree'].PHP_EOL);
$oid_index = implode('.', array_map('hexdec', explode(':', $index)));
$combined_oid = sprintf('%s::%s.%s', 'AI-AP-MIB', 'aiAPTotalMemory', $oid_index);
$usage_oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
$descr = $entry['aiAPSerialNum'];
$total = $entry['aiAPTotalMemory'];
$free = $entry['aiAPMemoryFree'];
$used = $total - $free;
$perc = ($used / $total * 100);
discover_mempool($valid_mempool, $device, $descr, 'aruba-instant', $descr, '1', null, null);
} //end foreach
} // end if

View File

@@ -0,0 +1,70 @@
<?php
/**
* aruba-instant.inc.php
*
* LibreNMS state discovery module for Aruba Instant
*
* 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 2019 Timothy Willey
* @author Timothy Willey <developer@timothywilley.net>
*/
$ai_mib = 'AI-AP-MIB';
$oids = snmpwalk_group($device, 'aiAPSerialNum', $ai_mib);
$oids = snmpwalk_group($device, 'aiAPStatus', $ai_mib, 1, $oids);
$oids = snmpwalk_group($device, 'aiRadioStatus', $ai_mib, 1, $oids);
if (!empty($oids)) {
$ap_state_name = 'aiAPStatus';
//Create State Translation
$ap_states = [
['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'up'],
['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'down'],
];
//Create State Index
$radio_state_name = 'aiRadioStatus';
//Create State Translation
$radio_states = [
['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'up'],
['value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'down'],
];
create_state_index($ap_state_name, $ap_states);
create_state_index($radio_state_name, $radio_states);
foreach ($oids as $ap_index => $ap_entry) {
$ap_state_index = implode('.', array_map('hexdec', explode(':', $ap_index)));
$combined_oid = implode('.', [$ai_mib.'::'.'aiAPStatus', $ap_state_index]);
$ap_state_oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
discover_sensor($valid['sensor'], 'state', $device, $ap_state_oid, $ap_state_index, $ap_state_name, $ap_entry['aiAPSerialNum'], '1', '1', null, null, null, null, $ap_entry[$ap_state_name], 'snmp', null, null, null, 'Cluster APs');
//Create Sensor To State Index
create_sensor_to_state_index($device, $ap_state_name, $ap_state_index);
foreach ($ap_entry['aiRadioStatus'] as $radio_index => $radio_status) {
$radio_state_index = implode('.', [$ap_state_index, $radio_index]);
$combined_oid = implode('.', [$ai_mib.'::'.'aiRadioStatus', $radio_state_index]);
$radio_state_oid = snmp_translate($combined_oid, 'ALL', 'arubaos', '-On', null);
discover_sensor($valid['sensor'], 'state', $device, $radio_state_oid, $radio_state_index, $radio_state_name, $ap_entry['aiAPSerialNum'].' Radio '.$radio_index, '1', '1', null, null, null, null, $radio_status, 'snmp', null, null, null, 'Cluster Radios');
//Create Sensor To State Index
create_sensor_to_state_index($device, $radio_state_name, $radio_state_index);
}
} //end foreach
} //end if

View File

@@ -0,0 +1,46 @@
<?php
/**
* aruba-instant.inc.php
*
* LibreNMS mempools polling module for Aruba Instant
*
* 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 2019 Timothy Willey
* @author Timothy Willey <developer@timothywilley.net>
*/
echo 'aruba-instant-MEMORY-POOL: ';
$mempool_data = snmpwalk_group($device, 'aiAPSerialNum', 'AI-AP-MIB');
$mempool_data = snmpwalk_group($device, 'aiAPTotalMemory', 'AI-AP-MIB', 1, $mempool_data);
$mempool_data = snmpwalk_group($device, 'aiAPMemoryFree', 'AI-AP-MIB', 1, $mempool_data);
d_echo('$mempool_data:'.PHP_EOL);
d_echo($mempool_data);
foreach ($mempool_data as $index => $entry) {
d_echo($entry['aiAPSerialNum'].' '.$entry['aiAPTotalMemory'].' / '.$entry['aiAPMemoryFree'].PHP_EOL);
$total = $entry['aiAPTotalMemory'];
$free = $entry['aiAPMemoryFree'];
$used = $total - $free;
$perc = ($used / $total * 100);
$mempool['total'] = $total;
$mempool['used'] = $used;
$mempool['free'] = $free;
$mempool['perc'] = $perc;
} //end foreach

View File

@@ -0,0 +1,30 @@
<?php
/**
* aruba-instant.inc.php
*
* LibreNMS os polling module for Aruba Instant
*
* 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 2019 Timothy Willey
* @author Timothy Willey <developer@timothywilley.net>
*/
use LibreNMS\RRD\RrdDefinition;
// ArubaOS (MODEL: 225), Version 8.4.0.0-8.4.0.0
// ArubaOS (MODEL: 105), Version 6.4.4.8-4.2.4.12
$badchars = array( '(', ')', ',',);
list(,,$hardware,,$version,) = str_replace($badchars, '', explode(' ', $device['sysDescr']));

View File

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,7 @@
"version": null,
"hardware": null,
"features": null,
"os": "arubaos",
"os": "aruba-instant",
"type": "wireless",
"serial": null,
"icon": "aruba.svg",
@@ -27,8 +27,8 @@
"sysContact": "<private>",
"version": "8.4.0.0-8.4.0.0",
"hardware": "225",
"features": "Local Controller for ",
"os": "arubaos",
"features": null,
"os": "aruba-instant",
"type": "wireless",
"serial": null,
"icon": "aruba.svg",
@@ -1116,7 +1116,7 @@
"ifMtu": 1500,
"ifType": "fastEther",
"ifAlias": "eth0",
"ifPhysAddress": "703a0e435a46",
"ifPhysAddress": "703a0ec9c246",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
@@ -1137,11 +1137,11 @@
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 326291,
"ifInUcastPkts": 1342610,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 433830,
"ifOutUcastPkts": 1494451,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
@@ -1153,11 +1153,11 @@
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 46739571,
"ifInOctets": 710923562,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 46780957,
"ifOutOctets": 158250620,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
@@ -1221,7 +1221,7 @@
"ifMtu": 1700,
"ifType": "fastEther",
"ifAlias": "eth1",
"ifPhysAddress": "703a0e435a47",
"ifPhysAddress": "703a0ec9c247",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
@@ -1326,7 +1326,7 @@
"ifMtu": 1500,
"ifType": "radioMAC",
"ifAlias": "radio0_ssid_id0",
"ifPhysAddress": "703a0e93c270",
"ifPhysAddress": "703a0e1c2470",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
@@ -1347,27 +1347,27 @@
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 0,
"ifInUcastPkts": 18274,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 34315,
"ifOutUcastPkts": 381833,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": 0,
"ifInErrors": 32,
"ifInErrors_prev": 0,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": 0,
"ifOutErrors": 246,
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 0,
"ifInOctets": 12105324,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 9573861,
"ifOutOctets": 499427158,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
@@ -1392,19 +1392,19 @@
"ifInUnknownProtos_prev": 0,
"ifInUnknownProtos_delta": null,
"ifInUnknownProtos_rate": null,
"ifInBroadcastPkts": 0,
"ifInBroadcastPkts": 35902,
"ifInBroadcastPkts_prev": 0,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": 0,
"ifOutBroadcastPkts": 286,
"ifOutBroadcastPkts_prev": 0,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
"ifInMulticastPkts": 0,
"ifInMulticastPkts": 35902,
"ifInMulticastPkts_prev": 0,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": 0,
"ifOutMulticastPkts": 286,
"ifOutMulticastPkts_prev": 0,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
@@ -1431,7 +1431,7 @@
"ifMtu": 1500,
"ifType": "radioMAC",
"ifAlias": "radio1_ssid_id0",
"ifPhysAddress": "703a0e93c260",
"ifPhysAddress": "703a0e1c2460",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
@@ -1452,27 +1452,27 @@
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 0,
"ifInUcastPkts": 36,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 151553,
"ifOutUcastPkts": 693582,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
"ifInErrors": 1,
"ifInErrors": 10,
"ifInErrors_prev": 0,
"ifInErrors_delta": null,
"ifInErrors_rate": null,
"ifOutErrors": 0,
"ifOutErrors": 58,
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 0,
"ifInOctets": 1790,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 35311849,
"ifOutOctets": 161615652,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
@@ -1501,7 +1501,7 @@
"ifInBroadcastPkts_prev": 0,
"ifInBroadcastPkts_delta": null,
"ifInBroadcastPkts_rate": null,
"ifOutBroadcastPkts": 0,
"ifOutBroadcastPkts": 58,
"ifOutBroadcastPkts_prev": 0,
"ifOutBroadcastPkts_delta": null,
"ifOutBroadcastPkts_rate": null,
@@ -1509,7 +1509,7 @@
"ifInMulticastPkts_prev": 0,
"ifInMulticastPkts_delta": null,
"ifInMulticastPkts_rate": null,
"ifOutMulticastPkts": 0,
"ifOutMulticastPkts": 58,
"ifOutMulticastPkts_prev": 0,
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
@@ -2061,7 +2061,7 @@
"ifMtu": 1300,
"ifType": "other",
"ifAlias": "BR0",
"ifPhysAddress": "703a0e435a46",
"ifPhysAddress": "703a0ec9c246",
"ifHardType": null,
"ifLastChange": 0,
"ifVlan": "",
@@ -2152,14 +2152,56 @@
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "utilization",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0",
"sensor_class": "ap-count",
"sensor_index": "total-aps",
"sensor_type": "aruba-instant",
"sensor_descr": "Total APs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 3,
"sensor_current": 1,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "clients",
"sensor_index": "total-clients",
"sensor_type": "aruba-instant",
"sensor_descr": "Total Clients",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 0,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.14823.2.3.3.1.2.4.1.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "utilization",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 1,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
@@ -2174,13 +2216,13 @@
{
"sensor_deleted": 0,
"sensor_class": "utilization",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 12,
"sensor_current": 11,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
@@ -2195,9 +2237,9 @@
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0: Tx Power",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0: Tx Power",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2216,9 +2258,9 @@
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1: Tx Power",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1: Tx Power",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2237,13 +2279,13 @@
{
"sensor_deleted": 0,
"sensor_class": "noise-floor",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_multiplier": -1,
"sensor_aggregator": "sum",
"sensor_current": 92,
"sensor_current": -92,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
@@ -2258,13 +2300,13 @@
{
"sensor_deleted": 0,
"sensor_class": "noise-floor",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_multiplier": -1,
"sensor_aggregator": "sum",
"sensor_current": 96,
"sensor_current": -96,
"sensor_prev": null,
"sensor_limit": null,
"sensor_limit_warn": null,
@@ -2279,9 +2321,9 @@
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2300,9 +2342,9 @@
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2324,15 +2366,57 @@
"wireless_sensors": [
{
"sensor_deleted": 0,
"sensor_class": "utilization",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0",
"sensor_class": "ap-count",
"sensor_index": "total-aps",
"sensor_type": "aruba-instant",
"sensor_descr": "Total APs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 3,
"sensor_prev": 3,
"sensor_current": 1,
"sensor_prev": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "clients",
"sensor_index": "total-clients",
"sensor_type": "aruba-instant",
"sensor_descr": "Total Clients",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 0,
"sensor_prev": 0,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_oids": "[\".1.3.6.1.4.1.14823.2.3.3.1.2.4.1.1\"]"
},
{
"sensor_deleted": 0,
"sensor_class": "utilization",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 1,
"sensor_prev": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
@@ -2346,14 +2430,14 @@
{
"sensor_deleted": 0,
"sensor_class": "utilization",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
"sensor_current": 12,
"sensor_prev": 12,
"sensor_current": 11,
"sensor_prev": 11,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
@@ -2367,9 +2451,9 @@
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0: Tx Power",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0: Tx Power",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2388,9 +2472,9 @@
{
"sensor_deleted": 0,
"sensor_class": "power",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1: Tx Power",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1: Tx Power",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2409,14 +2493,14 @@
{
"sensor_deleted": 0,
"sensor_class": "noise-floor",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_multiplier": -1,
"sensor_aggregator": "sum",
"sensor_current": 92,
"sensor_prev": 92,
"sensor_current": -92,
"sensor_prev": -92,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
@@ -2430,14 +2514,14 @@
{
"sensor_deleted": 0,
"sensor_class": "noise-floor",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_multiplier": -1,
"sensor_aggregator": "sum",
"sensor_current": 96,
"sensor_prev": 96,
"sensor_current": -96,
"sensor_prev": -96,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
@@ -2451,9 +2535,9 @@
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.112.58.14.201.194.70.0",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 0",
"sensor_index": "703a0ec9c246.0",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 0",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2472,9 +2556,9 @@
{
"sensor_deleted": 0,
"sensor_class": "frequency",
"sensor_index": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.112.58.14.201.194.70.1",
"sensor_type": "arubaos-iap",
"sensor_descr": "Radio 1",
"sensor_index": "703a0ec9c246.1",
"sensor_type": "aruba-instant",
"sensor_descr": "CNBJHMV0WN Radio 1",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_aggregator": "sum",
@@ -2492,5 +2576,174 @@
}
]
}
},
"processors": {
"discovery": {
"processors": [
{
"entPhysicalIndex": 0,
"hrDeviceIndex": 0,
"processor_oid": ".1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.201.194.70",
"processor_index": "703a0ec9c246",
"processor_type": "aruba-instant",
"processor_usage": 9,
"processor_descr": "CNBJHMV0WN",
"processor_precision": 1,
"processor_perc_warn": 75
}
]
},
"poller": "matches discovery"
},
"mempools": {
"discovery": {
"mempools": [
{
"mempool_index": "CNBJHMV0WN",
"entPhysicalIndex": null,
"hrDeviceIndex": null,
"mempool_type": "aruba-instant",
"mempool_precision": 1,
"mempool_descr": "CNBJHMV0WN",
"mempool_perc": 0,
"mempool_used": 0,
"mempool_free": 0,
"mempool_total": 0,
"mempool_largestfree": null,
"mempool_lowestfree": null,
"mempool_deleted": 0,
"mempool_perc_warn": 75
}
]
},
"poller": {
"mempools": [
{
"mempool_index": "CNBJHMV0WN",
"entPhysicalIndex": null,
"hrDeviceIndex": null,
"mempool_type": "aruba-instant",
"mempool_precision": 1,
"mempool_descr": "CNBJHMV0WN",
"mempool_perc": 34,
"mempool_used": 177905664,
"mempool_free": 349196288,
"mempool_total": 527101952,
"mempool_largestfree": null,
"mempool_lowestfree": null,
"mempool_deleted": 0,
"mempool_perc_warn": 75
}
]
}
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.201.194.70",
"sensor_index": "112.58.14.201.194.70",
"sensor_type": "aiAPStatus",
"sensor_descr": "CNBJHMV0WN",
"group": "Cluster APs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "aiAPStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.112.58.14.201.194.70.0",
"sensor_index": "112.58.14.201.194.70.0",
"sensor_type": "aiRadioStatus",
"sensor_descr": "CNBJHMV0WN Radio 0",
"group": "Cluster Radios",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "aiRadioStatus"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.112.58.14.201.194.70.1",
"sensor_index": "112.58.14.201.194.70.1",
"sensor_type": "aiRadioStatus",
"sensor_descr": "CNBJHMV0WN Radio 1",
"group": "Cluster Radios",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 1,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "aiRadioStatus"
}
],
"state_indexes": [
{
"state_name": "aiAPStatus",
"state_descr": "up",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "aiAPStatus",
"state_descr": "down",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 2
},
{
"state_name": "aiRadioStatus",
"state_descr": "up",
"state_draw_graph": 0,
"state_value": 1,
"state_generic_value": 0
},
{
"state_name": "aiRadioStatus",
"state_descr": "down",
"state_draw_graph": 0,
"state_value": 2,
"state_generic_value": 1
}
]
},
"poller": "matches discovery"
}
}

View File

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
1.3.6.1.2.1.1.1.0|4|ArubaOS (MODEL: 225), Version 8.4.0.0-8.4.0.0
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14823.1.2.59
1.3.6.1.2.1.1.3.0|67|18830116
1.3.6.1.2.1.1.3.0|67|86502682
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>
@@ -34,16 +34,16 @@
1.3.6.1.2.1.2.2.1.4.93|2|1500
1.3.6.1.2.1.2.2.1.4.94|2|1500
1.3.6.1.2.1.2.2.1.4.500|2|1300
1.3.6.1.2.1.2.2.1.6.1|4x|703A0E435A46
1.3.6.1.2.1.2.2.1.6.2|4x|703A0E435A47
1.3.6.1.2.1.2.2.1.6.50|4x|703A0E93C270
1.3.6.1.2.1.2.2.1.6.70|4x|703A0E93C260
1.3.6.1.2.1.2.2.1.6.1|4x|703A0EC9C246
1.3.6.1.2.1.2.2.1.6.2|4x|703A0EC9C247
1.3.6.1.2.1.2.2.1.6.50|4x|703A0E1C2470
1.3.6.1.2.1.2.2.1.6.70|4x|703A0E1C2460
1.3.6.1.2.1.2.2.1.6.90|4x|000000000000
1.3.6.1.2.1.2.2.1.6.91|4x|000000000000
1.3.6.1.2.1.2.2.1.6.92|4x|000000000000
1.3.6.1.2.1.2.2.1.6.93|4x|000000000000
1.3.6.1.2.1.2.2.1.6.94|4x|000000000000
1.3.6.1.2.1.2.2.1.6.500|4x|703A0E435A46
1.3.6.1.2.1.2.2.1.6.500|4x|703A0EC9C246
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.50|2|1
@@ -86,8 +86,8 @@
1.3.6.1.2.1.2.2.1.13.500|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.50|65|0
1.3.6.1.2.1.2.2.1.14.70|65|1
1.3.6.1.2.1.2.2.1.14.50|65|32
1.3.6.1.2.1.2.2.1.14.70|65|10
1.3.6.1.2.1.2.2.1.14.90|65|0
1.3.6.1.2.1.2.2.1.14.91|65|0
1.3.6.1.2.1.2.2.1.14.92|65|0
@@ -106,8 +106,8 @@
1.3.6.1.2.1.2.2.1.19.500|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.50|65|0
1.3.6.1.2.1.2.2.1.20.70|65|0
1.3.6.1.2.1.2.2.1.20.50|65|246
1.3.6.1.2.1.2.2.1.20.70|65|58
1.3.6.1.2.1.2.2.1.20.90|65|0
1.3.6.1.2.1.2.2.1.20.91|65|0
1.3.6.1.2.1.2.2.1.20.92|65|0
@@ -118,8 +118,8 @@
1.3.6.1.2.1.4.20.1.2.172.31.98.1|2|500
1.3.6.1.2.1.4.20.1.3.10.128.0.11|64|255.255.255.0
1.3.6.1.2.1.4.20.1.3.172.31.98.1|64|255.255.254.0
1.3.6.1.2.1.11.1.0|65|51693
1.3.6.1.2.1.11.2.0|65|51690
1.3.6.1.2.1.11.1.0|65|227168
1.3.6.1.2.1.11.2.0|65|227165
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|2
1.3.6.1.2.1.11.5.0|65|0
@@ -144,7 +144,7 @@
1.3.6.1.2.1.31.1.1.1.1.500|4|BR0
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.50|65|0
1.3.6.1.2.1.31.1.1.1.2.50|65|35902
1.3.6.1.2.1.31.1.1.1.2.70|65|0
1.3.6.1.2.1.31.1.1.1.2.90|65|0
1.3.6.1.2.1.31.1.1.1.2.91|65|0
@@ -154,7 +154,7 @@
1.3.6.1.2.1.31.1.1.1.2.500|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|0
1.3.6.1.2.1.31.1.1.1.3.50|65|0
1.3.6.1.2.1.31.1.1.1.3.50|65|35902
1.3.6.1.2.1.31.1.1.1.3.70|65|0
1.3.6.1.2.1.31.1.1.1.3.90|65|0
1.3.6.1.2.1.31.1.1.1.3.91|65|0
@@ -164,8 +164,8 @@
1.3.6.1.2.1.31.1.1.1.3.500|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.50|65|0
1.3.6.1.2.1.31.1.1.1.4.70|65|0
1.3.6.1.2.1.31.1.1.1.4.50|65|286
1.3.6.1.2.1.31.1.1.1.4.70|65|58
1.3.6.1.2.1.31.1.1.1.4.90|65|0
1.3.6.1.2.1.31.1.1.1.4.91|65|0
1.3.6.1.2.1.31.1.1.1.4.92|65|0
@@ -174,28 +174,28 @@
1.3.6.1.2.1.31.1.1.1.4.500|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|0
1.3.6.1.2.1.31.1.1.1.5.50|65|0
1.3.6.1.2.1.31.1.1.1.5.70|65|0
1.3.6.1.2.1.31.1.1.1.5.50|65|286
1.3.6.1.2.1.31.1.1.1.5.70|65|58
1.3.6.1.2.1.31.1.1.1.5.90|65|0
1.3.6.1.2.1.31.1.1.1.5.91|65|0
1.3.6.1.2.1.31.1.1.1.5.92|65|0
1.3.6.1.2.1.31.1.1.1.5.93|65|0
1.3.6.1.2.1.31.1.1.1.5.94|65|0
1.3.6.1.2.1.31.1.1.1.5.500|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|46739571
1.3.6.1.2.1.31.1.1.1.6.1|70|710923562
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.50|70|0
1.3.6.1.2.1.31.1.1.1.6.70|70|0
1.3.6.1.2.1.31.1.1.1.6.50|70|12105324
1.3.6.1.2.1.31.1.1.1.6.70|70|1790
1.3.6.1.2.1.31.1.1.1.6.90|70|0
1.3.6.1.2.1.31.1.1.1.6.91|70|0
1.3.6.1.2.1.31.1.1.1.6.92|70|0
1.3.6.1.2.1.31.1.1.1.6.93|70|0
1.3.6.1.2.1.31.1.1.1.6.94|70|0
1.3.6.1.2.1.31.1.1.1.6.500|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|326291
1.3.6.1.2.1.31.1.1.1.7.1|70|1342610
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.50|70|0
1.3.6.1.2.1.31.1.1.1.7.70|70|0
1.3.6.1.2.1.31.1.1.1.7.50|70|18274
1.3.6.1.2.1.31.1.1.1.7.70|70|36
1.3.6.1.2.1.31.1.1.1.7.90|70|0
1.3.6.1.2.1.31.1.1.1.7.91|70|0
1.3.6.1.2.1.31.1.1.1.7.92|70|0
@@ -204,7 +204,7 @@
1.3.6.1.2.1.31.1.1.1.7.500|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.50|70|0
1.3.6.1.2.1.31.1.1.1.8.50|70|35902
1.3.6.1.2.1.31.1.1.1.8.70|70|0
1.3.6.1.2.1.31.1.1.1.8.90|70|0
1.3.6.1.2.1.31.1.1.1.8.91|70|0
@@ -214,7 +214,7 @@
1.3.6.1.2.1.31.1.1.1.8.500|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|0
1.3.6.1.2.1.31.1.1.1.9.50|70|0
1.3.6.1.2.1.31.1.1.1.9.50|70|35902
1.3.6.1.2.1.31.1.1.1.9.70|70|0
1.3.6.1.2.1.31.1.1.1.9.90|70|0
1.3.6.1.2.1.31.1.1.1.9.91|70|0
@@ -222,20 +222,20 @@
1.3.6.1.2.1.31.1.1.1.9.93|70|0
1.3.6.1.2.1.31.1.1.1.9.94|70|0
1.3.6.1.2.1.31.1.1.1.9.500|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|46780957
1.3.6.1.2.1.31.1.1.1.10.1|70|158250620
1.3.6.1.2.1.31.1.1.1.10.2|70|0
1.3.6.1.2.1.31.1.1.1.10.50|70|9573861
1.3.6.1.2.1.31.1.1.1.10.70|70|35311849
1.3.6.1.2.1.31.1.1.1.10.50|70|499427158
1.3.6.1.2.1.31.1.1.1.10.70|70|161615652
1.3.6.1.2.1.31.1.1.1.10.90|70|0
1.3.6.1.2.1.31.1.1.1.10.91|70|0
1.3.6.1.2.1.31.1.1.1.10.92|70|0
1.3.6.1.2.1.31.1.1.1.10.93|70|0
1.3.6.1.2.1.31.1.1.1.10.94|70|0
1.3.6.1.2.1.31.1.1.1.10.500|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|433830
1.3.6.1.2.1.31.1.1.1.11.1|70|1494451
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.50|70|34315
1.3.6.1.2.1.31.1.1.1.11.70|70|151553
1.3.6.1.2.1.31.1.1.1.11.50|70|381833
1.3.6.1.2.1.31.1.1.1.11.70|70|693582
1.3.6.1.2.1.31.1.1.1.11.90|70|0
1.3.6.1.2.1.31.1.1.1.11.91|70|0
1.3.6.1.2.1.31.1.1.1.11.92|70|0
@@ -244,8 +244,8 @@
1.3.6.1.2.1.31.1.1.1.11.500|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.50|70|0
1.3.6.1.2.1.31.1.1.1.12.70|70|0
1.3.6.1.2.1.31.1.1.1.12.50|70|286
1.3.6.1.2.1.31.1.1.1.12.70|70|58
1.3.6.1.2.1.31.1.1.1.12.90|70|0
1.3.6.1.2.1.31.1.1.1.12.91|70|0
1.3.6.1.2.1.31.1.1.1.12.92|70|0
@@ -254,8 +254,8 @@
1.3.6.1.2.1.31.1.1.1.12.500|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|0
1.3.6.1.2.1.31.1.1.1.13.50|70|0
1.3.6.1.2.1.31.1.1.1.13.70|70|0
1.3.6.1.2.1.31.1.1.1.13.50|70|286
1.3.6.1.2.1.31.1.1.1.13.70|70|58
1.3.6.1.2.1.31.1.1.1.13.90|70|0
1.3.6.1.2.1.31.1.1.1.13.91|70|0
1.3.6.1.2.1.31.1.1.1.13.92|70|0
@@ -312,12 +312,92 @@
1.3.6.1.2.1.31.1.1.1.18.93|4|
1.3.6.1.2.1.31.1.1.1.18.94|4|
1.3.6.1.2.1.31.1.1.1.18.500|4|
1.3.6.1.4.1.14823.2.3.3.1.1.1.0|4|bb6a73be01282660f5f9a85b8b2e6b33539f10d9cfd2d86c8e
1.3.6.1.4.1.14823.2.3.3.1.1.2.0|4|instant-ap-src-vc
1.3.6.1.4.1.14823.2.3.3.1.1.3.0|4|
1.3.6.1.4.1.14823.2.3.3.1.1.4.0|4|8.4.0.0-8.4.0.0_68230
1.3.6.1.4.1.14823.2.3.3.1.1.5.0|64|10.128.0.10
1.3.6.1.4.1.14823.2.3.3.1.1.6.0|64|10.128.0.11
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.1.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.2.0|4|EOU-Regional
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.3.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.4.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.5.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.1.112.58.14.201.194.70|4x|703A0EC9C246
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.112.58.14.201.194.70|4|instant-ap-src-1
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.112.58.14.201.194.70|64|10.128.0.11
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.112.58.14.201.194.70|4|CNBJHMV0WN
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.112.58.14.201.194.70|6|1.3.6.1.4.1.14823.1.2.59
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.112.58.14.201.194.70|4|225
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.201.194.70|2|9
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.112.58.14.201.194.70|2|349196288
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.112.58.14.201.194.70|67|86517500
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.112.58.14.201.194.70|2|527101952
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.201.194.70|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.12.112.58.14.201.194.70|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.13.112.58.14.201.194.70|4|cluster master
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.1.112.58.14.201.194.70.0|4x|703A0EC9C246
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.1.112.58.14.201.194.70.1|4x|703A0EC9C246
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.2.112.58.14.201.194.70.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.2.112.58.14.201.194.70.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.3.112.58.14.201.194.70.0|4x|703A0E1C2470
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.3.112.58.14.201.194.70.1|4x|703A0E1C2460
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.112.58.14.201.194.70.0|4|116E
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.112.58.14.201.194.70.1|4|6
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.112.58.14.201.194.70.0|2|21
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.112.58.14.201.194.70.1|2|18
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.112.58.14.201.194.70.0|2|92
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.112.58.14.201.194.70.1|2|96
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.0|2|3
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.1|2|12
1.3.6.1.6.3.10.2.1.3.0|2|188301
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.7.112.58.14.201.194.70.0|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.7.112.58.14.201.194.70.1|2|14
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.0|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.112.58.14.201.194.70.1|2|11
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.9.112.58.14.201.194.70.0|65|8882005
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.9.112.58.14.201.194.70.1|65|9144204
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.10.112.58.14.201.194.70.0|65|155606
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.10.112.58.14.201.194.70.1|65|693655
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.11.112.58.14.201.194.70.0|65|226513
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.11.112.58.14.201.194.70.1|65|3
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.12.112.58.14.201.194.70.0|65|557334054
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.12.112.58.14.201.194.70.1|65|463
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.13.112.58.14.201.194.70.0|65|303
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.13.112.58.14.201.194.70.1|65|58
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.14.112.58.14.201.194.70.0|65|6669852
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.14.112.58.14.201.194.70.1|65|42348351
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.15.112.58.14.201.194.70.0|65|135272
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.15.112.58.14.201.194.70.1|65|346422
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.16.112.58.14.201.194.70.0|65|5912861
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.16.112.58.14.201.194.70.1|65|314
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.17.112.58.14.201.194.70.0|65|3171822
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.17.112.58.14.201.194.70.1|65|29796605
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.18.112.58.14.201.194.70.0|65|1887984
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.18.112.58.14.201.194.70.1|65|9770547
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.19.112.58.14.201.194.70.0|65|92506107
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.19.112.58.14.201.194.70.1|65|417183647
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.112.58.14.201.194.70.0|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.112.58.14.201.194.70.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.21.112.58.14.201.194.70.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.21.112.58.14.201.194.70.1|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.22.112.58.14.201.194.70.0|4|access
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.22.112.58.14.201.194.70.1|4|access
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.1.112.58.14.201.194.70.0|4x|703A0EC9C246
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.1.112.58.14.201.194.70.1|4x|703A0EC9C246
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.2.112.58.14.201.194.70.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.2.112.58.14.201.194.70.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.3.112.58.14.201.194.70.0|4|EOU-Regional
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.3.112.58.14.201.194.70.1|4|EOU-Regional
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.4.112.58.14.201.194.70.0|4x|703A0E1C2470
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.4.112.58.14.201.194.70.1|4x|703A0E1C2460
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.5.112.58.14.201.194.70.0|65|382119
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.5.112.58.14.201.194.70.1|65|693636
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.6.112.58.14.201.194.70.0|65|226558
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.6.112.58.14.201.194.70.1|65|2
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.7.112.58.14.201.194.70.0|65|551860551
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.7.112.58.14.201.194.70.1|65|5445
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.8.112.58.14.201.194.70.0|65|54176
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.8.112.58.14.201.194.70.1|65|36
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.9.112.58.14.201.194.70.0|65|37356
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.9.112.58.14.201.194.70.1|65|2
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.10.112.58.14.201.194.70.0|65|5912861
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.10.112.58.14.201.194.70.1|65|314
1.3.6.1.6.3.10.2.1.3.0|2|865026

View File

@@ -0,0 +1,319 @@
1.3.6.1.2.1.1.1.0|4|ArubaOS (MODEL: 105), Version 6.4.4.8-4.2.4.12
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14823.1.2.71
1.3.6.1.2.1.1.3.0|67|8612125
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|eth0
1.3.6.1.2.1.2.2.1.2.50|4|radio0_ssid_id0
1.3.6.1.2.1.2.2.1.2.70|4|radio1_ssid_id0
1.3.6.1.2.1.2.2.1.2.90|4|gre0
1.3.6.1.2.1.2.2.1.2.500|4|BR0
1.3.6.1.2.1.2.2.1.3.1|2|117
1.3.6.1.2.1.2.2.1.3.50|2|188
1.3.6.1.2.1.2.2.1.3.70|2|188
1.3.6.1.2.1.2.2.1.3.90|2|131
1.3.6.1.2.1.2.2.1.3.500|2|1
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.50|2|1500
1.3.6.1.2.1.2.2.1.4.70|2|1500
1.3.6.1.2.1.2.2.1.4.90|2|1500
1.3.6.1.2.1.2.2.1.4.500|2|1300
1.3.6.1.2.1.2.2.1.6.1|4x|24DEC6C352DA
1.3.6.1.2.1.2.2.1.6.50|4x|24DEC6B52DA8
1.3.6.1.2.1.2.2.1.6.70|4x|24DEC6B52DA0
1.3.6.1.2.1.2.2.1.6.90|4x|000000000000
1.3.6.1.2.1.2.2.1.6.500|4x|24DEC6C352DA
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.50|2|1
1.3.6.1.2.1.2.2.1.7.70|2|1
1.3.6.1.2.1.2.2.1.7.90|2|2
1.3.6.1.2.1.2.2.1.7.500|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.50|2|1
1.3.6.1.2.1.2.2.1.8.70|2|1
1.3.6.1.2.1.2.2.1.8.90|2|2
1.3.6.1.2.1.2.2.1.8.500|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.50|67|0
1.3.6.1.2.1.2.2.1.9.70|67|0
1.3.6.1.2.1.2.2.1.9.90|67|0
1.3.6.1.2.1.2.2.1.9.500|67|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.50|65|0
1.3.6.1.2.1.2.2.1.13.70|65|0
1.3.6.1.2.1.2.2.1.13.90|65|0
1.3.6.1.2.1.2.2.1.13.500|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.50|65|0
1.3.6.1.2.1.2.2.1.14.70|65|0
1.3.6.1.2.1.2.2.1.14.90|65|0
1.3.6.1.2.1.2.2.1.14.500|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.50|65|331
1.3.6.1.2.1.2.2.1.19.70|65|410
1.3.6.1.2.1.2.2.1.19.90|65|0
1.3.6.1.2.1.2.2.1.19.500|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.50|65|91
1.3.6.1.2.1.2.2.1.20.70|65|1
1.3.6.1.2.1.2.2.1.20.90|65|0
1.3.6.1.2.1.2.2.1.20.500|65|0
1.3.6.1.2.1.4.20.1.2.10.4.1.26|2|500
1.3.6.1.2.1.4.20.1.3.10.4.1.26|64|255.255.255.0
1.3.6.1.2.1.11.1.0|65|19562
1.3.6.1.2.1.11.2.0|65|19555
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|6
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.7.1.2.2.1.2.1.36.222.198.195.80.164|2|1
1.3.6.1.2.1.17.7.1.2.2.1.2.1.36.222.198.195.82.218|2|0
1.3.6.1.2.1.17.7.1.2.2.1.2.1.92.69.39.153.45.192|2|1
1.3.6.1.2.1.17.7.1.2.2.1.2.1.176.168.110.135.223.91|2|1
1.3.6.1.2.1.17.7.1.2.2.1.2.3333.36.222.198.195.82.218|2|0
1.3.6.1.2.1.31.1.1.1.1.1|4|eth0
1.3.6.1.2.1.31.1.1.1.1.50|4|radio0_ssid_id0
1.3.6.1.2.1.31.1.1.1.1.70|4|radio1_ssid_id0
1.3.6.1.2.1.31.1.1.1.1.90|4|gre0
1.3.6.1.2.1.31.1.1.1.1.500|4|BR0
1.3.6.1.2.1.31.1.1.1.2.1|65|61006
1.3.6.1.2.1.31.1.1.1.2.50|65|23
1.3.6.1.2.1.31.1.1.1.2.70|65|4
1.3.6.1.2.1.31.1.1.1.2.90|65|0
1.3.6.1.2.1.31.1.1.1.2.500|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|61007
1.3.6.1.2.1.31.1.1.1.3.50|65|23
1.3.6.1.2.1.31.1.1.1.3.70|65|4
1.3.6.1.2.1.31.1.1.1.3.90|65|0
1.3.6.1.2.1.31.1.1.1.3.500|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|132
1.3.6.1.2.1.31.1.1.1.4.50|65|422
1.3.6.1.2.1.31.1.1.1.4.70|65|0
1.3.6.1.2.1.31.1.1.1.4.90|65|0
1.3.6.1.2.1.31.1.1.1.4.500|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|132
1.3.6.1.2.1.31.1.1.1.5.50|65|422
1.3.6.1.2.1.31.1.1.1.5.70|65|0
1.3.6.1.2.1.31.1.1.1.5.90|65|0
1.3.6.1.2.1.31.1.1.1.5.500|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|28244522
1.3.6.1.2.1.31.1.1.1.6.50|70|561664
1.3.6.1.2.1.31.1.1.1.6.70|70|79238
1.3.6.1.2.1.31.1.1.1.6.90|70|0
1.3.6.1.2.1.31.1.1.1.6.500|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|58004
1.3.6.1.2.1.31.1.1.1.7.50|70|2802
1.3.6.1.2.1.31.1.1.1.7.70|70|228
1.3.6.1.2.1.31.1.1.1.7.90|70|0
1.3.6.1.2.1.31.1.1.1.7.500|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|61009
1.3.6.1.2.1.31.1.1.1.8.50|70|23
1.3.6.1.2.1.31.1.1.1.8.70|70|4
1.3.6.1.2.1.31.1.1.1.8.90|70|0
1.3.6.1.2.1.31.1.1.1.8.500|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|61010
1.3.6.1.2.1.31.1.1.1.9.50|70|23
1.3.6.1.2.1.31.1.1.1.9.70|70|4
1.3.6.1.2.1.31.1.1.1.9.90|70|0
1.3.6.1.2.1.31.1.1.1.9.500|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|16869895
1.3.6.1.2.1.31.1.1.1.10.50|70|1767608
1.3.6.1.2.1.31.1.1.1.10.70|70|213207
1.3.6.1.2.1.31.1.1.1.10.90|70|0
1.3.6.1.2.1.31.1.1.1.10.500|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|141812
1.3.6.1.2.1.31.1.1.1.11.50|70|2688
1.3.6.1.2.1.31.1.1.1.11.70|70|0
1.3.6.1.2.1.31.1.1.1.11.90|70|0
1.3.6.1.2.1.31.1.1.1.11.500|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|132
1.3.6.1.2.1.31.1.1.1.12.50|70|422
1.3.6.1.2.1.31.1.1.1.12.70|70|0
1.3.6.1.2.1.31.1.1.1.12.90|70|0
1.3.6.1.2.1.31.1.1.1.12.500|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|132
1.3.6.1.2.1.31.1.1.1.13.50|70|422
1.3.6.1.2.1.31.1.1.1.13.70|70|0
1.3.6.1.2.1.31.1.1.1.13.90|70|0
1.3.6.1.2.1.31.1.1.1.13.500|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|2
1.3.6.1.2.1.31.1.1.1.14.50|2|2
1.3.6.1.2.1.31.1.1.1.14.70|2|2
1.3.6.1.2.1.31.1.1.1.14.90|2|2
1.3.6.1.2.1.31.1.1.1.14.500|2|2
1.3.6.1.2.1.31.1.1.1.15.1|66|0
1.3.6.1.2.1.31.1.1.1.15.50|66|0
1.3.6.1.2.1.31.1.1.1.15.70|66|0
1.3.6.1.2.1.31.1.1.1.15.90|66|0
1.3.6.1.2.1.31.1.1.1.15.500|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.50|2|2
1.3.6.1.2.1.31.1.1.1.16.70|2|2
1.3.6.1.2.1.31.1.1.1.16.90|2|2
1.3.6.1.2.1.31.1.1.1.16.500|2|2
1.3.6.1.2.1.31.1.1.1.17.1|2|1
1.3.6.1.2.1.31.1.1.1.17.50|2|1
1.3.6.1.2.1.31.1.1.1.17.70|2|1
1.3.6.1.2.1.31.1.1.1.17.90|2|1
1.3.6.1.2.1.31.1.1.1.17.500|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.50|4|
1.3.6.1.2.1.31.1.1.1.18.70|4|
1.3.6.1.2.1.31.1.1.1.18.90|4|
1.3.6.1.2.1.31.1.1.1.18.500|4|
1.3.6.1.4.1.14823.2.3.3.1.1.1.0|4|d750fa7701c9617fe72f583a7f7a1407220796cd3f1e5ef5cb
1.3.6.1.4.1.14823.2.3.3.1.1.2.0|4|instant-C3:52:DA
1.3.6.1.4.1.14823.2.3.3.1.1.3.0|4|
1.3.6.1.4.1.14823.2.3.3.1.1.4.0|4|6.4.4.8-4.2.4.12_68441
1.3.6.1.4.1.14823.2.3.3.1.1.5.0|64|0.0.0.0
1.3.6.1.4.1.14823.2.3.3.1.1.6.0|64|10.4.1.26
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.1.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.2.0|4|instant-test
1.3.6.1.4.1.14823.2.3.3.1.1.7.1.3.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.1.36.222.198.195.80.164|4x|24DEC6C350A4
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.1.36.222.198.195.82.218|4x|24DEC6C352DA
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.36.222.198.195.80.164|4|24:de:c6:c3:50:a4
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.36.222.198.195.82.218|4|24:de:c6:c3:52:da
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.36.222.198.195.80.164|64|10.4.1.27
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.36.222.198.195.82.218|64|10.4.1.26
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.36.222.198.195.80.164|4|BT0489813
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.36.222.198.195.82.218|4|BT0490379
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.36.222.198.195.80.164|6|1.3.6.1.4.1.14823.1.2.34
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.36.222.198.195.82.218|6|1.3.6.1.4.1.14823.1.2.34
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.36.222.198.195.80.164|4|105
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.36.222.198.195.82.218|4|105
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.36.222.198.195.80.164|2|9
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.36.222.198.195.82.218|2|5
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.36.222.198.195.80.164|2|55951360
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.36.222.198.195.82.218|2|50995200
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.36.222.198.195.80.164|67|8581700
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.36.222.198.195.82.218|67|8617000
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.36.222.198.195.80.164|2|128745472
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.36.222.198.195.82.218|2|128745472
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.36.222.198.195.80.164|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.36.222.198.195.82.218|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.1.36.222.198.195.80.164.0|4x|24DEC6C350A4
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.1.36.222.198.195.80.164.1|4x|24DEC6C350A4
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.1.36.222.198.195.82.218.0|4x|24DEC6C352DA
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.1.36.222.198.195.82.218.1|4x|24DEC6C352DA
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.2.36.222.198.195.80.164.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.2.36.222.198.195.80.164.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.2.36.222.198.195.82.218.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.2.36.222.198.195.82.218.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.3.36.222.198.195.80.164.0|4x|24DEC6B50A48
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.3.36.222.198.195.80.164.1|4x|24DEC6B50A40
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.3.36.222.198.195.82.218.0|4x|24DEC6B52DA8
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.3.36.222.198.195.82.218.1|4x|24DEC6B52DA0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.36.222.198.195.80.164.0|2|388
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.36.222.198.195.80.164.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.36.222.198.195.82.218.0|2|356
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.4.36.222.198.195.82.218.1|2|11
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.36.222.198.195.80.164.0|2|22
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.36.222.198.195.80.164.1|2|22
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.36.222.198.195.82.218.0|2|22
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.5.36.222.198.195.82.218.1|2|22
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.36.222.198.195.80.164.0|2|93
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.36.222.198.195.80.164.1|2|94
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.36.222.198.195.82.218.0|2|93
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.6.36.222.198.195.82.218.1|2|94
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.7.36.222.198.195.80.164.0|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.7.36.222.198.195.80.164.1|2|21
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.7.36.222.198.195.82.218.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.7.36.222.198.195.82.218.1|2|13
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.36.222.198.195.80.164.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.36.222.198.195.80.164.1|2|21
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.36.222.198.195.82.218.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.8.36.222.198.195.82.218.1|2|13
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.9.36.222.198.195.80.164.0|65|20125
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.9.36.222.198.195.80.164.1|65|4732
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.9.36.222.198.195.82.218.0|65|19866
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.9.36.222.198.195.82.218.1|65|9424
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.10.36.222.198.195.80.164.0|65|17505
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.10.36.222.198.195.80.164.1|65|9005
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.10.36.222.198.195.82.218.0|65|17666
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.10.36.222.198.195.82.218.1|65|16379
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.11.36.222.198.195.80.164.0|65|3064
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.11.36.222.198.195.80.164.1|65|1368
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.11.36.222.198.195.82.218.0|65|3015
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.11.36.222.198.195.82.218.1|65|273
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.12.36.222.198.195.80.164.0|65|1329033
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.12.36.222.198.195.80.164.1|65|1151549
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.12.36.222.198.195.82.218.0|65|1853956
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.12.36.222.198.195.82.218.1|65|221303
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.13.36.222.198.195.80.164.0|65|4
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.13.36.222.198.195.80.164.1|65|190
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.13.36.222.198.195.82.218.0|65|26
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.13.36.222.198.195.82.218.1|65|25
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.14.36.222.198.195.80.164.0|65|1078706
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.14.36.222.198.195.80.164.1|65|14819920
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.14.36.222.198.195.82.218.0|65|421998
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.14.36.222.198.195.82.218.1|65|2096070
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.15.36.222.198.195.80.164.0|65|2984
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.15.36.222.198.195.80.164.1|65|1322
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.15.36.222.198.195.82.218.0|65|2851
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.15.36.222.198.195.82.218.1|65|242
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.16.36.222.198.195.80.164.0|65|756901
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.16.36.222.198.195.80.164.1|65|339067
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.16.36.222.198.195.82.218.0|65|672361
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.16.36.222.198.195.82.218.1|65|90686
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.17.36.222.198.195.80.164.0|65|247516
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.17.36.222.198.195.80.164.1|65|6987796
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.17.36.222.198.195.82.218.0|65|470628
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.17.36.222.198.195.82.218.1|65|3778296
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.18.36.222.198.195.80.164.0|65|1019688
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.18.36.222.198.195.80.164.1|65|510239
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.18.36.222.198.195.82.218.0|65|336390
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.18.36.222.198.195.82.218.1|65|521869
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.19.36.222.198.195.80.164.0|65|2903203
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.19.36.222.198.195.80.164.1|65|101089313
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.19.36.222.198.195.82.218.0|65|12296736
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.19.36.222.198.195.82.218.1|65|103494193
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.36.222.198.195.80.164.0|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.36.222.198.195.80.164.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.36.222.198.195.82.218.0|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.2.1.20.36.222.198.195.82.218.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.1.36.222.198.195.80.164.0|4x|24DEC6C350A4
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.1.36.222.198.195.80.164.1|4x|24DEC6C350A4
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.1.36.222.198.195.82.218.0|4x|24DEC6C352DA
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.1.36.222.198.195.82.218.1|4x|24DEC6C352DA
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.2.36.222.198.195.80.164.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.2.36.222.198.195.80.164.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.2.36.222.198.195.82.218.0|2|0
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.2.36.222.198.195.82.218.1|2|1
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.3.36.222.198.195.80.164.0|4|instant-test
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.3.36.222.198.195.80.164.1|4|instant-test
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.3.36.222.198.195.82.218.0|4|instant-test
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.3.36.222.198.195.82.218.1|4|instant-test
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.4.36.222.198.195.80.164.0|4x|24DEC6B50A48
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.4.36.222.198.195.80.164.1|4x|24DEC6B50A40
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.4.36.222.198.195.82.218.0|4x|24DEC6B52DA8
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.4.36.222.198.195.82.218.1|4x|24DEC6B52DA0
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.5.36.222.198.195.80.164.0|65|20125
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.5.36.222.198.195.80.164.1|65|4732
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.5.36.222.198.195.82.218.0|65|19866
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.5.36.222.198.195.82.218.1|65|9424
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.6.36.222.198.195.80.164.0|65|3064
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.6.36.222.198.195.80.164.1|65|1368
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.6.36.222.198.195.82.218.0|65|3015
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.6.36.222.198.195.82.218.1|65|273
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.7.36.222.198.195.80.164.0|65|1329033
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.7.36.222.198.195.80.164.1|65|1151549
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.7.36.222.198.195.82.218.0|65|1853956
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.7.36.222.198.195.82.218.1|65|221303
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.8.36.222.198.195.80.164.0|65|7816
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.8.36.222.198.195.80.164.1|65|3237
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.8.36.222.198.195.82.218.0|65|7071
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.8.36.222.198.195.82.218.1|65|582
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.9.36.222.198.195.80.164.0|65|2982
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.9.36.222.198.195.80.164.1|65|1283
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.9.36.222.198.195.82.218.0|65|2831
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.9.36.222.198.195.82.218.1|65|238
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.10.36.222.198.195.80.164.0|65|756662
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.10.36.222.198.195.80.164.1|65|329879
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.10.36.222.198.195.82.218.0|65|669904
1.3.6.1.4.1.14823.2.3.3.1.2.3.1.10.36.222.198.195.82.218.1|65|88944
1.3.6.1.6.3.10.2.1.3.0|2|86121

View File

@@ -1,2 +1,2 @@
1.3.6.1.2.1.1.1.0|4|ArubaOS Version 6.4.4.4-4.2.3.1
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14823.1.2.61
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14823.1.1.9999