diff --git a/LibreNMS/OS/ArubaInstant.php b/LibreNMS/OS/ArubaInstant.php new file mode 100644 index 000000000000..ac80ef11e0f7 --- /dev/null +++ b/LibreNMS/OS/ArubaInstant.php @@ -0,0 +1,343 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 Timothy Willey + * @author Timothy Willey + */ + +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; + } +} diff --git a/LibreNMS/Util/Rewrite.php b/LibreNMS/Util/Rewrite.php index 9299a594ee3f..a2449ceba892 100644 --- a/LibreNMS/Util/Rewrite.php +++ b/LibreNMS/Util/Rewrite.php @@ -122,6 +122,46 @@ public static function readableMac($mac) 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 * diff --git a/includes/definitions/aruba-instant.yaml b/includes/definitions/aruba-instant.yaml new file mode 100644 index 000000000000..bb53fe63c04f --- /dev/null +++ b/includes/definitions/aruba-instant.yaml @@ -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 diff --git a/includes/definitions/arubaos.yaml b/includes/definitions/arubaos.yaml index 280d593db0f0..38f245c2512c 100644 --- a/includes/definitions/arubaos.yaml +++ b/includes/definitions/arubaos.yaml @@ -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) diff --git a/includes/discovery/entity-physical/entity-physical.inc.php b/includes/discovery/entity-physical/entity-physical.inc.php index f41bd49a3ffa..841bc8790a79 100644 --- a/includes/discovery/entity-physical/entity-physical.inc.php +++ b/includes/discovery/entity-physical/entity-physical.inc.php @@ -6,6 +6,36 @@ $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 @@ // 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']; diff --git a/includes/discovery/mempools/aruba-instant.inc.php b/includes/discovery/mempools/aruba-instant.inc.php new file mode 100644 index 000000000000..500592bf4fb4 --- /dev/null +++ b/includes/discovery/mempools/aruba-instant.inc.php @@ -0,0 +1,52 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 Timothy Willey + * @author Timothy Willey + */ +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 diff --git a/includes/discovery/sensors/state/aruba-instant.inc.php b/includes/discovery/sensors/state/aruba-instant.inc.php new file mode 100644 index 000000000000..85bd0a5ba3fc --- /dev/null +++ b/includes/discovery/sensors/state/aruba-instant.inc.php @@ -0,0 +1,70 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 Timothy Willey + * @author Timothy Willey + */ +$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 diff --git a/includes/polling/mempools/aruba-instant.inc.php b/includes/polling/mempools/aruba-instant.inc.php new file mode 100644 index 000000000000..5ec120b81889 --- /dev/null +++ b/includes/polling/mempools/aruba-instant.inc.php @@ -0,0 +1,46 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 Timothy Willey + * @author Timothy Willey + */ +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 diff --git a/includes/polling/os/aruba-instant.inc.php b/includes/polling/os/aruba-instant.inc.php new file mode 100644 index 000000000000..e7a4e30e3e73 --- /dev/null +++ b/includes/polling/os/aruba-instant.inc.php @@ -0,0 +1,30 @@ +. + * + * @package LibreNMS + * @link http://librenms.org + * @copyright 2019 Timothy Willey + * @author Timothy Willey + */ +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'])); diff --git a/mibs/arubaos/AI-AP-MIB b/mibs/arubaos/AI-AP-MIB index afaa083cbbe1..d78fb71d6501 100644 --- a/mibs/arubaos/AI-AP-MIB +++ b/mibs/arubaos/AI-AP-MIB @@ -1,4 +1,4 @@ ---- ArubaOS 6.5.2.0_59123 +--- ArubaOS 8.4.0.0_68230 AI-AP-MIB DEFINITIONS ::= BEGIN IMPORTS @@ -31,12 +31,12 @@ aiEnterpriseMibModules FROM ARUBA-MIB; - aiMIB MODULE-IDENTITY + aiMIB MODULE-IDENTITY LAST-UPDATED "0804160206Z" ORGANIZATION "Aruba Wireless Networks" CONTACT-INFO "Postal: 1322 Crossman Avenue - Sunnyvale, CA 94089 + Sunnyvale, CA 94089 E-mail: dl-support@arubanetworks.com Phone: +1 408 227 4500" DESCRIPTION @@ -54,526 +54,548 @@ ArubaEnableValue ::= TEXTUAL-CONVENTION ArubaFrameType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION + STATUS current + DESCRIPTION "Represents the Frame type." SYNTAX INTEGER { - associateRequest(0), - associateResponse(1), - reassociateRequest(2), - reassociateResponse(3), - probeRequest(4), - probeResponse(5), - beacon(8), - atim(9), - disassociate(10), - auth(11), - deauth(12) - } + associateRequest(0), + associateResponse(1), + reassociateRequest(2), + reassociateResponse(3), + probeRequest(4), + probeResponse(5), + beacon(8), + atim(9), + disassociate(10), + auth(11), + deauth(12) + } ArubaPhyType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the PHY-type of the access point or client. Wired clients will - show 'wired' in user MIB entries. - " - SYNTAX INTEGER { - dot11a(1), - dot11b(2), - dot11g(3), - dot11ag(4), - wired(5) - } - + STATUS current + DESCRIPTION + " Represents the PHY-type of the access point or client. Wired clients will + show 'wired' in user MIB entries. + " + SYNTAX INTEGER { + dot11a(1), + dot11b(2), + dot11g(3), + dot11ag(4), + wired(5) + } + ArubaHTMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the HT status of the access point or client. - " - SYNTAX INTEGER { - none(1), - ht20(2), - ht40(3) - } - + STATUS current + DESCRIPTION + " Represents the HT status of the access point or client. + " + SYNTAX INTEGER { + none(1), + ht20(2), + ht40(3) + } + ArubaHTExtChannel ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the extension channel offset relative to the current channel." - SYNTAX INTEGER { - none(1), - above(2), - below(3) - } - + STATUS current + DESCRIPTION + " Represents the extension channel offset relative to the current channel." + SYNTAX INTEGER { + none(1), + above(2), + below(3) + } + ArubaMonEncryptionType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the encryption type supported by the access point." - SYNTAX INTEGER { - open(0), - wep(1), - wpa(2), - wpa2(3) - } + STATUS current + DESCRIPTION + " Represents the encryption type supported by the access point." + SYNTAX INTEGER { + open(0), + wep(1), + wpa(2), + wpa2(3), + wpa3(4) + } ArubaMonEncryptionCipher ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the WPA encryption cipher supported by the access point." - SYNTAX INTEGER { - none(0), - wep40(1), - wep104(2), - tkip(3), + STATUS current + DESCRIPTION + " Represents the WPA encryption cipher supported by the access point." + SYNTAX INTEGER { + none(0), + wep40(1), + wep104(2), + tkip(3), aesccmp(4), - other(5) - } + other(5), + gcm256(6) + } ArubaMonAuthAlgorithm ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the WPA authentication algorithm supported by the access point." - SYNTAX INTEGER { - none(0), - psk(1), - dot1x(2), - other(3) - } - + STATUS current + DESCRIPTION + " Represents the WPA authentication algorithm supported by the access point." + SYNTAX INTEGER { + none(0), + psk(1), + dot1x(2), + ft8021x(3), + ftpsk(4), + dot1x256(5), + psk256(6), + tdls(7), + sae(8), + ftsae(9), + other(10), + suiteb(11), + owe(12) + } + ArubaSwitchRole ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the role of the controller" - SYNTAX INTEGER { - master(1), - local(2), - backupmaster(3) - } - + STATUS current + DESCRIPTION + " Represents the role of the controller" + SYNTAX INTEGER { + master(1), + local(2), + backupmaster(3) + } + ArubaSupportStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents if a feature is supported or unsupported." - SYNTAX INTEGER { - unsupported(1), - supported(2) - } - + STATUS current + DESCRIPTION + " Represents if a feature is supported or unsupported." + SYNTAX INTEGER { + unsupported(1), + supported(2) + } + ArubaActiveState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents if a feature is active or inactive." - SYNTAX INTEGER { - active(1), - inactive(2) - } - + STATUS current + DESCRIPTION + " Represents if a feature is active or inactive." + SYNTAX INTEGER { + active(1), + inactive(2) + } + ArubaACLDomain ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents both the source and destination to which an ACL rule will - be applied. - " - SYNTAX INTEGER { - alias(1), - any(2), - user(3), - host(4), - network(5) - } - + STATUS current + DESCRIPTION + " Represents both the source and destination to which an ACL rule will + be applied. + " + SYNTAX INTEGER { + alias(1), + any(2), + user(3), + host(4), + network(5) + } + ArubaACLNetworkServiceType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the network service in an ACL Rule." - SYNTAX INTEGER { - alias(1), - any(2), - tcp(3), - udp(4), - protocol(5) - } - + STATUS current + DESCRIPTION + " Represents the network service in an ACL Rule." + SYNTAX INTEGER { + alias(1), + any(2), + tcp(3), + udp(4), + protocol(5) + } + ArubaACLAction ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the Actions in an ACL rule." - SYNTAX INTEGER { - deny(1), - permit(2), - srcNAT(3), - dstNAT(4), - redirect(5) - } - + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX INTEGER { + deny(1), + permit(2), + srcNAT(3), + dstNAT(4), + redirect(5) + } + ArubaDaysOfWeek ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the Actions in an ACL rule." - SYNTAX INTEGER { - sun(1), - mon(2), - tue(3), - wed(4), - thu(5), - fri(6), - sat(7) - } - + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX INTEGER { + sun(1), + mon(2), + tue(3), + wed(4), + thu(5), + fri(6), + sat(7) + } + ArubaAuthenticationMethods ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Authentication Method." - SYNTAX INTEGER { - none(0), - web(1), - mac(2), - vpn(3), - dot1x(4), - kerberos(5), - secureId(7), - pubcookie(15), - xSec(16), - xSecMachine(17), - via-vpn(28), - other(255) - } - + STATUS current + DESCRIPTION + " Authentication Method." + SYNTAX INTEGER { + none(0), + web(1), + mac(2), + vpn(3), + dot1x(4), + kerberos(5), + secureId(7), + pubcookie(15), + xSec(16), + xSecMachine(17), + via-vpn(28), + other(255) + } + ArubaSubAuthenticationMethods ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Sub Authentication Method (e.g. EAP type)." - SYNTAX INTEGER { - authPAP(1), - authCHAP(2), - authMSCHAP(3), - authMSCHAPv2(4), - eapTLS(5), - eapTTLS(6), - eapLEAP(7), - eapMD5(8), - eapPEAP(9) - } + STATUS current + DESCRIPTION + " Sub Authentication Method (e.g. EAP type)." + SYNTAX INTEGER { + authPAP(1), + authCHAP(2), + authMSCHAP(3), + authMSCHAPv2(4), + eapTLS(5), + eapTTLS(6), + eapLEAP(7), + eapMD5(8), + eapPEAP(9) + } ArubaEncryptionType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Encryption Method." - SYNTAX INTEGER { - none(0), - static-wep(1), - dynamic-wep(2), - wpa-psk-tkip(3), - wpa-tkip(4), - wpa-psk-aes(5), - wpa-aes(6), - wpa2-psk-tkip(7), - wpa2-tkip(8), - wpa2-psk-aes(9), - wpa2-aes(10), + STATUS current + DESCRIPTION + " Encryption Method." + SYNTAX INTEGER { + none(0), + static-wep(1), + dynamic-wep(2), + wpa-psk-tkip(3), + wpa-tkip(4), + wpa-psk-aes(5), + wpa-aes(6), + wpa2-psk-tkip(7), + wpa2-tkip(8), + wpa2-psk-aes(9), + wpa2-aes(10), xSec(11), bSec-128(12), bSec-256(13), aes-128-cmac(14), - unknown(15) - } - + unknown(15), + ft-psk(16), + ft-8021x(17), + wpa3-cnsa(18), + wpa3-aes-gmac-256(19), + owe-aes(20), + wpa3-sae-aes(21) + } + ArubaUserForwardMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " User Forwarding Mode." - SYNTAX INTEGER { - tunnel-encrypted(0), + STATUS current + DESCRIPTION + " User Forwarding Mode." + SYNTAX INTEGER { + tunnel-encrypted(0), bridge(1), - tunnel-decrypted(2), - split-tunnel(3) - } + tunnel-decrypted(2), + split-tunnel(3) + } ArubaRogueApType ::= TEXTUAL-CONVENTION - STATUS current + STATUS current DESCRIPTION - "Represents the Rogue AP Type. " + "Represents the Rogue AP Type. " SYNTAX INTEGER { - valid(1), - interfering(2), - unsecure(3), - dos(4), - unknown(5), - knownInterfering(6), - suspectedUnsecure(7) - } - + valid(1), + interfering(2), + unsecure(3), + dos(4), + unknown(5), + knownInterfering(6), + suspectedUnsecure(7) + } + ArubaAPMatchType ::= TEXTUAL-CONVENTION - STATUS current + STATUS current DESCRIPTION - "Represents the match type of a suspected rogue AP. " + "Represents the match type of a suspected rogue AP. " SYNTAX INTEGER { - unknown(0), - configuredWiredMac(1), - ethernetWiredMac(2), - apWiredMac(3), - externalWiredMac(4), - manual(5), - baseBSSIDOverride(6), - mms(7), - ethernetGatewayWiredMac(8), - classificationDisabled(9), - apBSSID(10), - propagatedEthernetWiredMac(11), - apRule(12), - systemWiredMac(13), - systemGatewayMac(14) - } + unknown(0), + configuredWiredMac(1), + ethernetWiredMac(2), + apWiredMac(3), + externalWiredMac(4), + manual(5), + baseBSSIDOverride(6), + mms(7), + ethernetGatewayWiredMac(8), + classificationDisabled(9), + apBSSID(10), + propagatedEthernetWiredMac(11), + apRule(12), + systemWiredMac(13), + systemGatewayMac(14) + } ArubaAPMatchMethod ::= TEXTUAL-CONVENTION - STATUS current + STATUS current DESCRIPTION - "Represents the match method of a suspected rogue AP. " + "Represents the match method of a suspected rogue AP. " SYNTAX INTEGER { - notApplicable(0), - exactMatch(1), - plusOneMatch(2), - minusOneMatch(3), - ouiMatch(4) - } + notApplicable(0), + exactMatch(1), + plusOneMatch(2), + minusOneMatch(3), + ouiMatch(4) + } ArubaStationType ::= TEXTUAL-CONVENTION - STATUS current + STATUS current DESCRIPTION - "Represents the station type. " + "Represents the station type. " SYNTAX INTEGER { - valid(1), - interfering(2), - dos(3) - } - + valid(1), + interfering(2), + dos(3) + } + ArubaEncryptionMethods ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the Actions in an ACL rule." + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." SYNTAX BITS{ - disabled(0), - static-wep(1), - dynamic-wep(2), - static-wpa(3), - dynamic-wpa(4), - wpa2-psk-aes(5), - wpa2-8021x-aes(6), - wpa2PreAuth(7), - xsec(8), - wpa-psk-aes(9), - wpa-aes(10), - wpa2-psk-tkip(11), - wpa2-8021x-tkip(12) - } + disabled(0), + static-wep(1), + dynamic-wep(2), + static-wpa(3), + dynamic-wpa(4), + wpa2-psk-aes(5), + wpa2-8021x-aes(6), + wpa2PreAuth(7), + xsec(8), + wpa-psk-aes(9), + wpa-aes(10), + wpa2-psk-tkip(11), + wpa2-8021x-tkip(12), + bSec-128(13), + bSec-256(14), + owe-aes(16), + wpa3-sae-aes(17), + wpa3-cnsa(18) + } ArubaHashAlgorithms ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the Actions in an ACL rule." - SYNTAX INTEGER { - md5(1), - sha(2) - } - -ArubaVlanValidRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the Valid Vlan Id Range." - SYNTAX INTEGER(1..4095) - + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX INTEGER { + md5(1), + sha(2) + } + +ArubaVlanValidRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the Valid Vlan Id Range." + SYNTAX INTEGER(1..4095) + ArubaPortMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the controller port mode." - SYNTAX INTEGER { - access(1), - dot1q(2) - } - + STATUS current + DESCRIPTION + "Represents the controller port mode." + SYNTAX INTEGER { + access(1), + dot1q(2) + } + ArubaDot1dState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the controller port spanning tree state." - SYNTAX INTEGER { - disabled(1), - blocked(2), - listening(3), - learning(4), - forwarding(5) - } - + STATUS current + DESCRIPTION + "Represents the controller port spanning tree state." + SYNTAX INTEGER { + disabled(1), + blocked(2), + listening(3), + learning(4), + forwarding(5) + } + ArubaPoeState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the POE mode." - SYNTAX INTEGER { - disabled(1), - enabled(2), - enabledCisco(3), + STATUS current + DESCRIPTION + "Represents the POE mode." + SYNTAX INTEGER { + disabled(1), + enabled(2), + enabledCisco(3), notAvailable(4) - } - + } + ArubaCardType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Type of the hardware module. - " - SYNTAX INTEGER { - lc1(1), - lc2(2), - sc1(3), - sc2(4), - sw2400(5), - sw800(6), - sw200(7), - m3mk1(8), - sw3200(9), - sw3400(10), - sw3600(11), - sw650(12), - sw651(13), - reserved1(14), - reserved2(15), - sw620(16) - } - + STATUS current + DESCRIPTION + " + Type of the hardware module. + " + SYNTAX INTEGER { + lc1(1), + lc2(2), + sc1(3), + sc2(4), + sw2400(5), + sw800(6), + sw200(7), + m3mk1(8), + sw3200(9), + sw3400(10), + sw3600(11), + sw650(12), + sw651(13), + reserved1(14), + reserved2(15), + sw620(16) + } + ArubaESIServerMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The mode of the ESI server. - " - SYNTAX INTEGER { - bridged(1), - routed(2), - nat(3) - } - + STATUS current + DESCRIPTION + " + The mode of the ESI server. + " + SYNTAX INTEGER { + bridged(1), + routed(2), + nat(3) + } + ArubaESIServerStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The status of the ESI server. - " - SYNTAX INTEGER { - up(1), - down(2) - } + STATUS current + DESCRIPTION + " + The status of the ESI server. + " + SYNTAX INTEGER { + up(1), + down(2) + } ArubaIfType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The type of interface referred to by the value of ifIndex. - " - SYNTAX INTEGER { - port(1), - vlan(2), - tunnel(3), - loopback(4) - } + STATUS current + DESCRIPTION + " + The type of interface referred to by the value of ifIndex. + " + SYNTAX INTEGER { + port(1), + vlan(2), + tunnel(3), + loopback(4) + } ArubaVoipProtocolType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The type of VoIP protocols supported. - " - SYNTAX INTEGER{ - sccp(1), - svp(2), - vocera(3), - sip(4), - unknown(10) - } + STATUS current + DESCRIPTION + " + The type of VoIP protocols supported. + " + SYNTAX INTEGER{ + sccp(1), + svp(2), + vocera(3), + sip(4), + unknown(10) + } ArubaAccessPointMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The mode of the access point. - " - SYNTAX INTEGER{ - airMonitor(1), - accessPoint(2), - accessPointAndMonitor(3), - meshPortal(4), - meshPoint(5), - rfprotectSensor(6), - spectrumSensor(7) - } + STATUS current + DESCRIPTION + " + The mode of the access point. + " + SYNTAX INTEGER{ + airMonitor(1), + accessPoint(2), + accessPointAndMonitor(3), + meshPortal(4), + meshPoint(5), + rfprotectSensor(6), + spectrumSensor(7) + } ArubaAuthServerType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The type of the auth server. - " + STATUS current + DESCRIPTION + " + The type of the auth server. + " SYNTAX INTEGER{ - internaldb(1), - radius(2), - ldap(3), - kerberos(4), - tacacs(5) - } + internaldb(1), + radius(2), + ldap(3), + kerberos(4), + tacacs(5) + } ArubaAddressType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Address Type. - " - SYNTAX INTEGER{ - srcAddress(1), - dstAddress(2), - bssid(3) - } + STATUS current + DESCRIPTION + " + Address Type. + " + SYNTAX INTEGER{ + srcAddress(1), + dstAddress(2), + bssid(3) + } ArubaBlackListReason ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Black List Reason. - " - SYNTAX INTEGER { - userDefined(1), - mitmAttack(2), - authFailure(3), - pingFlood(4), - sessionFlood(5), - synFlood(6), - sessionBlacklist(7), - ipSpoofing(8), - esiBlacklist(9), - other(100) - } + STATUS current + DESCRIPTION + " + Black List Reason. + " + SYNTAX INTEGER { + userDefined(1), + mitmAttack(2), + authFailure(3), + pingFlood(4), + sessionFlood(5), + synFlood(6), + sessionBlacklist(7), + ipSpoofing(8), + esiBlacklist(9), + other(100) + } ArubaDBType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - DataBase Type. - " - SYNTAX INTEGER { - mssql(1), - mysql(2) - } + STATUS current + DESCRIPTION + " + DataBase Type. + " + SYNTAX INTEGER { + mssql(1), + mysql(2) + } ArubaVrrpState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - DataBase Type. - " - SYNTAX INTEGER { - initialize(1), - backup(2), - master(3) - } + STATUS current + DESCRIPTION + " + DataBase Type. + " + SYNTAX INTEGER { + initialize(1), + backup(2), + master(3) + } ArubaOperStateValue ::= TEXTUAL-CONVENTION @@ -591,250 +613,250 @@ ArubaAntennaSetting ::= TEXTUAL-CONVENTION SYNTAX INTEGER { notPresent(1), enabled(2), disabled(3) } ArubaAPStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The status of the access point. - " - SYNTAX INTEGER { up(1), down(2) } + STATUS current + DESCRIPTION + " + The status of the access point. + " + SYNTAX INTEGER { up(1), down(2) } ArubaPortSpeed ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Port Speed. - " - SYNTAX INTEGER { speed10Mbps(1), - speed100Mbps(2), - speed1000Mbps(3), - speedAuto(4), - speed10Gbps(5) - } + STATUS current + DESCRIPTION + " + Port Speed. + " + SYNTAX INTEGER { speed10Mbps(1), + speed100Mbps(2), + speed1000Mbps(3), + speedAuto(4), + speed10Gbps(5) + } ArubaPortDuplex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Port Duplexity. - " - SYNTAX INTEGER { half(1), - full(2), - auto(3) - } + STATUS current + DESCRIPTION + " + Port Duplexity. + " + SYNTAX INTEGER { half(1), + full(2), + auto(3) + } ArubaPortType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Port Type. - " - SYNTAX INTEGER { fastethernet(1), - gigabitethernet(2), - xgigabitethernet(3) - } + STATUS current + DESCRIPTION + " + Port Type. + " + SYNTAX INTEGER { fastethernet(1), + gigabitethernet(2), + xgigabitethernet(3) + } ArubaEnet1Mode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents the Mode of the Ethernet port on the Access Point" - SYNTAX INTEGER { - activeStandby(1), - tunnel(2), - bridge(3), - notApplicable(4), - split(5) - } - + STATUS current + DESCRIPTION + " Represents the Mode of the Ethernet port on the Access Point" + SYNTAX INTEGER { + activeStandby(1), + tunnel(2), + bridge(3), + notApplicable(4), + split(5) + } + ArubaUnprovisionedStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents whether the AP is provisioned or not." - SYNTAX INTEGER { - yes(1), - no(2) - } - + STATUS current + DESCRIPTION + " Represents whether the AP is provisioned or not." + SYNTAX INTEGER { + yes(1), + no(2) + } + ArubaMonitorMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " Represents whether the AP has any radios dedicated to monitoring." - SYNTAX INTEGER { - unknown(0), - all(1), - none(2), - mixed(3) - } - + STATUS current + DESCRIPTION + " Represents whether the AP has any radios dedicated to monitoring." + SYNTAX INTEGER { + unknown(0), + all(1), + none(2), + mixed(3) + } + ArubaConfigurationState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Configuration Transfer Types." - SYNTAX INTEGER { - success(1), - error(2) - } - + STATUS current + DESCRIPTION + "Configuration Transfer Types." + SYNTAX INTEGER { + success(1), + error(2) + } + ArubaConfigurationChangeType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Configuration Change Types." - SYNTAX INTEGER { - create(1), - delete(2), - modify(3) - } + STATUS current + DESCRIPTION + "Configuration Change Types." + SYNTAX INTEGER { + create(1), + delete(2), + modify(3) + } ArubaCallStates ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The Call state. - " - SYNTAX INTEGER { - idle(0), - initiated(1), - connecting(2), - delivered(3), - connected(4), - offered(5), - alerting(6), - releasing(7), - cancelling(8), - challenging(9), - transient(10), - blockwait(11), - succ(12), - fail(13), - aborted(14), - blocked(15) - } - + STATUS current + DESCRIPTION + " + The Call state. + " + SYNTAX INTEGER { + idle(0), + initiated(1), + connecting(2), + delivered(3), + connected(4), + offered(5), + alerting(6), + releasing(7), + cancelling(8), + challenging(9), + transient(10), + blockwait(11), + succ(12), + fail(13), + aborted(14), + blocked(15) + } + ArubaVoipProtocol ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - VoIP protocol used - " - SYNTAX INTEGER { - sccp(1), - svp(2), - vocera(3), - sip(9), ua(11) - } + STATUS current + DESCRIPTION + " + VoIP protocol used + " + SYNTAX INTEGER { + sccp(1), + svp(2), + vocera(3), + sip(9), ua(11) + } ArubaVoipRegState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - VoIP registered state - " - SYNTAX INTEGER { - unknown(0), - registering(1), - unregistering(2), - challenge(3), - registered(4), - unregistered(5) - } + STATUS current + DESCRIPTION + " + VoIP registered state + " + SYNTAX INTEGER { + unknown(0), + registering(1), + unregistering(2), + challenge(3), + registered(4), + unregistered(5) + } ArubaVoiceCdrDirection ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - VoIP CDR direction - " - SYNTAX INTEGER { - og(0), - ic(1) - } + STATUS current + DESCRIPTION + " + VoIP CDR direction + " + SYNTAX INTEGER { + og(0), + ic(1) + } ArubaVoiceCacBit ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Voice CAC bit flags - " - SYNTAX BITS { - cacActiveLoadBalancing(0), - cacHighCapThresholdReached(1), - cacHandRsrvThresholdReached(2), - cacPeakCapacityReached(3) - } - + STATUS current + DESCRIPTION + " + Voice CAC bit flags + " + SYNTAX BITS { + cacActiveLoadBalancing(0), + cacHighCapThresholdReached(1), + cacHandRsrvThresholdReached(2), + cacPeakCapacityReached(3) + } + ArubaMeshRole ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - Mesh role - " - SYNTAX INTEGER { - nonmesh(0), - point(1), - portal(2) - } + STATUS current + DESCRIPTION + " + Mesh role + " + SYNTAX INTEGER { + nonmesh(0), + point(1), + portal(2) + } ArubaHTRate ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION + STATUS current + DESCRIPTION "Represents HT rate" SYNTAX INTEGER { - unknown(0), - ht6dot5(1), - ht13(2), - ht13dot5(3), - ht15(4), - ht19dot5(5), - ht26(6), - ht27(7), - ht30(8), - ht39(9), - ht40dot5(10), - ht45(11), - ht52(12), - ht54(13), - ht58dot5(14), - ht60(15), - ht65(16), - ht78(17), - ht81(18), - ht90(19), - ht104(20), - ht108(21), - ht117(22), - ht120(23), - ht121dot5(24), - ht130(25), - ht135(26), - ht150(27), - ht162(28), - ht180(29), - ht216(30), - ht240(31), - ht243(32), - ht270(33), - ht300(34) - } + unknown(0), + ht6dot5(1), + ht13(2), + ht13dot5(3), + ht15(4), + ht19dot5(5), + ht26(6), + ht27(7), + ht30(8), + ht39(9), + ht40dot5(10), + ht45(11), + ht52(12), + ht54(13), + ht58dot5(14), + ht60(15), + ht65(16), + ht78(17), + ht81(18), + ht90(19), + ht104(20), + ht108(21), + ht117(22), + ht120(23), + ht121dot5(24), + ht130(25), + ht135(26), + ht150(27), + ht162(28), + ht180(29), + ht216(30), + ht240(31), + ht243(32), + ht270(33), + ht300(34) + } ArubaUSBStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - USB device status - " - SYNTAX INTEGER { - unknown(0), - notPresent(1), - inactive(2), - active(3) - } + STATUS current + DESCRIPTION + " + USB device status + " + SYNTAX INTEGER { + unknown(0), + notPresent(1), + inactive(2), + active(3) + } ArubaARMChangeReason ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - The reason for ARM based change. - " - SYNTAX INTEGER { + STATUS current + DESCRIPTION + " + The reason for ARM based change. + " + SYNTAX INTEGER { radarDetected(1), radarCleared(2), txHang(3), @@ -855,17 +877,17 @@ ArubaARMChangeReason ::= TEXTUAL-CONVENTION } ArubaAPMasterStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - " - AP status as seen by the master controller + STATUS current + DESCRIPTION + " + AP status as seen by the master controller (used to indicate a status change). - " - SYNTAX INTEGER { - up(1), - down(2), - move(3) - } + " + SYNTAX INTEGER { + up(1), + down(2), + move(3) + } ArubaAPUplinkType ::= TEXTUAL-CONVENTION STATUS current @@ -910,7 +932,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION aiManagedInfoGroup OBJECT IDENTIFIER ::= { aiMIB 3 } - aiVirtualControllerKey OBJECT-TYPE + aiVirtualControllerKey OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -918,7 +940,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Unique Virtual Controller key" ::= { aiInfoGroup 1 } - aiVirtualControllerName OBJECT-TYPE + aiVirtualControllerName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -926,7 +948,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Virtual Controller name" ::= { aiInfoGroup 2 } - aiVirtualControllerOrganization OBJECT-TYPE + aiVirtualControllerOrganization OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -934,7 +956,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Virtual Controller organization" ::= { aiInfoGroup 3 } - aiVirtualControllerVersion OBJECT-TYPE + aiVirtualControllerVersion OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current @@ -943,7 +965,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiInfoGroup 4 } aiVirtualControllerIPAddress OBJECT-TYPE - SYNTAX IpAddress + SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -951,15 +973,14 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiInfoGroup 5 } aiMasterIPAddress OBJECT-TYPE - SYNTAX IpAddress + SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IP Address of AP where virtual controller software is active" ::= { aiInfoGroup 6 } - - aiWlanSSIDTable OBJECT-TYPE + aiWlanSSIDTable OBJECT-TYPE SYNTAX SEQUENCE OF AiWlanSSIDEntry MAX-ACCESS not-accessible STATUS current @@ -967,10 +988,10 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "" ::= { aiInfoGroup 7 } - aiWlanSSIDEntry OBJECT-TYPE + aiWlanSSIDEntry OBJECT-TYPE SYNTAX AiWlanSSIDEntry - MAX-ACCESS not-accessible - STATUS current + MAX-ACCESS not-accessible + STATUS current DESCRIPTION " " INDEX { aiSSIDIndex } @@ -978,9 +999,11 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION AiWlanSSIDEntry ::= SEQUENCE { - aiSSIDIndex Integer32, - aiSSID DisplayString, - aiSSIDStatus INTEGER + aiSSIDIndex Integer32, + aiSSID OCTET STRING, + aiSSIDStatus INTEGER, + aiSSIDClientNum Integer32, + aiSSIDHide INTEGER } aiSSIDIndex OBJECT-TYPE @@ -992,7 +1015,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiWlanSSIDEntry 1 } aiSSID OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..64)) + SYNTAX OCTET STRING (SIZE(0..64)) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1001,7 +1024,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION aiSSIDStatus OBJECT-TYPE SYNTAX INTEGER { - enable(0), + enable(0), disable(1) } MAX-ACCESS read-only @@ -1010,51 +1033,173 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Indicates the whether the SSID is enabled(0) or disabled(1)" ::= { aiWlanSSIDEntry 3 } + aiSSIDClientNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Client Number of per SSID" + ::= { aiWlanSSIDEntry 4 } - aiAccessPointTable OBJECT-TYPE - SYNTAX SEQUENCE OF AiAccessPointEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This contains all access points connected to the - virtual controller. This table is empty on AP where - virtual controller is not active" - ::= { aiStateGroup 1 } - - aiAccessPointEntry OBJECT-TYPE - SYNTAX AiAccessPointEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - " " - INDEX { aiAPMACAddress } - ::= { aiAccessPointTable 1 } + aiSSIDHide OBJECT-TYPE + SYNTAX INTEGER { + enable(1), + disable(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the whether the SSID is hide enabled(1) or disabled(0)" + ::= { aiWlanSSIDEntry 5 } - AiAccessPointEntry ::= - SEQUENCE { - aiAPMACAddress MacAddress, - aiAPName DisplayString, - aiAPIPAddress IpAddress, - aiAPSerialNum DisplayString, - aiAPModel OBJECT IDENTIFIER, - aiAPModelName DisplayString, - aiAPCPUUtilization Integer32, - aiAPMemoryFree Integer32, - aiAPUptime TimeTicks, - aiAPTotalMemory Integer32, - aiAPStatus INTEGER - } + aiMeshTable OBJECT-TYPE + SYNTAX SEQUENCE OF AiMeshEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { aiInfoGroup 15 } - aiAPMACAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-only + aiMeshEntry OBJECT-TYPE + SYNTAX AiMeshEntry + MAX-ACCESS not-accessible STATUS current DESCRIPTION - "Access Point MAC Address" - ::= { aiAccessPointEntry 1 } + " " + INDEX { aiMeshIndex } + ::= { aiMeshTable 1} - aiAPName OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..64)) + AiMeshEntry ::= + SEQUENCE { + aiMeshIndex Integer32, + aiMeshPointMac MacAddress, + aiMeshPortalMac DisplayString, + aiMeshChannel DisplayString, + aiMeshAvgRssi Integer32, + aiMeshHops Integer32, + aiMeshAge Integer32, + aiMeshCost DisplayString, + aiMeshRelation DisplayString + } + + aiMeshIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Index" + ::= { aiMeshEntry 1 } + + aiMeshPointMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Point Mac Address" + ::= { aiMeshEntry 2 } + + aiMeshPortalMac OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Portal Mac Address" + ::= { aiMeshEntry 3 } + + aiMeshChannel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Channel" + ::= { aiMeshEntry 4 } + + aiMeshAvgRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Average RSSI" + ::= { aiMeshEntry 5 } + + aiMeshHops OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Hops" + ::= { aiMeshEntry 6 } + + aiMeshAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Age" + ::= { aiMeshEntry 7 } + + aiMeshCost OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Cost" + ::= { aiMeshEntry 8 } + + aiMeshRelation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mesh Relation" + ::= { aiMeshEntry 9 } + + aiAccessPointTable OBJECT-TYPE + SYNTAX SEQUENCE OF AiAccessPointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This contains all access points connected to the + virtual controller. This table is empty on AP where + virtual controller is not active" + ::= { aiStateGroup 1 } + + aiAccessPointEntry OBJECT-TYPE + SYNTAX AiAccessPointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { aiAPMACAddress } + ::= { aiAccessPointTable 1 } + + AiAccessPointEntry ::= + SEQUENCE { + aiAPMACAddress MacAddress, + aiAPName DisplayString, + aiAPIPAddress IpAddress, + aiAPSerialNum DisplayString, + aiAPModel OBJECT IDENTIFIER, + aiAPModelName DisplayString, + aiAPCPUUtilization Integer32, + aiAPMemoryFree Integer32, + aiAPUptime TimeTicks, + aiAPTotalMemory Integer32, + aiAPStatus INTEGER, + aiAPHwopmode INTEGER, + aiAPRole DisplayString + } + + aiAPMACAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Access Point MAC Address" + ::= { aiAccessPointEntry 1 } + + aiAPName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1062,7 +1207,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiAccessPointEntry 2 } aiAPIPAddress OBJECT-TYPE - SYNTAX IpAddress + SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1136,32 +1281,55 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Indicates the Access Point Status" ::= { aiAccessPointEntry 11 } + aiAPHwopmode OBJECT-TYPE + SYNTAX INTEGER { + default(0), + rsdbsplit(1), + rsdb5g(2), + rsdb2g(3), + dual5gon(4), + dual5goff(5) + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP HW OPMODE" + ::= { aiAccessPointEntry 12 } + + aiAPRole OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP State" + ::= { aiAccessPointEntry 13 } - aiRadioTable OBJECT-TYPE + aiRadioTable OBJECT-TYPE SYNTAX SEQUENCE OF AiRadioEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains all radios of all access points connected to the virtual controller. This table is indexed by Access Point MAC Address and radio number" - ::= { aiStateGroup 2 } + ::= { aiStateGroup 2 } - aiRadioEntry OBJECT-TYPE - SYNTAX AiRadioEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION + aiRadioEntry OBJECT-TYPE + SYNTAX AiRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION " " INDEX { aiRadioAPMACAddress, aiRadioIndex } - ::= { aiRadioTable 1 } + ::= { aiRadioTable 1 } AiRadioEntry ::= SEQUENCE { aiRadioAPMACAddress MacAddress, aiRadioIndex Integer32, aiRadioMACAddress MacAddress, - aiRadioChannel Integer32, + aiRadioChannel DisplayString, aiRadioTransmitPower Integer32, aiRadioNoiseFloor Integer32, aiRadioUtilization4 Integer32, @@ -1177,11 +1345,13 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION aiRadioRxMgmtFrames Counter32, aiRadioRxBad Counter32, aiRadioPhyEvents Counter32, - aiRadioStatus INTEGER + aiRadioStatus INTEGER, + aiRadioClientNum Integer32, + aiRadioMode DisplayString } aiRadioAPMACAddress OBJECT-TYPE - SYNTAX MacAddress + SYNTAX MacAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1198,15 +1368,16 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION aiRadioMACAddress OBJECT-TYPE - SYNTAX MacAddress + SYNTAX MacAddress MAX-ACCESS read-only STATUS current DESCRIPTION "Radio MAC Address" ::= { aiRadioEntry 3 } + aiRadioChannel OBJECT-TYPE - SYNTAX Integer32 + SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1352,24 +1523,40 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Radio state of AP - UP/DOWN" ::= { aiRadioEntry 20 } - aiWlanTable OBJECT-TYPE + aiRadioClientNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Client Number of per Radio" + ::= { aiRadioEntry 21 } + + aiRadioMode OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Radio state of AP - access/monitor" + ::= { aiRadioEntry 22 } + + aiWlanTable OBJECT-TYPE SYNTAX SEQUENCE OF AiWlanEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains all BSSIDs active on this virtual - controller. This table is indexed by Access Point MAC + controller. This table is indexed by Access Point MAC Address and a WLAN Index" - ::= { aiStateGroup 3 } + ::= { aiStateGroup 3 } - aiWlanEntry OBJECT-TYPE - SYNTAX AiWlanEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION + aiWlanEntry OBJECT-TYPE + SYNTAX AiWlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION " " INDEX { aiWlanAPMACAddress, aiWlanIndex } - ::= { aiWlanTable 1 } + ::= { aiWlanTable 1 } AiWlanEntry ::= SEQUENCE { @@ -1386,7 +1573,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION } aiWlanAPMACAddress OBJECT-TYPE - SYNTAX MacAddress + SYNTAX MacAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1411,7 +1598,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiWlanEntry 3 } aiWlanMACAddress OBJECT-TYPE - SYNTAX MacAddress + SYNTAX MacAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1466,26 +1653,26 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION "Received data bytes" ::= { aiWlanEntry 10 } - aiClientTable OBJECT-TYPE + aiClientTable OBJECT-TYPE SYNTAX SEQUENCE OF AiClientEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains information about all clients connected to the virtual controller. When a client roams - from one access point to another, all counters in this + from one access point to another, all counters in this table are reset to 0. aiClientUptime also get reset on a mobility event" - ::= { aiStateGroup 4 } + ::= { aiStateGroup 4 } - aiClientEntry OBJECT-TYPE - SYNTAX AiClientEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION + aiClientEntry OBJECT-TYPE + SYNTAX AiClientEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION " " INDEX { aiClientMACAddress } - ::= { aiClientTable 1 } + ::= { aiClientTable 1 } AiClientEntry ::= SEQUENCE { @@ -1508,7 +1695,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION } aiClientMACAddress OBJECT-TYPE - SYNTAX MacAddress + SYNTAX MacAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1516,7 +1703,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiClientEntry 1 } aiClientWlanMACAddress OBJECT-TYPE - SYNTAX MacAddress + SYNTAX MacAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1524,7 +1711,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiClientEntry 2 } aiClientIPAddress OBJECT-TYPE - SYNTAX IpAddress + SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1533,7 +1720,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION aiClientAPIPAddress OBJECT-TYPE - SYNTAX IpAddress + SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1638,7 +1825,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= { aiClientEntry 16 } ---- Begining of voice client location entry +--- Begining of voice client location entry aiVoiceClientTable OBJECT-TYPE SYNTAX SEQUENCE OF AiVoiceClientEntry @@ -1652,14 +1839,14 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION SYNTAX AiVoiceClientEntry MAX-ACCESS not-accessible STATUS current - DESCRIPTION + DESCRIPTION "Entry of a voice client" INDEX { aiClientMac } ::= { aiVoiceClientTable 1} - + AiVoiceClientEntry ::= SEQUENCE { - aiClientMac MacAddress, + aiClientMac MacAddress, aiClientIP IpAddress, aiClientAPMac MacAddress, aiClientAPName DisplayString @@ -1681,7 +1868,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION DESCRIPTION "IP address of voice client" ::= { aiVoiceClientEntry 2 } - + aiClientAPMac OBJECT-TYPE SYNTAX MacAddress MAX-ACCESS read-only @@ -1701,8 +1888,105 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION --- End of voice client location entry - aiManagedModeSinceLastSync OBJECT-TYPE - SYNTAX DisplayString +--- Beginning of Interfer AP entry + aiInterferAccessPointTable OBJECT-TYPE + SYNTAX SEQUENCE OF AiInterferAccessPointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This contains all interfer access points infomation" + ::= { aiInfoGroup 8 } + + aiInterferAccessPointEntry OBJECT-TYPE + SYNTAX AiInterferAccessPointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " " + INDEX { aiInterferAPIndex } + ::= { aiInterferAccessPointTable 1 } + + AiInterferAccessPointEntry ::= + SEQUENCE { + aiInterferAPIndex Integer32, + aiInterferAPBSSID MacAddress, + aiInterferAPESSID OCTET STRING, + aiInterferAPChannel DisplayString, + aiInterferAPPhyType DisplayString, + aiInterferAPEncr DisplayString, + aiInterferAPAvgSnr Integer32, + aiInterferAPType DisplayString + } + + aiInterferAPIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point Index" + ::= { aiInterferAccessPointEntry 1 } + + aiInterferAPBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point MAC" + ::= { aiInterferAccessPointEntry 2 } + + aiInterferAPESSID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point ESSID" + ::= { aiInterferAccessPointEntry 3 } + + aiInterferAPChannel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point Channel" + ::= { aiInterferAccessPointEntry 4 } + + aiInterferAPPhyType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point Phy Type" + ::= { aiInterferAccessPointEntry 5 } + + aiInterferAPEncr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point Encryption" + ::= { aiInterferAccessPointEntry 6 } + + + aiInterferAPAvgSnr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point Average Snr" + ::= { aiInterferAccessPointEntry 7 } + + aiInterferAPType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interfer Access Point AP Type" + ::= { aiInterferAccessPointEntry 8 } + +--- End of Interfer AP entry + + aiManagedModeSinceLastSync OBJECT-TYPE + SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION @@ -1713,3085 +1997,3003 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION -- aiTrapsGroup -- This group defines all the traps generated by the switch. - aiTrapsGroup OBJECT IDENTIFIER ::= { aiMIB 200 } + aiTrapsGroup OBJECT IDENTIFIER ::= { aiMIB 200 } --Trap Object Group contains objects used in the traps. - aiTrapObjectsGroup OBJECT IDENTIFIER ::= { aiTrapsGroup 1 } + aiTrapObjectsGroup OBJECT IDENTIFIER ::= { aiTrapsGroup 1 } --Trap Definitions Group contains Traps definitions. - aiTrapDefinitionsGroup OBJECT IDENTIFIER ::= { aiTrapsGroup 2 } + aiTrapDefinitionsGroup OBJECT IDENTIFIER ::= { aiTrapsGroup 2 } - wlsxTrapAPMacAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate + wlsxTrapAPMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the wired MAC address of an access point, for which the trap is being raised. - " - ::= {aiTrapObjectsGroup 1 } - - wlsxTrapAPIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate + " + ::= {aiTrapObjectsGroup 1 } + + wlsxTrapAPIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the IP address of an access point, for which the trap is being raised. - " - ::= {aiTrapObjectsGroup 2 } - - wlsxTrapAPBSSID OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 2 } + + wlsxTrapAPBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the BSSID of the access point, for which the trap is being raised. - " - ::= {aiTrapObjectsGroup 3 } - - wlsxTrapEssid OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 3 } + + wlsxTrapEssid OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the SSID of the access point, for which the trap is being raised. - " - ::= {aiTrapObjectsGroup 4 } - - wlsxTrapTargetAPBSSID OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 4 } + + wlsxTrapTargetAPBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the BSSID of the access point, for which we are raising the trap. If an Air Monitor is sending the trap then this will indicate AP. If an access point is sending the trap, then it will point to itself. - " - ::= {aiTrapObjectsGroup 5 } - - wlsxTrapTargetAPSSID OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 5 } + + wlsxTrapTargetAPSSID OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the SSID of the access point, for which the trap is being raised. If an Air Monitor is sending the trap then this will indicate AP. If an access point is sending the trap, then it will point to itself. - " - ::= {aiTrapObjectsGroup 6 } - - wlsxTrapTargetAPChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 6 } + + wlsxTrapTargetAPChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the channel of the access point, for which the trap is being raised. If an wlsxr monitor is sending the trap then this will indicate AP. If an access point is sending the trap, then it will point to itself. - " - ::= {aiTrapObjectsGroup 7 } - - wlsxTrapNodeMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 7 } + + wlsxTrapNodeMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the MAC address of a node. - " - ::= {aiTrapObjectsGroup 8 } - - wlsxTrapSourceMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 8 } + + wlsxTrapSourceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the MAC address of the source. - " - ::= {aiTrapObjectsGroup 9 } - - wlsxReceiverMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 9 } + + wlsxReceiverMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the MAC address of the receiver. - " - ::= {aiTrapObjectsGroup 10 } - - wlsxTrapTransmitterMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 10 } + + wlsxTrapTransmitterMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the MAC address of the transmitter. - " - ::= {aiTrapObjectsGroup 11 } - - wlsxTrapReceiverMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 11 } + + wlsxTrapReceiverMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the MAC address of the receiver. - " - ::= {aiTrapObjectsGroup 12 } - - wlsxTrapSnr OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 12 } + + wlsxTrapSnr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Signal to Noise ratio. - " - ::= {aiTrapObjectsGroup 13 } - - wlsxTrapSignatureName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Signature Name. - " - ::= {aiTrapObjectsGroup 14 } - - wlsxTrapFrameType OBJECT-TYPE - SYNTAX ArubaFrameType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Frame Type - " - ::= {aiTrapObjectsGroup 15 } - - wlsxTrapAddressType OBJECT-TYPE - SYNTAX ArubaAddressType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Address type. - " - ::= {aiTrapObjectsGroup 16 } - - wlsxTrapAPLocation OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Location of the AP. - " - ::= {aiTrapObjectsGroup 17 } - - wlsxTrapAPChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Current Channel. - " - ::= {aiTrapObjectsGroup 18 } - - wlsxTrapAPTxPower OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the AP Transmit Power. - " - ::= {aiTrapObjectsGroup 19 } - - wlsxTrapMatchedMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 13 } + + wlsxTrapSignatureName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Signature Name. + " + ::= {aiTrapObjectsGroup 14 } + + wlsxTrapFrameType OBJECT-TYPE + SYNTAX ArubaFrameType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Frame Type + " + ::= {aiTrapObjectsGroup 15 } + + wlsxTrapAddressType OBJECT-TYPE + SYNTAX ArubaAddressType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Address type. + " + ::= {aiTrapObjectsGroup 16 } + + wlsxTrapAPLocation OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Location of the AP. + " + ::= {aiTrapObjectsGroup 17 } + + wlsxTrapAPChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Current Channel. + " + ::= {aiTrapObjectsGroup 18 } + + wlsxTrapAPTxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the AP Transmit Power. + " + ::= {aiTrapObjectsGroup 19 } + + wlsxTrapMatchedMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the MAC address - " - ::= {aiTrapObjectsGroup 20 } - - wlsxTrapMatchedIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 20 } + + wlsxTrapMatchedIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the IP address - " - ::= {aiTrapObjectsGroup 21 } - - wlsxTrapRogueIfoURL OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 21 } + + wlsxTrapRogueIfoURL OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used to point to the WEBUI Rogue AP information URL. - " - ::= {aiTrapObjectsGroup 22 } - - wlsxTrapVlanId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 22 } + + wlsxTrapVlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the VLAN Id. - " - ::= {aiTrapObjectsGroup 23 } - - wlsxTrapAdminStatus OBJECT-TYPE - SYNTAX ArubaEnableValue - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 23 } + + wlsxTrapAdminStatus OBJECT-TYPE + SYNTAX ArubaEnableValue + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the admin status of VLAN. - " - ::= {aiTrapObjectsGroup 24 } - - wlsxTrapOperStatus OBJECT-TYPE - SYNTAX ArubaOperStateValue - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 24 } + + wlsxTrapOperStatus OBJECT-TYPE + SYNTAX ArubaOperStateValue + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the admin status of VLAN. - " - ::= {aiTrapObjectsGroup 25 } - - wlsxTrapAuthServerName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 25 } + + wlsxTrapAuthServerName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Authentication Server used for Authentication. - " - ::= {aiTrapObjectsGroup 26 } - - wlsxTrapAuthServerTimeout OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 26 } + + wlsxTrapAuthServerTimeout OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Authentication Server Timeout. - " - ::= {aiTrapObjectsGroup 27 } - - wlsxTrapCardSlot OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 27 } + + wlsxTrapCardSlot OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Slot in which this card is present. - " - ::= {aiTrapObjectsGroup 28 } - - wlsxTrapTemperatureValue OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 28 } + + wlsxTrapTemperatureValue OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Temperature Value. - " - ::= {aiTrapObjectsGroup 29 } - - wlsxTrapProcessName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 29 } + + wlsxTrapProcessName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Process name. - " - ::= {aiTrapObjectsGroup 30 } - - wlsxTrapFanNumber OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 30 } + + wlsxTrapFanNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the Fan Number. - " - ::= {aiTrapObjectsGroup 31 } - - wlsxTrapVoltageType OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 31 } + + wlsxTrapVoltageType OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the type of Voltage. - " - ::= {aiTrapObjectsGroup 32 } - - wlsxTrapVoltageValue OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " + " + ::= {aiTrapObjectsGroup 32 } + + wlsxTrapVoltageValue OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " This object is used in the traps to indicate the voltage value in Float. - " - ::= {aiTrapObjectsGroup 33 } - - wlsxTrapStationBlackListReason OBJECT-TYPE - SYNTAX ArubaBlackListReason - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - The Reason for which a station is black listed. - " - ::= {aiTrapObjectsGroup 34 } - - wlsxTrapSpoofedIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify a spoofed IP address. - " - ::= {aiTrapObjectsGroup 35 } - - wlsxTrapSpoofedOldPhyAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify an old MAC address. - " - ::= {aiTrapObjectsGroup 36 } - - wlsxTrapSpoofedNewPhyAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify a New MAC address. - " - ::= {aiTrapObjectsGroup 37 } - - wlsxTrapDBName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify name of the database. - " - ::= {aiTrapObjectsGroup 38 } - - wlsxTrapDBUserName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify name of the database user. - " - ::= {aiTrapObjectsGroup 39 } - - wlsxTrapDBIpAddress OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify the IpAddress of the - Database. - " - ::= {aiTrapObjectsGroup 40 } - - wlsxTrapDBType OBJECT-TYPE - SYNTAX ArubaDBType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in a trap to identify the port of the user. - " - ::= {aiTrapObjectsGroup 41 } - - wlsxTrapVrrpID OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object contains the Virtual Router Identifier. - " - ::= {aiTrapObjectsGroup 42 } - - wlsxTrapVrrpMasterIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object contains the Master IP address. - " - ::= {aiTrapObjectsGroup 43 } - - wlsxTrapVrrpOperState OBJECT-TYPE - SYNTAX ArubaVrrpState - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the VRRP Operational state. - " - ::= {aiTrapObjectsGroup 44 } - - wlsxTrapESIServerGrpName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the External Services Interface (ESI) Server - Group name - " - ::= {aiTrapObjectsGroup 45 } - - wlsxTrapESIServerName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the External Services Interface (ESI) Server - Name - " - ::= {aiTrapObjectsGroup 46 } - - wlsxTrapESIServerIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the External Services Interface (ESI) Server - IP address - " - ::= {aiTrapObjectsGroup 47 } - - wlsxTrapLicenseDaysRemaining OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents number of the days remaining prior to a - license expiry. - " - ::= {aiTrapObjectsGroup 48 } - - wlsxTrapSwitchIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the controller IP address. - " - ::= {aiTrapObjectsGroup 49 } - - wlsxTrapSwitchRole OBJECT-TYPE - SYNTAX ArubaSwitchRole - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Role of the controller. - " - ::= {aiTrapObjectsGroup 50 } - - wlsxTrapUserIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents IP address of the User. - " - ::= {aiTrapObjectsGroup 51 } - - wlsxTrapUserPhyAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents MAC address of the User. - " - ::= {aiTrapObjectsGroup 52 } - - wlsxTrapUserName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the user name. - " - ::= {aiTrapObjectsGroup 53 } - - wlsxTrapUserRole OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Authentication method of the user. - " - ::= {aiTrapObjectsGroup 54 } - - wlsxTrapUserAuthenticationMethod OBJECT-TYPE - SYNTAX ArubaAuthenticationMethods - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Authentication method of the user. - " - ::= {aiTrapObjectsGroup 55 } - - wlsxTrapAPRadioNumber OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the radio number. - " - ::= {aiTrapObjectsGroup 56 } - - wlsxTrapRogueInfoURL OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used to point to the WEBGUI Rogue AP information - URL. - " - ::= {aiTrapObjectsGroup 57 } - - wlsxTrapInterferingAPInfoURL OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used to point to the WEBGUI Rogue interfering - AP information URL. - " - ::= {aiTrapObjectsGroup 58 } - - wlsxTrapPortNumber OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the - port number. - " - ::= {aiTrapObjectsGroup 59 } - - wlsxTrapTime OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in all the enterprise traps to indicate the - the time when the trap is generated on the controller. - " - ::= {aiTrapObjectsGroup 60 } - - wlsxTrapHostIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Trap host. - " - ::= {aiTrapObjectsGroup 61 } - - wlsxTrapHostPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Trap host port. - " - ::= {aiTrapObjectsGroup 62 } - - wlsxTrapConfigurationId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the ID of the configuration, to be used in traps. - " - ::= {aiTrapObjectsGroup 63 } - - wlsxTrapCTSURL OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the URL from which the transfer should happen. - " - ::= {aiTrapObjectsGroup 64 } - - wlsxTrapCTSTransferType OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the transfer type, upload or download. - " - ::= {aiTrapObjectsGroup 65 } - - wlsxTrapConfigurationState OBJECT-TYPE - SYNTAX ArubaConfigurationState - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents state of the configuration transfer. - " - ::= {aiTrapObjectsGroup 66 } - - wlsxTrapUpdateFailureReason OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the reason for the update failure. - " - ::= {aiTrapObjectsGroup 67 } - - wlsxTrapUpdateFailedObj OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This variable represents the AMAPI object which is the reason for the the update failure. - " - ::= {aiTrapObjectsGroup 68 } - - wlsxTrapTableEntryChangeType OBJECT-TYPE - SYNTAX ArubaConfigurationChangeType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents type of the configuration change. - " - ::= {aiTrapObjectsGroup 69 } - - wlsxTrapGlobalConfigObj OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This variable represents the AMAPI object corresponding to the global configuration change. - " - ::= {aiTrapObjectsGroup 70 } - - wlsxTrapTableGenNumber OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents generation number of a table. Used in the MMS, to keep track of the table content changes. - " - ::= {aiTrapObjectsGroup 71 } - - wlsxTrapLicenseId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the license ID. - " - ::= {aiTrapObjectsGroup 72 } - - wlsxTrapConfidenceLevel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Confidence Level as a percentage - " - ::= {aiTrapObjectsGroup 73 } - - wlsxTrapMissingLicenses OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This variable indicates any licenses that are not present during a configuration update - " - ::= {aiTrapObjectsGroup 74 } - - wlsxVoiceCurrentNumCdr OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the number of CDRs in buffer. - " - ::= {aiTrapObjectsGroup 75 } - - wlsxTrapTunnelId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the tunnel ID. - " - ::= {aiTrapObjectsGroup 76 } - - wlsxTrapTunnelStatus OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the tunnel Status. - " - ::= {aiTrapObjectsGroup 77 } - - wlsxTrapTunnelUpReason OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the tunnel up reason. - " - ::= {aiTrapObjectsGroup 78 } - - wlsxTrapTunnelDownReason OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the tunnel down reason. - " - ::= {aiTrapObjectsGroup 79 } - - wlsxTrapApSerialNumber OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the AP Serial Number. - " - ::= {aiTrapObjectsGroup 80 } - - wlsxTrapTimeStr OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Time in String format. - " - ::= {aiTrapObjectsGroup 81 } - - wlsxTrapMasterIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the master IP address. - " - ::= {aiTrapObjectsGroup 82 } - - wlsxTrapLocalIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Local IP address. - " - ::= {aiTrapObjectsGroup 83 } - - wlsxTrapMasterName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the master controller name. - " - ::= {aiTrapObjectsGroup 84 } - - wlsxTrapLocalName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the local controller name. - " - ::= {aiTrapObjectsGroup 85 } - - wlsxTrapPrimaryControllerIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the IP address of the AP's primary controller. - " - ::= {aiTrapObjectsGroup 86 } - - wlsxTrapBackupControllerIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the IP address of the AP's backup controller. - " - ::= {aiTrapObjectsGroup 87 } - - wlsxTrapSpoofedFrameType OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Spoofed Frame Type - " - ::= {aiTrapObjectsGroup 88 } - - wlsxTrapAssociationType OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the type of association - " - ::= {aiTrapObjectsGroup 89 } - - wlsxTrapDeviceIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the IP address of a device seen by an AP. - " - ::= {aiTrapObjectsGroup 90 } - - wlsxTrapDeviceMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the MAC address of a device seen by an AP. - " - ::= {aiTrapObjectsGroup 91 } - - wlsxTrapVcIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the Ip Address of a Voice client. - " - ::= {aiTrapObjectsGroup 92 } - - wlsxTrapVcMacAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the MAC address of a Voice client. - " - ::= {aiTrapObjectsGroup 93 } - - wlsxTrapAPName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Name of the AP. - " - ::= {aiTrapObjectsGroup 94 } - - wlsxTrapApMode OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the AP Mode. - " - ::= {aiTrapObjectsGroup 95 } - - wlsxTrapAPPrevChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Previous Channel. - " - ::= {aiTrapObjectsGroup 96 } - - wlsxTrapAPPrevChannelSec OBJECT-TYPE - SYNTAX ArubaHTExtChannel - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Previous Secondary Channel. - " - ::= {aiTrapObjectsGroup 97 } - - wlsxTrapAPPrevTxPower OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate previous AP Transmit Power. - " - ::= {aiTrapObjectsGroup 98 } - - wlsxTrapAPCurMode OBJECT-TYPE - SYNTAX ArubaAccessPointMode - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the APs Current Mode. - " - ::= {aiTrapObjectsGroup 99 } - - wlsxTrapAPPrevMode OBJECT-TYPE - SYNTAX ArubaAccessPointMode - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the APs Previous Mode. - " - ::= {aiTrapObjectsGroup 100 } - - wlsxTrapAPARMChangeReason OBJECT-TYPE - SYNTAX ArubaARMChangeReason - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This Object represents the APs Previous Mode. - " - ::= {aiTrapObjectsGroup 101 } - - wlsxTrapAPChannelSec OBJECT-TYPE - SYNTAX ArubaHTExtChannel - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the Current Secondary Channel. - " - ::= {aiTrapObjectsGroup 102 } - - wlsxTrapUserAttributeChangeType OBJECT-TYPE - SYNTAX ArubaConfigurationChangeType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents type of the configuration change. - " - ::= {aiTrapObjectsGroup 103 } - - wlsxTrapApControllerIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - IP address of the controller to which the AP is - (or was most recently) registered. - " - ::= {aiTrapObjectsGroup 104 } - - wlsxTrapApMasterStatus OBJECT-TYPE - SYNTAX ArubaAPMasterStatus - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - Status of the AP as seen by the master when the status changes. - " - ::= {aiTrapObjectsGroup 105 } - - wlsxTrapCaName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the name of the trustpoint. - " - ::= {aiTrapObjectsGroup 106 } - - wlsxTrapCrlName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object is used in the traps to indicate the name of the crl. - " - ::= {aiTrapObjectsGroup 107 } - - wlsxTrapCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - " - This object represents the number of occurrence of this trap. - " - ::= {aiTrapObjectsGroup 108 } + " + ::= {aiTrapObjectsGroup 33 } - wlsxTrapAPPreviousUplinkType OBJECT-TYPE - SYNTAX ArubaAPUplinkType + wlsxTrapStationBlackListReason OBJECT-TYPE + SYNTAX ArubaBlackListReason MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object specifies the up link type for an AP. + The Reason for which a station is black listed. " - ::= {aiTrapObjectsGroup 130 } + ::= {aiTrapObjectsGroup 34 } - wlsxTrapAPPreviousUplinkActiveTime OBJECT-TYPE - SYNTAX TimeTicks + wlsxTrapSpoofedIpAddress OBJECT-TYPE + SYNTAX IpAddress MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object specifies the up link type for an AP. + This object is used in a trap to identify a spoofed IP address. " - ::= {aiTrapObjectsGroup 131 } + ::= {aiTrapObjectsGroup 35 } - wlsxTrapAPActiveUplinkType OBJECT-TYPE - SYNTAX ArubaAPUplinkType + wlsxTrapSpoofedOldPhyAddress OBJECT-TYPE + SYNTAX MacAddress MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object specifies the up link type for an AP. + This object is used in a trap to identify an old MAC address. " - ::= {aiTrapObjectsGroup 132 } + ::= {aiTrapObjectsGroup 36 } - wlsxTrapAPUplinkChangeReason OBJECT-TYPE - SYNTAX ArubaAPUplinkChangeReason + wlsxTrapSpoofedNewPhyAddress OBJECT-TYPE + SYNTAX MacAddress MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object specifies the up link change reason. + This object is used in a trap to identify a New MAC address. " - ::= {aiTrapObjectsGroup 133 } + ::= {aiTrapObjectsGroup 37 } - wlsxTrapAPManagedModeConfigFailure OBJECT-TYPE + wlsxTrapDBName OBJECT-TYPE SYNTAX DisplayString(SIZE(0..64)) MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object indicates the error for the failure of config apply on IAP. + This object is used in a trap to identify name of the database. " - ::= {aiTrapObjectsGroup 138 } + ::= {aiTrapObjectsGroup 38 } - wlsxTrapAuthServerAddress OBJECT-TYPE - SYNTAX IpAddress + wlsxTrapDBUserName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object is used in the traps to indicate the - Authentication Server IP used for Authentication. + This object is used in a trap to identify name of the database user. " - ::= {aiTrapObjectsGroup 139 } + ::= {aiTrapObjectsGroup 39 } - wlsxTrapPortalServerName OBJECT-TYPE + wlsxTrapDBIpAddress OBJECT-TYPE SYNTAX DisplayString(SIZE(0..64)) MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object is used in the traps to indicate the - Captive Portal Server used for Authentication. + This object is used in a trap to identify the IpAddress of the + Database. " - ::= {aiTrapObjectsGroup 140 } + ::= {aiTrapObjectsGroup 40 } - wlsxTrapPortalServerAddress OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..64)) + wlsxTrapDBType OBJECT-TYPE + SYNTAX ArubaDBType MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object is used in the traps to indicate the - Captive Portal Server IP or host name used for Authentication. + This object is used in a trap to identify the port of the user. " - ::= {aiTrapObjectsGroup 141 } + ::= {aiTrapObjectsGroup 41 } - wlsxTrapPortalServerDownReason OBJECT-TYPE - SYNTAX ArubaPortalServerDownReason + wlsxTrapVrrpID OBJECT-TYPE + SYNTAX Integer32 MAX-ACCESS accessible-for-notify STATUS current DESCRIPTION " - This object specifies the captive portal server down reason. + This object contains the Virtual Router Identifier. " - ::= {aiTrapObjectsGroup 142 } - - --- Definition of traps + ::= {aiTrapObjectsGroup 42 } - wlsxNodeRateAnomaly NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapNodeMac, - wlsxTrapSnr,wlsxTrapAPBSSID, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that a node is exceeding the threshold set for + wlsxTrapVrrpMasterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object contains the Master IP address. + " + ::= {aiTrapObjectsGroup 43 } + + wlsxTrapVrrpOperState OBJECT-TYPE + SYNTAX ArubaVrrpState + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the VRRP Operational state. + " + ::= {aiTrapObjectsGroup 44 } + + wlsxTrapESIServerGrpName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the External Services Interface (ESI) Server + Group name + " + ::= {aiTrapObjectsGroup 45 } + + wlsxTrapESIServerName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the External Services Interface (ESI) Server + Name + " + ::= {aiTrapObjectsGroup 46 } + + wlsxTrapESIServerIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the External Services Interface (ESI) Server + IP address + " + ::= {aiTrapObjectsGroup 47 } + + wlsxTrapLicenseDaysRemaining OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents number of the days remaining prior to a + license expiry. + " + ::= {aiTrapObjectsGroup 48 } + + wlsxTrapSwitchIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the controller IP address. + " + ::= {aiTrapObjectsGroup 49 } + + wlsxTrapSwitchRole OBJECT-TYPE + SYNTAX ArubaSwitchRole + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Role of the controller. + " + ::= {aiTrapObjectsGroup 50 } + + wlsxTrapUserIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents IP address of the User. + " + ::= {aiTrapObjectsGroup 51 } + + wlsxTrapUserPhyAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents MAC address of the User. + " + ::= {aiTrapObjectsGroup 52 } + + wlsxTrapUserName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the user name. + " + ::= {aiTrapObjectsGroup 53 } + + wlsxTrapUserRole OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Authentication method of the user. + " + ::= {aiTrapObjectsGroup 54 } + + wlsxTrapUserAuthenticationMethod OBJECT-TYPE + SYNTAX ArubaAuthenticationMethods + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Authentication method of the user. + " + ::= {aiTrapObjectsGroup 55 } + + wlsxTrapAPRadioNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the radio number. + " + ::= {aiTrapObjectsGroup 56 } + + wlsxTrapRogueInfoURL OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used to point to the WEBGUI Rogue AP information + URL. + " + ::= {aiTrapObjectsGroup 57 } + + wlsxTrapInterferingAPInfoURL OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used to point to the WEBGUI Rogue interfering + AP information URL. + " + ::= {aiTrapObjectsGroup 58 } + + wlsxTrapPortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the + port number. + " + ::= {aiTrapObjectsGroup 59 } + + wlsxTrapTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in all the enterprise traps to indicate the + the time when the trap is generated on the controller. + " + ::= {aiTrapObjectsGroup 60 } + + wlsxTrapHostIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Trap host. + " + ::= {aiTrapObjectsGroup 61 } + + wlsxTrapHostPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Trap host port. + " + ::= {aiTrapObjectsGroup 62 } + + wlsxTrapConfigurationId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the ID of the configuration, to be used in traps. + " + ::= {aiTrapObjectsGroup 63 } + + wlsxTrapCTSURL OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the URL from which the transfer should happen. + " + ::= {aiTrapObjectsGroup 64 } + + wlsxTrapCTSTransferType OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the transfer type, upload or download. + " + ::= {aiTrapObjectsGroup 65 } + + wlsxTrapConfigurationState OBJECT-TYPE + SYNTAX ArubaConfigurationState + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents state of the configuration transfer. + " + ::= {aiTrapObjectsGroup 66 } + + wlsxTrapUpdateFailureReason OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the reason for the update failure. + " + ::= {aiTrapObjectsGroup 67 } + + wlsxTrapUpdateFailedObj OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This variable represents the AMAPI object which is the reason for the the update failure. + " + ::= {aiTrapObjectsGroup 68 } + + wlsxTrapTableEntryChangeType OBJECT-TYPE + SYNTAX ArubaConfigurationChangeType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents type of the configuration change. + " + ::= {aiTrapObjectsGroup 69 } + + wlsxTrapGlobalConfigObj OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This variable represents the AMAPI object corresponding to the global configuration change. + " + ::= {aiTrapObjectsGroup 70 } + + wlsxTrapTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents generation number of a table. Used in the MMS, to keep track of the table content changes. + " + ::= {aiTrapObjectsGroup 71 } + + wlsxTrapLicenseId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the license ID. + " + ::= {aiTrapObjectsGroup 72 } + + wlsxTrapConfidenceLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Confidence Level as a percentage + " + ::= {aiTrapObjectsGroup 73 } + + wlsxTrapMissingLicenses OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This variable indicates any licenses that are not present during a configuration update + " + ::= {aiTrapObjectsGroup 74 } + + wlsxVoiceCurrentNumCdr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the number of CDRs in buffer. + " + ::= {aiTrapObjectsGroup 75 } + + wlsxTrapTunnelId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the tunnel ID. + " + ::= {aiTrapObjectsGroup 76 } + + wlsxTrapTunnelStatus OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the tunnel Status. + " + ::= {aiTrapObjectsGroup 77 } + + wlsxTrapTunnelUpReason OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the tunnel up reason. + " + ::= {aiTrapObjectsGroup 78 } + + wlsxTrapTunnelDownReason OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the tunnel down reason. + " + ::= {aiTrapObjectsGroup 79 } + + wlsxTrapApSerialNumber OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the AP Serial Number. + " + ::= {aiTrapObjectsGroup 80 } + + wlsxTrapTimeStr OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Time in String format. + " + ::= {aiTrapObjectsGroup 81 } + + wlsxTrapMasterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the master IP address. + " + ::= {aiTrapObjectsGroup 82 } + + wlsxTrapLocalIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Local IP address. + " + ::= {aiTrapObjectsGroup 83 } + + wlsxTrapMasterName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the master controller name. + " + ::= {aiTrapObjectsGroup 84 } + + wlsxTrapLocalName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the local controller name. + " + ::= {aiTrapObjectsGroup 85 } + + wlsxTrapPrimaryControllerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the IP address of the AP's primary controller. + " + ::= {aiTrapObjectsGroup 86 } + + wlsxTrapBackupControllerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the IP address of the AP's backup controller. + " + ::= {aiTrapObjectsGroup 87 } + + wlsxTrapSpoofedFrameType OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Spoofed Frame Type + " + ::= {aiTrapObjectsGroup 88 } + + wlsxTrapAssociationType OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the type of association + " + ::= {aiTrapObjectsGroup 89 } + + wlsxTrapDeviceIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the IP address of a device seen by an AP. + " + ::= {aiTrapObjectsGroup 90 } + + wlsxTrapDeviceMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the MAC address of a device seen by an AP. + " + ::= {aiTrapObjectsGroup 91 } + + wlsxTrapVcIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the Ip Address of a Voice client. + " + ::= {aiTrapObjectsGroup 92 } + + wlsxTrapVcMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the MAC address of a Voice client. + " + ::= {aiTrapObjectsGroup 93 } + + wlsxTrapAPName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Name of the AP. + " + ::= {aiTrapObjectsGroup 94 } + + wlsxTrapApMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the AP Mode. + " + ::= {aiTrapObjectsGroup 95 } + + wlsxTrapAPPrevChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Previous Channel. + " + ::= {aiTrapObjectsGroup 96 } + + wlsxTrapAPPrevChannelSec OBJECT-TYPE + SYNTAX ArubaHTExtChannel + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Previous Secondary Channel. + " + ::= {aiTrapObjectsGroup 97 } + + wlsxTrapAPPrevTxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate previous AP Transmit Power. + " + ::= {aiTrapObjectsGroup 98 } + + wlsxTrapAPCurMode OBJECT-TYPE + SYNTAX ArubaAccessPointMode + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the APs Current Mode. + " + ::= {aiTrapObjectsGroup 99 } + + wlsxTrapAPPrevMode OBJECT-TYPE + SYNTAX ArubaAccessPointMode + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the APs Previous Mode. + " + ::= {aiTrapObjectsGroup 100 } + + wlsxTrapAPARMChangeReason OBJECT-TYPE + SYNTAX ArubaARMChangeReason + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This Object represents the APs Previous Mode. + " + ::= {aiTrapObjectsGroup 101 } + + wlsxTrapAPChannelSec OBJECT-TYPE + SYNTAX ArubaHTExtChannel + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the Current Secondary Channel. + " + ::= {aiTrapObjectsGroup 102 } + + wlsxTrapUserAttributeChangeType OBJECT-TYPE + SYNTAX ArubaConfigurationChangeType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents type of the configuration change. + " + ::= {aiTrapObjectsGroup 103 } + + wlsxTrapApControllerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + IP address of the controller to which the AP is + (or was most recently) registered. + " + ::= {aiTrapObjectsGroup 104 } + + wlsxTrapApMasterStatus OBJECT-TYPE + SYNTAX ArubaAPMasterStatus + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + Status of the AP as seen by the master when the status changes. + " + ::= {aiTrapObjectsGroup 105 } + + wlsxTrapCaName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the name of the trustpoint. + " + ::= {aiTrapObjectsGroup 106 } + + wlsxTrapCrlName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the name of the crl. + " + ::= {aiTrapObjectsGroup 107 } + + wlsxTrapCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object represents the number of occurrence of this trap. + " + ::= {aiTrapObjectsGroup 108 } + + wlsxTrapAPPreviousUplinkType OBJECT-TYPE + SYNTAX ArubaAPUplinkType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object specifies the up link type for an AP. + " + ::= {aiTrapObjectsGroup 130 } + + wlsxTrapAPPreviousUplinkActiveTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object specifies the up link type for an AP. + " + ::= {aiTrapObjectsGroup 131 } + + wlsxTrapAPActiveUplinkType OBJECT-TYPE + SYNTAX ArubaAPUplinkType + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object specifies the up link type for an AP. + " + ::= {aiTrapObjectsGroup 132 } + + wlsxTrapAPUplinkChangeReason OBJECT-TYPE + SYNTAX ArubaAPUplinkChangeReason + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object specifies the up link change reason. + " + ::= {aiTrapObjectsGroup 133 } + + wlsxTrapAPManagedModeConfigFailure OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object indicates the error for the failure of config apply on IAP. + " + ::= {aiTrapObjectsGroup 138 } + + wlsxTrapAuthServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the + Authentication Server IP used for Authentication. + " + ::= {aiTrapObjectsGroup 139 } + + wlsxTrapPortalServerName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the + Captive Portal Server used for Authentication. + " + ::= {aiTrapObjectsGroup 140 } + + wlsxTrapPortalServerAddress OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object is used in the traps to indicate the + Captive Portal Server IP or host name used for Authentication. + " + ::= {aiTrapObjectsGroup 141 } + + wlsxTrapPortalServerDownReason OBJECT-TYPE + SYNTAX ArubaPortalServerDownReason + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + " + This object specifies the captive portal server down reason. + " + ::= {aiTrapObjectsGroup 142 } + + +-- Definition of traps + + wlsxNodeRateAnomaly NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapNodeMac, + wlsxTrapSnr,wlsxTrapAPBSSID, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that a node is exceeding the threshold set for the frame type. - " - ::= {aiTrapDefinitionsGroup 1003 } - - wlsxNUserEntryCreated NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1003 } + + wlsxNUserEntryCreated NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress} + STATUS current + DESCRIPTION + " This trap indicates that a new user was created. - " - ::= {aiTrapDefinitionsGroup 1014 } - - wlsxNUserEntryDeleted NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1014 } + + wlsxNUserEntryDeleted NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress} + STATUS current + DESCRIPTION + " This trap indicates that a user was deleted. - " - ::= {aiTrapDefinitionsGroup 1015 } - - wlsxNUserEntryAuthenticated NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress, - wlsxTrapUserName,wlsxTrapUserAuthenticationMethod, - wlsxTrapUserRole} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1015 } + + wlsxNUserEntryAuthenticated NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress, + wlsxTrapUserName,wlsxTrapUserAuthenticationMethod, + wlsxTrapUserRole} + STATUS current + DESCRIPTION + " This trap indicates that a user is Authenticated. - " - ::= {aiTrapDefinitionsGroup 1016 } - - wlsxNUserEntryDeAuthenticated NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1016 } + + wlsxNUserEntryDeAuthenticated NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress} + STATUS current + DESCRIPTION + " This trap indicates that a user is Deauthenticated. - " - ::= {aiTrapDefinitionsGroup 1017 } - - wlsxNUserAuthenticationFailed NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserName, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress,wlsxTrapAuthServerName,wlsxTrapAuthServerAddress,wlsxTrapAPBSSID,wlsxTrapAPName} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1017 } + + wlsxNUserAuthenticationFailed NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserName, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress,wlsxTrapAuthServerName,wlsxTrapAuthServerAddress,wlsxTrapAPBSSID,wlsxTrapAPName} + STATUS current + DESCRIPTION + " This trap indicates that a user authentication has failed. - " - ::= {aiTrapDefinitionsGroup 1018 } - - wlsxNAuthServerReqTimedOut NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserName, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress,wlsxTrapAuthServerName,wlsxTrapAuthServerAddress,wlsxTrapAPBSSID,wlsxTrapAPName} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1018 } + + wlsxNAuthServerReqTimedOut NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserName, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress,wlsxTrapAuthServerName,wlsxTrapAuthServerAddress,wlsxTrapAPBSSID,wlsxTrapAPName} + STATUS current + DESCRIPTION + " This trap indicates that the authentication server request timed out. - " - ::= {aiTrapDefinitionsGroup 1019 } - - wlsxNAuthServerTimedOut NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName,wlsxTrapAuthServerTimeout} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1019 } + + wlsxNAuthServerTimedOut NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName,wlsxTrapAuthServerTimeout} + STATUS current + DESCRIPTION + " This trap indicates that the authentication server timed out. - " - ::= {aiTrapDefinitionsGroup 1020 } - - wlsxNAuthServerIsUp NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName, wlsxTrapAuthServerAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1020 } + + wlsxNAuthServerIsUp NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName, wlsxTrapAuthServerAddress} + STATUS current + DESCRIPTION + " This trap indicates that an authentication server is up. - " - ::= {aiTrapDefinitionsGroup 1021 } - - wlsxNAccessPointIsUp NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1021 } + + wlsxNAccessPointIsUp NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress} + STATUS current + DESCRIPTION + " A Trap which indicates that an access point up. - " - ::= {aiTrapDefinitionsGroup 1040 } - - wlsxNAccessPointIsDown NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1040 } + + wlsxNAccessPointIsDown NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress} + STATUS current + DESCRIPTION + " A Trap which indicates that an access point down. - " - ::= {aiTrapDefinitionsGroup 1041 } - - wlsxNChannelChanged NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPBSSID,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an access point at Location + " + ::= {aiTrapDefinitionsGroup 1041 } + + wlsxNChannelChanged NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPBSSID,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an access point at Location wlsxTrapAPLocation has changed the channel. - " - ::= {aiTrapDefinitionsGroup 1043 } - - wlsxNStationAddedToBlackList NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapStationBlackListReason} - STATUS current - DESCRIPTION - " - This trap indicates that the station is black listed. - " - ::= {aiTrapDefinitionsGroup 1044 } - - wlsxNStationRemovedFromBlackList NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac} - STATUS current - DESCRIPTION - " - This trap indicates that the station is removed from the black list. - " - ::= {aiTrapDefinitionsGroup 1045 } - - wlsxNRadioAttributesChanged NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPIpAddress,wlsxTrapAPChannel, - wlsxTrapAPTxPower} - STATUS current - DESCRIPTION - " - A Trap which indicates changes in the Radio attributes of an + " + ::= {aiTrapDefinitionsGroup 1043 } + + wlsxNStationAddedToBlackList NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapStationBlackListReason} + STATUS current + DESCRIPTION + " + This trap indicates that the station is black listed. + " + ::= {aiTrapDefinitionsGroup 1044 } + + wlsxNStationRemovedFromBlackList NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac} + STATUS current + DESCRIPTION + " + This trap indicates that the station is removed from the black list. + " + ::= {aiTrapDefinitionsGroup 1045 } + + wlsxNRadioAttributesChanged NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPIpAddress,wlsxTrapAPChannel, + wlsxTrapAPTxPower} + STATUS current + DESCRIPTION + " + A Trap which indicates changes in the Radio attributes of an access point. - " - ::= {aiTrapDefinitionsGroup 1049 } - - wlsxUnsecureAPDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel, - wlsxTrapMatchedMac,wlsxTrapMatchedIp, - wlsxTrapRogueInfoURL} - STATUS current - DESCRIPTION - " This trap indicates that an unauthorized access point is connected to the wired network. The access point is declared Rogue because it was matched to a MAC address. " - ::= {aiTrapDefinitionsGroup 1053 } - - wlsxUnsecureAPResolved NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1049 } + + wlsxUnsecureAPDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel, + wlsxTrapMatchedMac,wlsxTrapMatchedIp, + wlsxTrapRogueInfoURL} + STATUS current + DESCRIPTION + " This trap indicates that an unauthorized access point is connected to the wired network. The access point is declared Rogue because it was matched to a MAC address. " + ::= {aiTrapDefinitionsGroup 1053 } + + wlsxUnsecureAPResolved NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " This trap indicates that a previously detected access point, classified as Rogue, is no longer present in the network. - " - ::= {aiTrapDefinitionsGroup 1054 } - - wlsxStaImpersonation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected Station Impersonation. - " - ::= {aiTrapDefinitionsGroup 1055 } - - wlsxReservedChannelViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected an access point - which is violating the Reserved Channel configuration. - " - ::= {aiTrapDefinitionsGroup 1056 } - - wlsxValidSSIDViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected an access point is violating - Valid SSID configuration by using an SSID that is reserved for use by a valid AP only. - " - ::= {aiTrapDefinitionsGroup 1057 } - - wlsxChannelMisconfiguration NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point that has a channel misconfiguration - because it is using a channel that is not valid. - " - ::= {aiTrapDefinitionsGroup 1058 } - - wlsxOUIMisconfiguration NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point that has an OUI misconfiguration because + " + ::= {aiTrapDefinitionsGroup 1054 } + + wlsxStaImpersonation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected Station Impersonation. + " + ::= {aiTrapDefinitionsGroup 1055 } + + wlsxReservedChannelViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected an access point + which is violating the Reserved Channel configuration. + " + ::= {aiTrapDefinitionsGroup 1056 } + + wlsxValidSSIDViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected an access point is violating + Valid SSID configuration by using an SSID that is reserved for use by a valid AP only. + " + ::= {aiTrapDefinitionsGroup 1057 } + + wlsxChannelMisconfiguration NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point that has a channel misconfiguration + because it is using a channel that is not valid. + " + ::= {aiTrapDefinitionsGroup 1058 } + + wlsxOUIMisconfiguration NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point that has an OUI misconfiguration because it is using an OUI that is not valid. - " - ::= {aiTrapDefinitionsGroup 1059 } - - wlsxSSIDMisconfiguration NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point that has an SSID misconfiguration because it is using + " + ::= {aiTrapDefinitionsGroup 1059 } + + wlsxSSIDMisconfiguration NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point that has an SSID misconfiguration because it is using an SSID that is not valid. - " - ::= {aiTrapDefinitionsGroup 1060 } - - wlsxShortPreableMisconfiguration NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an access point has bad Short preamble - configuration. - " - ::= {aiTrapDefinitionsGroup 1061 } - - wlsxWPAMisconfiguration NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point that is misconfigured because it is not using WPA. - " - ::= {aiTrapDefinitionsGroup 1062 } - - wlsxAdhocNetworkDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM has detected an Ad hoc - network. - " - ::= {aiTrapDefinitionsGroup 1063 } - - wlsxAdhocNetworkRemoved NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that a previously detected Ad hoc Network is no + " + ::= {aiTrapDefinitionsGroup 1060 } + + wlsxShortPreableMisconfiguration NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an access point has bad Short preamble + configuration. + " + ::= {aiTrapDefinitionsGroup 1061 } + + wlsxWPAMisconfiguration NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point that is misconfigured because it is not using WPA. + " + ::= {aiTrapDefinitionsGroup 1062 } + + wlsxAdhocNetworkDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM has detected an Ad hoc + network. + " + ::= {aiTrapDefinitionsGroup 1063 } + + wlsxAdhocNetworkRemoved NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that a previously detected Ad hoc Network is no longer present in the network. - " - ::= {aiTrapDefinitionsGroup 1064 } - - wlsxStaPolicyViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that Protection was enforced because a valid station's association to a non-valid access point violated Valid Station policy. - For more info check: http://www.wve.org/entries/show/WVE-2005-0008 - http://www.wve.org/entries/show/WVE-2005-0019 - " - ::= {aiTrapDefinitionsGroup 1065 } - - wlsxRepeatWEPIVViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a valid access point is using the same WEP initialization vector in consecutive packets. - " - ::= {aiTrapDefinitionsGroup 1066 } - - wlsxWeakWEPIVViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a valid access point is using a Weak WEP initialization vector. - For more info check: http://www.wve.org/entries/show/WVE-2005-0021 - " - ::= {aiTrapDefinitionsGroup 1067 } - - wlsxChannelInterferenceDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected channel interference. - " - ::= {aiTrapDefinitionsGroup 1068 } - - wlsxChannelInterferenceCleared NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that a previously detected channel interference - is no longer present. - " - ::= {aiTrapDefinitionsGroup 1069 } - - wlsxAPInterferenceDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected interference for an access point. - " - ::= {aiTrapDefinitionsGroup 1070 } - - wlsxAPInterferenceCleared NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that the previously detected interference for an access point - is no longer present. - " - ::= {aiTrapDefinitionsGroup 1071 } - - wlsxStaInterferenceDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapNodeMac,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected interference for a station. - " - ::= {aiTrapDefinitionsGroup 1072 } - - wlsxStaInterferenceCleared NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapNodeMac,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that the previously detected interference for a station - is no longer present. - " - ::= {aiTrapDefinitionsGroup 1073 } - - wlsxFrameRetryRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that an access point has exceeded the configured upper threshold for Frame Retry Rate. - " - ::= {aiTrapDefinitionsGroup 1074 } - - wlsxFrameReceiveErrorRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapTargetAPChannel,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that an access point has exceeded the configured upper threshold for Frame Receive Error Rate. - " - ::= {aiTrapDefinitionsGroup 1075 } - - wlsxFrameFragmentationRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapTargetAPChannel,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that an access point exceeded the configured upper threshold for Frame Fragmentation Rate. - " - ::= {aiTrapDefinitionsGroup 1076 } - - wlsxFrameBandWidthRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a station or access point has exceeded the configured upper threshold for Bandwidth rate. - " - ::= {aiTrapDefinitionsGroup 1077 } - - wlsxFrameLowSpeedRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a station has exceeded the configured upper threshold for Low speed rate. - " - ::= {aiTrapDefinitionsGroup 1078 } - - wlsxFrameNonUnicastRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a station has exceeded the configured upper threshold for Non Unicast traffic rate. - " - ::= {aiTrapDefinitionsGroup 1079 } - - wlsxLoadbalancingEnabled NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM is reporting that an AP - has enabled Load balancing. - " - ::= {aiTrapDefinitionsGroup 1080 } - - wlsxLoadbalancingDisabled NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM is reporting that an AP - has enabled Load balancing. - " - ::= {aiTrapDefinitionsGroup 1081 } - - wlsxChannelFrameRetryRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected that the configured upper threshold for Frame Retry Rate was exceeded on a channel. - " - ::= {aiTrapDefinitionsGroup 1082 } - - wlsxChannelFrameFragmentationRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected that the configured upper threshold for Frame Fragmentation Rate was exceeded on a channel. - " - ::= {aiTrapDefinitionsGroup 1083 } - - wlsxChannelFrameErrorRateExceeded NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has detected that the configured upper threshold for Frame Receive Error Rate was exceeded on a channel. - " - ::= {aiTrapDefinitionsGroup 1084 } - - wlsxSignatureMatchAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match in a frame from an access point. - " - ::= {aiTrapDefinitionsGroup 1085 } - - wlsxSignatureMatchSta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match in a frame from a Station. - " - ::= {aiTrapDefinitionsGroup 1086 } - - wlsxChannelRateAnomaly NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected frames on a channel which + " + ::= {aiTrapDefinitionsGroup 1064 } + + wlsxStaPolicyViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that Protection was enforced because a valid station's association to a non-valid access point violated Valid Station policy. + " + ::= {aiTrapDefinitionsGroup 1065 } + + wlsxRepeatWEPIVViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a valid access point is using the same WEP initialization vector in consecutive packets. + " + ::= {aiTrapDefinitionsGroup 1066 } + + wlsxWeakWEPIVViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a valid access point is using a Weak WEP initialization vector. + " + ::= {aiTrapDefinitionsGroup 1067 } + + wlsxChannelInterferenceDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected channel interference. + " + ::= {aiTrapDefinitionsGroup 1068 } + + wlsxChannelInterferenceCleared NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that a previously detected channel interference + is no longer present. + " + ::= {aiTrapDefinitionsGroup 1069 } + + wlsxAPInterferenceDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected interference for an access point. + " + ::= {aiTrapDefinitionsGroup 1070 } + + wlsxAPInterferenceCleared NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that the previously detected interference for an access point + is no longer present. + " + ::= {aiTrapDefinitionsGroup 1071 } + + wlsxStaInterferenceDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapNodeMac,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected interference for a station. + " + ::= {aiTrapDefinitionsGroup 1072 } + + wlsxStaInterferenceCleared NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapNodeMac,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that the previously detected interference for a station + is no longer present. + " + ::= {aiTrapDefinitionsGroup 1073 } + + wlsxFrameRetryRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that an access point has exceeded the configured upper threshold for Frame Retry Rate. + " + ::= {aiTrapDefinitionsGroup 1074 } + + wlsxFrameReceiveErrorRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapTargetAPChannel,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that an access point has exceeded the configured upper threshold for Frame Receive Error Rate. + " + ::= {aiTrapDefinitionsGroup 1075 } + + wlsxFrameFragmentationRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapTargetAPChannel,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that an access point exceeded the configured upper threshold for Frame Fragmentation Rate. + " + ::= {aiTrapDefinitionsGroup 1076 } + + wlsxFrameBandWidthRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a station or access point has exceeded the configured upper threshold for Bandwidth rate. + " + ::= {aiTrapDefinitionsGroup 1077 } + + wlsxFrameLowSpeedRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a station has exceeded the configured upper threshold for Low speed rate. + " + ::= {aiTrapDefinitionsGroup 1078 } + + wlsxFrameNonUnicastRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a station has exceeded the configured upper threshold for Non Unicast traffic rate. + " + ::= {aiTrapDefinitionsGroup 1079 } + + wlsxLoadbalancingEnabled NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM is reporting that an AP + has enabled Load balancing. + " + ::= {aiTrapDefinitionsGroup 1080 } + + wlsxLoadbalancingDisabled NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM is reporting that an AP + has enabled Load balancing. + " + ::= {aiTrapDefinitionsGroup 1081 } + + wlsxChannelFrameRetryRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected that the configured upper threshold for Frame Retry Rate was exceeded on a channel. + " + ::= {aiTrapDefinitionsGroup 1082 } + + wlsxChannelFrameFragmentationRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected that the configured upper threshold for Frame Fragmentation Rate was exceeded on a channel. + " + ::= {aiTrapDefinitionsGroup 1083 } + + wlsxChannelFrameErrorRateExceeded NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has detected that the configured upper threshold for Frame Receive Error Rate was exceeded on a channel. + " + ::= {aiTrapDefinitionsGroup 1084 } + + wlsxSignatureMatchAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match in a frame from an access point. + " + ::= {aiTrapDefinitionsGroup 1085 } + + wlsxSignatureMatchSta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match in a frame from a Station. + " + ::= {aiTrapDefinitionsGroup 1086 } + + wlsxChannelRateAnomaly NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected frames on a channel which exceed the configured IDS rate threshold. - For more info check: http://www.wve.org/entries/show/WVE-2005-0052 - http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0047 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1087 } - - wlsxNodeRateAnomalyAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected frames transmitted or received by an + " + ::= {aiTrapDefinitionsGroup 1087 } + + wlsxNodeRateAnomalyAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected frames transmitted or received by an access point, which exceed the configured IDS rate threshold. - For more info check: http://www.wve.org/entries/show/WVE-2005-0052 - http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0047 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1088 } - - wlsxNodeRateAnomalySta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapNodeMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected frames transmitted or received by a + " + ::= {aiTrapDefinitionsGroup 1088 } + + wlsxNodeRateAnomalySta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapNodeMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected frames transmitted or received by a node, which exceed the configured IDS rate threshold. - " - ::= {aiTrapDefinitionsGroup 1089 } - - wlsxEAPRateAnomaly NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that the rate of EAP Handshake packets + " + ::= {aiTrapDefinitionsGroup 1089 } + + wlsxEAPRateAnomaly NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that the rate of EAP Handshake packets received by an AP has exceeded the configured IDS EAP Handshake rate threshold. - For more info check: http://www.wve.org/entries/show/WVE-2005-0049 - " - ::= {aiTrapDefinitionsGroup 1090 } - - wlsxSignalAnomaly NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected a Signal Anomaly. - " - ::= {aiTrapDefinitionsGroup 1091 } - - wlsxSequenceNumberAnomalyAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM received packets from an AP - which exceeds the acceptable sequence number difference. - The acceptable sequence number difference is an IDS configuration + " + ::= {aiTrapDefinitionsGroup 1090 } + + wlsxSignalAnomaly NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected a Signal Anomaly. + " + ::= {aiTrapDefinitionsGroup 1091 } + + wlsxSequenceNumberAnomalyAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM received packets from an AP + which exceeds the acceptable sequence number difference. + The acceptable sequence number difference is an IDS configuration object. - For more info check: http://www.wve.org/entries/show/WVE-2005-0061 - http://www.wve.org/entries/show/WVE-2005-0019 - http://www.wve.org/entries/show/WVE-2005-0008 - http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0047 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1092 } - - wlsxSequenceNumberAnomalySta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM received packets from a Node - which exceeds the acceptable sequence number difference. - The acceptable sequence number difference is an IDS configuration + " + ::= {aiTrapDefinitionsGroup 1092 } + + wlsxSequenceNumberAnomalySta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM received packets from a Node + which exceeds the acceptable sequence number difference. + The acceptable sequence number difference is an IDS configuration object. - For more info check: http://www.wve.org/entries/show/WVE-2005-0061 - http://www.wve.org/entries/show/WVE-2005-0019 - http://www.wve.org/entries/show/WVE-2005-0008 - http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0047 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1093 } - - wlsxDisconnectStationAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected a station Disconnect + " + ::= {aiTrapDefinitionsGroup 1093 } + + wlsxDisconnectStationAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected a station Disconnect attack. - For more info check: http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1094 } - - wlsxApFloodAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that the number of potential fake APs detected by - an AP has exceeded the configured IDS threshold. This is the total number of fake APs observed across all bands. - For more info check: http://www.wve.org/entries/show/WVE-2005-0056 - " - ::= {aiTrapDefinitionsGroup 1095 } - - wlsxAdhocNetwork NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected an Ad hoc - Network. An Station is connected to an ad hoc AP. - " - ::= {aiTrapDefinitionsGroup 1096 } - - wlsxWirelessBridge NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTransmitterMac,wlsxTrapReceiverMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a Wireless Bridge when a WDS frame was seen between the transmitter and receiver addresses. - " - ::= {aiTrapDefinitionsGroup 1097 } - - wlsxInvalidMacOUIAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAddressType,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an invalid MAC OUI in the BSSID of a frame. An invalid MAC OUI suggests that the frame may be spoofed. - " - ::= {aiTrapDefinitionsGroup 1098 } - - wlsxInvalidMacOUISta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAddressType,wlsxTrapNodeMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an invalid MAC OUI in the SRC or DST address of a frame. An invalid MAC OUI suggests that the frame may be spoofed. - " - ::= {aiTrapDefinitionsGroup 1099 } - - wlsxWEPMisconfiguration NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point that is misconfigured because it does not have Privacy enabled. - " - ::= {aiTrapDefinitionsGroup 1100 } - - wlsxStaRepeatWEPIVViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a valid station is using the same WEP initialization vector in consecutive packets. - " - ::= {aiTrapDefinitionsGroup 1101 } - - wlsxStaWeakWEPIVViolation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that a valid station is using a Weak WEP initialization vector. - " - ::= {aiTrapDefinitionsGroup 1102 } - - wlsxStaAssociatedToUnsecureAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapNodeMac,wlsxTrapAPLocation, - wlsxTrapAPChannel,wlsxTrapRogueInfoURL} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected a client associated - with a Rogue access point. - " - ::= {aiTrapDefinitionsGroup 1103 } - - wlsxStaUnAssociatedFromUnsecureAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapNodeMac} - STATUS current - DESCRIPTION - " - This trap indicates that a previously detected rogue access point + " + ::= {aiTrapDefinitionsGroup 1094 } + + wlsxApFloodAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that the number of potential fake APs detected by + an AP has exceeded the configured IDS threshold. This is the total number of fake APs observed across all bands. + " + ::= {aiTrapDefinitionsGroup 1095 } + + wlsxAdhocNetwork NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected an Ad hoc + Network. An Station is connected to an ad hoc AP. + " + ::= {aiTrapDefinitionsGroup 1096 } + + wlsxWirelessBridge NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTransmitterMac,wlsxTrapReceiverMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a Wireless Bridge when a WDS frame was seen between the transmitter and receiver addresses. + " + ::= {aiTrapDefinitionsGroup 1097 } + + wlsxInvalidMacOUIAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAddressType,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an invalid MAC OUI in the BSSID of a frame. An invalid MAC OUI suggests that the frame may be spoofed. + " + ::= {aiTrapDefinitionsGroup 1098 } + + wlsxInvalidMacOUISta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAddressType,wlsxTrapNodeMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an invalid MAC OUI in the SRC or DST address of a frame. An invalid MAC OUI suggests that the frame may be spoofed. + " + ::= {aiTrapDefinitionsGroup 1099 } + + wlsxWEPMisconfiguration NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point that is misconfigured because it does not have Privacy enabled. + " + ::= {aiTrapDefinitionsGroup 1100 } + + wlsxStaRepeatWEPIVViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a valid station is using the same WEP initialization vector in consecutive packets. + " + ::= {aiTrapDefinitionsGroup 1101 } + + wlsxStaWeakWEPIVViolation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that a valid station is using a Weak WEP initialization vector. + " + ::= {aiTrapDefinitionsGroup 1102 } + + wlsxStaAssociatedToUnsecureAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapNodeMac,wlsxTrapAPLocation, + wlsxTrapAPChannel,wlsxTrapRogueInfoURL} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected a client associated + with a Rogue access point. + " + ::= {aiTrapDefinitionsGroup 1103 } + + wlsxStaUnAssociatedFromUnsecureAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapNodeMac} + STATUS current + DESCRIPTION + " + This trap indicates that a previously detected rogue access point association is no longer present. - " - ::= {aiTrapDefinitionsGroup 1104 } - - wlsxAdhocNetworkBridgeDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM has detected an Ad hoc - network that is bridging to a wired network - " - ::= {aiTrapDefinitionsGroup 1105 } - - wlsxInterferingApDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel, - wlsxTrapInterferingAPInfoURL} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point classified as Interfering. The access point - is declared Interfering because it is neither authorized or classified as Rogue. - " - ::= {aiTrapDefinitionsGroup 1106 } - - wlsxColdStart NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1104 } + + wlsxAdhocNetworkBridgeDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM has detected an Ad hoc + network that is bridging to a wired network + " + ::= {aiTrapDefinitionsGroup 1105 } + + wlsxInterferingApDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel, + wlsxTrapInterferingAPInfoURL} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point classified as Interfering. The access point + is declared Interfering because it is neither authorized or classified as Rogue. + " + ::= {aiTrapDefinitionsGroup 1106 } + + wlsxColdStart NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime} + STATUS current + DESCRIPTION + " An enterprise version of cold start trap, which contains the controller time stamp. - " - ::= {aiTrapDefinitionsGroup 1111 } - - wlsxWarmStart NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1111 } + + wlsxWarmStart NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime} + STATUS current + DESCRIPTION + " An enterprise version of warm start trap, which contains the controller time stamp. - " - ::= {aiTrapDefinitionsGroup 1112 } - - wlsxAPImpersonation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected AP Impersonation because the number of beacons seen has exceeded the expected number by the configured percentage threshold. + " + ::= {aiTrapDefinitionsGroup 1112 } + + wlsxAPImpersonation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected AP Impersonation because the number of beacons seen has exceeded the expected number by the configured percentage threshold. The expected number is calculated based on the Beacon Interval Field in the Beacon frame. - " - ::= {aiTrapDefinitionsGroup 1113 } - - wlsxNAuthServerIsDown NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName, wlsxTrapAuthServerAddress} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1113 } + + wlsxNAuthServerIsDown NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName, wlsxTrapAuthServerAddress} + STATUS current + DESCRIPTION + " This trap indicates that an authentication server is down. - " - ::= {aiTrapDefinitionsGroup 1115 } - - wlsxWindowsBridgeDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM has detected a station - that is bridging from a wireless network + " + ::= {aiTrapDefinitionsGroup 1115 } + + wlsxWindowsBridgeDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM has detected a station + that is bridging from a wireless network to a wired network - " - ::= {aiTrapDefinitionsGroup 1129 } - - wlsxSignAPNetstumbler NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Netstumbler from an access point. - For more info check: http://www.wve.org/entries/show/WVE-2005-0025 - " - ::= {aiTrapDefinitionsGroup 1134 } - - wlsxSignStaNetstumbler NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Netstumbler from a Station. - For more info check: http://www.wve.org/entries/show/WVE-2005-0025 - " - ::= {aiTrapDefinitionsGroup 1135 } - - wlsxSignAPAsleap NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for ASLEAP from an access point. - For more info check: http://www.wve.org/entries/show/WVE-2005-0027 - " - ::= {aiTrapDefinitionsGroup 1136 } - - wlsxSignStaAsleap NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for ASLEAP from a Station. - For more info check: http://www.wve.org/entries/show/WVE-2005-0027 - " - ::= {aiTrapDefinitionsGroup 1137 } - - wlsxSignAPAirjack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for AirJack from an access point. - For more info check: http://www.wve.org/entries/show/WVE-2005-0018 - " - ::= {aiTrapDefinitionsGroup 1138 } - - wlsxSignStaAirjack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for AirJack from a Station. - For more info check: http://www.wve.org/entries/show/WVE-2005-0018 - " - ::= {aiTrapDefinitionsGroup 1139 } - - wlsxSignAPNullProbeResp NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Null-Probe-Response from an access point. - For more info check: http://www.wve.org/entries/show/WVE-2006-0064 - " - ::= {aiTrapDefinitionsGroup 1140 } - - wlsxSignStaNullProbeResp NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Null-Probe-Response from a Station. - For more info check: http://www.wve.org/entries/show/WVE-2006-0064 - " - ::= {aiTrapDefinitionsGroup 1141 } - - wlsxSignAPDeauthBcast NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Deauth-Broadcast from an access point. - For more info check: http://www.wve.org/entries/show/WVE-2005-0019 - http://www.wve.org/entries/show/WVE-2005-0045 - " - ::= {aiTrapDefinitionsGroup 1142 } - - wlsxSignStaDeauthBcast NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Deauth-Broadcast from a Station. - For more info check: http://www.wve.org/entries/show/WVE-2005-0019 - http://www.wve.org/entries/show/WVE-2005-0045 - " - ::= {aiTrapDefinitionsGroup 1143 } - - wlsxWindowsBridgeDetectedAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP is detecting an access point that is bridging from a wireless network + " + ::= {aiTrapDefinitionsGroup 1129 } + + wlsxSignAPNetstumbler NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Netstumbler from an access point. + " + ::= {aiTrapDefinitionsGroup 1134 } + + wlsxSignStaNetstumbler NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Netstumbler from a Station. + " + ::= {aiTrapDefinitionsGroup 1135 } + + wlsxSignAPAsleap NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for ASLEAP from an access point. + " + ::= {aiTrapDefinitionsGroup 1136 } + + wlsxSignStaAsleap NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for ASLEAP from a Station. + " + ::= {aiTrapDefinitionsGroup 1137 } + + wlsxSignAPAirjack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for AirJack from an access point. + " + ::= {aiTrapDefinitionsGroup 1138 } + + wlsxSignStaAirjack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for AirJack from a Station. + " + ::= {aiTrapDefinitionsGroup 1139 } + + wlsxSignAPNullProbeResp NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Null-Probe-Response from an access point. + " + ::= {aiTrapDefinitionsGroup 1140 } + + wlsxSignStaNullProbeResp NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Null-Probe-Response from a Station. + " + ::= {aiTrapDefinitionsGroup 1141 } + + wlsxSignAPDeauthBcast NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Deauth-Broadcast from an access point. + " + ::= {aiTrapDefinitionsGroup 1142 } + + wlsxSignStaDeauthBcast NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSignatureName,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Deauth-Broadcast from a Station. + " + ::= {aiTrapDefinitionsGroup 1143 } + + wlsxWindowsBridgeDetectedAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP is detecting an access point that is bridging from a wireless network to a wired network. - " - ::= {aiTrapDefinitionsGroup 1144 } - - wlsxWindowsBridgeDetectedSta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP is detecting a station that is bridging from a wireless network + " + ::= {aiTrapDefinitionsGroup 1144 } + + wlsxWindowsBridgeDetectedSta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP is detecting a station that is bridging from a wireless network to a wired network. - " - ::= {aiTrapDefinitionsGroup 1145 } - - wlsxAdhocNetworkBridgeDetectedAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM has detected an Ad hoc - network that is bridging to a wired network - " - ::= {aiTrapDefinitionsGroup 1146 } - - wlsxAdhocNetworkBridgeDetectedSta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AM has detected an Ad hoc - network that is bridging to a wired network - " - ::= {aiTrapDefinitionsGroup 1147 } - - wlsxDisconnectStationAttackAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected a station disconnect + " + ::= {aiTrapDefinitionsGroup 1145 } + + wlsxAdhocNetworkBridgeDetectedAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM has detected an Ad hoc + network that is bridging to a wired network + " + ::= {aiTrapDefinitionsGroup 1146 } + + wlsxAdhocNetworkBridgeDetectedSta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AM has detected an Ad hoc + network that is bridging to a wired network + " + ::= {aiTrapDefinitionsGroup 1147 } + + wlsxDisconnectStationAttackAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected a station disconnect attack. - For more info check: http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1148 } - - wlsxDisconnectStationAttackSta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapSourceMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AM detected a station Disconnect + " + ::= {aiTrapDefinitionsGroup 1148 } + + wlsxDisconnectStationAttackSta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapFrameType,wlsxTrapSourceMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AM detected a station Disconnect attack. - For more info check: http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1149 } - - wlsxSuspectUnsecureAPDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPRadioNumber,wlsxTrapMatchedMac, - wlsxTrapMatchedIp,wlsxTrapConfidenceLevel, - wlsxTrapAPLocation,wlsxTrapRogueInfoURL} - STATUS current - DESCRIPTION - " This trap indicates that an access point, classified as Suspected Rogue, has been - detected by a Controller. The AP is suspected to be rogue, - with the supplied confidence level, because it was matched to - the wired MAC address. - " - ::= {aiTrapDefinitionsGroup 1150 } - - wlsxSuspectUnsecureAPResolved NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPRadioNumber} - STATUS current - DESCRIPTION - " - This trap indicates that a previously detected access point, classified Suspected + " + ::= {aiTrapDefinitionsGroup 1149 } + + wlsxSuspectUnsecureAPDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPRadioNumber,wlsxTrapMatchedMac, + wlsxTrapMatchedIp,wlsxTrapConfidenceLevel, + wlsxTrapAPLocation,wlsxTrapRogueInfoURL} + STATUS current + DESCRIPTION + " This trap indicates that an access point, classified as Suspected Rogue, has been + detected by a Controller. The AP is suspected to be rogue, + with the supplied confidence level, because it was matched to + the wired MAC address. + " + ::= {aiTrapDefinitionsGroup 1150 } + + wlsxSuspectUnsecureAPResolved NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPRadioNumber} + STATUS current + DESCRIPTION + " + This trap indicates that a previously detected access point, classified Suspected Rogue, is either no longer present in the network or has changed its state. - " - ::= {aiTrapDefinitionsGroup 1151 } - - wlsxHtGreenfieldSupported NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an access point that supports HT Greenfield mode. - For more info check: http://www.wve.org/entries/show/WVE-2008-0005 - " - ::= {aiTrapDefinitionsGroup 1157 } - - wlsxHT40MHzIntoleranceAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP is detecting an access point with the HT 40MHz intolerance setting. - For more info check: http://www.wve.org/entries/show/WVE-2008-0004 - " - ::= {aiTrapDefinitionsGroup 1158 } - - wlsxHT40MHzIntoleranceSta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapSnr, - wlsxTrapAPChannel,wlsxTrapFrameType, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that the system is detecting an HT 40MHz Intolerance setting from a Station. - For more info check: http://www.wve.org/entries/show/WVE-2008-0004 - " - ::= {aiTrapDefinitionsGroup 1159 } - - wlsxNAuthServerAllInService NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapESIServerGrpName} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1151 } + + wlsxHtGreenfieldSupported NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an access point that supports HT Greenfield mode. + " + ::= {aiTrapDefinitionsGroup 1157 } + + wlsxHT40MHzIntoleranceAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP is detecting an access point with the HT 40MHz intolerance setting. + " + ::= {aiTrapDefinitionsGroup 1158 } + + wlsxHT40MHzIntoleranceSta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapSnr, + wlsxTrapAPChannel,wlsxTrapFrameType, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that the system is detecting an HT 40MHz Intolerance setting from a Station. + " + ::= {aiTrapDefinitionsGroup 1159 } + + wlsxNAuthServerAllInService NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapESIServerGrpName} + STATUS current + DESCRIPTION + " This trap indicates that all authentication servers is a server group are brought back in service. - " - ::= {aiTrapDefinitionsGroup 1160 } - - wlsxNAdhocNetwork NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an ad hoc - network where a station is connected to an ad hoc access point. - " - ::= {aiTrapDefinitionsGroup 1161 } - - wlsxNAdhocNetworkBridgeDetectedAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an ad hoc - network that is bridging to a wired network. - " - ::= {aiTrapDefinitionsGroup 1162 } - - wlsxNAdhocNetworkBridgeDetectedSta NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapTargetAPSSID,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an ad hoc - network that is bridging to a wired network. - " - ::= {aiTrapDefinitionsGroup 1163 } - - - wlsxClientFloodAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that the number of potential fake clients detected by - an AP has exceeded the configured IDS threshold. This is the total number of fake clients observed across all bands. - For more info check: http://www.wve.org/entries/show/WVE-2005-0056 - " - ::= {aiTrapDefinitionsGroup 1170 } - - wlsxValidClientNotUsingEncryption NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapNodeMac, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an unencrypted data frame between a valid client and an access point. - " - ::= {aiTrapDefinitionsGroup 1171 } - - wlsxAdhocUsingValidSSID NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an ad hoc network using a valid/protected SSID. - For more info check: http://www.wve.org/entries/show/WVE-2005-0008 - " - ::= {aiTrapDefinitionsGroup 1172 } - - wlsxAPSpoofingDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapSpoofedFrameType, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected that one of its virtual APs is being spoofed using MAC spoofing. - For more info check: http://www.wve.org/entries/show/WVE-2005-0019 - " - ::= {aiTrapDefinitionsGroup 1173 } - - wlsxClientAssociatingOnWrongChannel NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapSpoofedFrameType, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a client trying to associate to one of its BSSIDs on the wrong channel. This can be a sign that the BSSID is + " + ::= {aiTrapDefinitionsGroup 1160 } + + wlsxNAdhocNetwork NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an ad hoc + network where a station is connected to an ad hoc access point. + " + ::= {aiTrapDefinitionsGroup 1161 } + + wlsxNAdhocNetworkBridgeDetectedAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an ad hoc + network that is bridging to a wired network. + " + ::= {aiTrapDefinitionsGroup 1162 } + + wlsxNAdhocNetworkBridgeDetectedSta NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapTargetAPSSID,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an ad hoc + network that is bridging to a wired network. + " + ::= {aiTrapDefinitionsGroup 1163 } + + + wlsxClientFloodAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that the number of potential fake clients detected by + an AP has exceeded the configured IDS threshold. This is the total number of fake clients observed across all bands. + " + ::= {aiTrapDefinitionsGroup 1170 } + + wlsxValidClientNotUsingEncryption NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapNodeMac, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an unencrypted data frame between a valid client and an access point. + " + ::= {aiTrapDefinitionsGroup 1171 } + + wlsxAdhocUsingValidSSID NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an ad hoc network using a valid/protected SSID. + " + ::= {aiTrapDefinitionsGroup 1172 } + + wlsxAPSpoofingDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapSpoofedFrameType, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected that one of its virtual APs is being spoofed using MAC spoofing. + " + ::= {aiTrapDefinitionsGroup 1173 } + + wlsxClientAssociatingOnWrongChannel NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapSpoofedFrameType, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a client trying to associate to one of its BSSIDs on the wrong channel. This can be a sign that the BSSID is being spoofed in order to fool the client into thinking the AP is operating on another channel. - " - ::= {aiTrapDefinitionsGroup 1174 } - - wlsxNDisconnectStationAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapSourceMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has determined that a client is under Disconnect Attack because the rate of Assoc/Reassoc Response packets + " + ::= {aiTrapDefinitionsGroup 1174 } + + wlsxNDisconnectStationAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapSourceMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has determined that a client is under Disconnect Attack because the rate of Assoc/Reassoc Response packets received by that client exceeds the configured threshold. - For more info check: http://www.wve.org/entries/show/WVE-2005-0045 - http://www.wve.org/entries/show/WVE-2005-0046 - http://www.wve.org/entries/show/WVE-2005-0048 - " - ::= {aiTrapDefinitionsGroup 1175 } - - wlsxNStaUnAssociatedFromUnsecureAP NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapNodeMac,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP that had previously detected a client association to a Rogue access point is no longer detecting that association. - " - ::= {aiTrapDefinitionsGroup 1176 } - - wlsxOmertaAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an Omerta attack. - For more info check: http://www.wve.org/entries/show/WVE-2005-0053 - " - ::= {aiTrapDefinitionsGroup 1177 } - - wlsxTKIPReplayAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a TKIP replay attack. If successful this could be the precursor to more - advanced attacks. - For more info check: http://www.wve.org/entries/show/WVE-2008-0013 - " - ::= {aiTrapDefinitionsGroup 1178 } - - wlsxChopChopAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a ChopChop attack. - For more info check: http://www.wve.org/entries/show/WVE-2006-0038 - " - ::= {aiTrapDefinitionsGroup 1179 } - - wlsxFataJackAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a FATA-Jack attack. - For more info check: http://www.wve.org/entries/show/WVE-2006-0057 - " - ::= {aiTrapDefinitionsGroup 1180 } - - wlsxInvalidAddressCombination NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapAPChannel, - wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an invalid source and destination combination. - For more info check: http://www.wve.org/entries/show/WVE-2008-0011 - " - ::= {aiTrapDefinitionsGroup 1181 } - - wlsxValidClientMisassociation NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapAssociationType, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a misassociation between a valid client and an unsafe AP. - " - ::= {aiTrapDefinitionsGroup 1182 } - - wlsxMalformedHTIEDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a malformed HT Information Element. This can be the result of a misbehaving wireless driver or it may be an indication of a new wireless attack. - " - ::= {aiTrapDefinitionsGroup 1183 } - - wlsxMalformedAssocReqDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a malformed association request with a NULL SSID. - For more info check: http://www.wve.org/entries/show/WVE-2008-0010 - " - ::= {aiTrapDefinitionsGroup 1184 } - - wlsxOverflowIEDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a management frame with a malformed information element. The declared length of the element is larger than the entire frame containing the element. This may be used to corrupt or crash wireless drivers. - For more info check: http://www.wve.org/entries/show/WVE-2008-0008 - " - ::= {aiTrapDefinitionsGroup 1185 } - - wlsxOverflowEAPOLKeyDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a key in an EAPOL Key message with a specified length greater than the length of the entire message. - For more info check: http://www.wve.org/entries/show/WVE-2008-0009 - " - ::= {aiTrapDefinitionsGroup 1186 } - - wlsxMalformedFrameLargeDurationDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an unusually large duration in a wireless frame. This may be an attempt to block other devices from transmitting. - For more info check: http://www.wve.org/entries/show/WVE-2005-0051 - " - ::= {aiTrapDefinitionsGroup 1187 } - - wlsxMalformedFrameWrongChannelDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapTargetAPChannel,wlsxTrapAPChannel, - wlsxTrapSnr} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a beacon on one channel advertising another channel. This could be an attempt to lure clients away from a valid AP. - For more info check: http://www.wve.org/entries/show/WVE-2006-0050 - " - ::= {aiTrapDefinitionsGroup 1188 } - - wlsxMalformedAuthFrame NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an authentication frame with + " + ::= {aiTrapDefinitionsGroup 1175 } + + wlsxNStaUnAssociatedFromUnsecureAP NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapNodeMac,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP that had previously detected a client association to a Rogue access point is no longer detecting that association. + " + ::= {aiTrapDefinitionsGroup 1176 } + + wlsxOmertaAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an Omerta attack. + " + ::= {aiTrapDefinitionsGroup 1177 } + + wlsxTKIPReplayAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a TKIP replay attack. If successful this could be the precursor to more + advanced attacks. + " + ::= {aiTrapDefinitionsGroup 1178 } + + wlsxChopChopAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a ChopChop attack. + " + ::= {aiTrapDefinitionsGroup 1179 } + + wlsxFataJackAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a FATA-Jack attack. + " + ::= {aiTrapDefinitionsGroup 1180 } + + wlsxInvalidAddressCombination NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapAPChannel, + wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an invalid source and destination combination. + " + ::= {aiTrapDefinitionsGroup 1181 } + + wlsxValidClientMisassociation NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapAssociationType, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a misassociation between a valid client and an unsafe AP. + " + ::= {aiTrapDefinitionsGroup 1182 } + + wlsxMalformedHTIEDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a malformed HT Information Element. This can be the result of a misbehaving wireless driver or it may be an indication of a new wireless attack. + " + ::= {aiTrapDefinitionsGroup 1183 } + + wlsxMalformedAssocReqDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a malformed association request with a NULL SSID. + " + ::= {aiTrapDefinitionsGroup 1184 } + + wlsxOverflowIEDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a management frame with a malformed information element. The declared length of the element is larger than the entire frame containing the element. This may be used to corrupt or crash wireless drivers. + " + ::= {aiTrapDefinitionsGroup 1185 } + + wlsxOverflowEAPOLKeyDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a key in an EAPOL Key message with a specified length greater than the length of the entire message. + " + ::= {aiTrapDefinitionsGroup 1186 } + + wlsxMalformedFrameLargeDurationDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an unusually large duration in a wireless frame. This may be an attempt to block other devices from transmitting. + " + ::= {aiTrapDefinitionsGroup 1187 } + + wlsxMalformedFrameWrongChannelDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapTargetAPChannel,wlsxTrapAPChannel, + wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a beacon on one channel advertising another channel. This could be an attempt to lure clients away from a valid AP. + " + ::= {aiTrapDefinitionsGroup 1188 } + + wlsxMalformedAuthFrame NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an authentication frame with either a bad algorithm (similar to Fata-Jack) or a bad transaction. - For more info check: http://www.wve.org/entries/show/WVE-2006-0057 - " - ::= {aiTrapDefinitionsGroup 1189 } - - wlsxCTSRateAnomaly NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that the rate of CTS packets + " + ::= {aiTrapDefinitionsGroup 1189 } + + wlsxCTSRateAnomaly NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that the rate of CTS packets received by an AP exceeds the configured IDS threshold. - " - ::= {aiTrapDefinitionsGroup 1190 } - - wlsxRTSRateAnomaly NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that the rate of RTS packets + " + ::= {aiTrapDefinitionsGroup 1190 } + + wlsxRTSRateAnomaly NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that the rate of RTS packets received by an AP exceeds the configured IDS threshold. - " - ::= {aiTrapDefinitionsGroup 1191 } - - wlsxNRogueAPDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an unauthorized access point is connected to the wired network. The access point is + " + ::= {aiTrapDefinitionsGroup 1191 } + + wlsxNRogueAPDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an unauthorized access point is connected to the wired network. The access point is classified as Rogue by the system. - " - ::= {aiTrapDefinitionsGroup 1192 } - - wlsxNRogueAPResolved NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1192 } + + wlsxNRogueAPResolved NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " This trap indicates that a previously detected access point, classified as Rogue, is either no longer present in the network or it changed its state. - " - ::= {aiTrapDefinitionsGroup 1193 } - - wlsxNeighborAPDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an access point has been classified as a Neighbor by the system. - " - ::= {aiTrapDefinitionsGroup 1194 } - - wlsxNInterferingAPDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an access point has been classified as Interfering by the system. The access point - is declared Interfering because it is not authorized, nor has it been classified as a Rogue. - " - ::= {aiTrapDefinitionsGroup 1195 } - - wlsxNSuspectRogueAPDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPChannel,wlsxTrapConfidenceLevel} - STATUS current - DESCRIPTION - " - This trap indicates that an access point, classified as Suspected Rogue, is - detected by the system. The AP is suspected to be rogue - with the supplied confidence level. - " - ::= {aiTrapDefinitionsGroup 1196 } - - wlsxNSuspectRogueAPResolved NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that a previously detected access point, classified as Suspected + " + ::= {aiTrapDefinitionsGroup 1193 } + + wlsxNeighborAPDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an access point has been classified as a Neighbor by the system. + " + ::= {aiTrapDefinitionsGroup 1194 } + + wlsxNInterferingAPDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an access point has been classified as Interfering by the system. The access point + is declared Interfering because it is not authorized, nor has it been classified as a Rogue. + " + ::= {aiTrapDefinitionsGroup 1195 } + + wlsxNSuspectRogueAPDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPChannel,wlsxTrapConfidenceLevel} + STATUS current + DESCRIPTION + " + This trap indicates that an access point, classified as Suspected Rogue, is + detected by the system. The AP is suspected to be rogue + with the supplied confidence level. + " + ::= {aiTrapDefinitionsGroup 1196 } + + wlsxNSuspectRogueAPResolved NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that a previously detected access point, classified as Suspected Rogue, is either no longer present in the network or has changed its state. - " - ::= {aiTrapDefinitionsGroup 1197 } - - wlsxBlockAckAttackDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapSourceMac, - wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1197 } + + wlsxBlockAckAttackDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapSourceMac, + wlsxTrapReceiverMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr} + STATUS current + DESCRIPTION + " This trap indicates that an attempt has been made to deny service to the source address by spoofing a block ACK add request that sets a sequence number window outside the currently used window. - For more info check: http://www.wve.org/entries/show/WVE-2008-0006 - " - ::= {aiTrapDefinitionsGroup 1198 } - - wlsxHotspotterAttackDetected NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapNodeMac, - wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapSnr, - wlsxTrapTargetAPSSID} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1198 } + + wlsxHotspotterAttackDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapNodeMac, + wlsxTrapSourceMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapSnr, + wlsxTrapTargetAPSSID} + STATUS current + DESCRIPTION + " This trap indicates that a new AP has appeared immediately following a client probe request. This is indicative of the Hotspotter tool or similar that attempts to trap clients with a fake hotspot or other wireless network. - For more info check: http://www.wve.org/entries/show/WVE-2005-0054 - " - ::= {aiTrapDefinitionsGroup 1199 } - - wlsxNSignatureMatch NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match in a frame. - " - ::= {aiTrapDefinitionsGroup 1200 } - - wlsxNSignatureMatchNetstumbler NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Netstumbler in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2005-0025 - " - ::= {aiTrapDefinitionsGroup 1201 } - - wlsxNSignatureMatchAsleap NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for ASLEAP in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2005-0027 - " - ::= {aiTrapDefinitionsGroup 1202 } - - wlsxNSignatureMatchAirjack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Airjack in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2005-0018 - " - ::= {aiTrapDefinitionsGroup 1203 } - - wlsxNSignatureMatchNullProbeResp NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Null-Probe-Response in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2006-0064 - " - ::= {aiTrapDefinitionsGroup 1204 } - - wlsxNSignatureMatchDeauthBcast NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Deauth-Broadcast in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2005-0019 - http://www.wve.org/entries/show/WVE-2005-0045 - " - ::= {aiTrapDefinitionsGroup 1205 } - - wlsxNSignatureMatchDisassocBcast NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Disassoc-Broadcast in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2005-0019 - http://www.wve.org/entries/show/WVE-2005-0046 - " - ::= {aiTrapDefinitionsGroup 1206 } - - wlsxNSignatureMatchWellenreiter NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, - wlsxTrapReceiverMac,wlsxTrapSignatureName, - wlsxTrapSnr,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation, - wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a signature match for Wellenreiter in a frame. - For more info check: http://www.wve.org/entries/show/WVE-2006-0058 - " - ::= {aiTrapDefinitionsGroup 1207 } - - wlsxAPDeauthContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, - wlsxTrapAPChannel,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain an access point by disconnecting its client. - " - ::= {aiTrapDefinitionsGroup 1208 } - - wlsxClientDeauthContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, - wlsxTrapAPChannel,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain a client by disconnecting it from the AP that it is associated with. - " - ::= {aiTrapDefinitionsGroup 1209 } - - wlsxAPWiredContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, - wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain an access point by disrupting traffic to its client on the wired interface. - " - ::= {aiTrapDefinitionsGroup 1210 } - - wlsxClientWiredContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, - wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain a client by disrupting traffic to it on the wired interface. - " - ::= {aiTrapDefinitionsGroup 1211 } - - wlsxAPTaggedWiredContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, - wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, - wlsxTrapVlanId,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain an access point by disrupting traffic to its client on the wired interface. - " - ::= {aiTrapDefinitionsGroup 1212 } - - wlsxClientTaggedWiredContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, - wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, - wlsxTrapVlanId,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain a client by disrupting traffic to it on the wired interface. - " - ::= {aiTrapDefinitionsGroup 1213 } - - wlsxTarpitContainment NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, - wlsxTrapAPChannel,wlsxTrapTargetAPChannel, - wlsxTrapSourceMac,wlsxTrapAPMacAddress, - wlsxTrapAPRadioNumber,wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP has attempted to contain an access point by moving a client that is attempting to associate to it to a tarpit. - " - ::= {aiTrapDefinitionsGroup 1214 } - - wlsxAPChannelChange NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPChannel,wlsxTrapAPChannelSec, - wlsxTrapAPPrevChannel,wlsxTrapAPPrevChannelSec, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPARMChangeReason} - STATUS current - DESCRIPTION - " - This trap indicates that an AP changed its channel. - " - ::= {aiTrapDefinitionsGroup 1216 } - - wlsxAPPowerChange NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPTxPower,wlsxTrapAPPrevTxPower, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP changed its transmit power level. - " - ::= {aiTrapDefinitionsGroup 1217 } - - wlsxAPModeChange NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPCurMode,wlsxTrapAPPrevMode, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation} - STATUS current - DESCRIPTION - " - This trap indicates that an AP changed its mode from AP to APMonitor or vice versa. - " - ::= {aiTrapDefinitionsGroup 1218 } - - wlsxUserEntryAttributesChanged NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress, - wlsxTrapAPBSSID,wlsxTrapAPName, - wlsxTrapCardSlot,wlsxTrapPortNumber, - wlsxTrapUserAttributeChangeType} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1199 } + + wlsxNSignatureMatch NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match in a frame. + " + ::= {aiTrapDefinitionsGroup 1200 } + + wlsxNSignatureMatchNetstumbler NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Netstumbler in a frame. + " + ::= {aiTrapDefinitionsGroup 1201 } + + wlsxNSignatureMatchAsleap NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for ASLEAP in a frame. + " + ::= {aiTrapDefinitionsGroup 1202 } + + wlsxNSignatureMatchAirjack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Airjack in a frame. + " + ::= {aiTrapDefinitionsGroup 1203 } + + wlsxNSignatureMatchNullProbeResp NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Null-Probe-Response in a frame. + " + ::= {aiTrapDefinitionsGroup 1204 } + + wlsxNSignatureMatchDeauthBcast NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Deauth-Broadcast in a frame. + " + ::= {aiTrapDefinitionsGroup 1205 } + + wlsxNSignatureMatchDisassocBcast NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Disassoc-Broadcast in a frame. + " + ::= {aiTrapDefinitionsGroup 1206 } + + wlsxNSignatureMatchWellenreiter NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTransmitterMac, + wlsxTrapReceiverMac,wlsxTrapSignatureName, + wlsxTrapSnr,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation, + wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a signature match for Wellenreiter in a frame. + " + ::= {aiTrapDefinitionsGroup 1207 } + + wlsxAPDeauthContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, + wlsxTrapAPChannel,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain an access point by disconnecting its client. + " + ::= {aiTrapDefinitionsGroup 1208 } + + wlsxClientDeauthContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, + wlsxTrapAPChannel,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain a client by disconnecting it from the AP that it is associated with. + " + ::= {aiTrapDefinitionsGroup 1209 } + + wlsxAPWiredContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, + wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain an access point by disrupting traffic to its client on the wired interface. + " + ::= {aiTrapDefinitionsGroup 1210 } + + wlsxClientWiredContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, + wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain a client by disrupting traffic to it on the wired interface. + " + ::= {aiTrapDefinitionsGroup 1211 } + + wlsxAPTaggedWiredContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, + wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, + wlsxTrapVlanId,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain an access point by disrupting traffic to its client on the wired interface. + " + ::= {aiTrapDefinitionsGroup 1212 } + + wlsxClientTaggedWiredContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapNodeMac,wlsxTrapTargetAPBSSID, + wlsxTrapDeviceIpAddress,wlsxTrapDeviceMac, + wlsxTrapVlanId,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain a client by disrupting traffic to it on the wired interface. + " + ::= {aiTrapDefinitionsGroup 1213 } + + wlsxTarpitContainment NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapNodeMac, + wlsxTrapAPChannel,wlsxTrapTargetAPChannel, + wlsxTrapSourceMac,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP has attempted to contain an access point by moving a client that is attempting to associate to it to a tarpit. + " + ::= {aiTrapDefinitionsGroup 1214 } + + wlsxAPChannelChange NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPChannel,wlsxTrapAPChannelSec, + wlsxTrapAPPrevChannel,wlsxTrapAPPrevChannelSec, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPARMChangeReason} + STATUS current + DESCRIPTION + " + This trap indicates that an AP changed its channel. + " + ::= {aiTrapDefinitionsGroup 1216 } + + wlsxAPPowerChange NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPTxPower,wlsxTrapAPPrevTxPower, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP changed its transmit power level. + " + ::= {aiTrapDefinitionsGroup 1217 } + + wlsxAPModeChange NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPCurMode,wlsxTrapAPPrevMode, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation} + STATUS current + DESCRIPTION + " + This trap indicates that an AP changed its mode from AP to APMonitor or vice versa. + " + ::= {aiTrapDefinitionsGroup 1218 } + + wlsxUserEntryAttributesChanged NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserIpAddress,wlsxTrapUserPhyAddress, + wlsxTrapAPBSSID,wlsxTrapAPName, + wlsxTrapCardSlot,wlsxTrapPortNumber, + wlsxTrapUserAttributeChangeType} + STATUS current + DESCRIPTION + " This trap indicates that the user entry attributes have changed. - " - ::= {aiTrapDefinitionsGroup 1219 } - - wlsxPowerSaveDosAttack NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapNodeMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected a Power Save DoS attack. - " - ::= {aiTrapDefinitionsGroup 1220 } - - wlsxNAPMasterStatusChange NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapApControllerIp, - wlsxTrapApMasterStatus} - STATUS current - DESCRIPTION - " + " + ::= {aiTrapDefinitionsGroup 1219 } + + wlsxPowerSaveDosAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapNodeMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a Power Save DoS attack. + " + ::= {aiTrapDefinitionsGroup 1220 } + + wlsxNAPMasterStatusChange NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapApControllerIp, + wlsxTrapApMasterStatus} + STATUS current + DESCRIPTION + " This trap indicates that the status of the AP as seen by the master controller has changed. - " - ::= {aiTrapDefinitionsGroup 1221 } - - wlsxNAdhocUsingValidSSID NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, - wlsxTrapSourceMac,wlsxTrapSnr, - wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, - wlsxTrapAPLocation,wlsxTrapAPChannel} - STATUS current - DESCRIPTION - " - This trap indicates that an AP detected an ad hoc network node using a valid/protected SSID. - For more info check: http://www.wve.org/entries/show/WVE-2005-0008 - " - ::= {aiTrapDefinitionsGroup 1222 } - - wlsxMgmtUserAuthenticationFailed NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserName,wlsxTrapUserIpAddress, - wlsxTrapUserPhyAddress,wlsxTrapAuthServerName, + " + ::= {aiTrapDefinitionsGroup 1221 } + + wlsxNAdhocUsingValidSSID NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapTargetAPBSSID,wlsxTrapTargetAPSSID, + wlsxTrapSourceMac,wlsxTrapSnr, + wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapAPChannel} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected an ad hoc network node using a valid/protected SSID. + " + ::= {aiTrapDefinitionsGroup 1222 } + + wlsxMgmtUserAuthenticationFailed NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapUserName,wlsxTrapUserIpAddress, + wlsxTrapUserPhyAddress,wlsxTrapAuthServerName, wlsxTrapAuthServerAddress} - STATUS current - DESCRIPTION - " + STATUS current + DESCRIPTION + " This trap indicates that a management user authentication has failed. - " - ::= {aiTrapDefinitionsGroup 1224 } + " + ::= {aiTrapDefinitionsGroup 1224 } wlsxAPActiveUplinkChanged NOTIFICATION-TYPE OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPPreviousUplinkType, @@ -4815,45 +5017,99 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION ::= {aiTrapDefinitionsGroup 1255 } wlsxNAuthServerAcctTimedOut NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapUserName,wlsxTrapUserIpAddress, - wlsxTrapUserPhyAddress,wlsxTrapAuthServerName, - wlsxTrapAuthServerAddress,wlsxTrapAPBSSID, - wlsxTrapAPName} - STATUS current - DESCRIPTION - " + OBJECTS {wlsxTrapTime, wlsxTrapUserName,wlsxTrapUserIpAddress, + wlsxTrapUserPhyAddress,wlsxTrapAuthServerName, + wlsxTrapAuthServerAddress,wlsxTrapAPBSSID, + wlsxTrapAPName} + STATUS current + DESCRIPTION + " This trap indicates that the authentication server accounting timed out. - " - ::= {aiTrapDefinitionsGroup 1256 } + " + ::= {aiTrapDefinitionsGroup 1256 } wlsxPortalServerDown NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapPortalServerName, wlsxTrapPortalServerAddress, - wlsxTrapAPName,wlsxTrapPortalServerDownReason} - STATUS current - DESCRIPTION - " + OBJECTS {wlsxTrapTime, wlsxTrapPortalServerName, wlsxTrapPortalServerAddress, + wlsxTrapAPName,wlsxTrapPortalServerDownReason} + STATUS current + DESCRIPTION + " This trap indicates that the portal server is down. - " - ::= {aiTrapDefinitionsGroup 1259 } + " + ::= {aiTrapDefinitionsGroup 1259 } wlsxPortalServerUp NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapPortalServerName, wlsxTrapPortalServerAddress, - wlsxTrapAPName} - STATUS current - DESCRIPTION - " + OBJECTS {wlsxTrapTime, wlsxTrapPortalServerName, wlsxTrapPortalServerAddress, + wlsxTrapAPName} + STATUS current + DESCRIPTION + " This trap indicates that the portal server is up. - " - ::= {aiTrapDefinitionsGroup 1260 } + " + ::= {aiTrapDefinitionsGroup 1260 } wlsxIAPVoiceClientLocationUpdate NOTIFICATION-TYPE - OBJECTS {wlsxTrapTime, wlsxTrapVcIpAddress, wlsxTrapVcMacAddress, - wlsxTrapAPMacAddress, wlsxTrapAPName} - STATUS current - DESCRIPTION - " + OBJECTS {wlsxTrapTime, wlsxTrapVcIpAddress, wlsxTrapVcMacAddress, + wlsxTrapAPMacAddress, wlsxTrapAPName} + STATUS current + DESCRIPTION + " The trap represents a IAP voice client location update. - " - ::= {aiTrapDefinitionsGroup 1262 } + " + ::= {aiTrapDefinitionsGroup 1262 } + + wlsxWPAFTAttack NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPRadioNumber, + wlsxTrapAPLocation,wlsxTrapNodeMac, + wlsxTrapAPChannel,wlsxTrapTargetAPBSSID} + STATUS current + DESCRIPTION + " + This trap indicates there is a possible attack of the Fast BSS Transition causing a WPA key re-installation. + This can be indicative of a security breach where an attacker can hijack a client's association and/or + decrypt an otherwise secure connection. + " + ::= {aiTrapDefinitionsGroup 1267 } + + wlsxMitMDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPLocation,wlsxTrapAPMacAddress, + wlsxTrapAPRadioNumber,wlsxTrapSourceMac, + wlsxTrapTargetAPBSSID,wlsxTrapAPChannel, + wlsxTrapSnr} + STATUS current + DESCRIPTION + " + This trap indicates that an AP detected a possible channel-based Man in the Middle attack by someone using spoofed beacons with an invalid Channel Switch Announcement. + " + ::= {aiTrapDefinitionsGroup 1268 } + + wlsxAPLoopDetected NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPName, + wlsxTrapPortNumber} + STATUS current + DESCRIPTION + " + This trap indicates that loop is detected on AP's secure jack port. + " + ::= {aiTrapDefinitionsGroup 1271 } + + wlsxAPBROADCASTSTORM NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPName, + wlsxTrapPortNumber} + STATUS current + DESCRIPTION + " + This trap indicates that broadcast storm is detected on AP's secure jack port. + " + ::= {aiTrapDefinitionsGroup 1272 } + + wlsxCLEARPASSSERVERINVALID NOTIFICATION-TYPE + OBJECTS {wlsxTrapTime, wlsxTrapAuthServerName} + STATUS current + DESCRIPTION + " + This trap indicates that clearpass server is not valid when using the CA to verity the server for download-role. + " + ::= {aiTrapDefinitionsGroup 1274 } END diff --git a/tests/data/arubaos_instant.json b/tests/data/aruba-instant.json similarity index 87% rename from tests/data/arubaos_instant.json rename to tests/data/aruba-instant.json index e761b1f7112f..d0e321fb55be 100644 --- a/tests/data/arubaos_instant.json +++ b/tests/data/aruba-instant.json @@ -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": "", "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": "", @@ -2150,16 +2150,58 @@ "wireless": { "discovery": { "wireless_sensors": [ + { + "sensor_deleted": 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": 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": ".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_index": "703a0ec9c246.0", + "sensor_type": "aruba-instant", + "sensor_descr": "CNBJHMV0WN Radio 0", "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, @@ -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", @@ -2322,17 +2364,59 @@ }, "poller": { "wireless_sensors": [ + { + "sensor_deleted": 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": 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": ".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_index": "703a0ec9c246.0", + "sensor_type": "aruba-instant", + "sensor_descr": "CNBJHMV0WN Radio 0", "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, @@ -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" } } diff --git a/tests/data/aruba-instant_105.json b/tests/data/aruba-instant_105.json new file mode 100644 index 000000000000..b199e61b3bbb --- /dev/null +++ b/tests/data/aruba-instant_105.json @@ -0,0 +1,2150 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.14823.1.2.71", + "sysDescr": "ArubaOS (MODEL: 105), Version 6.4.4.8-4.2.4.12", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "aruba-instant", + "type": "wireless", + "serial": null, + "icon": "aruba.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.14823.1.2.71", + "sysDescr": "ArubaOS (MODEL: 105), Version 6.4.4.8-4.2.4.12", + "sysContact": "", + "version": "6.4.4.8-4.2.4.12", + "hardware": "105", + "features": null, + "os": "aruba-instant", + "type": "wireless", + "serial": null, + "icon": "aruba.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "gigabitEthernet", + "ifAlias": "eth0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "radio0_ssid_id0", + "ifName": "radio0_ssid_id0", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "radioMAC", + "ifAlias": "radio0_ssid_id0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "radio1_ssid_id0", + "ifName": "radio1_ssid_id0", + "portName": null, + "ifIndex": 70, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "radioMAC", + "ifAlias": "radio1_ssid_id0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gre0", + "ifName": "gre0", + "portName": null, + "ifIndex": 90, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "gre0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "BR0", + "ifName": "BR0", + "portName": null, + "ifIndex": 500, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "BR0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "gigabitEthernet", + "ifAlias": "eth0", + "ifPhysAddress": "24dec6c352da", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 58004, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 141812, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 28244522, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 16869895, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 61010, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 132, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 61009, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 132, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "radio0_ssid_id0", + "ifName": "radio0_ssid_id0", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "radioMAC", + "ifAlias": "radio0_ssid_id0", + "ifPhysAddress": "24dec6b52da8", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2802, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2688, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 91, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 561664, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1767608, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 331, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 23, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 422, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 23, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 422, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "radio1_ssid_id0", + "ifName": "radio1_ssid_id0", + "portName": null, + "ifIndex": 70, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "radioMAC", + "ifAlias": "radio1_ssid_id0", + "ifPhysAddress": "24dec6b52da0", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 228, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 1, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 79238, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 213207, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 410, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "gre0", + "ifName": "gre0", + "portName": null, + "ifIndex": 90, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "tunnel", + "ifAlias": "gre0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "BR0", + "ifName": "BR0", + "portName": null, + "ifIndex": 500, + "ifSpeed": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1300, + "ifType": "other", + "ifAlias": "BR0", + "ifPhysAddress": "24dec6c352da", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.36.222.198.195.80.164", + "processor_index": "24dec6c350a4", + "processor_type": "aruba-instant", + "processor_usage": 9, + "processor_descr": "BT0489813", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.36.222.198.195.82.218", + "processor_index": "24dec6c352da", + "processor_type": "aruba-instant", + "processor_usage": 5, + "processor_descr": "BT0490379", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "BT0489813", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "aruba-instant", + "mempool_precision": 1, + "mempool_descr": "BT0489813", + "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 + }, + { + "mempool_index": "BT0490379", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "aruba-instant", + "mempool_precision": 1, + "mempool_descr": "BT0490379", + "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": "BT0489813", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "aruba-instant", + "mempool_precision": 1, + "mempool_descr": "BT0489813", + "mempool_perc": 60, + "mempool_used": 77750272, + "mempool_free": 50995200, + "mempool_total": 128745472, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 75 + }, + { + "mempool_index": "BT0490379", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "aruba-instant", + "mempool_precision": 1, + "mempool_descr": "BT0490379", + "mempool_perc": 60, + "mempool_used": 77750272, + "mempool_free": 50995200, + "mempool_total": 128745472, + "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.36.222.198.195.80.164", + "sensor_index": "36.222.198.195.80.164", + "sensor_type": "aiAPStatus", + "sensor_descr": "BT0489813", + "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.1.1.11.36.222.198.195.82.218", + "sensor_index": "36.222.198.195.82.218", + "sensor_type": "aiAPStatus", + "sensor_descr": "BT0490379", + "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.36.222.198.195.80.164.0", + "sensor_index": "36.222.198.195.80.164.0", + "sensor_type": "aiRadioStatus", + "sensor_descr": "BT0489813 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.36.222.198.195.80.164.1", + "sensor_index": "36.222.198.195.80.164.1", + "sensor_type": "aiRadioStatus", + "sensor_descr": "BT0489813 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" + }, + { + "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.36.222.198.195.82.218.0", + "sensor_index": "36.222.198.195.82.218.0", + "sensor_type": "aiRadioStatus", + "sensor_descr": "BT0490379 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.36.222.198.195.82.218.1", + "sensor_index": "36.222.198.195.82.218.1", + "sensor_type": "aiRadioStatus", + "sensor_descr": "BT0490379 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" + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 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": 2, + "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": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0", + "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.2.1.8.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "utilization", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 21, + "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.2.1.8.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "utilization", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0", + "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.2.1.8.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "utilization", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 13, + "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.2.1.8.36.222.198.195.82.218.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "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.2.1.5.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "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.2.1.5.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "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.2.1.5.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "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.2.1.5.36.222.198.195.82.218.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -93, + "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.2.1.6.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -94, + "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.2.1.6.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -93, + "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.2.1.6.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -94, + "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.2.1.6.36.222.198.195.82.218.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5660, + "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.2.1.4.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 2412, + "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.2.1.4.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5500, + "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.2.1.4.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 2462, + "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.2.1.4.36.222.198.195.82.218.1\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 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": 2, + "sensor_prev": 2, + "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": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0", + "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.2.1.8.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "utilization", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 21, + "sensor_prev": 21, + "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.2.1.8.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "utilization", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0", + "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.2.1.8.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "utilization", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 13, + "sensor_prev": 13, + "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.2.1.8.36.222.198.195.82.218.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "sensor_prev": 22, + "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.2.1.5.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "sensor_prev": 22, + "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.2.1.5.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "sensor_prev": 22, + "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.2.1.5.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1: Tx Power", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 22, + "sensor_prev": 22, + "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.2.1.5.36.222.198.195.82.218.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -93, + "sensor_prev": -93, + "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.2.1.6.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -94, + "sensor_prev": -94, + "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.2.1.6.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -93, + "sensor_prev": -93, + "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.2.1.6.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "noise-floor", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": -1, + "sensor_aggregator": "sum", + "sensor_current": -94, + "sensor_prev": -94, + "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.2.1.6.36.222.198.195.82.218.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c350a4.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5660, + "sensor_prev": 5660, + "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.2.1.4.36.222.198.195.80.164.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c350a4.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0489813 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 2412, + "sensor_prev": 2412, + "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.2.1.4.36.222.198.195.80.164.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c352da.0", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5500, + "sensor_prev": 5500, + "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.2.1.4.36.222.198.195.82.218.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "sensor_index": "24dec6c352da.1", + "sensor_type": "aruba-instant", + "sensor_descr": "BT0490379 Radio 1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 2462, + "sensor_prev": 2462, + "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.2.1.4.36.222.198.195.82.218.1\"]" + } + ] + } + } +} diff --git a/tests/snmpsim/arubaos_instant.snmprec b/tests/snmpsim/aruba-instant.snmprec similarity index 57% rename from tests/snmpsim/arubaos_instant.snmprec rename to tests/snmpsim/aruba-instant.snmprec index 528a96497e20..c8bd7c447582 100644 --- a/tests/snmpsim/arubaos_instant.snmprec +++ b/tests/snmpsim/aruba-instant.snmprec @@ -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| 1.3.6.1.2.1.1.5.0|4| 1.3.6.1.2.1.1.6.0|4| @@ -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 diff --git a/tests/snmpsim/aruba-instant_105.snmprec b/tests/snmpsim/aruba-instant_105.snmprec new file mode 100644 index 000000000000..034edcb82060 --- /dev/null +++ b/tests/snmpsim/aruba-instant_105.snmprec @@ -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| +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.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 diff --git a/tests/snmpsim/arubaos.snmprec b/tests/snmpsim/arubaos.snmprec index 12d8806b7cb1..f308ac728854 100644 --- a/tests/snmpsim/arubaos.snmprec +++ b/tests/snmpsim/arubaos.snmprec @@ -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