From 393b0e688f81f879fa44c24559bd527910d3a460 Mon Sep 17 00:00:00 2001 From: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Date: Sun, 19 May 2019 06:00:53 +0200 Subject: [PATCH] Added Wireless discovery to Huawei Vrp (#9516) * HUAWEI Wireless MIB files * Adding support for Wireless Controller capabilities of Huawei VRP Switches * CodeClimate Fixes * Add clientPerRadio polling for VRP * Cache snmpwalk_group and snmpwalk_cache_oid separately * Travis * Travis * Cleaning sensors not available * isset corrected * tests * clean * default value for depth * Update Vrp.php * Update Vrp.php * Update vrp.inc.php * Update vrp_ac6605-26.json --- LibreNMS/OS.php | 19 +- LibreNMS/OS/Vrp.php | 55 +- includes/definitions/discovery/vrp.yaml | 30 +- includes/polling/os/vrp.inc.php | 180 + mibs/huawei/HUAWEI-WLAN-AP-MIB | 4377 +++++ mibs/huawei/HUAWEI-WLAN-AP-RADIO-MIB | 1612 ++ mibs/huawei/HUAWEI-WLAN-AP-SERVICE-MIB | 2147 +++ mibs/huawei/HUAWEI-WLAN-AP-UPDATE-MIB | 855 + mibs/huawei/HUAWEI-WLAN-CAPWAP-MIB | 414 + mibs/huawei/HUAWEI-WLAN-CONFIGURATION-MIB | 16707 ++++++++++++++++++++ mibs/huawei/HUAWEI-WLAN-GLOBAL-MIB | 996 ++ mibs/huawei/HUAWEI-WLAN-MIB | 42 + mibs/huawei/HUAWEI-WLAN-NPE-MIB | 1219 ++ mibs/huawei/HUAWEI-WLAN-SAC-MIB | 2514 +++ mibs/huawei/HUAWEI-WLAN-STATION-MIB | 2335 +++ mibs/huawei/HUAWEI-WLAN-VAP-MIB | 1066 ++ mibs/huawei/HUAWEI-WLAN-WIDS-SERVICE-MIB | 2788 ++++ tests/data/vrp_ac6605-26.json | 7468 +++++++++ tests/snmpsim/vrp_ac6605-26.snmprec | 4005 +++++ 19 files changed, 48816 insertions(+), 13 deletions(-) create mode 100644 mibs/huawei/HUAWEI-WLAN-AP-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-AP-RADIO-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-AP-SERVICE-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-AP-UPDATE-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-CAPWAP-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-CONFIGURATION-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-GLOBAL-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-NPE-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-SAC-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-STATION-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-VAP-MIB create mode 100644 mibs/huawei/HUAWEI-WLAN-WIDS-SERVICE-MIB create mode 100644 tests/data/vrp_ac6605-26.json create mode 100644 tests/snmpsim/vrp_ac6605-26.snmprec diff --git a/LibreNMS/OS.php b/LibreNMS/OS.php index 282f59385c..edc6ed0a7d 100644 --- a/LibreNMS/OS.php +++ b/LibreNMS/OS.php @@ -116,12 +116,12 @@ class OS implements ProcessorDiscovery return null; } - if (!isset($this->cache[$oid])) { + if (!isset($this->cache['cache_oid'][$oid])) { $data = snmpwalk_cache_oid($this->getDevice(), $oid, array(), $mib, null, $snmpflags); - $this->cache[$oid] = array_map('current', $data); + $this->cache['cache_oid'][$oid] = array_map('current', $data); } - return $this->cache[$oid]; + return $this->cache['cache_oid'][$oid]; } /** @@ -130,21 +130,22 @@ class OS implements ProcessorDiscovery * DO NOT use numeric oids with this function! The snmp result must contain only one oid. * * @param string $oid textual oid - * @param string $mib mib for this oid + * @param string $mib mib for this oid (optional) + * @param string $depth depth for snmpwalk_group (optional) * @return array array indexed by the snmp index with the value as the data returned by snmp */ - public function getCacheTable($oid, $mib = null) + public function getCacheTable($oid, $mib = null, $depth = 1) { if (str_contains($oid, '.')) { echo "Error: don't use this with numeric oids!\n"; return null; } - if (!isset($this->cache[$oid])) { - $this->cache[$oid] = snmpwalk_group($this->getDevice(), $oid, $mib); + if (!isset($this->cache['group'][$depth][$oid])) { + $this->cache['group'][$depth][$oid] = snmpwalk_group($this->getDevice(), $oid, $mib, $depth); } - return $this->cache[$oid]; + return $this->cache['group'][$depth][$oid]; } /** @@ -155,7 +156,7 @@ class OS implements ProcessorDiscovery */ public function isCached($oid) { - return isset($this->cache[$oid]); + return isset($this->cache['cache_oid'][$oid]); } /** diff --git a/LibreNMS/OS/Vrp.php b/LibreNMS/OS/Vrp.php index d80d7b321c..a323593f10 100644 --- a/LibreNMS/OS/Vrp.php +++ b/LibreNMS/OS/Vrp.php @@ -30,8 +30,15 @@ use LibreNMS\Interfaces\Discovery\ProcessorDiscovery; use LibreNMS\Interfaces\Polling\NacPolling; use LibreNMS\OS; use App\Models\PortsNac; +use LibreNMS\Device\WirelessSensor; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessApCountDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery; -class Vrp extends OS implements ProcessorDiscovery, NacPolling +class Vrp extends OS implements + ProcessorDiscovery, + NacPolling, + WirelessApCountDiscovery, + WirelessClientsDiscovery { /** * Discover processors. @@ -123,4 +130,50 @@ class Vrp extends OS implements ProcessorDiscovery, NacPolling } return $nac; } + + public function discoverWirelessApCount() + { + $sensors = array(); + $ap_number = snmpwalk_cache_oid($this->getDevice(), 'hwWlanCurJointApNum.0', array(), 'HUAWEI-WLAN-GLOBAL-MIB'); + + $sensors[] = new WirelessSensor( + 'ap-count', + $this->getDeviceId(), + '.1.3.6.1.4.1.2011.6.139.12.1.2.1.0', + 'vrp-ap-count', + 'ap-count', + 'AP Count', + $ap_number[0]['hwWlanCurJointApNum'] + ); + return $sensors; + } + + public function discoverWirelessClients() + { + $sensors = array(); + $total_oids = array(); + + $vapInfoTable = $this->getCacheTable('hwWlanVapInfoTable', 'HUAWEI-WLAN-VAP-MIB', 3); + + foreach ($vapInfoTable as $a_index => $ap) { + //Convert mac address (hh:hh:hh:hh:hh:hh) to dec OID (ddd.ddd.ddd.ddd.ddd.ddd) + $a_index_oid = implode(".", array_map("hexdec", explode(":", $a_index))); + foreach ($ap as $r_index => $radio) { + foreach ($radio as $s_index => $ssid) { + $oid = '.1.3.6.1.4.1.2011.6.139.17.1.1.1.9.' . $a_index_oid . '.' . $r_index . '.' . $s_index ; + $total_oids[] = $oid; + $sensors[] = new WirelessSensor( + 'clients', + $this->getDeviceId(), + $oid, + 'vrp', + $a_index_oid . '.' . $r_index . '.' . $s_index, + 'Radio:' . $r_index . ' SSID:' . $ssid['hwWlanVapProfileName'], + $ssid['hwWlanVapStaOnlineCnt'] + ); + } + } + } + return $sensors; + } } diff --git a/includes/definitions/discovery/vrp.yaml b/includes/definitions/discovery/vrp.yaml index 1fc813246f..e490d27ca5 100644 --- a/includes/definitions/discovery/vrp.yaml +++ b/includes/definitions/discovery/vrp.yaml @@ -30,7 +30,15 @@ modules: num_oid: '.1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.{{ $index }}' descr: '{{ $entPhysicalName }}' index: '{{ $index }}' - skip_value_lt: -50 + skip_values: + - + oid: hwEntityOpticalMode + op: '=' + value: '1' + - + oid: hwEntityOpticalTemperature + op: '<' + value: '-50' - oid: hwEntityStateTable value: hwEntityTemperature @@ -108,8 +116,16 @@ modules: num_oid: '.1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.{{ $index }}' descr: '{{ $entPhysicalName }}' index: '{{ $index }}' - skip_values: -1 divisor: 1000 + skip_values: + - + oid: hwEntityOpticalVoltage + op: '=' + value: '-1' + - + oid: hwEntityOpticalMode + op: '=' + value: '1' current: data: - @@ -118,8 +134,16 @@ modules: num_oid: '.1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.{{ $index }}' descr: '{{ $entPhysicalName }}' index: '{{ $index }}' - skip_values: -1 divisor: 1000000 + skip_values: + - + oid: hwEntityOpticalBiasCurrent + op: '=' + value: '-1' + - + oid: hwEntityOpticalMode + op: '=' + value: '1' power: data: - diff --git a/includes/polling/os/vrp.inc.php b/includes/polling/os/vrp.inc.php index 089fea0486..5330ff22a6 100644 --- a/includes/polling/os/vrp.inc.php +++ b/includes/polling/os/vrp.inc.php @@ -22,6 +22,7 @@ $oidList = [ 'HUAWEI-MIB::hwDatacomm.183.1.25.1.5.1', 'HUAWEI-MIB::mlsr.20.1.1.1.3.0', ]; + foreach ($oidList as $oid) { $hardware_tmp = snmp_get($device, $oid, '-OQv'); @@ -35,3 +36,182 @@ foreach ($oidList as $oid) { if (empty($hardware_tmp) && !empty($matches[1])) { $hardware = "Huawei " . trim($matches[1]); } + +// Polling the Wireless data + +use LibreNMS\RRD\RrdDefinition; + +// check for Wireless Capability +$apTable = snmpwalk_group($device, 'hwWlanApName', 'HUAWEI-WLAN-AP-MIB', 2); + +//Check for exitence of at least 1 AP to continue the polling) +if (!empty($apTable)) { + $apTableOids = [ + 'hwWlanApSn', + 'hwWlanApTypeInfo', + ]; + foreach ($apTableOids as $apTableOid) { + $apTable = snmpwalk_group($device, $apTableOid, 'HUAWEI-WLAN-AP-MIB', 2, $apTable); + } + + $apRadioTableOids = [ // hwWlanRadioInfoTable + 'hwWlanRadioMac', + 'hwWlanRadioChUtilizationRate', + 'hwWlanRadioChInterferenceRate', + 'hwWlanRadioActualEIRP', + 'hwWlanRadioFreqType', + 'hwWlanRadioWorkingChannel', + ]; + + $clientPerRadio = []; + $radioTable = []; + foreach ($apRadioTableOids as $apRadioTableOid) { + $radioTable = snmpwalk_group($device, $apRadioTableOid, 'HUAWEI-WLAN-AP-RADIO-MIB', 2, $radioTable); + } + + $numClients = 0; + $vapInfoTable = snmpwalk_group($device, 'hwWlanVapStaOnlineCnt', 'HUAWEI-WLAN-VAP-MIB', 3); + foreach ($vapInfoTable as $ap_id => $ap) { + //Convert mac address (hh:hh:hh:hh:hh:hh) to dec OID (ddd.ddd.ddd.ddd.ddd.ddd) + //$a_index_oid = implode(".", array_map("hexdec", explode(":", $ap_id))); + foreach ($ap as $r_id => $radio) { + foreach ($radio as $s_index => $ssid) { + $clientPerRadio[$ap_id][$r_id] += $ssid['hwWlanVapStaOnlineCnt']; + $numClients += $ssid['hwWlanVapStaOnlineCnt']; + } + } + } + + $numRadios = count($radioTable); + + $rrd_def = RrdDefinition::make() + ->addDataset('NUMAPS', 'GAUGE', 0, 12500000000) + ->addDataset('NUMCLIENTS', 'GAUGE', 0, 12500000000); + + $fields = [ + 'NUMAPS' => $numRadios, + 'NUMCLIENTS' => $numClients, + ]; + + $tags = compact('rrd_def'); + data_update($device, 'vrp', $tags, $fields); + + $ap_db = dbFetchRows('SELECT * FROM `access_points` WHERE `device_id` = ?', [$device['device_id']]); + + foreach ($radioTable as $ap_id => $ap) { + foreach ($ap as $r_id => $radio) { + $channel = $radio['hwWlanRadioWorkingChannel']; + $mac = $radio['hwWlanRadioMac']; + $name = $apTable[$ap_id]['hwWlanApName'] . " Radio " . $r_id; + $radionum = $r_id ; + $txpow = $radio['hwWlanRadioActualEIRP']; + $interference = $radio['hwWlanRadioChInterferenceRate']; + $radioutil = $radio['hwWlanRadioChUtilizationRate']; + $numasoclients = $clientPerRadio[$ap_id][$r_id]; + + switch ($radio['hwWlanRadioFreqType']) { + case 1: + $type = "2.4Ghz"; + break; + case 2: + $type = "5Ghz"; + break; + default: + $type = "unknown (huawei " . $radio['hwWlanRadioFreqType'] . ")"; + } + + // TODO + $numactbssid = 0; + $nummonbssid = 0; + $nummonclients = 0; + + d_echo(" name: $name\n"); + d_echo(" radionum: $radionum\n"); + d_echo(" type: $type\n"); + d_echo(" channel: $channel\n"); + d_echo(" txpow: $txpow\n"); + d_echo(" radioutil: $radioutil\n"); + d_echo(" numasoclients: $numasoclients\n"); + d_echo(" interference: $interference\n"); + + $rrd_name = ['arubaap', $name.$radionum]; + $rrd_def = RrdDefinition::make() + ->addDataset('channel', 'GAUGE', 0, 200) + ->addDataset('txpow', 'GAUGE', 0, 200) + ->addDataset('radioutil', 'GAUGE', 0, 100) + ->addDataset('nummonclients', 'GAUGE', 0, 500) + ->addDataset('nummonbssid', 'GAUGE', 0, 200) + ->addDataset('numasoclients', 'GAUGE', 0, 500) + ->addDataset('interference', 'GAUGE', 0, 2000); + + $fields = [ + 'channel' => $channel, + 'txpow' => $txpow, + 'radioutil' => $radioutil, + 'nummonclients' => $nummonclients, + 'nummonbssid' => $nummonbssid, + 'numasoclients' => $numasoclients, + 'interference' => $interference, + ]; + + $tags = compact('name', 'radionum', 'rrd_name', 'rrd_def'); + data_update($device, 'arubaap', $tags, $fields); + + $foundid = 0; + + for ($z = 0; $z < sizeof($ap_db); $z++) { + if ($ap_db[$z]['name'] == $name && $ap_db[$z]['radio_number'] == $radionum) { + $foundid = $ap_db[$z]['accesspoint_id']; + $ap_db[$z]['seen'] = 1; + continue; + } + } + + if ($foundid == 0) { + $ap_id = dbInsert( + [ + 'device_id' => $device['device_id'], + 'name' => $name, + 'radio_number' => $radionum, + 'type' => $type, + 'mac_addr' => $mac, + 'channel' => $channel, + 'txpow' => $txpow, + 'radioutil' => $radioutil, + 'numasoclients' => $numasoclients, + 'nummonclients' => $nummonclients, + 'numactbssid' => $numactbssid, + 'nummonbssid' => $nummonbssid, + 'interference' => $interference + ], + 'access_points' + ); + } else { + dbUpdate( + [ + 'mac_addr' => $mac, + 'type' => $type, + 'deleted' => 0, + 'channel' => $channel, + 'txpow' => $txpow, + 'radioutil' => $radioutil, + 'numasoclients' => $numasoclients, + 'nummonclients' => $nummonclients, + 'numactbssid' => $numactbssid, + 'nummonbssid' => $nummonbssid, + 'interference' => $interference + ], + 'access_points', + '`accesspoint_id` = ?', + [$foundid] + ); + } + }//end foreach 1 + }//end foreach 2 + + for ($z = 0; $z < sizeof($ap_db); $z++) { + if (!isset($ap_db[$z]['seen']) && $ap_db[$z]['deleted'] == 0) { + dbUpdate(['deleted' => 1], 'access_points', '`accesspoint_id` = ?', [$ap_db[$z]['accesspoint_id']]); + } + } +} diff --git a/mibs/huawei/HUAWEI-WLAN-AP-MIB b/mibs/huawei/HUAWEI-WLAN-AP-MIB new file mode 100644 index 0000000000..57a8dc7b33 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-AP-MIB @@ -0,0 +1,4377 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used to manage AP on AC, include AP device notify, AP type, AP objects etc. +-- Reference: +-- Version: V1.31 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-AP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.13 + hwWlanAp MODULE-IDENTITY + LAST-UPDATED"201611220909Z" -- Nov 22, 2016 at 09:09 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.31, add hwApConfigInconsistWithActualTrap trap node." + REVISION "201611220909Z" -- Nov 22, 2016 at 09:09 GMT + DESCRIPTION + "V1.30, delete hwApSpecificChangeRadioID node." + REVISION "201609271628Z" -- Sep 27, 2016 at 16:28 GMT + DESCRIPTION + "V1.29, Add hwApSpecificConfigChangedTrap, hwApSpecificChangeConfig, hwApSpecificChangeReason and hwApSpecificChangeRadioID node." + REVISION "201609180919Z" -- Sep 18, 2016 at 09:19 GMT + DESCRIPTION + "V1.28, Add hwWlanAPLongitude,hwWlanAPLatitude,hwWlanIDIndexedAPLongitude and hwWlanIDIndexedAPLatitude node." + REVISION "201608121550Z" -- Aug 12, 2016 at 15:50 GMT + DESCRIPTION + "V1.27, Modify the Trap Parameters." + REVISION "201607141542Z" -- Jul 14, 2016 at 15:42 GMT + DESCRIPTION + "V1.26, Add hwApVapStaFullTrap hwVapStaFullRecoverTrap and hwWlanApWlanID node." + REVISION "201606021014Z" -- June 2, 2016 at 10:14 GMT + DESCRIPTION + "V1.25, Add hwAPIoTCardInsertTrap hwAPIoTCardRemoveTrap hwAPIoTServerStartFailTrap hwAPIoTServerStartFailResumeTrap hwWlanApSubFirmwareMismatchTrap node." + REVISION "201606011449Z" -- June 1, 2016 at 14:49 GMT + DESCRIPTION + "V1.24, Add hwWlanApSDCardSize and hwWlanIDIndexedApSDCardSize node." + REVISION "201605231042Z" -- May 23, 2016 at 10:42 GMT + DESCRIPTION + "V1.23, Modify hwWlanApWiredPortType node." + REVISION "201605031155Z" -- May 3, 2016 at 11:55 GMT + DESCRIPTION + "V1.22, Modify hwWlanApTypeWiredPortType node." + REVISION "201604181407Z" -- Apr 18, 2016 at 14:07 GMT + DESCRIPTION + "V1.21, Modify the Trap Parameters." + REVISION "201602241537Z" -- Feb 24, 2016 at 15:37 GMT + DESCRIPTION + "V1.20, Add the hwWlanIDIndexedApTable." + REVISION "201602161635Z" -- Feb 16, 2016 at 16:35 GMT + DESCRIPTION + "V1.19, Add the hwWlanApTrap node." + REVISION "201602161517Z" -- Feb 16, 2016 at 15:17 GMT + DESCRIPTION + "V1.18, Add the hwWlanApTrap node." + REVISION "201601121517Z" -- Jan 12, 2016 at 15:17 GMT + DESCRIPTION + "V1.17, Add the hwWlanApTrap node." + REVISION "201512231153Z" -- Dec 23, 2015 at 11:53 GMT + DESCRIPTION + "V1.16, Add the hwWlanApTrap node." + REVISION "201512180932Z" -- Dec 18, 2015 at 09:32 GMT + DESCRIPTION + "V1.15, Modify the hwWlanApMultiWiredPortMode node." + REVISION "201512172038Z" -- Dec 17, 2015 at 20:17 GMT + DESCRIPTION + "V1.14, Add the hwWlanApTrap node." + REVISION "201512081856Z" -- Dec 8, 2015 at 18:56 GMT + DESCRIPTION + "V1.13, Add the hwWlanApWiredPortApId and hwWlanApWiredPortApName node." + REVISION "201511121503Z" -- Nov 12, 2015 at 15:03 GMT + DESCRIPTION + "Modify the description of hwWlanCentralApId." + REVISION "201510191123Z" + DESCRIPTION + "Modify the description of hwWlanCrcErrActual." + REVISION "201510121123Z" + DESCRIPTION + "V1.11, Add the hwApOnLineNumExceedCardSpecTrap node." + REVISION "201509161352Z" -- Sep 16, 2015 at 13:52 GMT + DESCRIPTION + "Huawei AP device management mib." + REVISION "201508261030Z" -- Aug 26, 2015 at 10:30 GMT + DESCRIPTION + "V1.09, Add the AP ID in the trap node." + REVISION "201508051030Z" -- Aug 5, 2015 at 10:30 GMT + DESCRIPTION + "V1.08, Modify the value of hwWlanApRunState." + REVISION "201507221504Z" -- July 22, 2015 at 15:04 GMT + DESCRIPTION + "V1.07, Modify node of hwMPJoinedOnEthernetTrap,hwMPJoinedOnEthernetRestoreTrap,hwMPPJoinedOnAirTrap,hwMPPJoinedOnAirRestoreTrap." + REVISION "201506021120Z" -- June 2, 2015 at 11:20 GMT + DESCRIPTION + "V1.06, Add node of AP optical module Tx power." + REVISION "201505141030Z" -- May 14, 2015 at 10:30 GMT + DESCRIPTION + "Huawei AP device management mib." + REVISION "201505111030Z" -- May 11, 2015 at 10:30 GMT + DESCRIPTION + "V1.04, Add the description of mib nodes." + REVISION "201504111030Z" -- April 11, 2015 at 10:30 GMT + DESCRIPTION + "V1.03, Modify the sequence of table's index and the value of hwWlanApTypeRadioType." + REVISION "201503161030Z" -- March 16, 2015 at 10:30 GMT + DESCRIPTION + "V1.02, Modify the value of hwWlanApRunState." + REVISION "201503102030Z" -- March 10, 2015 at 20:30 GMT + DESCRIPTION + "V1.01, Modify the value of hwWlanApRunState." + + REVISION "201502020950Z" -- February 02, 2015 at 09:50 GMT + DESCRIPTION + "V1.00, Initial version." + ::= { hwWlan 13 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.13.1 + hwWlanApTrapInfo OBJECT IDENTIFIER ::= { hwWlanAp 1 } + + --1.3.6.1.4.1.2011.6.139.13.1.1 + hwWlanApTrap OBJECT IDENTIFIER ::= { hwWlanApTrapInfo 1 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.1 + hwApFaultTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanApFaultTimes, hwWlanApId + } + STATUS current + DESCRIPTION + "The object indicates an AP communication fault alarm." + ::= { hwWlanApTrap 1 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.2 + hwApNormalTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an AP communication fault clear alarm." + ::= { hwWlanApTrap 2 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.3 + hwApPingResultTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanApPingResultSuccessCount, hwWlanApPingResultFailureCount, hwWlanApPingResultAveResponseTime, + hwWlanApPingResultMinResponseTime, hwWlanApPingResultMaxResponseTime, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an AP ping result alarm." + ::= { hwWlanApTrap 3 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.4 + hwApConfigCommitTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the configuration of an AP is successfully committed." + ::= { hwWlanApTrap 4 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.5 + hwUnAuthorizedApRecordExistTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApUnAuthorizedApRecordNumber } + STATUS current + DESCRIPTION + "This object indicates that unauthorized AP alarms exist." + ::= { hwWlanApTrap 5 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.6 + hwUnAuthorizedApRecordClearTrap NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "This object indicates that unauthorized AP alarms are cleared." + ::= { hwWlanApTrap 6 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.7 + hwApCpuOverloadTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApCpuOccupancyRate, hwWlanApCpuOverloadDescInfo, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the CPU usage of an AP exceeds the upper threshold." + ::= { hwWlanApTrap 7 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.8 + hwApCpuOverloadRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApCpuOccupancyRate, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that an AP's CPU usage restores to the allowed range." + ::= { hwWlanApTrap 8 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.9 + hwApMemoryOverloadTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApMemoryOccupancyRate, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the memory usage of an AP exceeds the upper threshold." + ::= { hwWlanApTrap 9 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.10 + hwApMemoryOverloadRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApMemoryOccupancyRate, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the memory usage of an AP restores to the allowed range." + ::= { hwWlanApTrap 10 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.11 + hwApStaFullTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanStaAuthFailCause, hwWlanApPermitStaNum, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that new STAs cannot associate with an AP." + ::= { hwWlanApTrap 11 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.12 + hwApStaFullRecoverTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanStaAuthFailCause, hwWlanApPermitStaNum, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that new STAs can associate with an AP." + ::= { hwWlanApTrap 12 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.13 + hwAcDevicesSwitchTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApSn, hwWlanAcSystemSwitchType, hwWlanApId } + STATUS current + DESCRIPTION + "This object that an active/standby AC switchover occurs." + ::= { hwWlanApTrap 13 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.14 + hwDyingGaspTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a dying gasp alarm." + ::= { hwWlanApTrap 14 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.15 + hwApFaultTrapFat NOTIFICATION-TYPE + OBJECTS { hwWlanApActualType, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 15 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.16 + hwApNormalTrapFat NOTIFICATION-TYPE + OBJECTS { hwWlanApActualType, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 16 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.17 + hwApTemperatureTooLowTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature is too low." + ::= { hwWlanApTrap 17 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.18 + hwApTemperatureTooLowRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature restores to the normal range." + ::= { hwWlanApTrap 18 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.19 + hwApTemperatureTooHighTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature is too high." + ::= { hwWlanApTrap 19 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.20 + hwApTemperatureTooHighRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyOrRestoreTemperature, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature restores to the normal range." + ::= { hwWlanApTrap 20 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.21 + hwApOpticalRxPowerTooHighTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the receive power of an AP's optical module is too high." + ::= { hwWlanApTrap 21 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.22 + hwApOpticalRxPowerTooHighRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the receive power of an AP's optical module restores to the normal range." + ::= { hwWlanApTrap 22 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.23 + hwApOpticalRxPowerTooLowTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the receive power of an AP's optical module is too low." + ::= { hwWlanApTrap 23 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.24 + hwApOpticalRxPowerTooLowRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalRxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the receive power of an AP's optical module restores to the normal range." + ::= { hwWlanApTrap 24 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.25 + hwApOpticalTemperatureTooHighTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature of an AP's optical module is too high." + ::= { hwWlanApTrap 25 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.26 + hwApOpticalTemperatureTooHighRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature of an AP's optical module restores to the normal range." + ::= { hwWlanApTrap 26 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.27 + hwApOpticalTemperatureTooLowTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature of an AP's optical module is too low." + ::= { hwWlanApTrap 27 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.28 + hwApOpticalTemperatureTooLowRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTemperature, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the temperature of an AP's optical module restores to the normal range." + ::= { hwWlanApTrap 28 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.29 + hwApNotSupportCountryCodeTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApCfgCountryCode, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the country code is not supported." + ::= { hwWlanApTrap 29 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.30 + hwApColdBootTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a cold restart alarm." + ::= { hwWlanApTrap 30 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.31 + hwApColdBootRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a cold restart clear alarm." + ::= { hwWlanApTrap 31 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.32 + hwApHotBootTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a hot restart alarm." + ::= { hwWlanApTrap 32 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.33 + hwApHotBootRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApActualType, hwWlanApName, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a hot restart clear alarm." + ::= { hwWlanApTrap 33 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.34 + hwApCRCTooHighTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanCrcErrActual, hwWlanCrcPortType, hwWlanCrcPortID, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a CRC error alarm." + ::= { hwWlanApTrap 34 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.35 + hwApCRCTooHighRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanCrcErrActual, hwWlanCrcPortType, hwWlanCrcPortID, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that CRC error alarms are cleared." + ::= { hwWlanApTrap 35 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.36 + hwApConflictApNameTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanOccurTime, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an alarm of AP name conflict." + ::= { hwWlanApTrap 36 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.37 + hwApLicenseTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApLicenseInfo } + STATUS current + DESCRIPTION + "This object indicates an AP license resource exhaustion alarm." + ::= { hwWlanApTrap 37 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.38 + hwApFmeaIICFaultTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an FMEA IIC fault alarm." + ::= { hwWlanApTrap 38 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.39 + hwApFmeaIICFaultRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the FMEA IIC fault alarm is cleared." + ::= { hwWlanApTrap 39 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.40 + hwApFmeaPHYFaultTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an FMEA PHY fault alarm." + ::= { hwWlanApTrap 40 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.41 + hwApFmeaPHYFaultRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the FMEA PHY fault alarm is cleared." + ::= { hwWlanApTrap 41 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.42 + hwApFmeaFaultTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApFaultID, hwWlanApIfIndex, hwWlanApFaultInfo, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an FMEA fault alarm." + ::= { hwWlanApTrap 42 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.43 + hwApFmeaFaultRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApFaultID, hwWlanApIfIndex, hwWlanApFaultInfo, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the FMEA fault alarm is cleared." + ::= { hwWlanApTrap 43 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.44 + hwApOpticalInsertTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an alarm that is generated when an optical module is installed." + ::= { hwWlanApTrap 44 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.45 + hwApOpticalRemoveTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an alarm generated due to installation of an optical module is cleared." + ::= { hwWlanApTrap 45 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.46 + hwApReceivedInvalidArpNewTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApNotifyRadioId, hwWlanApNotifyWlanId, hwWlanApArpAttackDropNum, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that invalid ARP packets are received." + ::= { hwWlanApTrap 46 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.47 + hwApVersionMismatchTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApActualType, hwWlanApSoftwareVersion, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the AP version and the AC version do not match." + ::= { hwWlanApTrap 47 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.48 + hwRadioUploadRemoteCaptureFileTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioID, hwRadioUploadRemoteCaptureResult, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates the alarm on the remote capture result upload result." + ::= { hwWlanApTrap 48 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.49 + hwMPJoinedOnEthernetTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 49 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.50 + hwMPJoinedOnEthernetRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 50 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.51 + hwMPPJoinedOnAirTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 51 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.52 + hwMPPJoinedOnAirRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 52 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.53 + hwApOpticalTxPowerTooHighTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 53 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.54 + hwApOpticalTxPowerTooHighRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 54 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.55 + hwApOpticalTxPowerTooLowTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 55 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.56 + hwApOpticalTxPowerTooLowRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwWlanApOpticalTxPower, hwApEntityPhysicalName, + hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 56 } + + --1.3.6.1.4.1.2011.6.139.13.1.1.57 + hwApOnLineNumExceedCardSpecTrap NOTIFICATION-TYPE + OBJECTS { hwWlanSlotNum } + STATUS current + DESCRIPTION + "This object indicates the number of online APs on the card has exceeded the maximum value." + ::= { hwWlanApTrap 57 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.58 + hwApFanInvalidTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwApFanIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates a complete failure of a fan." + ::= { hwWlanApTrap 58 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.59 + hwApFanInvalidRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwApFanIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the complete failure of a fan has been rectified." + ::= { hwWlanApTrap 59 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.60 + hwApStorageDevRemoveTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwApStorageIndex, hwApStorageName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the storage card is removed." + ::= { hwWlanApTrap 60 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.61 + hwApStorageDevInsertTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwApStorageIndex, hwApStorageName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the storage card is installed." + ::= { hwWlanApTrap 61 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.62 + hwApPoePowerOffTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId, hwPowerOffReason } + STATUS current + DESCRIPTION + "This object indicates that a port is powered off." + ::= { hwWlanApTrap 62 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.63 + hwApPoePowerOnTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that a port is powered on." + ::= { hwWlanApTrap 63 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.64 + hwApPoePdConnectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that a port detects a PD connected to it." + ::= { hwWlanApTrap 64 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.65 + hwApPoePdDisconnectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that a port detects disconnection of the attached PD." + ::= { hwWlanApTrap 65 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.66 + hwApPoePdClassOvercurrentTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that a port detects a PD whose current exceeds the threshold of the corresponding class." + ::= { hwWlanApTrap 66 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.67 + hwApPoePdPriorityDifferentTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwApPoePdPriority, + hwApPoePortPriority, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the priority configured on a port is different from the PD priority." + ::= { hwWlanApTrap 67 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.68 + hwApPoePowerOverUtilizationThresholdTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwApPoeCurConsumPower, + hwApPoeConsumPowerThreshold, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the load power of a PoE slot exceeds the upper limit." + ::= { hwWlanApTrap 68 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.69 + hwApPoePowerOverUtilizationThresholdRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwApPoeCurConsumPower, + hwApPoeConsumPowerThreshold, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the load power of a PoE slot has fallen below the upper limit." + ::= { hwWlanApTrap 69 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.70 + hwApSTPAutoShutdownTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId + } + STATUS current + DESCRIPTION + " This object indicates that STP detected a loop and shut down the port based on configuration." + ::= { hwWlanApTrap 70 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.71 + hwApSTPAutoShutdownRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApId + } + STATUS current + DESCRIPTION + "This object indicates that the shutdown port has recovered." + ::= { hwWlanApTrap 71 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.72 + hwApOpticalInvalidTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApOpticalFaultID, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the optical transceiver does not work normally." + ::= { hwWlanApTrap 72 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.73 + hwApOpticalInvalidRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIfIndex, hwApEntityPhysicalName, hwWlanApOpticalFaultID, + hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the optical transceiver has restored." + ::= { hwWlanApTrap 73 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.74 + hwApVapStaFullTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioID, hwWlanApWlanID, hwWlanStaAuthFailCause, + hwWlanApPermitStaNum, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that new STAs cannot associate with an VAP." + ::= { hwWlanApTrap 74 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.75 + hwVapStaFullRecoverTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioID, hwWlanApWlanID, hwWlanStaAuthFailCause, + hwWlanApPermitStaNum, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that new STAs can associate with an VAP." + ::= { hwWlanApTrap 75 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.76 + hwWlanBLELowPowerTrap NOTIFICATION-TYPE + OBJECTS { hwWlanBLEMacAddr } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 76 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.77 + hwWlanBLELowPowerRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanBLEMacAddr } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 77 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.78 + hwWlanBLEOfflineTrap NOTIFICATION-TYPE + OBJECTS { hwWlanBLEMacAddr } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 78 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.79 + hwWlanBLEOfflineRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanBLEMacAddr } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 79 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.80 + hwWlanBLEFaultyTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName,hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 80 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.81 + hwWlanBLEFaultyRestoreTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac,hwWlanApName,hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 81 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.82 + hwAPIoTCardInsertTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 82 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.83 + hwAPIoTCardRemoveTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 83 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.84 + hwAPIoTServerStartFailTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApUdp, hwWlanApId + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 84 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.85 + hwAPIoTServerStartFailResumeTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApIotCardId, hwWlanApUdp, hwWlanApId + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 85 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.86 + hwWlanApSubFirmwareMismatchTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwSubFirmwareName, hwSubFirmware, hwRealVersion, + hwExpectVersion, hwWlanApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 86 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.87 + hwApSpecificConfigChangedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApSpecificChangeConfig, + hwApSpecificChangeReason} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrap 87 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.1.88 + hwApConfigInconsistWithActualTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApId, hwApInconsisitConfig, + hwApConfigInconsisitReason} + STATUS current + DESCRIPTION + "This alarm is generated when a the AP config is inconsistent with the actual attribute." + ::= { hwWlanApTrap 88 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2 + hwWlanApTrapObjects OBJECT IDENTIFIER ::= { hwWlanApTrapInfo 2 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.1 + hwWlanApActualType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 1 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.2 + hwWlanApCpuOccupancyRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 2 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.3 + hwWlanApMemoryOccupancyRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 3 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.4 + hwWlanApPermitStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 4 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.5 + hwWlanStaAuthFailCause OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 5 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.6 + hwWlanAcSystemSwitchType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 6 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.7 + hwWlanApOpticalRxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 7 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.8 + hwWlanApOpticalTemperature OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 8 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.9 + hwWlanApCfgCountryCode OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 9 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.10 + hwWlanApArpAttackSrcMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 10 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.11 + hwWlanApArpAttackDstMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 11 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.12 + hwWlanApArpAttackSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 12 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.13 + hwWlanApArpCfgRateThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 13 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.14 + hwWlanApArpActualRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 14 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.15 + hwWlanApNotifyRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 15 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.16 + hwWlanApNotifyOrRestoreTemperature OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 16 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.17 + hwWlanOccurTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 17 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.18 + hwWlanApBootNotifyName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 18 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.19 + hwWlanApFaultTimes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 19 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.20 + hwWlanApUnAuthorizedApRecordNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 20 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.21 + hwWlanCrcErrActual OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "CRC error alarm threshold value.The unit is 1/10000." + ::= { hwWlanApTrapObjects 21 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.22 + hwWlanCrcThreshold OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 22 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.23 + hwWlanApNotifyWlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 23 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.24 + hwWlanApLicenseInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 24 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.25 + hwWlanCrcPortType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 25 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.26 + hwWlanCrcPortID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 26 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.27 + hwWlanApArpAttackDropNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 27 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.28 + hwWlanApFaultID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates an FMEA fault alarm." + ::= { hwWlanApTrapObjects 28 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.29 + hwWlanApIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 29 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.30 + hwWlanApFaultInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 30 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.31 + hwWlanApSoftWareVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 31 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.32 + hwRadioUploadRemoteCaptureResult OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 32 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.33 + hwWlanApRadioID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 33 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.34 + hwWlanApCpuOverloadDescInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 34 } + + --1.3.6.1.4.1.2011.6.139.13.1.2.35 + hwWlanApOpticalTxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 35 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.36 + hwWlanSlotNum OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 36 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.37 + hwApPoePdPriority OBJECT-TYPE + SYNTAX INTEGER + { + critical(1), + high(2), + low(3) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the PD priority.The default value is low." + ::= { hwWlanApTrapObjects 37 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.38 + hwApPoePortPriority OBJECT-TYPE + SYNTAX INTEGER + { + critical(1), + high(2), + low(3) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the priority of an interface.The default value is low." + ::= { hwWlanApTrapObjects 38 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.39 + hwApPoeCurConsumPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the current consuming power." + ::= { hwWlanApTrapObjects 39 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.40 + hwApPoeConsumPowerThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the threshold of consuming power." + ::= { hwWlanApTrapObjects 40 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.41 + hwApFanIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the id of fan." + ::= { hwWlanApTrapObjects 41 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.42 + hwApEntityPhysicalName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the phisical name of entity name." + ::= { hwWlanApTrapObjects 42 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.43 + hwApStorageIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the id of Storage." + ::= { hwWlanApTrapObjects 43 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.44 + hwApStorageName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the name of Storage." + ::= { hwWlanApTrapObjects 44 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.45 + hwWlanApOpticalFaultID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the error corde of the optical transceiver fault." + ::= { hwWlanApTrapObjects 45 } + + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.46 + hwWlanApWlanID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the Wlan Id of the Vap that has the max number of stations." + ::= { hwWlanApTrapObjects 46 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.47 + hwWlanBLEMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 47 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.48 + hwWlanApUdp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 48 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.49 + hwSubFirmwareName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 49 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.50 + hwSubFirmware OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 50 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.51 + hwRealVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 51 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.52 + hwExpectVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 52 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.53 + hwWlanApIotCardId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTrapObjects 53 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.54 + hwPowerOffReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the reason of power off." + ::= { hwWlanApTrapObjects 54 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.55 + hwApSpecificChangeConfig OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the config of change." + ::= { hwWlanApTrapObjects 55 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.56 + hwApSpecificChangeReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the reason of change config." + ::= { hwWlanApTrapObjects 56 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.57 + hwApInconsisitConfig OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the inconsistent config." + ::= { hwWlanApTrapObjects 57 } + + -- 1.3.6.1.4.1.2011.6.139.13.1.2.58 + hwApConfigInconsisitReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object identifies the reason of inconsistent config." + ::= { hwWlanApTrapObjects 58 } + + --1.3.6.1.4.1.2011.6.139.13.2 + hwWlanApTypeObjects OBJECT IDENTIFIER ::= { hwWlanAp 2 } + + --1.3.6.1.4.1.2011.6.139.13.2.1 + hwWlanApTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query attributes based on AP types and restart APs based on AP types." + ::= { hwWlanApTypeObjects 1 } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1 + hwWlanApTypeEntry OBJECT-TYPE + SYNTAX HwWlanApTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApType." + INDEX { hwWlanApType } + ::= { hwWlanApTypeTable 1 } + + + HwWlanApTypeEntry ::= + SEQUENCE { + hwWlanApType + OCTET STRING, + hwWlanApTypeDesc + OCTET STRING, + hwWlanApTypeWiredPortNum + Integer32, + hwWlanApTypeRadioNum + Integer32, + hwWlanApTypeMaxStaNum + Integer32, + hwWlanApTypeReset + Integer32 + } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1.1 + hwWlanApType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the AP type name. It is the index of the table." + ::= { hwWlanApTypeEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1.2 + hwWlanApTypeDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates description of an AP type." + ::= { hwWlanApTypeEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1.3 + hwWlanApTypeWiredPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of wired ports on APs of a certain type." + ::= { hwWlanApTypeEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1.4 + hwWlanApTypeRadioNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on APs of a certain type." + ::= { hwWlanApTypeEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1.5 + hwWlanApTypeMaxStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum number of access STAs on an AP of a certain type." + ::= { hwWlanApTypeEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.2.1.1.6 + hwWlanApTypeReset OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that APs are restarted based on the AP type." + ::= { hwWlanApTypeEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.2.2 + hwWlanApTypeRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApTypeRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query radio-related attributes of APs of a certain type." + ::= { hwWlanApTypeObjects 2 } + + --1.3.6.1.4.1.2011.6.139.13.2.2.1 + hwWlanApTypeRadioEntry OBJECT-TYPE + SYNTAX HwWlanApTypeRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanApType and hwWlanApTypeRadioIndex." + INDEX { hwWlanApType, hwWlanApTypeRadioIndex } + ::= { hwWlanApTypeRadioTable 1 } + + + HwWlanApTypeRadioEntry ::= + SEQUENCE { + hwWlanApTypeRadioIndex + Integer32, + hwWlanApTypeRadioType + INTEGER, + hwWlanRadioMaxSpatialStreamsNum + Unsigned32, + hwWlanApTypeRadioAntennaGain + Integer32, + hwWlanApTypeRadioMaxVAPNum + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.13.2.2.1.1 + hwWlanApTypeRadioIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio index of APs of a certain type." + ::= { hwWlanApTypeRadioEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.2.2.1.2 + hwWlanApTypeRadioType OBJECT-TYPE + SYNTAX INTEGER + { + wlan80211a(1) , + wlan80211b(2) , + wlan80211g(3) , + wlan80211bg(4) , + wlan80211an(5) , + wlan80211bgn(6), + wlan80211abgn(7), + wlan80211ac(8), + wlan80211anac(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio type of APs of a certain type." + ::= { hwWlanApTypeRadioEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.2.2.1.3 + hwWlanRadioMaxSpatialStreamsNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum number of spatial streams of an AP radio." + ::= { hwWlanApTypeRadioEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.13.2.2.1.4 + hwWlanApTypeRadioAntennaGain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates that the antenna gain is configured according to the radio ID." + ::= { hwWlanApTypeRadioEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.13.2.2.1.5 + hwWlanApTypeRadioMaxVAPNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApTypeRadioEntry 5 } + --1.3.6.1.4.1.2011.6.139.13.2.3 + hwWlanApTypeWiredPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApTypeWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query wired interface attributes of APs of a certain type." + ::= { hwWlanApTypeObjects 3 } + + --1.3.6.1.4.1.2011.6.139.13.2.3.1 + hwWlanApTypeWiredPortEntry OBJECT-TYPE + SYNTAX HwWlanApTypeWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanApType and hwWlanApTypeWiredPortIndex." + INDEX { hwWlanApType,hwWlanApTypeWiredPortIndex} + ::= { hwWlanApTypeWiredPortTable 1 } + + + HwWlanApTypeWiredPortEntry ::= + SEQUENCE { + hwWlanApTypeWiredPortIndex + Integer32, + hwWlanApTypeWiredPortType + INTEGER, + hwWlanApTypeWiredPortName + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.13.2.3.1.1 + hwWlanApTypeWiredPortIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of an AP's wired interface. + Numbering rule: port-index = port-type * 100 + port-number. For example, the indexes of a wall plate AP's GE0, eth0, + and eth1 are 200 (2 * 100 + 0 = 200), 100 (1 * 100 + 0 = 100), and 101 (1 * 100 + 1 = 101) respectively." + ::= { hwWlanApTypeWiredPortEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.2.3.1.2 + hwWlanApTypeWiredPortType OBJECT-TYPE + SYNTAX INTEGER + { + fe(1), + ge(2), + gpon(3), + epon(4), + adsl2plus(5), + ethTrunk(6), + multige(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of an AP's wired interface." + ::= { hwWlanApTypeWiredPortEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.2.3.1.3 + hwWlanApTypeWiredPortName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of a wired interface on APs of a certain type, for example, ethernet 0, ethernet 1, gigabit-ethernet 0, and eth-trunk 0." + ::= { hwWlanApTypeWiredPortEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3 + hwWlanApObjects OBJECT IDENTIFIER ::= { hwWlanAp 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.1 + hwWlanApPing OBJECT IDENTIFIER ::= { hwWlanApObjects 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.1 + hwWlanApPingApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the MAC address in an AP ping operation. If the AP ID and MAC address are specified concurrently, the AP is pinged based on the MAC address." + ::= { hwWlanApPing 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.2 + hwWlanApPingAddress OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the domain name or IP address of the destination host." + ::= { hwWlanApPing 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.3 + hwWlanApPingCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the number of times ICMP ECHO-REQUEST packets are sent.Default value: 4." + ::= { hwWlanApPing 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.4 + hwWlanApPingPacketSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the length of an ECHO-REQUE." + ::= { hwWlanApPing 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.5 + hwWlanApPingWaitTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the time to wait before sending the next ICMP Request packet.Unit: ms Default value: 2000." + ::= { hwWlanApPing 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.6 + hwWlanApPingTimeOut OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the timeout period for an ECHO-RESPONSE after an ECHO-REQUEST is sent.Unit: ms Default value: 2000." + ::= { hwWlanApPing 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.7 + hwWlanApPingResultSuccessCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of successful AP ping operations. Only the result of the latest AP ping operation is kept." + ::= { hwWlanApPing 7 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.8 + hwWlanApPingResultFailureCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of AP ping operation failures. Only the result of the latest AP ping operation is kept." + ::= { hwWlanApPing 8 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.9 + hwWlanApPingResultAveResponseTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the average response time for an AP ping operation. Only the result of the latest AP ping operation is kept.Unit: ms." + ::= { hwWlanApPing 9 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.10 + hwWlanApPingResultMinResponseTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the minimum response time for an AP ping operation. Only the result of the latest AP ping operation is kept.Unit: ms." + ::= { hwWlanApPing 10 } + + --1.3.6.1.4.1.2011.6.139.13.3.1.11 + hwWlanApPingResultMaxResponseTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum response time for an AP ping operation. Only the result of the latest AP ping operation is kept.Unit: ms." + ::= { hwWlanApPing 11 } + + + -- 1.3.6.1.4.1.2011.6.139.13.3.1.12 + hwWlanApPingResultFlag OBJECT-TYPE + SYNTAX INTEGER + { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the result of the AP ping operation." + ::= { hwWlanApPing 12 } + + +-- 1.3.6.1.4.1.2011.6.139.13.3.2 + -- 1.3.6.1.4.1.2011.6.139.13.3.2 + hwWlanUnauthedApRecordTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanUnauthedApRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes rogue AP records. Rogue APs are those whose MAC addresses and SNs are not in the whitelist and not confirmed after being discovered by the AC." + ::= { hwWlanApObjects 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1 + hwWlanUnauthedApRecordEntry OBJECT-TYPE + SYNTAX HwWlanUnauthedApRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanUnauthedApRecordIndex." + INDEX { hwWlanUnauthedApRecordIndex } + ::= { hwWlanUnauthedApRecordTable 1 } + + + HwWlanUnauthedApRecordEntry ::= + SEQUENCE { + hwWlanUnauthedApRecordIndex + Integer32, + hwWlanUnauthedApType + OCTET STRING, + hwWlanUnauthedApMacAddress + MacAddress, + hwWlanUnauthedApSn + OCTET STRING, + hwWlanUnauthedApIpAddress + IpAddress, + hwWlanUnauthedApRecordTime + DateAndTime + } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1.1 + hwWlanUnauthedApRecordIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of a rogue AP record." + ::= { hwWlanUnauthedApRecordEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1.2 + hwWlanUnauthedApType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of a rogue AP." + ::= { hwWlanUnauthedApRecordEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1.3 + hwWlanUnauthedApMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of a rogue AP." + ::= { hwWlanUnauthedApRecordEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1.4 + hwWlanUnauthedApSn OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SN of a rogue AP." + ::= { hwWlanUnauthedApRecordEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1.5 + hwWlanUnauthedApIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address of a rogue AP." + ::= { hwWlanUnauthedApRecordEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.2.1.6 + hwWlanUnauthedApRecordTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the time when a rogue AP is recorded." + ::= { hwWlanUnauthedApRecordEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.3 + hwWlanApTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to add, delete, modify, reset, or confirm APs. You can also use the table to query the configuration and restore factory settings of APs." + ::= { hwWlanApObjects 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1 + hwWlanApEntry OBJECT-TYPE + SYNTAX HwWlanApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApMac." + INDEX { hwWlanApMac } + ::= { hwWlanApTable 1 } + + + HwWlanApEntry ::= + SEQUENCE { + hwWlanApMac + MacAddress, + hwWlanApSn + OCTET STRING, + hwWlanApTypeInfo + OCTET STRING, + hwWlanApName + OCTET STRING, + hwWlanApGroup + OCTET STRING, + hwWlanApRunState + INTEGER, + hwWlanApSoftwareVersion + OCTET STRING, + hwWlanApHardwareVersion + OCTET STRING, + hwWlanApCpuType + OCTET STRING, + hwWlanApCpufrequency + Integer32, + hwWlanApMemoryType + OCTET STRING, + hwWlanApDomain + OCTET STRING, + hwWlanApIpAddress + IpAddress, + hwWlanApIpNetMask + IpAddress, + hwWlanApGatewayIp + IpAddress, + hwWlanApMemorySize + Integer32, + hwWlanApFlashSize + Integer32, + hwWlanApRunTime + Unsigned32, + hwWlanApAdminOper + INTEGER, + hwWlanApDNS + IpAddress, + hwWlanApOnlineTime + Unsigned32, + hwWlanApSysSoftwareDesc + OCTET STRING, + hwWlanApSysHardtwareDesc + OCTET STRING, + hwWlanApSysManufacture + OCTET STRING, + hwWlanApSysSoftwareName + OCTET STRING, + hwWlanApSysSoftwareVendor + OCTET STRING, + hwWlanApBomCode + OCTET STRING, + hwWlanApIpv6Address + OCTET STRING, + hwWlanApIpv6NetMask + OCTET STRING, + hwWlanApGatewayIpv6 + OCTET STRING, + hwWlanApIpv6DNS + OCTET STRING, + hwWlanApProtectAcIPv6Addr + OCTET STRING, + hwWlanApBootCountTotal + Integer32, + hwWlanApBootCountPowerOff + Integer32, + hwWlanApBootCountClear + RowStatus, + hwWlanApElectronicLabel + OCTET STRING, + hwWlanApWiredPortNum + Integer32, + hwWlanApWiredPortMtu + Integer32, + hwWlanApWiredPortMac + MacAddress, + hwWlanApMemoryUseRate + Integer32, + hwWlanApCpuUseRate + Integer32, + hwWlanApFlashFreeSize + Integer32, + hwWlanApTemperature + Integer32, + hwWlanApOnlineUserNum + Integer32, + hwWlanApDualBandAssoc5gStaNum + Unsigned32, + hwWlanApDualBandStaNum + Unsigned32, + hwWlanApStaOnlineFailRatio + Unsigned32, + hwWlanApStaOfflineRatio + Unsigned32, + hwWlanApStickyClientRatio + Unsigned32, + hwWlanApUpEthPortSpeed + INTEGER, + hwWlanApUpEthPortSpeedMode + INTEGER, + hwWlanApUpEthPortDuplex + INTEGER, + hwWlanApUpEthPortDuplexMode + INTEGER, + hwWlanApUpPortSpeed + Integer32, + hwWlanAPUpPortPER + Integer32, + hwWlanEthportUpRate + Integer32, + hwWlanEthportDownRate + Integer32, + hwWlanApAirportUpTraffic + OCTET STRING, + hwWlanApAirportDwTraffic + OCTET STRING, + hwWlanApEthportDwTraffic + OCTET STRING, + hwWlanApEthportUpTraffic + OCTET STRING, + hwWlanApUpPortRecvPackets + Counter64, + hwWlanApUpPortSendPackets + Counter64, + hwWlanApRowstatus + RowStatus, + hwWlanApUpPortRecvBytes + Counter64, + hwWlanApUpPortSendBytes + Counter64, + hwWlanApId + Unsigned32, + hwWlanCentralApId + Unsigned32, + hwWlanCentralApMac + MacAddress, + hwWlanCentralApName + OCTET STRING, + hwWlanApSDCardSize + Integer32, + hwWlanAPLongitude + OCTET STRING, + hwWlanAPLatitude + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.1 + hwWlanApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwWlanApEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.2 + hwWlanApSn OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the sequence number (SN) of an AP." + ::= { hwWlanApEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.3 + hwWlanApTypeInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP type." + ::= { hwWlanApEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.4 + hwWlanApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanApEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.5 + hwWlanApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the group to which an AP belongs." + ::= { hwWlanApEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.6 + hwWlanApRunState OBJECT-TYPE + SYNTAX INTEGER + { + idle(1) , + autofind(2) , + typeNotMatch(3) , + fault(4) , + config(5) , + configFailed(6) , + download(7) , + normal(8) , + committing(9) , + commitFailed(10) , + standby(11) , + verMismatch(12), + nameConflicted(13), + invalid(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP state." + ::= { hwWlanApEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.7 + hwWlanApSoftwareVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP software version." + ::= { hwWlanApEntry 7 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.8 + hwWlanApHardwareVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP hardware version." + ::= { hwWlanApEntry 8 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.9 + hwWlanApCpuType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the CPU type of an AP." + ::= { hwWlanApEntry 9 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.10 + hwWlanApCpufrequency OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the CPU frequency of an AP.Unit: MHz." + ::= { hwWlanApEntry 10 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.11 + hwWlanApMemoryType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the memory type of an AP." + ::= { hwWlanApEntry 11 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.12 + hwWlanApDomain OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP domain." + ::= { hwWlanApEntry 12 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.13 + hwWlanApIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address of an AP." + ::= { hwWlanApEntry 13 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.14 + hwWlanApIpNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address mask of an AP." + ::= { hwWlanApEntry 14 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.15 + hwWlanApGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the gateway IP address of an AP." + ::= { hwWlanApEntry 15 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.16 + hwWlanApMemorySize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the memory size of an AP.Unit: MB." + ::= { hwWlanApEntry 16 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.17 + hwWlanApFlashSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the flash memory size of an AP.Unit: MB." + ::= { hwWlanApEntry 17 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.18 + hwWlanApRunTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the running time of an AP.Unit: tick." + ::= { hwWlanApEntry 18 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.19 + hwWlanApAdminOper OBJECT-TYPE + SYNTAX INTEGER + { + reset(1) , + manufacturerConfig(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates administrative status of an AP." + ::= { hwWlanApEntry 19 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.20 + hwWlanApDNS OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP DNS." + ::= { hwWlanApEntry 20 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.21 + hwWlanApOnlineTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates online duration of an AP." + ::= { hwWlanApEntry 21 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.22 + hwWlanApSysSoftwareDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates system software description of an AP." + ::= { hwWlanApEntry 22 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.23 + hwWlanApSysHardtwareDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates system hardware description of an AP." + ::= { hwWlanApEntry 23 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.24 + hwWlanApSysManufacture OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the manufacturer of an AP." + ::= { hwWlanApEntry 24 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.25 + hwWlanApSysSoftwareName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates software name of an AP." + ::= { hwWlanApEntry 25 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.26 + hwWlanApSysSoftwareVendor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the manufacturer of the AP software." + ::= { hwWlanApEntry 26 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.27 + hwWlanApBomCode OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BOM code." + ::= { hwWlanApEntry 27 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.28 + hwWlanApIpv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address." + ::= { hwWlanApEntry 28 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.29 + hwWlanApIpv6NetMask OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address mask." + ::= { hwWlanApEntry 29 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.30 + hwWlanApGatewayIpv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 gateway." + ::= { hwWlanApEntry 30 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.31 + hwWlanApIpv6DNS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 DNS." + ::= { hwWlanApEntry 31 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.32 + hwWlanApProtectAcIPv6Addr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the standby AC." + ::= { hwWlanApEntry 32 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.33 + hwWlanApBootCountTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of times an AP is restarted." + ::= { hwWlanApEntry 33 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.34 + hwWlanApBootCountPowerOff OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times an AP is restarted due to a power failure." + ::= { hwWlanApEntry 34 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.35 + hwWlanApBootCountClear OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object clears the AP restart count." + ::= { hwWlanApEntry 35 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.36 + hwWlanApElectronicLabel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1025)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the electronic label of an AP." + ::= { hwWlanApEntry 36 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.37 + hwWlanApWiredPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of wired interfaces." + ::= { hwWlanApEntry 37 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.38 + hwWlanApWiredPortMtu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum transmit unit (MTU) of a wired interface." + ::= { hwWlanApEntry 38 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.39 + hwWlanApWiredPortMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of a wired interface." + ::= { hwWlanApEntry 39 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.40 + hwWlanApMemoryUseRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the memory usage.Unit: %." + ::= { hwWlanApEntry 40 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.41 + hwWlanApCpuUseRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the CPU usage.Unit: %." + ::= { hwWlanApEntry 41 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.42 + hwWlanApFlashFreeSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates available space in the flash memory.Unit: KB." + ::= { hwWlanApEntry 42 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.43 + hwWlanApTemperature OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the operating temperature." + ::= { hwWlanApEntry 43 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.44 + hwWlanApOnlineUserNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of online users." + ::= { hwWlanApEntry 44 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.45 + hwWlanApDualBandAssoc5gStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of dual-band terminals that access the 5 GHz radio." + ::= { hwWlanApEntry 45 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.46 + hwWlanApDualBandStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs that support dual frequency bands." + ::= { hwWlanApEntry 46 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.47 + hwWlanApStaOnlineFailRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates STA online failure ratio on an AP." + ::= { hwWlanApEntry 47 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.48 + hwWlanApStaOfflineRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates STA offline ratio of an AP." + ::= { hwWlanApEntry 48 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.49 + hwWlanApStickyClientRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the proportion of sticky STAs to all STAs." + ::= { hwWlanApEntry 49 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.50 + hwWlanApUpEthPortSpeed OBJECT-TYPE + SYNTAX INTEGER + { + speed10(1) , + speed100(2) , + speed1000(3) , + speed10000(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate of an upstream Ethernet interface." + ::= { hwWlanApEntry 50 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.51 + hwWlanApUpEthPortSpeedMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1) , + forced(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate mode of an upstream Ethernet interface." + ::= { hwWlanApEntry 51 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.52 + hwWlanApUpEthPortDuplex OBJECT-TYPE + SYNTAX INTEGER + { + half(1) , + full(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duplex state of an upstream Ethernet interface." + ::= { hwWlanApEntry 52 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.53 + hwWlanApUpEthPortDuplexMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1) , + forced(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duplex mode of an upstream Ethernet interface." + ::= { hwWlanApEntry 53 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.54 + hwWlanApUpPortSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the real-time rate of an upstream interface.Unit: Kbps." + ::= { hwWlanApEntry 54 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.55 + hwWlanAPUpPortPER OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet error rate of an upstream interface." + ::= { hwWlanApEntry 55 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.56 + hwWlanEthportUpRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream rate of an Ethernet interface." + ::= { hwWlanApEntry 56 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.57 + hwWlanEthportDownRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the downstream rate of an Ethernet interface." + ::= { hwWlanApEntry 57 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.58 + hwWlanApAirportUpTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on an upstream wireless interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanApEntry 58 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.59 + hwWlanApAirportDwTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on a downstream wireless interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanApEntry 59 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.60 + hwWlanApEthportDwTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on a downstream wired interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanApEntry 60 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.61 + hwWlanApEthportUpTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on an upstream wired interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanApEntry 61 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.62 + hwWlanApUpPortRecvPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of frames received on an upstream interface, which is extended to 64 bits." + ::= { hwWlanApEntry 62 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.63 + hwWlanApUpPortSendPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of frames sent on an upstream interface, which is extended to 64 bits." + ::= { hwWlanApEntry 63 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.64 + hwWlanApRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanApEntry 64 } + + -- 1.3.6.1.4.1.2011.6.139.13.3.3.1.65 + hwWlanApUpPortRecvBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of bytes received on an upstream interface." + ::= { hwWlanApEntry 65 } + + + -- 1.3.6.1.4.1.2011.6.139.13.3.3.1.66 + hwWlanApUpPortSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of bytes sent on an upstream interface." + ::= { hwWlanApEntry 66 } + + + -- 1.3.6.1.4.1.2011.6.139.13.3.3.1.67 + hwWlanApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Ap ID." + ::= { hwWlanApEntry 67 } + + -- 1.3.6.1.4.1.2011.6.139.13.3.3.1.68 + hwWlanCentralApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the central AP ID." + ::= { hwWlanApEntry 68 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.69 + hwWlanCentralApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of an central AP." + ::= { hwWlanApEntry 69 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.70 + hwWlanCentralApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the central AP name." + ::= { hwWlanApEntry 70 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.71 + hwWlanApSDCardSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SD card size of an AP.Unit: MB." + ::= { hwWlanApEntry 71 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.72 + hwWlanAPLongitude OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the longitude of an AP." + ::= { hwWlanApEntry 72 } + + --1.3.6.1.4.1.2011.6.139.13.3.3.1.73 + hwWlanAPLatitude OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latitude of an AP." + ::= { hwWlanApEntry 73 } + + -- 1.3.6.1.4.1.2011.6.139.13.3.4 + hwWlanApWiredPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes AP wired interfaces and is used to query attributes of the wired interfaces." + ::= { hwWlanApObjects 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1 + hwWlanApWiredPortEntry OBJECT-TYPE + SYNTAX HwWlanApWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApMac and hwWlanApWiredPortIndex." + INDEX { hwWlanApMac, hwWlanApWiredPortIndex} + ::= { hwWlanApWiredPortTable 1 } + + + HwWlanApWiredPortEntry ::= + SEQUENCE { + hwWlanApWiredPortIndex + Integer32, + hwWlanApWiredPortType + INTEGER, + hwWlanApWiredPortDesc + OCTET STRING, + hwWlanApWiredPortState + INTEGER, + hwWlanApWiredPortSpeed + Integer32, + hwWlanApMultiWiredPortDuplex + INTEGER, + hwWlanApMultiWiredPortNegotiation + INTEGER, + hwWlanApMultiWiredPortMode + INTEGER, + hwWlanApWiredPortApId + Unsigned32, + hwWlanApWiredPortApName + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.1 + hwWlanApWiredPortIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.2 + hwWlanApWiredPortType OBJECT-TYPE + SYNTAX INTEGER + { + fe(1) , + ge(2) , + gpon(3) , + epon(4) , + adsl2plus(5) , + trunk(6), + multige(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.3 + hwWlanApWiredPortDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates description of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.4 + hwWlanApWiredPortState OBJECT-TYPE + SYNTAX INTEGER + { + down(1) , + up(2) , + unknown(-1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates status of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.5 + hwWlanApWiredPortSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.6 + hwWlanApMultiWiredPortDuplex OBJECT-TYPE + SYNTAX INTEGER + { + half(1) , + full(2) , + unknown(-1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duplex state of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.7 + hwWlanApMultiWiredPortNegotiation OBJECT-TYPE + SYNTAX INTEGER + { + auto(1) , + forced(2) , + unknown(-1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the auto-negotiation mode of an AP's wired interface." + ::= { hwWlanApWiredPortEntry 7 } + + --1.3.6.1.4.1.2011.6.139.13.3.4.1.8 + hwWlanApMultiWiredPortMode OBJECT-TYPE + SYNTAX INTEGER + { + root(1) , + endpoint(2), + middle(3), + null(256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the working mode of an AP's wired interface.Default value: null." + ::= { hwWlanApWiredPortEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.13.3.4.1.9 + hwWlanApWiredPortApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanApWiredPortEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.13.3.4.1.10 + hwWlanApWiredPortApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanApWiredPortEntry 10 } + + --1.3.6.1.4.1.2011.6.139.13.3.5 + hwWlanApWiredPortStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApWiredPortStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query or clear statistics on AP wired interfaces." + ::= { hwWlanApObjects 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1 + hwWlanApWiredPortStatEntry OBJECT-TYPE + SYNTAX HwWlanApWiredPortStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanApMac and hwWlanApWiredPortIndex." + INDEX { hwWlanApMac, hwWlanApWiredPortIndex } + ::= { hwWlanApWiredPortStatTable 1 } + + + HwWlanApWiredPortStatEntry ::= + SEQUENCE { + hwWlanApWiredPortStatClear + Integer32, + hwWlanApWiredPortUpDwnTimes + Unsigned32, + hwWlanApWiredPortInPkts + Counter64, + hwWlanApWiredPortInUnicastPkts + Counter64, + hwWlanApWiredPortInNonUnicastPkts + Counter64, + hwWlanApWiredPortInBytes + Counter64, + hwWlanApWiredPortInErrorPkts + Counter64, + hwWlanApWiredPortInDiscardPkts + Counter64, + hwWlanApWiredPortOutPkts + Counter64, + hwWlanApWiredPortOutUnicastPkts + Counter64, + hwWlanApWiredPortOutNonUnicastPkts + Counter64, + hwWlanApWiredPortOutBytes + Counter64, + hwWlanApWiredPortOutErrorsPkts + Counter64, + hwWlanApWiredPortOutDiscardPkts + Counter64 + } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.1 + hwWlanApWiredPortStatClear OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object clears interface statistics." + ::= { hwWlanApWiredPortStatEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.2 + hwWlanApWiredPortUpDwnTimes OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times an AP's wired interface alternates between Up and Down." + ::= { hwWlanApWiredPortStatEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.3 + hwWlanApWiredPortInPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of frames received on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.4 + hwWlanApWiredPortInUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of unicast frames received on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.5 + hwWlanApWiredPortInNonUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of non-unicast frames received on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.6 + hwWlanApWiredPortInBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of bytes received on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.7 + hwWlanApWiredPortInErrorPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of error frames received on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 7 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.8 + hwWlanApWiredPortInDiscardPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of dropped frames received on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 8 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.9 + hwWlanApWiredPortOutPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of frames sent on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 9 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.10 + hwWlanApWiredPortOutUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of unicast frames sent on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 10 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.11 + hwWlanApWiredPortOutNonUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of non-unicast frames sent on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 11 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.12 + hwWlanApWiredPortOutBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of bytes sent on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 12 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.13 + hwWlanApWiredPortOutErrorsPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of error packets sent on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 13 } + + --1.3.6.1.4.1.2011.6.139.13.3.5.1.14 + hwWlanApWiredPortOutDiscardPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of dropped packets sent on an AP's wired interface." + ::= { hwWlanApWiredPortStatEntry 14 } + + --1.3.6.1.4.1.2011.6.139.13.3.6 + hwWlanApWiredPortLldpTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApWiredPortLldpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query LLDP neighbor information of a specified AP. No entry can be created, modified, or deleted in this table." + ::= { hwWlanApObjects 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1 + hwWlanApWiredPortLldpEntry OBJECT-TYPE + SYNTAX HwWlanApWiredPortLldpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanApMac, hwWlanApWiredPortLldpRemLocalPortNum, and hwWlanApWiredPortLldpRemIndex." + INDEX { hwWlanApWiredPortLldpRemLocalPortNum, hwWlanApWiredPortLldpRemIndex, hwWlanApMac } + ::= { hwWlanApWiredPortLldpTable 1 } + + + HwWlanApWiredPortLldpEntry ::= + SEQUENCE { + hwWlanApWiredPortLldpRemLocalPortNum + Integer32, + hwWlanApWiredPortLldpRemIndex + Integer32, + hwWlanApWiredPortLldpRemChassisIdSubtype + Integer32, + hwWlanApWiredPortLldpRemChassisId + OCTET STRING, + hwWlanApWiredPortLldpRemPortIdSubtype + Integer32, + hwWlanApWiredPortLldpRemPortId + OCTET STRING, + hwWlanApWiredPortLldpRemPortDesc + OCTET STRING, + hwWlanApWiredPortLldpRemSysName + OCTET STRING, + hwWlanApWiredPortLldpRemSysDesc + OCTET STRING, + hwWlanApWiredPortLldpRemSysCapSupported + Integer32, + hwWlanApWiredPortLldpRemSysCapEnabled + Integer32, + hwWlanApWiredPortLldpRemLocalApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.1 + hwWlanApWiredPortLldpRemLocalPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the local port number of the remote neighbor of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.2 + hwWlanApWiredPortLldpRemIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of the remote neighbor interface of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.3 + hwWlanApWiredPortLldpRemChassisIdSubtype OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the subtype of the remote neighbor of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.4 + hwWlanApWiredPortLldpRemChassisId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the subtype ID of the remote neighbor of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.5 + hwWlanApWiredPortLldpRemPortIdSubtype OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the subtype of the remote neighbor interface of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.6 + hwWlanApWiredPortLldpRemPortId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the ID of the remote neighbor interface of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.7 + hwWlanApWiredPortLldpRemPortDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates descriptions about the remote neighbor interface of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 7 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.8 + hwWlanApWiredPortLldpRemSysName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the system name of the remote neighbor of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 8 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.9 + hwWlanApWiredPortLldpRemSysDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates system descriptions about the remote neighbor of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 9 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.10 + hwWlanApWiredPortLldpRemSysCapSupported OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the remote neighbor of the AP's wired interface supports the system capability." + ::= { hwWlanApWiredPortLldpEntry 10 } + + --1.3.6.1.4.1.2011.6.139.13.3.6.1.11 + hwWlanApWiredPortLldpRemSysCapEnabled OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object enables the system capability of the remote neighbor of the AP's wired interface." + ::= { hwWlanApWiredPortLldpEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.13.3.6.1.12 + hwWlanApWiredPortLldpRemLocalApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApWiredPortLldpEntry 12 } + + + --1.3.6.1.4.1.2011.6.139.13.3.7 + hwWlanApWiredPortLldpRemManAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApWiredPortLldpRemManAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query management addresses of LLDP neighbors of a specified AP. No entry can be created, modified, or deleted in this table." + ::= { hwWlanApObjects 7 } + + --1.3.6.1.4.1.2011.6.139.13.3.7.1 + hwWlanApWiredPortLldpRemManAddrEntry OBJECT-TYPE + SYNTAX HwWlanApWiredPortLldpRemManAddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanApMac, hwWlanApWiredPortLldpRemLocalPortNum, hwWlanApWiredPortLldpRemIndex, hwWlanApWiredPortLldpRemManAddrSubtype, and hwWlanApWiredPortLldpRemManAddr." + INDEX { hwWlanApWiredPortLldpRemManAddrSubtype,hwWlanApMac, hwWlanApWiredPortLldpRemLocalPortNum, hwWlanApWiredPortLldpRemIndex, hwWlanApWiredPortLldpRemManAddr } + ::= { hwWlanApWiredPortLldpRemManAddrTable 1 } + + + HwWlanApWiredPortLldpRemManAddrEntry ::= + SEQUENCE { + hwWlanApWiredPortLldpRemManAddrSubtype + Integer32, + hwWlanApWiredPortLldpRemManAddr + OCTET STRING, + hwWlanApWiredPortLldpRemManAddrIfSubtype + Integer32, + hwWlanApWiredPortLldpRemManAddrIfId + Integer32, + hwWlanApWiredPortLldpRemManAddrOID + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.13.3.7.1.1 + hwWlanApWiredPortLldpRemManAddrSubtype OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the This object indicates the remote management address subtype of the wired interface." + ::= { hwWlanApWiredPortLldpRemManAddrEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.7.1.2 + hwWlanApWiredPortLldpRemManAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the remote management address of the wired interface." + ::= { hwWlanApWiredPortLldpRemManAddrEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.7.1.3 + hwWlanApWiredPortLldpRemManAddrIfSubtype OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interface subtype of the remote management address of the wired interface." + ::= { hwWlanApWiredPortLldpRemManAddrEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.7.1.4 + hwWlanApWiredPortLldpRemManAddrIfId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interface ID of the remote management address of the wired interface." + ::= { hwWlanApWiredPortLldpRemManAddrEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.7.1.5 + hwWlanApWiredPortLldpRemManAddrOID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the remote management address OID of the wired interface." + ::= { hwWlanApWiredPortLldpRemManAddrEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.8 + hwWlanApOnlineFailTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApOnlineFailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query or clear AP online failure records, including failure time and reason." + ::= { hwWlanApObjects 8 } + + --1.3.6.1.4.1.2011.6.139.13.3.8.1 + hwWlanApOnlineFailEntry OBJECT-TYPE + SYNTAX HwWlanApOnlineFailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApOnlineFailMac." + INDEX { hwWlanApOnlineFailMac } + ::= { hwWlanApOnlineFailTable 1 } + + + HwWlanApOnlineFailEntry ::= + SEQUENCE { + hwWlanApOnlineFailMac + MacAddress, + hwWlanApOnlineFailTime + OCTET STRING, + hwWlanApOnlineFailReason + OCTET STRING, + hwWlanApOnlineFailRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.13.3.8.1.1 + hwWlanApOnlineFailMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the STA who fails to go online." + ::= { hwWlanApOnlineFailEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.8.1.2 + hwWlanApOnlineFailTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the STA fails to go online." + ::= { hwWlanApOnlineFailEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.8.1.3 + hwWlanApOnlineFailReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the reason for the latest STA online failure." + ::= { hwWlanApOnlineFailEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.8.1.4 + hwWlanApOnlineFailRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that online failure records of STAs are deleted based on MAC addresses." + ::= { hwWlanApOnlineFailEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.9 + hwWlanApOfflineTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApOfflineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query or clear AP offline records, including offline time and reason." + ::= { hwWlanApObjects 9 } + + --1.3.6.1.4.1.2011.6.139.13.3.9.1 + hwWlanApOfflineEntry OBJECT-TYPE + SYNTAX HwWlanApOfflineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApOfflineMac." + INDEX { hwWlanApOfflineMac } + ::= { hwWlanApOfflineTable 1 } + + + HwWlanApOfflineEntry ::= + SEQUENCE { + hwWlanApOfflineMac + MacAddress, + hwWlanApOfflineTime + OCTET STRING, + hwWlanApOfflineReason + OCTET STRING, + hwWlanApOfflineRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.13.3.9.1.1 + hwWlanApOfflineMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwWlanApOfflineEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.9.1.2 + hwWlanApOfflineTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP offline time." + ::= { hwWlanApOfflineEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.9.1.3 + hwWlanApOfflineReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP offline reason." + ::= { hwWlanApOfflineEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.9.1.4 + hwWlanApOfflineRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object clears AP offline records." + ::= { hwWlanApOfflineEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.10 + hwWlanIDIndexedApTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanIDIndexedApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to add, delete, modify, reset, or confirm APs. You can also use the table to query the configuration and restore factory settings of APs." + ::= { hwWlanApObjects 10 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1 + hwWlanIDIndexedApEntry OBJECT-TYPE + SYNTAX HwWlanIDIndexedApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanIDIndexedApId." + INDEX { hwWlanIDIndexedApId } + ::= { hwWlanIDIndexedApTable 1 } + HwWlanIDIndexedApEntry ::= + SEQUENCE { + hwWlanIDIndexedApId + Unsigned32, + hwWlanIDIndexedApMac + MacAddress, + hwWlanIDIndexedApSn + OCTET STRING, + hwWlanIDIndexedApTypeInfo + OCTET STRING, + hwWlanIDIndexedApName + OCTET STRING, + hwWlanIDIndexedApGroup + OCTET STRING, + hwWlanIDIndexedApRunState + INTEGER, + hwWlanIDIndexedApSoftwareVersion + OCTET STRING, + hwWlanIDIndexedApHardwareVersion + OCTET STRING, + hwWlanIDIndexedApCpuType + OCTET STRING, + hwWlanIDIndexedApCpufrequency + Integer32, + hwWlanIDIndexedApMemoryType + OCTET STRING, + hwWlanIDIndexedApDomain + OCTET STRING, + hwWlanIDIndexedApIpAddress + IpAddress, + hwWlanIDIndexedApIpNetMask + IpAddress, + hwWlanIDIndexedApGatewayIp + IpAddress, + hwWlanIDIndexedApMemorySize + Integer32, + hwWlanIDIndexedApFlashSize + Integer32, + hwWlanIDIndexedApRunTime + Unsigned32, + hwWlanIDIndexedApAdminOper + INTEGER, + hwWlanIDIndexedApDNS + IpAddress, + hwWlanIDIndexedApOnlineTime + Unsigned32, + hwWlanIDIndexedApSysSoftwareDesc + OCTET STRING, + hwWlanIDIndexedApSysHardtwareDesc + OCTET STRING, + hwWlanIDIndexedApSysManufacture + OCTET STRING, + hwWlanIDIndexedApSysSoftwareName + OCTET STRING, + hwWlanIDIndexedApSysSoftwareVendor + OCTET STRING, + hwWlanIDIndexedApBomCode + OCTET STRING, + hwWlanIDIndexedApIpv6Address + OCTET STRING, + hwWlanIDIndexedApIpv6NetMask + OCTET STRING, + hwWlanIDIndexedApGatewayIpv6 + OCTET STRING, + hwWlanIDIndexedApIpv6DNS + OCTET STRING, + hwWlanIDIndexedApProtectAcIPv6Addr + OCTET STRING, + hwWlanIDIndexedApBootCountTotal + Integer32, + hwWlanIDIndexedApBootCountPowerOff + Integer32, + hwWlanIDIndexedApBootCountClear + RowStatus, + hwWlanIDIndexedApElectronicLabel + OCTET STRING, + hwWlanIDIndexedApWiredPortNum + Integer32, + hwWlanIDIndexedApWiredPortMtu + Integer32, + hwWlanIDIndexedApWiredPortMac + MacAddress, + hwWlanIDIndexedApMemoryUseRate + Integer32, + hwWlanIDIndexedApCpuUseRate + Integer32, + hwWlanIDIndexedApFlashFreeSize + Integer32, + hwWlanIDIndexedApTemperature + Integer32, + hwWlanIDIndexedApOnlineUserNum + Integer32, + hwWlanIDIndexedApDualBandAssoc5gStaNum + Unsigned32, + hwWlanIDIndexedApDualBandStaNum + Unsigned32, + hwWlanIDIndexedApStaOnlineFailRatio + Unsigned32, + hwWlanIDIndexedApStaOfflineRatio + Unsigned32, + hwWlanIDIndexedApStickyClientRatio + Unsigned32, + hwWlanIDIndexedApUpEthPortSpeed + INTEGER, + hwWlanIDIndexedApUpEthPortSpeedMode + INTEGER, + hwWlanIDIndexedApUpEthPortDuplex + INTEGER, + hwWlanIDIndexedApUpEthPortDuplexMode + INTEGER, + hwWlanIDIndexedApUpPortSpeed + Integer32, + hwWlanIDIndexedAPUpPortPER + Integer32, + hwWlanIDIndexedEthportUpRate + Integer32, + hwWlanIDIndexedEthportDownRate + Integer32, + hwWlanIDIndexedApAirportUpTraffic + OCTET STRING, + hwWlanIDIndexedApAirportDwTraffic + OCTET STRING, + hwWlanIDIndexedApEthportDwTraffic + OCTET STRING, + hwWlanIDIndexedApEthportUpTraffic + OCTET STRING, + hwWlanIDIndexedApUpPortRecvPackets + Counter64, + hwWlanIDIndexedApUpPortSendPackets + Counter64, + hwWlanIDIndexedApUpPortRecvBytes + Counter64, + hwWlanIDIndexedApUpPortSendBytes + Counter64, + hwWlanIDIndexedCentralApId + Unsigned32, + hwWlanIDIndexedCentralApMac + MacAddress, + hwWlanIDIndexedCentralApName + OCTET STRING, + hwWlanIDIndexedApRowstatus + RowStatus, + hwWlanIDIndexedApSDCardSize + Integer32, + hwWlanIDIndexedAPLongitude + OCTET STRING, + hwWlanIDIndexedAPLatitude + OCTET STRING + } + -- 1.3.6.1.4.1.2011.6.139.13.3.10.1.1 + hwWlanIDIndexedApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Ap ID." + ::= { hwWlanIDIndexedApEntry 1 } + + --1.3.6.1.4.1.2011.6.139.13.3.10.1.2 + hwWlanIDIndexedApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwWlanIDIndexedApEntry 2 } + + --1.3.6.1.4.1.2011.6.139.13.3.10.1.3 + hwWlanIDIndexedApSn OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the sequence number (SN) of an AP." + ::= { hwWlanIDIndexedApEntry 3 } + + --1.3.6.1.4.1.2011.6.139.13.3.10.1.4 + hwWlanIDIndexedApTypeInfo OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP type." + ::= { hwWlanIDIndexedApEntry 4 } + + --1.3.6.1.4.1.2011.6.139.13.3.10.1.5 + hwWlanIDIndexedApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanIDIndexedApEntry 5 } + + --1.3.6.1.4.1.2011.6.139.13.3.10.1.6 + hwWlanIDIndexedApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the group to which an AP belongs." + ::= { hwWlanIDIndexedApEntry 6 } + + --1.3.6.1.4.1.2011.6.139.13.3.10.1.7 + hwWlanIDIndexedApRunState OBJECT-TYPE + SYNTAX INTEGER + { + idle(1) , + autofind(2) , + typeNotMatch(3) , + fault(4) , + config(5) , + configFailed(6) , + download(7) , + normal(8) , + committing(9) , + commitFailed(10) , + standby(11) , + verMismatch(12), + nameConflicted(13), + invalid(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP state." + ::= { hwWlanIDIndexedApEntry 7 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.8 + hwWlanIDIndexedApSoftwareVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP software version." + ::= { hwWlanIDIndexedApEntry 8 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.9 + hwWlanIDIndexedApHardwareVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP hardware version." + ::= { hwWlanIDIndexedApEntry 9 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.10 + hwWlanIDIndexedApCpuType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the CPU type of an AP." + ::= { hwWlanIDIndexedApEntry 10 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.11 + hwWlanIDIndexedApCpufrequency OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the CPU frequency of an AP.Unit: MHz." + ::= { hwWlanIDIndexedApEntry 11 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.12 + hwWlanIDIndexedApMemoryType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the memory type of an AP." + ::= { hwWlanIDIndexedApEntry 12 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.13 + hwWlanIDIndexedApDomain OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP domain." + ::= { hwWlanIDIndexedApEntry 13 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.14 + hwWlanIDIndexedApIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address of an AP." + ::= { hwWlanIDIndexedApEntry 14 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.15 + hwWlanIDIndexedApIpNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address mask of an AP." + ::= { hwWlanIDIndexedApEntry 15 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.16 + hwWlanIDIndexedApGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the gateway IP address of an AP." + ::= { hwWlanIDIndexedApEntry 16 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.17 + hwWlanIDIndexedApMemorySize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the memory size of an AP.Unit: MB." + ::= { hwWlanIDIndexedApEntry 17 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.18 + hwWlanIDIndexedApFlashSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the flash memory size of an AP.Unit: MB." + ::= { hwWlanIDIndexedApEntry 18 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.19 + hwWlanIDIndexedApRunTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the running time of an AP.Unit: tick." + ::= { hwWlanIDIndexedApEntry 19 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.20 + hwWlanIDIndexedApAdminOper OBJECT-TYPE + SYNTAX INTEGER + { + reset(1) , + manufacturerConfig(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates administrative status of an AP." + ::= { hwWlanIDIndexedApEntry 20 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.21 + hwWlanIDIndexedApDNS OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP DNS." + ::= { hwWlanIDIndexedApEntry 21 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.22 + hwWlanIDIndexedApOnlineTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates online duration of an AP." + ::= { hwWlanIDIndexedApEntry 22 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.23 + hwWlanIDIndexedApSysSoftwareDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates system software description of an AP." + ::= { hwWlanIDIndexedApEntry 23 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.24 + hwWlanIDIndexedApSysHardtwareDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates system hardware description of an AP." + ::= { hwWlanIDIndexedApEntry 24 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.25 + hwWlanIDIndexedApSysManufacture OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the manufacturer of an AP." + ::= { hwWlanIDIndexedApEntry 25 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.26 + hwWlanIDIndexedApSysSoftwareName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates software name of an AP." + ::= { hwWlanIDIndexedApEntry 26 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.27 + hwWlanIDIndexedApSysSoftwareVendor OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the manufacturer of the AP software." + ::= { hwWlanIDIndexedApEntry 27 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.28 + hwWlanIDIndexedApBomCode OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BOM code." + ::= { hwWlanIDIndexedApEntry 28 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.29 + hwWlanIDIndexedApIpv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address." + ::= { hwWlanIDIndexedApEntry 29 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.30 + hwWlanIDIndexedApIpv6NetMask OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address mask." + ::= { hwWlanIDIndexedApEntry 30 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.31 + hwWlanIDIndexedApGatewayIpv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 gateway." + ::= { hwWlanIDIndexedApEntry 31 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.32 + hwWlanIDIndexedApIpv6DNS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 DNS." + ::= { hwWlanIDIndexedApEntry 32 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.33 + hwWlanIDIndexedApProtectAcIPv6Addr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the standby AC." + ::= { hwWlanIDIndexedApEntry 33 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.34 + hwWlanIDIndexedApBootCountTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of times an AP is restarted." + ::= { hwWlanIDIndexedApEntry 34 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.35 + hwWlanIDIndexedApBootCountPowerOff OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times an AP is restarted due to a power failure." + ::= { hwWlanIDIndexedApEntry 35 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.36 + hwWlanIDIndexedApBootCountClear OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object clears the AP restart count." + ::= { hwWlanIDIndexedApEntry 36 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.37 + hwWlanIDIndexedApElectronicLabel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1025)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the electronic label of an AP." + ::= { hwWlanIDIndexedApEntry 37 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.38 + hwWlanIDIndexedApWiredPortNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of wired interfaces." + ::= { hwWlanIDIndexedApEntry 38 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.39 + hwWlanIDIndexedApWiredPortMtu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum transmit unit (MTU) of a wired interface." + ::= { hwWlanIDIndexedApEntry 39 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.40 + hwWlanIDIndexedApWiredPortMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of a wired interface." + ::= { hwWlanIDIndexedApEntry 40 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.41 + hwWlanIDIndexedApMemoryUseRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the memory usage.Unit: %." + ::= { hwWlanIDIndexedApEntry 41 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.42 + hwWlanIDIndexedApCpuUseRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the CPU usage.Unit: %." + ::= { hwWlanIDIndexedApEntry 42 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.43 + hwWlanIDIndexedApFlashFreeSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates available space in the flash memory.Unit: KB." + ::= { hwWlanIDIndexedApEntry 43 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.44 + hwWlanIDIndexedApTemperature OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the operating temperature." + ::= { hwWlanIDIndexedApEntry 44 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.45 + hwWlanIDIndexedApOnlineUserNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of online users." + ::= { hwWlanIDIndexedApEntry 45 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.46 + hwWlanIDIndexedApDualBandAssoc5gStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of dual-band terminals that access the 5 GHz radio." + ::= { hwWlanIDIndexedApEntry 46 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.47 + hwWlanIDIndexedApDualBandStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs that support dual frequency bands." + ::= { hwWlanIDIndexedApEntry 47 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.48 + hwWlanIDIndexedApStaOnlineFailRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates STA online failure ratio on an AP." + ::= { hwWlanIDIndexedApEntry 48 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.49 + hwWlanIDIndexedApStaOfflineRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates STA offline ratio of an AP." + ::= { hwWlanIDIndexedApEntry 49 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.50 + hwWlanIDIndexedApStickyClientRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the proportion of sticky STAs to all STAs." + ::= { hwWlanIDIndexedApEntry 50 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.51 + hwWlanIDIndexedApUpEthPortSpeed OBJECT-TYPE + SYNTAX INTEGER + { + speed10(1) , + speed100(2) , + speed1000(3) , + speed10000(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate of an upstream Ethernet interface." + ::= { hwWlanIDIndexedApEntry 51 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.52 + hwWlanIDIndexedApUpEthPortSpeedMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1) , + forced(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate mode of an upstream Ethernet interface." + ::= { hwWlanIDIndexedApEntry 52 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.53 + hwWlanIDIndexedApUpEthPortDuplex OBJECT-TYPE + SYNTAX INTEGER + { + half(1) , + full(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duplex state of an upstream Ethernet interface." + ::= { hwWlanIDIndexedApEntry 53 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.54 + hwWlanIDIndexedApUpEthPortDuplexMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1) , + forced(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duplex mode of an upstream Ethernet interface." + ::= { hwWlanIDIndexedApEntry 54 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.55 + hwWlanIDIndexedApUpPortSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the real-time rate of an upstream interface.Unit: Kbps." + ::= { hwWlanIDIndexedApEntry 55 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.56 + hwWlanIDIndexedAPUpPortPER OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet error rate of an upstream interface." + ::= { hwWlanIDIndexedApEntry 56 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.57 + hwWlanIDIndexedEthportUpRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream rate of an Ethernet interface." + ::= { hwWlanIDIndexedApEntry 57 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.58 + hwWlanIDIndexedEthportDownRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the downstream rate of an Ethernet interface." + ::= { hwWlanIDIndexedApEntry 58 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.59 + hwWlanIDIndexedApAirportUpTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on an upstream wireless interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanIDIndexedApEntry 59 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.60 + hwWlanIDIndexedApAirportDwTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on a downstream wireless interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanIDIndexedApEntry 60 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.61 + hwWlanIDIndexedApEthportDwTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on a downstream wired interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanIDIndexedApEntry 61 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.62 + hwWlanIDIndexedApEthportUpTraffic OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the traffic volume on an upstream wired interface.Unit: bytes. The value is reported in 64 bits." + ::= { hwWlanIDIndexedApEntry 62 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.63 + hwWlanIDIndexedApUpPortRecvPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of frames received on an upstream interface, which is extended to 64 bits." + ::= { hwWlanIDIndexedApEntry 63 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.64 + hwWlanIDIndexedApUpPortSendPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of frames sent on an upstream interface, which is extended to 64 bits." + ::= { hwWlanIDIndexedApEntry 64 } + -- 1.3.6.1.4.1.2011.6.139.13.3.10.1.65 + hwWlanIDIndexedApUpPortRecvBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of bytes received on an upstream interface." + ::= { hwWlanIDIndexedApEntry 65 } + -- 1.3.6.1.4.1.2011.6.139.13.3.10.1.66 + hwWlanIDIndexedApUpPortSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of bytes sent on an upstream interface." + ::= { hwWlanIDIndexedApEntry 66 } + -- 1.3.6.1.4.1.2011.6.139.13.3.10.1.67 + hwWlanIDIndexedCentralApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the central AP ID." + ::= { hwWlanIDIndexedApEntry 67 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.68 + hwWlanIDIndexedCentralApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of an central AP." + ::= { hwWlanIDIndexedApEntry 68 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.69 + hwWlanIDIndexedCentralApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the central AP name." + ::= { hwWlanIDIndexedApEntry 69 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.70 + hwWlanIDIndexedApRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanIDIndexedApEntry 70 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.71 + hwWlanIDIndexedApSDCardSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SD card size of an AP.Unit: MB." + ::= { hwWlanIDIndexedApEntry 71 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.72 + hwWlanIDIndexedAPLongitude OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the longitude of an AP." + ::= { hwWlanIDIndexedApEntry 72 } + --1.3.6.1.4.1.2011.6.139.13.3.10.1.73 + hwWlanIDIndexedAPLatitude OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latitude of an AP." + ::= { hwWlanIDIndexedApEntry 73 } + --1.3.6.1.4.1.2011.6.139.13.4 + hwWlanAPConformance OBJECT IDENTIFIER ::= { hwWlanAp 4 } + + --1.3.6.1.4.1.2011.6.139.13.4.1 + hwWlanAPCompliances OBJECT IDENTIFIER ::= { hwWlanAPConformance 1 } + + --1.3.6.1.4.1.2011.6.139.13.4.1.1 + hwWlanAPCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanApTrapObjectsGroup, hwWlanApTypeGroup, hwWlanApInfoGroup } + ::= { hwWlanAPCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.13.4.2 + hwWlanAPObjectGroups OBJECT IDENTIFIER ::= { hwWlanAPConformance 2 } + + --1.3.6.1.4.1.2011.6.139.13.4.2.1 + hwWlanApTrapGroup NOTIFICATION-GROUP + NOTIFICATIONS { hwApFaultTrap, hwApNormalTrap, hwApPingResultTrap, hwApConfigCommitTrap, hwUnAuthorizedApRecordExistTrap, + hwUnAuthorizedApRecordClearTrap, hwApCpuOverloadTrap, hwApCpuOverloadRestoreTrap, hwApMemoryOverloadTrap, hwApMemoryOverloadRestoreTrap, + hwApStaFullTrap, hwApStaFullRecoverTrap, hwAcDevicesSwitchTrap, hwDyingGaspTrap, hwApFaultTrapFat, + hwApNormalTrapFat, hwApTemperatureTooLowTrap, hwApTemperatureTooLowRestoreTrap, hwApTemperatureTooHighTrap, hwApTemperatureTooHighRestoreTrap, + hwApOpticalRxPowerTooHighTrap, hwApOpticalRxPowerTooHighRestoreTrap, hwApOpticalRxPowerTooLowTrap, hwApOpticalRxPowerTooLowRestoreTrap, hwApOpticalTemperatureTooHighTrap, + hwApOpticalTemperatureTooHighRestoreTrap, hwApOpticalTemperatureTooLowTrap, hwApOpticalTemperatureTooLowRestoreTrap, hwApNotSupportCountryCodeTrap, hwApColdBootTrap, + hwApColdBootRestoreTrap, hwApHotBootTrap, hwApHotBootRestoreTrap, hwApCRCTooHighTrap, hwApCRCTooHighRestoreTrap, + hwApConflictApNameTrap, hwApLicenseTrap, hwApFmeaIICFaultTrap, hwApFmeaIICFaultRestoreTrap, hwApFmeaPHYFaultTrap, + hwApFmeaPHYFaultRestoreTrap, hwApFmeaFaultTrap, hwApFmeaFaultRestoreTrap, hwApOpticalInsertTrap, hwApOpticalRemoveTrap, + hwApReceivedInvalidArpNewTrap, hwApVersionMismatchTrap, hwRadioUploadRemoteCaptureFileTrap, hwMPJoinedOnEthernetTrap, hwMPJoinedOnEthernetRestoreTrap, hwMPPJoinedOnAirTrap, hwMPPJoinedOnAirRestoreTrap, + hwApOpticalTxPowerTooHighTrap, hwApOpticalTxPowerTooHighRestoreTrap, hwApOpticalTxPowerTooLowTrap, hwApOpticalTxPowerTooLowRestoreTrap, hwApOnLineNumExceedCardSpecTrap, hwApFanInvalidTrap, hwApFanInvalidRestoreTrap, + hwApStorageDevRemoveTrap, hwApStorageDevInsertTrap, hwApPoePowerOffTrap, hwApPoePowerOnTrap, hwApPoePdConnectedTrap, hwApPoePdDisconnectedTrap, hwApPoePdClassOvercurrentTrap, + hwApPoePdPriorityDifferentTrap, hwApPoePowerOverUtilizationThresholdTrap, hwApPoePowerOverUtilizationThresholdRestoreTrap, hwApSTPAutoShutdownTrap, hwApSTPAutoShutdownRestoreTrap, hwApOpticalInvalidTrap, hwApOpticalInvalidRestoreTrap, + hwWlanBLELowPowerTrap, hwWlanBLELowPowerRestoreTrap, hwWlanBLEOfflineTrap, hwWlanBLEOfflineRestoreTrap, hwWlanBLEFaultyTrap, hwWlanBLEFaultyRestoreTrap } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanAPObjectGroups 1 } + + --1.3.6.1.4.1.2011.6.139.13.4.2.2 + hwWlanApTrapObjectsGroup OBJECT-GROUP + OBJECTS { hwWlanApActualType, hwWlanApCpuOccupancyRate, hwWlanApMemoryOccupancyRate, hwWlanApPermitStaNum, hwWlanStaAuthFailCause, + hwWlanAcSystemSwitchType, hwWlanApOpticalRxPower, hwWlanApOpticalTemperature, hwWlanApCfgCountryCode, hwWlanApArpAttackSrcMac, + hwWlanApArpAttackDstMac, hwWlanApArpAttackSrcIP, hwWlanApArpCfgRateThreshold, hwWlanApArpActualRate, hwWlanApNotifyRadioId, + hwWlanApNotifyOrRestoreTemperature, hwWlanOccurTime, hwWlanApBootNotifyName, hwWlanApFaultTimes, hwWlanApUnAuthorizedApRecordNumber, + hwWlanCrcErrActual, hwWlanCrcThreshold, hwWlanApNotifyWlanId, hwWlanApLicenseInfo, hwWlanCrcPortType, + hwWlanCrcPortID, hwWlanApArpAttackDropNum, hwWlanApFaultID, hwWlanApIfIndex, hwWlanApFaultInfo, + hwWlanApSoftWareVersion, hwRadioUploadRemoteCaptureResult, hwWlanApRadioID, hwWlanApCpuOverloadDescInfo, hwWlanApOpticalTxPower, hwWlanSlotNum, + hwApPoePdPriority, hwApPoePortPriority, hwApPoeCurConsumPower, hwApPoeConsumPowerThreshold, hwApFanIndex, hwApEntityPhysicalName, hwApStorageIndex, hwApStorageName, + hwWlanApOpticalFaultID, hwWlanBLEMacAddr, hwPowerOffReason } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanAPObjectGroups 2 } + + --1.3.6.1.4.1.2011.6.139.13.4.2.3 + hwWlanApTypeGroup OBJECT-GROUP + OBJECTS { hwWlanApType, hwWlanApTypeDesc, hwWlanApTypeWiredPortNum, hwWlanApTypeRadioNum, hwWlanApTypeMaxStaNum, + hwWlanApTypeReset,hwWlanApTypeRadioType, + hwWlanRadioMaxSpatialStreamsNum, hwWlanApTypeRadioAntennaGain, + hwWlanApTypeWiredPortType, hwWlanApTypeWiredPortName } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanAPObjectGroups 3 } + + --1.3.6.1.4.1.2011.6.139.13.4.2.4 + hwWlanApInfoGroup OBJECT-GROUP + OBJECTS { hwWlanApPingApMac, hwWlanApPingAddress, hwWlanApPingCount, hwWlanApPingPacketSize, hwWlanApPingWaitTime, + hwWlanApPingTimeOut, hwWlanApPingResultSuccessCount, hwWlanApPingResultFailureCount, hwWlanApPingResultAveResponseTime, hwWlanApPingResultMinResponseTime, + hwWlanApPingResultMaxResponseTime, hwWlanApPingResultFlag, hwWlanUnauthedApType, hwWlanUnauthedApMacAddress, hwWlanUnauthedApSn, + hwWlanUnauthedApIpAddress, hwWlanUnauthedApRecordTime, hwWlanApMac, hwWlanApSn, hwWlanApTypeInfo, + hwWlanApName, hwWlanApGroup, hwWlanApRunState, hwWlanApSoftwareVersion, hwWlanApHardwareVersion, + hwWlanApCpuType, hwWlanApCpufrequency, hwWlanApMemoryType, hwWlanApDomain, hwWlanApIpAddress, + hwWlanApIpNetMask, hwWlanApGatewayIp, hwWlanApMemorySize, hwWlanApFlashSize, hwWlanApRunTime, + hwWlanApAdminOper, hwWlanApDNS, hwWlanApOnlineTime, hwWlanApSysSoftwareDesc, hwWlanApSysHardtwareDesc, + hwWlanApSysManufacture, hwWlanApSysSoftwareName, hwWlanApSysSoftwareVendor, hwWlanApBomCode, hwWlanApIpv6Address, + hwWlanApIpv6NetMask, hwWlanApGatewayIpv6, hwWlanApIpv6DNS, hwWlanApProtectAcIPv6Addr, hwWlanApBootCountTotal, + hwWlanApBootCountPowerOff, hwWlanApBootCountClear, hwWlanApElectronicLabel, hwWlanApWiredPortNum, hwWlanApWiredPortMtu, + hwWlanApWiredPortMac, hwWlanApMemoryUseRate, hwWlanApCpuUseRate, hwWlanApFlashFreeSize, hwWlanApTemperature, + hwWlanApOnlineUserNum, hwWlanApDualBandAssoc5gStaNum, hwWlanApDualBandStaNum, hwWlanApStaOnlineFailRatio, hwWlanApStaOfflineRatio, + hwWlanApStickyClientRatio, hwWlanApUpEthPortSpeed, hwWlanApUpEthPortSpeedMode, hwWlanApUpEthPortDuplex, hwWlanApUpEthPortDuplexMode, + hwWlanApUpPortSpeed, hwWlanAPUpPortPER, hwWlanEthportUpRate, hwWlanEthportDownRate, hwWlanApAirportUpTraffic, + hwWlanApAirportDwTraffic, hwWlanApEthportDwTraffic, hwWlanApEthportUpTraffic, hwWlanApUpPortRecvPackets, hwWlanApUpPortSendPackets, + hwWlanApRowstatus, hwWlanApUpPortRecvBytes, hwWlanApUpPortSendBytes, hwWlanApId, hwWlanApWiredPortType, hwWlanApWiredPortDesc, + hwWlanApWiredPortState, hwWlanApWiredPortSpeed, hwWlanApMultiWiredPortDuplex, hwWlanApMultiWiredPortNegotiation, hwWlanApMultiWiredPortMode, hwWlanApWiredPortApId, hwWlanApWiredPortApName, + hwWlanApWiredPortStatClear, hwWlanApWiredPortUpDwnTimes, hwWlanApWiredPortInPkts, hwWlanApWiredPortInUnicastPkts, hwWlanApWiredPortInNonUnicastPkts, + hwWlanApWiredPortInBytes, hwWlanApWiredPortInErrorPkts, hwWlanApWiredPortInDiscardPkts, hwWlanApWiredPortOutPkts, hwWlanApWiredPortOutUnicastPkts, + hwWlanApWiredPortOutNonUnicastPkts, hwWlanApWiredPortOutBytes, hwWlanApWiredPortOutErrorsPkts, hwWlanApWiredPortOutDiscardPkts, hwWlanApWiredPortLldpRemChassisIdSubtype, + hwWlanApWiredPortLldpRemChassisId, hwWlanApWiredPortLldpRemPortIdSubtype, hwWlanApWiredPortLldpRemPortId, hwWlanApWiredPortLldpRemPortDesc, hwWlanApWiredPortLldpRemSysName, + hwWlanApWiredPortLldpRemSysDesc, hwWlanApWiredPortLldpRemSysCapSupported, hwWlanApWiredPortLldpRemSysCapEnabled, hwWlanApWiredPortLldpRemManAddrIfSubtype, hwWlanApWiredPortLldpRemManAddrIfId, + hwWlanApWiredPortLldpRemManAddrOID, hwWlanApOnlineFailTime, hwWlanApOnlineFailReason, hwWlanApOnlineFailRowStatus, hwWlanApOfflineTime, + hwWlanApOfflineReason, hwWlanApOfflineRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanAPObjectGroups 4 } + + + END +-- +-- HUAWEI-WLAN-AP-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-AP-RADIO-MIB b/mibs/huawei/HUAWEI-WLAN-AP-RADIO-MIB new file mode 100644 index 0000000000..c884cdb6ac --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-AP-RADIO-MIB @@ -0,0 +1,1612 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for defining the management of huawei AC at the side of the quality of wireless signal for AP MIB objects. +-- Reference: +-- Version: V1.18 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-AP-RADIO-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + hwWlanApName + FROM HUAWEI-WLAN-AP-MIB + hwWlanApMac + FROM HUAWEI-WLAN-AP-MIB + hwWlanApId + FROM HUAWEI-WLAN-AP-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.16 + hwWlanRadio MODULE-IDENTITY + LAST-UPDATED "201612241640Z" -- Dec 24, 2016 at 16:40 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.18, modify the hwWlanRadioLegitimateAntennaGain type." + REVISION "201612241640Z" -- Dec 24, 2016 at 16:40 GMT + DESCRIPTION + "V1.17, add and modify the hwWlanRadioTrapObjects." + REVISION "201612141640Z" -- Dec 14, 2016 at 16:40 GMT + DESCRIPTION + "V1.16, Modify the description of node hwWlanRadioWorkMode." + REVISION "201608191640Z" -- August 19, 2016 at 16:40 GMT + DESCRIPTION + "V1.15, Modify node status." + REVISION "201607211130Z" -- July 21, 2016 at 11:30 GMT + DESCRIPTION + "V1.14, Modify the trap nodes about interference detection." + REVISION "201605311030Z" -- May 31, 2016 at 10:30 GMT + DESCRIPTION + "V1.13, Add the node of hwWlanRadioMngSecondChannel." + REVISION "201605131030Z" -- May 13, 2016 at 10:30 GMT + DESCRIPTION + "V1.12, Add the node of hwWlanRadioRetryFrames, hwWlanRadioRcvErrFrames, hwWlanRadioRcvDropFrames, and add the table of hwWlanRadioUncontrolAPInfTable." + REVISION "201510101030Z" -- Jan 21, 2016 at 10:30 GMT + DESCRIPTION + "V1.11, Add the node of hwWlanRadioRetryFrames, hwWlanRadioRcvErrFrames, hwWlanRadioRcvDropFrames, and add the table of hwWlanRadioUncontrolAPInfTable." + REVISION "201510101030Z" -- Jan 21, 2016 at 10:30 GMT + DESCRIPTION + "V1.10, Modify the node of hwWlanRadioWorkingChannelBandwidth." + REVISION "201510101030Z" -- Nov 30, 2015 at 10:30 GMT + DESCRIPTION + "V1.09, Modify the trap nodes and add the node of hwWlanWIDSTrapInfoAPId." + REVISION "201510101030Z" -- Oct 10, 2015 at 10:30 GMT + DESCRIPTION + "V1.08, Add AP ID in the trap node." + REVISION "201509151030Z" -- Sept 15, 2015 at 10:30 GMT + DESCRIPTION + "V1.07, Add the node of hwWlanRadioInfoApId in the hwWlanRadioInfoTable." + REVISION "201508261030Z" -- Aug 26, 2015 at 10:30 GMT + DESCRIPTION + "Change the trap of hwRadioPowerChangedTrap." + REVISION "201508190930Z" -- Aug 19, 2015 at 9:30 GMT + DESCRIPTION + "Modify the node value of hwWlanRadioActualEIRP and hwWlanRadioMaximumEIRP." + REVISION "201507230940Z" -- July 23, 2015 at 9:40 GMT + DESCRIPTION + "Add the node for spectrum switch flag." + REVISION "201507170956Z" -- July 17, 2015 at 9:56 GMT + DESCRIPTION + "Add the node for channel change notificaction." + REVISION "201507060956Z" -- July 16, 2015 at 9:56 GMT + DESCRIPTION + "Add the description of mib nodes." + REVISION "201506160956Z" -- Jun 16, 2015 at 9:56 GMT + DESCRIPTION + "V1.02, Add nodes for eirp." + REVISION "201505111452Z" -- May 11, 2015 at 14:52 GMT + DESCRIPTION + "The MIB module defines the WIDS operation." + REVISION "201502021452Z" -- February 2, 2015 at 14:52 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 16 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.16.1 + hwWlanRadioObjects OBJECT IDENTIFIER ::= { hwWlanRadio 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.1 + hwWlanRadioTraps OBJECT IDENTIFIER ::= { hwWlanRadioObjects 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1 + hwWlanRadioTrap OBJECT IDENTIFIER ::= { hwWlanRadioTraps 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.1 + hwRadioChannelChangedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanApName, hwWlanRadioActualChannel, hwWlanRadioSecondActualChannel, + hwWlanRadioChannelChangedReason, hwWlanRadioChannelChangedReasonStr, hwWlanRadioPreActualChannel, hwWlanRadioPreSecondActualChannel, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "This alarm is generated when a channel changes." + ::= { hwWlanRadioTrap 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.2 + hwRadioSignalEnvDeteriorationTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioPER, hwWlanRadioConflictRate, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "This alarm is generated when radio environment deteriorates." + ::= { hwWlanRadioTrap 2 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.3 + hwRadioSignalEnvResumeTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "This alarm is generated when radio environment is recovered." + ::= { hwWlanRadioTrap 3 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.4 + hwApMonitorModeChangedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanApMonitorMode,hwWlanApMonitorModeDesc, hwWlanApPreMonitorMode, hwWlanApPreMonitorModeDesc,hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The wireless monitoring mode of an AP was changed." + ::= { hwWlanRadioTrap 4 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.5 + hwAPCoInterfDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanApChannel, hwWlanRadioInfoApId, hwWlanApInterfBssid, hwWlanInterfRSSI } + STATUS current + DESCRIPTION + "The co-channel interference between APs was detected." + ::= { hwWlanRadioTrap 5 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.6 + hwAPCoInterfClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanApChannel, hwWlanRadioInfoApId, hwWlanApInterfBssid } + STATUS current + DESCRIPTION + "The co-channel interference between APs was removed." + ::= { hwWlanRadioTrap 6 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.7 + hwNerborInterfDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac,hwWlanRadioID, hwWlanRadioInfoApName, hwWlanApChannel, hwWlanRadioInfoApId, hwWlanApInterfBssid, + hwWlanInterfApChannel, hwWlanInterfRSSI } + STATUS current + DESCRIPTION + "The adjacent-channel interference between APs was detected." + ::= { hwWlanRadioTrap 7 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.8 + hwNeiborInterfClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanApChannel, hwWlanRadioInfoApId, hwWlanApInterfBssid, + hwWlanInterfApChannel } + STATUS current + DESCRIPTION + "The adjacent-channel interference between APs was removed." + ::= { hwWlanRadioTrap 8 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.9 + hwStaInterfDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Interference on STA was detected." + ::= { hwWlanRadioTrap 9 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.10 + hwStaInterfClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Interference on STA was cleared." + ::= { hwWlanRadioTrap 10 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.11 + hwOtherDeviceInterfDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Interference on other devices was detected." + ::= { hwWlanRadioTrap 11 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.12 + hwOtherDeviceInterfClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Interference on other devices was removed." + ::= { hwWlanRadioTrap 12 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.13 + hwRadioDownTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanApName, hwWlanRadioDownCause, hwWlanRadioDownCauseStr, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "A wireless link is Down." + ::= { hwWlanRadioTrap 13 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.14 + hwRadioDownRecovTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioDownCause, hwWlanRadioDownCauseStr, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The radio link Down alarm was cleared." + ::= { hwWlanRadioTrap 14 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.15 + hwWIDSDetectRogueTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWIDSTrapInfoAPName, hwWlanWIDSTrapInfoRadioId, hwWlanWIDSTrapInfoAPMAC, hwWlanWIDSTrapInfoRogueMAC, + hwWlanWIDSTrapInfoRogueSSId, hwWlanWIDSTrapInfoRogueType, hwWlanWIDSTrapInfoRogueRSSI, hwWlanWIDSTrapInfoRogueChanID, hwWlanWIDSTrapInfoAPId } + STATUS current + DESCRIPTION + "A suspicious device is detected." + ::= { hwWlanRadioTrap 15 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.16 + hwRadioNotSupportChannelTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioMngChannelBandwidth, + hwWlanRadioMngChannel, hwWlanRadioMngSecondChannel, hwWlanRadioActualChannelBandwidth, hwWlanRadioActualChannel, hwWlanRadioSecondActualChannel, + hwWlanRadioChannelChangedReasonStr, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "A channel is not supported." + ::= { hwWlanRadioTrap 16 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.17 + hwRadioNotSupportPowerLevelTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioMngPowerLevel, hwWlanRadioActualPowerLevel, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Power is not supported." + ::= { hwWlanRadioTrap 17 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.18 + hwRadioAntennaGainIsUnlawfulTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioActualAntennaGain, hwWlanRadioLegitimateAntennaGain, hwWlanRadioInfoApId, hwWlanRadioLegitimateEirp} + STATUS current + DESCRIPTION + "The antenna gain of the radio does not conform to local law." + ::= { hwWlanRadioTrap 18 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.19 + hwRadioPowerChangedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioActualEIRP, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The radio power is changed." + ::= { hwWlanRadioTrap 19 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.20 + hwApAccessUserNumExceedThresholdTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The number of users associated with the AP exceeds the alarm threshold." + ::= { hwWlanRadioTrap 20 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.21 + hwApAccessUserNumExceedThresholdRecovTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The number of users associated with the AP falls below the clear alarm threshold." + ::= { hwWlanRadioTrap 21 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.22 + hwApRoamUserNumExceedThresholdTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The number of roaming users connected to the AP exceeds the alarm threshold." + ::= { hwWlanRadioTrap 22 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.23 + hwApRoamUserNumExceedThresholdRecovTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The number of roaming users The number of roaming users connected to the AP falls below the clear alarm threshold." + ::= { hwWlanRadioTrap 23 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.24 + hwApAccessChannelUtilExceedThresholdTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The channel usage exceeds the alarm threshold." + ::= { hwWlanRadioTrap 24 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.25 + hwApAccessChannelUtilExceedThresholdRecovTrap NOTIFICATION-TYPE + OBJECTS {hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The channel usage falls below the clear alarm threshold." + ::= { hwWlanRadioTrap 25 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.26 + hwApRoamChannelUtilExceedThresholdTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The channel usage by the roaming STAs exceeds the alarm threshold." + ::= { hwWlanRadioTrap 26 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.27 + hwApRoamChannelUtilExceedThresholdRecovTrap NOTIFICATION-TYPE + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioUacUserNum, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "The channel usage by the roaming STAs falls below the clear alarm threshold." + ::= { hwWlanRadioTrap 27 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.28 + hwRadioDownTrapFat NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioInfoApName, hwWlanApRadioNotifyPara, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrap 28 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.1.29 + hwRadioDownRecovTrapFat NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanApName, hwWlanApRadioNotifyPara, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrap 29 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2 + hwWlanRadioTrapObjects OBJECT IDENTIFIER ::= { hwWlanRadioTraps 2 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.1 + hwWlanRadioActualChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.2 + hwWlanRadioActualChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40Plus(2), + ht40Minus(3), + ht80(4), + ht160(5), + invalid(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 2 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.3 + hwWlanRadioActualPowerLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 3 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.4 + hwWlanRadioActualAntennaGain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 4 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.5 + hwWlanRadioLegitimateAntennaGain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 5 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.6 + hwWlanRadioChannelChangedReason OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + dfs(2), + wds(3), + config(4), + calibrate(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 6 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.7 + hwWlanRadioChannelChangedReasonStr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 7 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.8 + hwWlanRadioConflictRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 8 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.9 + hwWlanApMonitorMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 9 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.10 + hwWlanApPreMonitorMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 10 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.11 + hwWlanApChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 11 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.12 + hwWlanApInterfBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 12 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.13 + hwWlanInterfStaMac OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 13 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.14 + hwWlanRadioDownCause OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 14 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.15 + hwWlanInterfApChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 15 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.16 + hwWlanInterfRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 16 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.17 + hwWlanWIDSTrapInfoAPName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 17 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.18 + hwWlanWIDSTrapInfoRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 18 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.19 + hwWlanWIDSTrapInfoAPMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 19 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.20 + hwWlanWIDSTrapInfoRogueMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 20 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.21 + hwWlanWIDSTrapInfoRogueSSId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 21 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.22 + hwWlanWIDSTrapInfoRogueType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 22 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.23 + hwWlanWIDSTrapInfoRogueRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 23 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.24 + hwWlanWIDSTrapInfoRogueChanID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 24 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.25 + hwWlanRadioDownCauseStr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 25 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.26 + hwWlanRadioUacUserNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 26 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.27 + hwWlanRadioPreActualChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 27 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.28 + hwWlanApRadioNotifyPara OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 28 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.29 + hwWlanRadioMngChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40Plus(2), + ht40Minus(3), + ht80(4), + ht160(5), + invalid(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 29 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.30 + hwWlanRadioMngChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 30 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.31 + hwWlanRadioMngPowerLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 31 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.32 + hwWlanWIDSTrapInfoAPId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 32 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.33 + hwWlanRadioSecondActualChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 33 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.34 + hwWlanRadioPreSecondActualChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 34 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.35 + hwWlanRadioMngSecondChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 35 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.36 + hwWlanApMonitorModeDesc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 36 } + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.37 + hwWlanApPreMonitorModeDesc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 37 } + + + --1.3.6.1.4.1.2011.6.139.16.1.1.2.38 + hwWlanRadioLegitimateEirp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioTrapObjects 38 } + + --1.3.6.1.4.1.2011.6.139.16.1.2 + hwWlanRadioInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query RF information, including channel, power, number of sent and received packets, and number of users." + ::= { hwWlanRadioObjects 2 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1 + hwWlanRadioInfoEntry OBJECT-TYPE + SYNTAX HwWlanRadioInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanRadioInfoApMac and hwWlanRadioID." + INDEX { hwWlanRadioInfoApMac, hwWlanRadioID } + ::= { hwWlanRadioInfoTable 1 } + + + HwWlanRadioInfoEntry ::= + SEQUENCE { + hwWlanRadioInfoApMac + MacAddress, + hwWlanRadioID + Unsigned32, + hwWlanRadioInfoApName + OCTET STRING, + hwWlanRadioType + Unsigned32, + hwWlanRadioFreqType + INTEGER, + hwWlanRadioRunState + INTEGER, + hwWlanRadioWorkingChannel + Unsigned32, + hwWlanRadioWorkingPowerLevel + Unsigned32, + hwWlanRadioWorkingPower + Unsigned32, + hwWlanRadioWorkingChannelBandwidth + INTEGER, + hwWlanRadioWorkMode + INTEGER, + hwWlanRadioMaxTxPwrLvl + Integer32, + hwWlanRadioPwrAttRange + Integer32, + hwWlanRadioPwrAttValue + Integer32, + hwWlanRadioAntennaGain + Integer32, + hwWlanRadioDecsption + OCTET STRING, + hwWlanRadioPortType + OCTET STRING, + hwWlanRadioMaxMtu + Integer32, + hwWlanRadioBandwidth + Integer32, + hwWlanRadioMac + MacAddress, + hwWlanRadioLastChange + Integer32, + hwWlanRadioInfoUpDownTimes + Integer32, + hwWlanRadioPER + Unsigned32, + hwWlanRadioNoise + Integer32, + hwWlanRadioChUtilizationRate + Unsigned32, + hwWlanRadioChannelFreeRate + Unsigned32, + hwWlanRadioTxRatio + Unsigned32, + hwWlanRadioRxRatio + Unsigned32, + hwWlanRadioChInterferenceRate + Unsigned32, + hwWlanRadioRcvFrames + Counter64, + hwWlanRadioRcvBytes + Counter64, + hwWlanRadioRecvRate + Unsigned32, + hwWlanRadioPeriodRcvDropFrames + Counter64, + hwWlanRadioPeriodRcvErrFrames + Counter64, + hwWlanRadioSendFrames + Counter64, + hwWlanRadioSendBytes + Counter64, + hwWlanRadioSendRate + Unsigned32, + hwWlanRadioPeriodRetryFrames + Counter64, + hwWlanRadioPeriodSendDropFrames + Counter64, + hwWlanRadioOnlineStaCnt + Unsigned32, + hwWlanRadioStaAveSignalStrength + Integer32, + hwWlanRadioPerformanceStatOperMode + INTEGER, + hwWlanRadioPeriodRcvFrames + Counter64, + hwWlanRadioPeriodSendFrames + Counter64, + hwWlanRadioActualEIRP + Unsigned32, + hwWlanRadioMaximumEIRP + Unsigned32, + hwWlanRadioSpectrumSwitchFlag + INTEGER, + hwWlanRadioInfoApId + Unsigned32, + hwWlanRadioRetryFrames + Counter64, + hwWlanRadioRcvErrFrames + Counter64, + hwWlanRadioRcvDropFrames + Counter64, + hwWlanRadioWorkingSecondChannel + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.1 + hwWlanRadioInfoApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanRadioInfoEntry 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.2 + hwWlanRadioID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanRadioInfoEntry 2 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.3 + hwWlanRadioInfoApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanRadioInfoEntry 3 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.4 + hwWlanRadioType OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio type (b\g\n\ac)." + ::= { hwWlanRadioInfoEntry 4 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.5 + hwWlanRadioFreqType OBJECT-TYPE + SYNTAX INTEGER + { + frequency2G(1), + frequency5G(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio frequency band." + ::= { hwWlanRadioInfoEntry 5 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.6 + hwWlanRadioRunState OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the running status of the radio." + ::= { hwWlanRadioInfoEntry 6 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.7 + hwWlanRadioWorkingChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the actual channel of a radio." + ::= { hwWlanRadioInfoEntry 7 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.8 + hwWlanRadioWorkingPowerLevel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the actual power level of a radio." + ::= { hwWlanRadioInfoEntry 8 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.9 + hwWlanRadioWorkingPower OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the power determined by the actual power level." + ::= { hwWlanRadioInfoEntry 9 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.10 + hwWlanRadioWorkingChannelBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1) , + ht40Plus(2) , + ht40Minus(3) , + ht80(4) , + unknown(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the actual channel bandwidth." + ::= { hwWlanRadioInfoEntry 10 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.11 + hwWlanRadioWorkMode OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + monitor(2), + dualBand(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio working mode.normal(1): The radio works in normal mode.monitor(2): The radio works in monitor mode and uses current band scanning.dualBand(4): The radio works in monitor mode and uses dual band scanning." + ::= { hwWlanRadioInfoEntry 11 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.12 + hwWlanRadioMaxTxPwrLvl OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum transmit power." + ::= { hwWlanRadioInfoEntry 12 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.13 + hwWlanRadioPwrAttRange OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the power attenuation range." + ::= { hwWlanRadioInfoEntry 13 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.14 + hwWlanRadioPwrAttValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the power adjustment step." + ::= { hwWlanRadioInfoEntry 14 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.15 + hwWlanRadioAntennaGain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the antenna gain." + ::= { hwWlanRadioInfoEntry 15 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.16 + hwWlanRadioDecsption OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interface description." + ::= { hwWlanRadioInfoEntry 16 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.17 + hwWlanRadioPortType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interface type." + ::= { hwWlanRadioInfoEntry 17 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.18 + hwWlanRadioMaxMtu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum transmit unit (MTU) of the interface." + ::= { hwWlanRadioInfoEntry 18 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.19 + hwWlanRadioBandwidth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interface bandwidth." + ::= { hwWlanRadioInfoEntry 19 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.20 + hwWlanRadioMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the interface." + ::= { hwWlanRadioInfoEntry 20 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.21 + hwWlanRadioLastChange OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates how long the interface has stayed in the current state." + ::= { hwWlanRadioInfoEntry 21 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.22 + hwWlanRadioInfoUpDownTimes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates how many times the interface goes online and offline." + ::= { hwWlanRadioInfoEntry 22 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.23 + hwWlanRadioPER OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet error rate at the wireless side." + ::= { hwWlanRadioInfoEntry 23 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.24 + hwWlanRadioNoise OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interference noise of the radio." + ::= { hwWlanRadioInfoEntry 24 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.25 + hwWlanRadioChUtilizationRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel usage on the radio." + ::= { hwWlanRadioInfoEntry 25 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.26 + hwWlanRadioChannelFreeRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the idle period." + ::= { hwWlanRadioInfoEntry 26 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.27 + hwWlanRadioTxRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet transmitting ratio." + ::= { hwWlanRadioInfoEntry 27 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.28 + hwWlanRadioRxRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet receiving ratio." + ::= { hwWlanRadioInfoEntry 28 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.29 + hwWlanRadioChInterferenceRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interference rate." + ::= { hwWlanRadioInfoEntry 29 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.30 + hwWlanRadioRcvFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of user packets received at the wireless side." + ::= { hwWlanRadioInfoEntry 30 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.31 + hwWlanRadioRcvBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of bytes in user packets received at the wireless side." + ::= { hwWlanRadioInfoEntry 31 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.32 + hwWlanRadioRecvRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the downstream rate at the wireless side." + ::= { hwWlanRadioInfoEntry 32 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.33 + hwWlanRadioPeriodRcvDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of packets failed to be received by the radio within the echo interval." + ::= { hwWlanRadioInfoEntry 33 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.34 + hwWlanRadioPeriodRcvErrFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of error packets of the radio received within the echo interval." + ::= { hwWlanRadioInfoEntry 34 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.35 + hwWlanRadioSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of user packets sent at the wireless side." + ::= { hwWlanRadioInfoEntry 35 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.36 + hwWlanRadioSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of bytes in user packets sent at the wireless side." + ::= { hwWlanRadioInfoEntry 36 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.37 + hwWlanRadioSendRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream rate at the wireless side." + ::= { hwWlanRadioInfoEntry 37 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.38 + hwWlanRadioPeriodRetryFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of packets retransmitted at the wireless side within the echo interval." + ::= { hwWlanRadioInfoEntry 38 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.39 + hwWlanRadioPeriodSendDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of packets failed to be sent by the radio within the echo interval." + ::= { hwWlanRadioInfoEntry 39 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.40 + hwWlanRadioOnlineStaCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of online users of the radio." + ::= { hwWlanRadioInfoEntry 40 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.41 + hwWlanRadioStaAveSignalStrength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of online users of the radio." + ::= { hwWlanRadioInfoEntry 41 } + + --1.3.6.1.4.1.2011.6.139.16.1.2.1.42 + hwWlanRadioPerformanceStatOperMode OBJECT-TYPE + SYNTAX INTEGER + { + invalid(1), + clearstatistic(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the operating mode." + ::= { hwWlanRadioInfoEntry 42 } + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.43 + hwWlanRadioPeriodRcvFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of packets of the radio received within the echo interval." + ::= { hwWlanRadioInfoEntry 43 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.44 + hwWlanRadioPeriodSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of packets of the radio sent within the echo interval." + ::= { hwWlanRadioInfoEntry 44 } + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.45 + hwWlanRadioActualEIRP OBJECT-TYPE + SYNTAX Unsigned32 (1..127 | 255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the actual power of a radio, invalid value is 255." + ::= { hwWlanRadioInfoEntry 45 } + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.46 + hwWlanRadioMaximumEIRP OBJECT-TYPE + SYNTAX Unsigned32 (1..127 | 255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum power of a radio, invalid value is 255." + ::= { hwWlanRadioInfoEntry 46 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.47 + hwWlanRadioSpectrumSwitchFlag OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the spectrum switch flag of a radio." + ::= { hwWlanRadioInfoEntry 47 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.48 + hwWlanRadioInfoApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP ID." + ::= { hwWlanRadioInfoEntry 48 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.49 + hwWlanRadioRetryFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of user packets retransmitted at the wireless side." + ::= { hwWlanRadioInfoEntry 49 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.50 + hwWlanRadioRcvErrFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of wrong user packets received at the wireless side." + ::= { hwWlanRadioInfoEntry 50 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.51 + hwWlanRadioRcvDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of user packets failed to received at the wireless side." + ::= { hwWlanRadioInfoEntry 51 } + + -- 1.3.6.1.4.1.2011.6.139.16.1.2.1.52 + hwWlanRadioWorkingSecondChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second working channel of a radio." + ::= { hwWlanRadioInfoEntry 52 } + +-- 1.3.6.1.4.1.2011.6.139.16.1.3 + -- 1.3.6.1.4.1.2011.6.139.16.1.3 + hwWlanRadioQueryPowerlevelTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioQueryPowerlevelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query the maximum power level for specified channel and bandwidth." + ::= { hwWlanRadioObjects 3 } + + --1.3.6.1.4.1.2011.6.139.16.1.3.1 + hwWlanRadioQueryPowerlevelEntry OBJECT-TYPE + SYNTAX HwWlanRadioQueryPowerlevelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanRadioQueryPowerlevelApMac, hwWlanRadioQueryPowerlevelRadioId, hwWlanRadioQueryPowerlevelChannel, and hwWlanRadioQueryPowerlevelBandwidth." + INDEX { hwWlanRadioQueryPowerlevelApMac, hwWlanRadioQueryPowerlevelRadioId, hwWlanRadioQueryPowerlevelChannel, hwWlanRadioQueryPowerlevelBandwidth } + ::= { hwWlanRadioQueryPowerlevelTable 1 } + + + HwWlanRadioQueryPowerlevelEntry ::= + SEQUENCE { + hwWlanRadioQueryPowerlevelApMac + MacAddress, + hwWlanRadioQueryPowerlevelRadioId + Unsigned32, + hwWlanRadioQueryPowerlevelChannel + Unsigned32, + hwWlanRadioQueryPowerlevelBandwidth + INTEGER, + hwWlanRadioQueryPowerlevelMax + Integer32 + } + + --1.3.6.1.4.1.2011.6.139.16.1.3.1.1 + hwWlanRadioQueryPowerlevelApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanRadioQueryPowerlevelEntry 1 } + + --1.3.6.1.4.1.2011.6.139.16.1.3.1.2 + hwWlanRadioQueryPowerlevelRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanRadioQueryPowerlevelEntry 2 } + + --1.3.6.1.4.1.2011.6.139.16.1.3.1.3 + hwWlanRadioQueryPowerlevelChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the channel." + ::= { hwWlanRadioQueryPowerlevelEntry 3 } + + --1.3.6.1.4.1.2011.6.139.16.1.3.1.4 + hwWlanRadioQueryPowerlevelBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1) , + ht40Plus(2) , + ht40Minus(3) , + ht80(4) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the bandwidth." + ::= { hwWlanRadioQueryPowerlevelEntry 4 } + + --1.3.6.1.4.1.2011.6.139.16.1.3.1.5 + hwWlanRadioQueryPowerlevelMax OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum power level." + ::= { hwWlanRadioQueryPowerlevelEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4 + hwWlanRadioUncontrolAPInfTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioUncontrolAPInfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioObjects 4 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1 + hwWlanRadioUncontrolAPInfEntry OBJECT-TYPE + SYNTAX HwWlanRadioUncontrolAPInfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanUncontrolApId } + ::= { hwWlanRadioUncontrolAPInfTable 1 } + + + HwWlanRadioUncontrolAPInfEntry ::= + SEQUENCE { + hwWlanUncontrolApId + Integer32, + hwWlanUncontrolApBSSID + MacAddress, + hwWlanAuthAPId + Integer32, + hwWlanUncontrolApChannel + Unsigned32, + hwWlanUncontrolApRSSI + Integer32, + hwWlanUncontrolApSSID + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1.1 + hwWlanUncontrolApId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioUncontrolAPInfEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1.2 + hwWlanUncontrolApBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioUncontrolAPInfEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1.3 + hwWlanAuthAPId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioUncontrolAPInfEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1.4 + hwWlanUncontrolApChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioUncontrolAPInfEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1.5 + hwWlanUncontrolApRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioUncontrolAPInfEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.16.1.4.1.6 + hwWlanUncontrolApSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioUncontrolAPInfEntry 6 } + + +-- 1.3.6.1.4.1.2011.6.139.16.2 + -- 1.3.6.1.4.1.2011.6.139.16.3 + hwWlanRadioConformance OBJECT IDENTIFIER ::= { hwWlanRadio 3 } + + --1.3.6.1.4.1.2011.6.139.16.2.1 + hwWlanRadioCompliances OBJECT IDENTIFIER ::= { hwWlanRadioConformance 1 } + + --1.3.6.1.4.1.2011.6.139.16.2.1.1 + hwWlanRadioCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanRadioTrapObjectGroup, hwWlanRadioInfoGroup, hwWlanRadioQueryPowerlevelGroup } + ::= { hwWlanRadioCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.16.2.2 + hwWlanRadioObjectGroups OBJECT IDENTIFIER ::= { hwWlanRadioConformance 2 } + + --1.3.6.1.4.1.2011.6.139.16.2.2.1 + hwWlanRadioTrapGroup NOTIFICATION-GROUP + NOTIFICATIONS { hwRadioChannelChangedTrap, hwRadioSignalEnvDeteriorationTrap, hwRadioSignalEnvResumeTrap, hwApMonitorModeChangedTrap, hwAPCoInterfDetectedTrap, + hwAPCoInterfClearTrap, hwNerborInterfDetectedTrap, hwNeiborInterfClearTrap, hwStaInterfDetectedTrap, hwStaInterfClearTrap, + hwOtherDeviceInterfDetectedTrap, hwOtherDeviceInterfClearTrap, hwRadioDownTrap, hwRadioDownRecovTrap, hwWIDSDetectRogueTrap, + hwRadioNotSupportChannelTrap, hwRadioNotSupportPowerLevelTrap, hwRadioAntennaGainIsUnlawfulTrap, hwRadioPowerChangedTrap, hwApAccessUserNumExceedThresholdTrap, + hwApAccessUserNumExceedThresholdRecovTrap, hwApRoamUserNumExceedThresholdTrap, hwApRoamUserNumExceedThresholdRecovTrap, hwApAccessChannelUtilExceedThresholdTrap, hwApAccessChannelUtilExceedThresholdRecovTrap, + hwApRoamChannelUtilExceedThresholdTrap, hwApRoamChannelUtilExceedThresholdRecovTrap, hwRadioDownTrapFat, hwRadioDownRecovTrapFat } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioObjectGroups 1 } + + --1.3.6.1.4.1.2011.6.139.16.2.2.2 + hwWlanRadioTrapObjectGroup OBJECT-GROUP + OBJECTS { hwWlanRadioActualChannel, hwWlanRadioActualChannelBandwidth, hwWlanRadioActualPowerLevel, hwWlanRadioActualAntennaGain, hwWlanRadioLegitimateAntennaGain, + hwWlanRadioChannelChangedReason, hwWlanRadioChannelChangedReasonStr, hwWlanRadioConflictRate, hwWlanApMonitorMode, hwWlanApPreMonitorMode, + hwWlanApChannel, hwWlanApInterfBssid, hwWlanInterfStaMac, hwWlanRadioDownCause, hwWlanInterfApChannel, + hwWlanInterfRSSI, hwWlanWIDSTrapInfoAPName, hwWlanWIDSTrapInfoRadioId, hwWlanWIDSTrapInfoAPMAC, hwWlanWIDSTrapInfoRogueMAC, + hwWlanWIDSTrapInfoRogueSSId, hwWlanWIDSTrapInfoRogueType, hwWlanWIDSTrapInfoRogueRSSI, hwWlanWIDSTrapInfoRogueChanID, hwWlanRadioDownCauseStr, + hwWlanRadioUacUserNum, hwWlanRadioPreActualChannel, hwWlanApRadioNotifyPara,hwWlanRadioMngChannelBandwidth,hwWlanRadioMngPowerLevel,hwWlanRadioMngChannel,hwWlanWIDSTrapInfoAPId, + hwWlanRadioSecondActualChannel, hwWlanRadioPreSecondActualChannel, hwWlanRadioMngSecondChannel, hwWlanApMonitorModeDesc, hwWlanApPreMonitorModeDesc, hwWlanRadioLegitimateEirp} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioObjectGroups 2 } + + --1.3.6.1.4.1.2011.6.139.16.2.2.3 + hwWlanRadioInfoGroup OBJECT-GROUP + OBJECTS { hwWlanRadioInfoApMac, hwWlanRadioID, hwWlanRadioInfoApName, hwWlanRadioType, hwWlanRadioFreqType, + hwWlanRadioRunState, hwWlanRadioWorkingChannel, hwWlanRadioWorkingPowerLevel, hwWlanRadioWorkingPower, hwWlanRadioWorkingChannelBandwidth, + hwWlanRadioWorkMode, hwWlanRadioMaxTxPwrLvl, hwWlanRadioPwrAttRange, hwWlanRadioPwrAttValue, hwWlanRadioAntennaGain, + hwWlanRadioDecsption, hwWlanRadioPortType, hwWlanRadioMaxMtu, hwWlanRadioBandwidth, hwWlanRadioMac, + hwWlanRadioLastChange, hwWlanRadioInfoUpDownTimes, hwWlanRadioPER, hwWlanRadioNoise, hwWlanRadioChUtilizationRate, + hwWlanRadioChannelFreeRate, hwWlanRadioTxRatio, hwWlanRadioRxRatio, hwWlanRadioChInterferenceRate, hwWlanRadioRcvFrames, + hwWlanRadioRcvBytes, hwWlanRadioRecvRate, hwWlanRadioPeriodRcvDropFrames, hwWlanRadioPeriodRcvErrFrames, hwWlanRadioSendFrames, + hwWlanRadioSendBytes, hwWlanRadioSendRate, hwWlanRadioPeriodRetryFrames, hwWlanRadioPeriodSendDropFrames, hwWlanRadioOnlineStaCnt, + hwWlanRadioStaAveSignalStrength, hwWlanRadioPerformanceStatOperMode, hwWlanRadioPeriodRcvFrames, hwWlanRadioPeriodSendFrames, + hwWlanRadioActualEIRP, hwWlanRadioMaximumEIRP, hwWlanRadioSpectrumSwitchFlag, hwWlanRadioInfoApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioObjectGroups 3 } + + --1.3.6.1.4.1.2011.6.139.16.2.2.4 + hwWlanRadioQueryPowerlevelGroup OBJECT-GROUP + OBJECTS { hwWlanRadioQueryPowerlevelMax } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioObjectGroups 4 } + + + END +-- +-- HUAWEI-WLAN-RADIO-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-AP-SERVICE-MIB b/mibs/huawei/HUAWEI-WLAN-AP-SERVICE-MIB new file mode 100644 index 0000000000..f7aeb015d7 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-AP-SERVICE-MIB @@ -0,0 +1,2147 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for configuring the information of the SERVICE. +-- Reference: +-- Version: V1.16 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-AP-SERVICE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.19 + hwWlanService MODULE-IDENTITY + LAST-UPDATED "201607291458Z" -- July 29, 2016 at 14:58 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.16, Add nodes of hwWlanBLESiteAgingTimeout." + REVISION "201607291458Z" -- July 29, 2016 at 14:58 GMT + DESCRIPTION + "V1.15, Add nodes of hwWlanRadioCalibrationSwitchRecordTable." + REVISION "201607211046Z" -- July 21, 2016 at 10:46 GMT + DESCRIPTION + "V1.14, Add nodes of hwWlanApIotCardSupportInfo." + REVISION "201607121146Z" -- July 12, 2016 at 11:46 GMT + DESCRIPTION + "V1.13, Add nodes of hwWlanApIotCardApName." + REVISION "201606011653Z" -- June 1, 2016 at 16:53 GMT + DESCRIPTION + "V1.12, Add hwWlanWdsLinkSecondChannel and hwWlanMeshLinkSecondChannel." + REVISION "201605271453Z" -- May 27, 2016 at 14:53 GMT + + DESCRIPTION + "V1.11, modify the index of hwWlanApIotCardTable." + REVISION "201605141130Z" -- May 14, 2016 at 11:30 GMT + + DESCRIPTION + "V1.10, Add nodes of hwWlanRadioChSwitchRecordOldSecChannel and hwWlanRadioChSwitchRecordNewSecChannel." + REVISION "201605051434Z" -- May 5, 2016 at 14:34 GMT + DESCRIPTION + "V1.09, Add hwWlanRadioCalibrationSwitchRecordTable." + REVISION "201604151434Z" -- April 15, 2016 at 14:34 GMT + DESCRIPTION + "V1.08, Add hwWlanRadioCalibrateStatisicsApId." + REVISION "201601121534Z" -- Feb 16, 2016 at 15:34 GMT + DESCRIPTION + "The MIB module defines the information of the SERVICE." + REVISION "201601121534Z" -- Jan 12, 2016 at 15:34 GMT + DESCRIPTION + "V1.07, Add hwWlanBLESiteInfoTable and hwWlanApIotCardTable." + REVISION "201509011030Z" -- Sept 1, 2015 at 10:30 GMT + DESCRIPTION + "V1.05, modify the value of hwWlanMeshLinkPeerAPStatus and hwWlanWdsLinkPeerAPStatus." + REVISION "201508051030Z" -- Aug 5, 2015 at 10:30 GMT + DESCRIPTION + "V1.05, modify the value of hwWlanMeshLinkPeerAPStatus and hwWlanWdsLinkPeerAPStatus." + REVISION "201505121542Z" -- May 12, 2015 at 15:42 GMT + DESCRIPTION + "V1.04, Add the description of mib nodes." + REVISION "201505041542Z" -- May 4, 2015 at 15:42 GMT + DESCRIPTION + "V1.03, modify the value of hwWlanMeshLinkPeerAPStatus and hwWlanWdsLinkPeerAPStatus and the name of hwWlanNeighborApUpdateTime" + REVISION "201504231611Z" -- April 23, 2015 at 16:11 GMT + DESCRIPTION + "V1.02, modify the name of the node of hwWlanMacWdsLinkWdsMode." + REVISION "201504081131Z" -- April 8, 2015 at 11:31 GMT + DESCRIPTION + "V1.01, Delete the name of the node of hwWlanWdsLinkResendFrames,hwWlanWdsLinkSendDropFrames,hwWlanWdsLinkResendFrames, + hwWlanMeshLinkResendFrames,hwWlanMeshLinkSendDropFrames,hwWlanMeshLinkResendFrames." + REVISION "201502051055Z" -- February 5, 2015 at 10:55 GMT + DESCRIPTION + "V1.00, Inital version." + ::= { hwWlan 19 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.19.1 + hwWlanServiceObjects OBJECT IDENTIFIER ::= { hwWlanService 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.1 + hwWlanWds OBJECT IDENTIFIER ::= { hwWlanServiceObjects 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.1 + hwWlanWdsVapInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWdsVapInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query WDS VAP information." + ::= { hwWlanWds 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.1.1 + hwWlanWdsVapInfoEntry OBJECT-TYPE + SYNTAX HwWlanWdsVapInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWdsVapApMac, hwWlanWdsVapRadioIndex, and hwWlanWdsVapWdsProfileName." + INDEX { hwWlanWdsVapApMac, hwWlanWdsVapRadioIndex, hwWlanWdsVapWdsProfileName } + ::= { hwWlanWdsVapInfoTable 1 } + + + HwWlanWdsVapInfoEntry ::= + SEQUENCE { + hwWlanWdsVapApMac + MacAddress, + hwWlanWdsVapRadioIndex + Integer32, + hwWlanWdsVapWdsProfileName + OCTET STRING, + hwWlanWdsVapBssid + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.19.1.1.1.1.1 + hwWlanWdsVapApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanWdsVapInfoEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.1.1.2 + hwWlanWdsVapRadioIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio index." + ::= { hwWlanWdsVapInfoEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.1.1.3 + hwWlanWdsVapWdsProfileName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the WDS profile name." + ::= { hwWlanWdsVapInfoEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.1.1.4 + hwWlanWdsVapBssid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSS ID." + ::= { hwWlanWdsVapInfoEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2 + hwWlanWdsLinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWdsLinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query WDS link information." + ::= { hwWlanWds 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1 + hwWlanWdsLinkEntry OBJECT-TYPE + SYNTAX HwWlanWdsLinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWdsLinkApMac, hwWlanWdsLinkApRadioId, and hwWlanWdsLinkIndex." + INDEX { hwWlanWdsLinkApMac, hwWlanWdsLinkApRadioId, hwWlanWdsLinkIndex } + ::= { hwWlanWdsLinkTable 1 } + + + HwWlanWdsLinkEntry ::= + SEQUENCE { + hwWlanWdsLinkApMac + MacAddress, + hwWlanWdsLinkApRadioId + Integer32, + hwWlanWdsLinkIndex + Integer32, + hwWlanWdsLinkWlanID + Integer32, + hwWlanWdsLinkApName + OCTET STRING, + hwWlanWdsLinkApGroup + OCTET STRING, + hwWlanWdsLinkPeerApMac + MacAddress, + hwWlanWdsLinkPeerApName + OCTET STRING, + hwWlanWdsLinkWdsProfileName + OCTET STRING, + hwWlanMacWdsLinkWdsMode + INTEGER, + hwWlanWdsLinkWdsType + INTEGER, + hwWlanWdsLinkStpMode + INTEGER, + hwWlanWdsLinkInstanceIdList + OCTET STRING, + hwWlanWdsLinkInstanceStateList + OCTET STRING, + hwWlanWdsLinkCoverageDistance + Integer32, + hwWlanWdsLinkChannel + Integer32, + hwWlanWdsLinkMaxRssi + Integer32, + hwWlanWdsLinkRssi + Integer32, + hwWlanWdsLinkSnr + Integer32, + hwWlanWdsLinkPER + Integer32, + hwWlanWdsLinkResendRatio + Integer32, + hwWlanWdsLinkPeerAPStatus + INTEGER, + hwWlanWdsLinkApId + Unsigned32, + hwWlanWdsLinkPeerApId + Unsigned32, + hwWlanWdsLinkSecondChannel + Integer32 + } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.1 + hwWlanWdsLinkApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the local AP." + ::= { hwWlanWdsLinkEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.2 + hwWlanWdsLinkApRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID of the local AP." + ::= { hwWlanWdsLinkEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.3 + hwWlanWdsLinkIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of the virtual link." + ::= { hwWlanWdsLinkEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.4 + hwWlanWdsLinkWlanID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the WLAN ID." + ::= { hwWlanWdsLinkEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.5 + hwWlanWdsLinkApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the local AP." + ::= { hwWlanWdsLinkEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.6 + hwWlanWdsLinkApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the group to which the local AP belongs." + ::= { hwWlanWdsLinkEntry 6 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.7 + hwWlanWdsLinkPeerApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the peer AP." + ::= { hwWlanWdsLinkEntry 7 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.8 + hwWlanWdsLinkPeerApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the peer AP." + ::= { hwWlanWdsLinkEntry 8 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.9 + hwWlanWdsLinkWdsProfileName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the WDS profile." + ::= { hwWlanWdsLinkEntry 9 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.10 + hwWlanMacWdsLinkWdsMode OBJECT-TYPE + SYNTAX INTEGER + { + middle(1) , + root(2) , + leaf(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the role of the local AP." + ::= { hwWlanWdsLinkEntry 10 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.11 + hwWlanWdsLinkWdsType OBJECT-TYPE + SYNTAX INTEGER + { + sta(1), + ap(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the link subtype." + ::= { hwWlanWdsLinkEntry 11 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.12 + hwWlanWdsLinkStpMode OBJECT-TYPE + SYNTAX INTEGER + { + stp(1), + mstp(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the STP mode." + ::= { hwWlanWdsLinkEntry 12 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.13 + hwWlanWdsLinkInstanceIdList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the forwarding state ID of the instance." + ::= { hwWlanWdsLinkEntry 13 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.14 + hwWlanWdsLinkInstanceStateList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the forwarding state of the instance." + ::= { hwWlanWdsLinkEntry 14 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.15 + hwWlanWdsLinkCoverageDistance OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the coverage distance of the local AP. The unit is 100 m." + ::= { hwWlanWdsLinkEntry 15 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.16 + hwWlanWdsLinkChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the link channel." + ::= { hwWlanWdsLinkEntry 16 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.17 + hwWlanWdsLinkMaxRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum RSSI of the link." + ::= { hwWlanWdsLinkEntry 17 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.18 + hwWlanWdsLinkRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI of the link." + ::= { hwWlanWdsLinkEntry 18 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.19 + hwWlanWdsLinkSnr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SNR. The unit is 0.01 dB." + ::= { hwWlanWdsLinkEntry 19 } + + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.20 + hwWlanWdsLinkPER OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet error rate." + ::= { hwWlanWdsLinkEntry 20 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.21 + hwWlanWdsLinkResendRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet retransmission ratio." + ::= { hwWlanWdsLinkEntry 21 } + + --1.3.6.1.4.1.2011.6.139.19.1.1.2.1.22 + hwWlanWdsLinkPeerAPStatus OBJECT-TYPE + SYNTAX INTEGER + { + idle(1) , + autofind(2) , + typeNotMatch(3) , + fault(4) , + config(5) , + configFailed(6) , + download(7) , + normal(8) , + committing(9) , + commitFailed(10) , + standby(11) , + verMismatch(12), + nameConflicted(13), + invalid(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the status of the peer AP." + ::= { hwWlanWdsLinkEntry 22 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.1.2.1.23 + hwWlanWdsLinkApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanWdsLinkEntry 23 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.1.2.1.24 + hwWlanWdsLinkPeerApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the peer AP ID." + ::= { hwWlanWdsLinkEntry 24 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.1.2.1.25 + hwWlanWdsLinkSecondChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second channel ID." + ::= { hwWlanWdsLinkEntry 25 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.2 + hwWlanMesh OBJECT IDENTIFIER ::= { hwWlanServiceObjects 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.1 + hwWlanMeshVapInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMeshVapInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query Mesh VAP information." + ::= { hwWlanMesh 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.1.1 + hwWlanMeshVapInfoEntry OBJECT-TYPE + SYNTAX HwWlanMeshVapInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanMeshVapApMac, hwWlanMeshVapRadioIndex, and hwWlanMeshVapMeshProfileName." + INDEX { hwWlanMeshVapApMac, hwWlanMeshVapRadioIndex, hwWlanMeshVapMeshProfileName } + ::= { hwWlanMeshVapInfoTable 1 } + + + HwWlanMeshVapInfoEntry ::= + SEQUENCE { + hwWlanMeshVapApMac + MacAddress, + hwWlanMeshVapRadioIndex + Integer32, + hwWlanMeshVapMeshProfileName + OCTET STRING, + hwWlanMeshVapBssid + MacAddress + } + + --1.3.6.1.4.1.2011.6.139.19.1.2.1.1.1 + hwWlanMeshVapApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the AP index." + ::= { hwWlanMeshVapInfoEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.1.1.2 + hwWlanMeshVapRadioIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio index." + ::= { hwWlanMeshVapInfoEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.1.1.3 + hwWlanMeshVapMeshProfileName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the Mesh profile name." + ::= { hwWlanMeshVapInfoEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.1.1.4 + hwWlanMeshVapBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSS ID." + ::= { hwWlanMeshVapInfoEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2 + hwWlanMeshLinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMeshLinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query Mesh link information." + ::= { hwWlanMesh 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1 + hwWlanMeshLinkEntry OBJECT-TYPE + SYNTAX HwWlanMeshLinkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanMeshLinkApMac, hwWlanMeshLinkApRadioId, and hwWlanMeshLinkIndex." + INDEX { hwWlanMeshLinkApMac, hwWlanMeshLinkApRadioId, hwWlanMeshLinkIndex } + ::= { hwWlanMeshLinkTable 1 } + + + HwWlanMeshLinkEntry ::= + SEQUENCE { + hwWlanMeshLinkApMac + MacAddress, + hwWlanMeshLinkApRadioId + Integer32, + hwWlanMeshLinkIndex + Integer32, + hwWlanMeshLinkApName + OCTET STRING, + hwWlanMeshLinkApGroup + OCTET STRING, + hwWlanMeshLinkMeshRole + INTEGER, + hwWlanMeshLinkWlanID + Integer32, + hwWlanMeshLinkPeerApMac + MacAddress, + hwWlanMeshLinkPeerApName + OCTET STRING, + hwWlanMeshLinkChannelID + Integer32, + hwWlanMeshLinkCoverageDistance + Integer32, + hwWlanMeshLinkRssiValue + Integer32, + hwWlanMeshLinkMaxRssi + Integer32, + hwWlanMeshLinkSnr + Integer32, + hwWlanMeshLinkPER + Integer32, + hwWlanMeshLinkResendRatio + Integer32, + hwWlanMeshLinkPeerAPStatus + INTEGER, + hwWlanMeshLinkApId + Unsigned32, + hwWlanMeshLinkPeerApId + Unsigned32, + hwWlanMeshLinkSecondChannel + Integer32 + } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.1 + hwWlanMeshLinkApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the local AP." + ::= { hwWlanMeshLinkEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.2 + hwWlanMeshLinkApRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID of the local AP." + ::= { hwWlanMeshLinkEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.3 + hwWlanMeshLinkIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the Mesh link index." + ::= { hwWlanMeshLinkEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.4 + hwWlanMeshLinkApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the local AP." + ::= { hwWlanMeshLinkEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.5 + hwWlanMeshLinkApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the group to which the local AP belongs." + ::= { hwWlanMeshLinkEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.6 + hwWlanMeshLinkMeshRole OBJECT-TYPE + SYNTAX INTEGER + { + meshNode(1) , + meshPortal(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the role of the local AP." + ::= { hwWlanMeshLinkEntry 6 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.7 + hwWlanMeshLinkWlanID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the WLAN ID." + ::= { hwWlanMeshLinkEntry 7 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.8 + hwWlanMeshLinkPeerApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the peer AP." + ::= { hwWlanMeshLinkEntry 8 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.9 + hwWlanMeshLinkPeerApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the peer AP." + ::= { hwWlanMeshLinkEntry 9 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.10 + hwWlanMeshLinkChannelID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel ID." + ::= { hwWlanMeshLinkEntry 10 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.11 + hwWlanMeshLinkCoverageDistance OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the coverage distance of the local AP. The unit is 100 m." + ::= { hwWlanMeshLinkEntry 11 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.12 + hwWlanMeshLinkRssiValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI value." + ::= { hwWlanMeshLinkEntry 12 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.13 + hwWlanMeshLinkMaxRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum RSSI." + ::= { hwWlanMeshLinkEntry 13 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.14 + hwWlanMeshLinkSnr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SNR. The unit is 0.01 dB." + ::= { hwWlanMeshLinkEntry 14 } + + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.15 + hwWlanMeshLinkPER OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet error rate." + ::= { hwWlanMeshLinkEntry 15 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.16 + hwWlanMeshLinkResendRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet retransmission ratio." + ::= { hwWlanMeshLinkEntry 16 } + + --1.3.6.1.4.1.2011.6.139.19.1.2.2.1.17 + hwWlanMeshLinkPeerAPStatus OBJECT-TYPE + SYNTAX INTEGER + { + idle(1) , + autofind(2) , + typeNotMatch(3) , + fault(4) , + config(5) , + configFailed(6) , + download(7) , + normal(8) , + committing(9) , + commitFailed(10) , + standby(11) , + verMismatch(12), + nameConflicted(13), + invalid(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the status of the peer AP." + ::= { hwWlanMeshLinkEntry 17 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.2.2.1.18 + hwWlanMeshLinkApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanMeshLinkEntry 18 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.2.2.1.19 + hwWlanMeshLinkPeerApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the peer AP ID." + ::= { hwWlanMeshLinkEntry 19 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.2.2.1.20 + hwWlanMeshLinkSecondChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second channel ID." + ::= { hwWlanMeshLinkEntry 20 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.3 + hwWlanCalibrateInfo OBJECT IDENTIFIER ::= { hwWlanServiceObjects 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1 + hwWlanRadioCalibrateStatisicsTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioCalibrateStatisicsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query and clear the number of radio environment deterioration reporting and the number of times that transmit power and channel are automatically calibrated." + ::= { hwWlanCalibrateInfo 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1 + hwWlanRadioCalibrateStatisicsEntry OBJECT-TYPE + SYNTAX HwWlanRadioCalibrateStatisicsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanRadioCalibrateStatisicsApMac and hwWlanRadioCalibrateStatisicsRadioId." + INDEX { hwWlanRadioCalibrateStatisicsApMac, hwWlanRadioCalibrateStatisicsRadioId } + ::= { hwWlanRadioCalibrateStatisicsTable 1 } + + + HwWlanRadioCalibrateStatisicsEntry ::= + SEQUENCE { + hwWlanRadioCalibrateStatisicsApMac + MacAddress, + hwWlanRadioCalibrateStatisicsRadioId + Unsigned32, + hwWlanRadioCalStatisSignalBadCount + Unsigned32, + hwWlanRadioCalStatisCalibratePowerCount + Unsigned32, + hwWlanRadioCalStatisCalibrateChannelCount + Unsigned32, + hwWlanRadioCalibrateStatisicsOperMode + INTEGER, + hwWlanRadioCalibrateStatisicsApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1.1 + hwWlanRadioCalibrateStatisicsApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanRadioCalibrateStatisicsEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1.2 + hwWlanRadioCalibrateStatisicsRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanRadioCalibrateStatisicsEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1.3 + hwWlanRadioCalStatisSignalBadCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times that radio parameters are automatically calibrated because the packet loss ratio or collision ratio exceeds the threshold." + ::= { hwWlanRadioCalibrateStatisicsEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1.4 + hwWlanRadioCalStatisCalibratePowerCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times transmit power is automatically calibrated." + ::= { hwWlanRadioCalibrateStatisicsEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1.5 + hwWlanRadioCalStatisCalibrateChannelCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times the channel is automatically calibrated." + ::= { hwWlanRadioCalibrateStatisicsEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.1.1.6 + hwWlanRadioCalibrateStatisicsOperMode OBJECT-TYPE + SYNTAX INTEGER + { + invalid(-1) , + clearstatistic(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the operation mode." + ::= { hwWlanRadioCalibrateStatisicsEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.3.1.1.7 + hwWlanRadioCalibrateStatisicsApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioCalibrateStatisicsEntry 7 } + + + --1.3.6.1.4.1.2011.6.139.19.1.3.2 + hwWlanRadioChannelSwitchRecordTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioChannelSwitchRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query the channel switching history, including the changed radio, reason for channel switching, channel switching time, and channels before and after switching." + ::= { hwWlanCalibrateInfo 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1 + hwWlanRadioChannelSwitchRecordEntry OBJECT-TYPE + SYNTAX HwWlanRadioChannelSwitchRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanRadioChannelSwitchRecordTimeIndex and hwWlanRadioChannelSwitchRecordSubIndex." + INDEX { hwWlanRadioChannelSwitchRecordTimeIndex, hwWlanRadioChannelSwitchRecordSubIndex } + ::= { hwWlanRadioChannelSwitchRecordTable 1 } + + + HwWlanRadioChannelSwitchRecordEntry ::= + SEQUENCE { + hwWlanRadioChannelSwitchRecordTimeIndex + Unsigned32, + hwWlanRadioChannelSwitchRecordSubIndex + Unsigned32, + hwWlanRadioChannelSwitchRecordApName + OCTET STRING, + hwWlanRadioChannelSwitchRecordRadioId + Unsigned32, + hwWlanRadioChannelSwitchRecordOldChannel + Unsigned32, + hwWlanRadioChannelSwitchRecordNewChannel + Unsigned32, + hwWlanRadioChannelSwitchRecordReason + OCTET STRING, + hwWlanRadioChannelSwitchRecordTime + OCTET STRING, + hwWlanRadioChSwitchRecordOldSecChannel + Unsigned32, + hwWlanRadioChSwitchRecordNewSecChannel + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.1 + hwWlanRadioChannelSwitchRecordTimeIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal index of the table." + ::= { hwWlanRadioChannelSwitchRecordEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.2 + hwWlanRadioChannelSwitchRecordSubIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal subindex of the table." + ::= { hwWlanRadioChannelSwitchRecordEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.3 + hwWlanRadioChannelSwitchRecordApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanRadioChannelSwitchRecordEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.4 + hwWlanRadioChannelSwitchRecordRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanRadioChannelSwitchRecordEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.5 + hwWlanRadioChannelSwitchRecordOldChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel before the switchover." + ::= { hwWlanRadioChannelSwitchRecordEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.6 + hwWlanRadioChannelSwitchRecordNewChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel after the switchover." + ::= { hwWlanRadioChannelSwitchRecordEntry 6 } + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.7 + hwWlanRadioChannelSwitchRecordReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the reason for channel switching." + ::= { hwWlanRadioChannelSwitchRecordEntry 7 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.8 + hwWlanRadioChannelSwitchRecordTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel switching time." + ::= { hwWlanRadioChannelSwitchRecordEntry 8 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.9 + hwWlanRadioChSwitchRecordOldSecChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second channel before the switchover." + ::= { hwWlanRadioChannelSwitchRecordEntry 9 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.2.1.10 + hwWlanRadioChSwitchRecordNewSecChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second channel after the switchover." + ::= { hwWlanRadioChannelSwitchRecordEntry 10 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.3.3 + hwWlanRadioResetChannelSwitchRecord OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates deletion of all information.Default value: 1" + ::= { hwWlanCalibrateInfo 3 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.3.4 + hwWlanRadioCalibrationSwitchRecordTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioCalibrationSwitchRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query the channel or power switching history causing by calibration, including the changed radio, reason for channel switching, channel switching time, and channels before and after switching." + ::= { hwWlanCalibrateInfo 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1 + hwWlanRadioCalibrationSwitchRecordEntry OBJECT-TYPE + SYNTAX HwWlanRadioCalibrationSwitchRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanRadioCalibrationSwitchRecordTimeIndex and hwWlanRadioCalibrationSwitchRecordSubIndex." + INDEX { hwWlanRadioCalibrationSwitchRecordTimeIndex, hwWlanRadioCalibrationSwitchRecordSubIndex } + ::= { hwWlanRadioCalibrationSwitchRecordTable 1 } + + + HwWlanRadioCalibrationSwitchRecordEntry ::= + SEQUENCE { + hwWlanRadioCalibrationSwitchRecordTimeIndex + Unsigned32, + hwWlanRadioCalibrationSwitchRecordSubIndex + Unsigned32, + hwWlanRadioCalibrationSwitchRecordApId + Unsigned32, + hwWlanRadioCalibrationSwitchRecordApName + OCTET STRING, + hwWlanRadioCalibrationSwitchRecordRadioId + Unsigned32, + hwWlanRadioCalibrationSwitchRecordOldChannel + Unsigned32, + hwWlanRadioCalibrationSwitchRecordNewChannel + Unsigned32, + hwWlanRadioCalibrationSwitchRecordOldEirp + Unsigned32, + hwWlanRadioCalibrationSwitchRecordNewEirp + Unsigned32, + hwWlanRadioCalibrationSwitchRecordOldRssi + Integer32, + hwWlanRadioCalibrationSwitchRecordNewRssi + Integer32, + hwWlanRadioCalibrationSwitchRecordReason + OCTET STRING, + hwWlanRadioCalibrationSwitchRecordTime + OCTET STRING, + hwWlanRadioCalibrationSwitchRecordNewBandwidth + INTEGER, + hwWlanRadioCalibrationSwitchRecordOldBandwidth + INTEGER, + hwWlanRadioCalibrationSwitchRecordNewSecChannel + Unsigned32, + hwWlanRadioCalibrationSwitchRecordOldSecChannel + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.1 + hwWlanRadioCalibrationSwitchRecordTimeIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal index of the table." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.2 + hwWlanRadioCalibrationSwitchRecordSubIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal subindex of the table." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.3 + hwWlanRadioCalibrationSwitchRecordApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP index." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.4 + hwWlanRadioCalibrationSwitchRecordApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.5 + hwWlanRadioCalibrationSwitchRecordRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.6 + hwWlanRadioCalibrationSwitchRecordOldChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel before the switchover." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 6 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.7 + hwWlanRadioCalibrationSwitchRecordNewChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel after the switchover." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 7 } + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.8 + hwWlanRadioCalibrationSwitchRecordOldEirp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel before the switchover." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 8 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.9 + hwWlanRadioCalibrationSwitchRecordNewEirp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel after the switchover." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 9 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.10 + hwWlanRadioCalibrationSwitchRecordOldRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel before the switchover." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 10 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.11 + hwWlanRadioCalibrationSwitchRecordNewRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel after the switchover." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 11 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.12 + hwWlanRadioCalibrationSwitchRecordReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the reason for channel switching." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 12 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.13 + hwWlanRadioCalibrationSwitchRecordTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel switching time." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 13 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.14 + hwWlanRadioCalibrationSwitchRecordNewBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1) , + ht40Plus(2) , + ht40Minus(3) , + ht80(4) , + ht160(5), + unknown(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the bandwidth after calibration." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 14 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.15 + hwWlanRadioCalibrationSwitchRecordOldBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1) , + ht40Plus(2) , + ht40Minus(3) , + ht80(4) , + ht160(5), + unknown(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the bandwidth before calibration." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 15 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.16 + hwWlanRadioCalibrationSwitchRecordNewSecChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second channel before calibration." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 16 } + + --1.3.6.1.4.1.2011.6.139.19.1.3.4.1.17 + hwWlanRadioCalibrationSwitchRecordOldSecChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the second channel after calibration." + ::= { hwWlanRadioCalibrationSwitchRecordEntry 17 } + + --1.3.6.1.4.1.2011.6.139.19.1.4 + hwWlanSpectrum OBJECT IDENTIFIER ::= { hwWlanServiceObjects 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.4.1 + hwWlanSpectrumReporterTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanSpectrumReporterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query the radio enabled with spectrum analysis data reporting." + ::= { hwWlanSpectrum 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.4.1.1 + hwWlanSpectrumReporterEntry OBJECT-TYPE + SYNTAX HwWlanSpectrumReporterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanSpectrumReporterApMac and hwWlanSpectrumReporterRadioId." + INDEX { hwWlanSpectrumReporterApMac, hwWlanSpectrumReporterRadioId } + ::= { hwWlanSpectrumReporterTable 1 } + + + HwWlanSpectrumReporterEntry ::= + SEQUENCE { + hwWlanSpectrumReporterApMac + MacAddress, + hwWlanSpectrumReporterRadioId + Integer32, + hwWlanSpectrumReporterApName + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.19.1.4.1.1.1 + hwWlanSpectrumReporterApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanSpectrumReporterEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.4.1.1.2 + hwWlanSpectrumReporterRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanSpectrumReporterEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.4.1.1.3 + hwWlanSpectrumReporterApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanSpectrumReporterEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.5 + hwWlanVehicleGroundFastLinkHandover OBJECT IDENTIFIER ::= { hwWlanServiceObjects 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.1 + hwWlanProxyTrackSideEquipTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanProxyTrackSideEquipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVehicleGroundFastLinkHandover 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.1.1 + hwWlanProxyTrackSideEquipEntry OBJECT-TYPE + SYNTAX HwWlanProxyTrackSideEquipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanProxyTrackSideEquipIndex } + ::= { hwWlanProxyTrackSideEquipTable 1 } + + + HwWlanProxyTrackSideEquipEntry ::= + SEQUENCE { + hwWlanProxyTrackSideEquipIndex + Integer32, + hwWlanProxyTrackSideEquipMac + MacAddress, + hwWlanProxyTrackSideEquipVlanID + Integer32, + hwWlanProxyTrackSideEquipRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.19.1.5.1.1.1 + hwWlanProxyTrackSideEquipIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyTrackSideEquipEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.1.1.2 + hwWlanProxyTrackSideEquipMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyTrackSideEquipEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.1.1.3 + hwWlanProxyTrackSideEquipVlanID OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyTrackSideEquipEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.1.1.4 + hwWlanProxyTrackSideEquipRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyTrackSideEquipEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.2 + hwWlanProxyOnBoardEquipTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanProxyOnBoardEquipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVehicleGroundFastLinkHandover 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.2.1 + hwWlanProxyOnBoardEquipEntry OBJECT-TYPE + SYNTAX HwWlanProxyOnBoardEquipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanProxyOnBoardEquipIndex } + ::= { hwWlanProxyOnBoardEquipTable 1 } + + + HwWlanProxyOnBoardEquipEntry ::= + SEQUENCE { + hwWlanProxyOnBoardEquipIndex + Integer32, + hwWlanProxyOnBoardEquipMac + MacAddress, + hwWlanProxyOnBoardEquipVlanID + Integer32, + hwWlanProxyOnBoardEquipRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.19.1.5.2.1.1 + hwWlanProxyOnBoardEquipIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyOnBoardEquipEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.2.1.2 + hwWlanProxyOnBoardEquipMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyOnBoardEquipEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.2.1.3 + hwWlanProxyOnBoardEquipVlanID OBJECT-TYPE + SYNTAX Integer32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyOnBoardEquipEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.2.1.4 + hwWlanProxyOnBoardEquipRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanProxyOnBoardEquipEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3 + hwWlanHandoverTraceTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanHandoverTraceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVehicleGroundFastLinkHandover 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1 + hwWlanHandoverTraceEntry OBJECT-TYPE + SYNTAX HwWlanHandoverTraceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanHandoverTraceIndex } + ::= { hwWlanHandoverTraceTable 1 } + + + HwWlanHandoverTraceEntry ::= + SEQUENCE { + hwWlanHandoverTraceIndex + Integer32, + hwWlanHandoverTimeStamp + OCTET STRING, + hwWlanHandoverFromApMac + MacAddress, + hwWlanHandoverFromApRssi + Integer32, + hwWlanHandoverToApMac + MacAddress, + hwWlanHandoverToApRssi + Integer32, + hwWlanHandoverFromApLocationID + Unsigned32, + hwWlanHandoverToApLocationID + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.1 + hwWlanHandoverTraceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.2 + hwWlanHandoverTimeStamp OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.3 + hwWlanHandoverFromApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.4 + hwWlanHandoverFromApRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.5 + hwWlanHandoverToApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.6 + hwWlanHandoverToApRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 6 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.7 + hwWlanHandoverFromApLocationID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 7 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.3.1.8 + hwWlanHandoverToApLocationID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanHandoverTraceEntry 8 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4 + hwWlanNeighborApTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanNeighborApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query the RSSI values of an AP's neighboring APs or specified APs." + ::= { hwWlanVehicleGroundFastLinkHandover 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1 + hwWlanNeighborApEntry OBJECT-TYPE + SYNTAX HwWlanNeighborApEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanNeighborApLocalApMac and hwWlanNeighborApLocalRadioId." + INDEX { hwWlanNeighborApLocalApMac, hwWlanNeighborApLocalRadioId } + ::= { hwWlanNeighborApTable 1 } + + + HwWlanNeighborApEntry ::= + SEQUENCE { + hwWlanNeighborApLocalApMac + MacAddress, + hwWlanNeighborApLocalRadioId + Integer32, + hwWlanNeighborApLocalApName + OCTET STRING, + hwWlanNeighborApMacList + OCTET STRING, + hwWlanNeighborApNameList + OCTET STRING, + hwWlanNeighborApRssiList + OCTET STRING, + hwWlanNeighborApUpdateTime + OCTET STRING, + hwWlanNeighborApLocationIDList + OCTET STRING, + hwWlanNeighborApLocalLocationID + Unsigned32, + hwWlanNeighborApLocalApId + Unsigned32, + hwWlanNeighborApIdList + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.1 + hwWlanNeighborApLocalApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanNeighborApEntry 1 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.2 + hwWlanNeighborApLocalRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanNeighborApEntry 2 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.3 + hwWlanNeighborApLocalApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanNeighborApEntry 3 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.4 + hwWlanNeighborApMacList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3840)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the neighboring AP." + ::= { hwWlanNeighborApEntry 4 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.5 + hwWlanNeighborApNameList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8960)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the neighboring AP." + ::= { hwWlanNeighborApEntry 5 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.6 + hwWlanNeighborApRssiList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1280)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI of the neighboring AP." + ::= { hwWlanNeighborApEntry 6 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.7 + hwWlanNeighborApUpdateTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..5120)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the update time of the neighboring AP." + ::= { hwWlanNeighborApEntry 7 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.8 + hwWlanNeighborApLocationIDList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1550)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates location information of the neighboring AP." + ::= { hwWlanNeighborApEntry 8 } + + --1.3.6.1.4.1.2011.6.139.19.1.5.4.1.9 + hwWlanNeighborApLocalLocationID OBJECT-TYPE + SYNTAX Unsigned32 (0..65536) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates location information of the local AP." + ::= { hwWlanNeighborApEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.5.4.1.10 + hwWlanNeighborApLocalApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanNeighborApEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.5.4.1.11 + hwWlanNeighborApIdList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3840)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID list." + ::= { hwWlanNeighborApEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.6 + hwWlanBLESiteInfo OBJECT IDENTIFIER ::= { hwWlanServiceObjects 6 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1 + hwWlanBLESiteInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanBLESiteInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLESiteInfo 1 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1.1 + hwWlanBLESiteInfoEntry OBJECT-TYPE + SYNTAX HwWlanBLESiteInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanBLESiteMacAddress } + ::= { hwWlanBLESiteInfoTable 1 } + + + HwWlanBLESiteInfoEntry ::= + SEQUENCE { + hwWlanBLESiteMacAddress + MacAddress, + hwWlanBLESiteRssi + Integer32, + hwWlanBLESitePower + Integer32, + hwWlanBLESiteAdvData + OCTET STRING, + hwWlanBLESiteAgingTimeout + Unsigned32 + } + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1.1.1 + hwWlanBLESiteMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLESiteInfoEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1.1.2 + hwWlanBLESiteRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLESiteInfoEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1.1.3 + hwWlanBLESitePower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLESiteInfoEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1.1.4 + hwWlanBLESiteAdvData OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLESiteInfoEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.6.1.1.5 + hwWlanBLESiteAgingTimeout OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLESiteInfoEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7 + hwWlanApIotCardInfo OBJECT IDENTIFIER ::= { hwWlanServiceObjects 7 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1 + hwWlanApIotCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApIotCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardInfo 1 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1 + hwWlanApIotCardEntry OBJECT-TYPE + SYNTAX HwWlanApIotCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanApIotCardApId, hwWlanApIotCardIndex } + ::= { hwWlanApIotCardTable 1 } + + + HwWlanApIotCardEntry ::= + SEQUENCE { + hwWlanApIotCardApId + Unsigned32, + hwWlanApIotCardIndex + Integer32, + hwWlanApIotCardState + INTEGER, + hwWlanApIotCardApName + OCTET STRING, + hwWlanApIotCardSupportInfo + INTEGER, + hwWlanApIotCardProtocolVer + OCTET STRING, + hwWlanApIotCardWirelessStard + OCTET STRING, + hwWlanApIotCardFreq + OCTET STRING, + hwWlanApIotCardVendorName + OCTET STRING, + hwWlanApIotCardCardType + OCTET STRING, + hwWlanApIotCardHardwareVer + OCTET STRING, + hwWlanApIotCardFirmwareVer + OCTET STRING, + hwWlanApIotCardSN + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.1 + hwWlanApIotCardApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.2 + hwWlanApIotCardIndex OBJECT-TYPE + SYNTAX Integer32 (1..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.3 + hwWlanApIotCardState OBJECT-TYPE + SYNTAX INTEGER + { + present(1), + absent(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.4 + hwWlanApIotCardApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.5 + hwWlanApIotCardSupportInfo OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.6 + hwWlanApIotCardProtocolVer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.7 + hwWlanApIotCardWirelessStard OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.8 + hwWlanApIotCardFreq OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 8 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.9 + hwWlanApIotCardVendorName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 9 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.10 + hwWlanApIotCardCardType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 10 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.11 + hwWlanApIotCardHardwareVer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.12 + hwWlanApIotCardFirmwareVer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 12 } + + -- 1.3.6.1.4.1.2011.6.139.19.1.7.1.1.13 + hwWlanApIotCardSN OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApIotCardEntry 13 } + +-- 1.3.6.1.4.1.2011.6.139.19.2 + -- 1.3.6.1.4.1.2011.6.139.19.2 + hwWlanServiceConformance OBJECT IDENTIFIER ::= { hwWlanService 2 } + + --1.3.6.1.4.1.2011.6.139.19.2.1 + hwWlanServiceCompliances OBJECT IDENTIFIER ::= { hwWlanServiceConformance 1 } + + --1.3.6.1.4.1.2011.6.139.19.2.1.1 + hwWlanServiceCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanWdsGroup, hwWlanMeshGroup, hwWlanCalibrateInfoGroup, hwWlanVehicleGroundFastLinkHandoverGroup} + ::= { hwWlanServiceCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.19.2.2 + hwWlanServiceObjectGroups OBJECT IDENTIFIER ::= { hwWlanServiceConformance 2 } + + --1.3.6.1.4.1.2011.6.139.19.2.2.1 + hwWlanWdsGroup OBJECT-GROUP + OBJECTS {hwWlanWdsVapBssid, + hwWlanWdsLinkWlanID, hwWlanWdsLinkApName, hwWlanWdsLinkApGroup, + hwWlanWdsLinkPeerApMac, hwWlanWdsLinkPeerApName, hwWlanWdsLinkWdsProfileName, hwWlanMacWdsLinkWdsMode, hwWlanWdsLinkWdsType, + hwWlanWdsLinkStpMode, hwWlanWdsLinkInstanceIdList, hwWlanWdsLinkInstanceStateList, hwWlanWdsLinkCoverageDistance, hwWlanWdsLinkChannel, + hwWlanWdsLinkMaxRssi, hwWlanWdsLinkRssi, hwWlanWdsLinkSnr, hwWlanWdsLinkPER, hwWlanWdsLinkResendRatio, hwWlanWdsLinkPeerAPStatus, + hwWlanWdsLinkApId, hwWlanWdsLinkPeerApId, hwWlanWdsLinkSecondChannel } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 1 } + + --1.3.6.1.4.1.2011.6.139.19.2.2.2 + hwWlanMeshGroup OBJECT-GROUP + OBJECTS {hwWlanMeshVapBssid, + hwWlanMeshLinkApName, hwWlanMeshLinkApGroup, hwWlanMeshLinkMeshRole, + hwWlanMeshLinkWlanID, hwWlanMeshLinkPeerApMac, hwWlanMeshLinkPeerApName, hwWlanMeshLinkChannelID, hwWlanMeshLinkCoverageDistance, + hwWlanMeshLinkRssiValue, hwWlanMeshLinkMaxRssi, hwWlanMeshLinkSnr, hwWlanMeshLinkPER, hwWlanMeshLinkResendRatio, hwWlanMeshLinkPeerAPStatus, + hwWlanMeshLinkApId, hwWlanMeshLinkPeerApId, hwWlanMeshLinkSecondChannel } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 2 } + + --1.3.6.1.4.1.2011.6.139.19.2.2.3 + hwWlanCalibrateInfoGroup OBJECT-GROUP + OBJECTS {hwWlanRadioCalStatisSignalBadCount, hwWlanRadioCalStatisCalibratePowerCount, hwWlanRadioCalStatisCalibrateChannelCount, + hwWlanRadioCalibrateStatisicsOperMode, hwWlanRadioChannelSwitchRecordApName, hwWlanRadioChannelSwitchRecordRadioId, hwWlanRadioChannelSwitchRecordOldChannel, + hwWlanRadioChannelSwitchRecordNewChannel, hwWlanRadioChannelSwitchRecordReason, hwWlanRadioChannelSwitchRecordTime,hwWlanRadioResetChannelSwitchRecord, + hwWlanRadioCalibrationSwitchRecordApName, hwWlanRadioCalibrationSwitchRecordRadioId, hwWlanRadioCalibrationSwitchRecordOldChannel, + hwWlanRadioCalibrationSwitchRecordNewChannel, + hwWlanRadioCalibrationSwitchRecordOldEirp, hwWlanRadioCalibrationSwitchRecordNewEirp,hwWlanRadioCalibrationSwitchRecordOldRssi, + hwWlanRadioCalibrationSwitchRecordNewRssi,hwWlanRadioCalibrationSwitchRecordReason, hwWlanRadioCalibrationSwitchRecordTime } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 3 } + + --1.3.6.1.4.1.2011.6.139.19.2.2.4 + hwWlanSpectrumReporterGroup OBJECT-GROUP + OBJECTS {hwWlanSpectrumReporterApName } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 4 } + + --1.3.6.1.4.1.2011.6.139.19.2.2.5 + hwWlanVehicleGroundFastLinkHandoverGroup OBJECT-GROUP + OBJECTS {hwWlanProxyTrackSideEquipMac, hwWlanProxyTrackSideEquipVlanID, hwWlanProxyTrackSideEquipRowStatus, + hwWlanProxyOnBoardEquipMac, hwWlanProxyOnBoardEquipVlanID, hwWlanProxyOnBoardEquipRowStatus,hwWlanHandoverTimeStamp, + hwWlanHandoverFromApMac, hwWlanHandoverFromApRssi, hwWlanHandoverToApMac, hwWlanHandoverToApRssi, hwWlanHandoverFromApLocationID, + hwWlanHandoverToApLocationID,hwWlanNeighborApLocalApName, hwWlanNeighborApMacList, + hwWlanNeighborApNameList, hwWlanNeighborApRssiList, hwWlanNeighborApUpdateTime, hwWlanNeighborApLocationIDList, hwWlanNeighborApLocalLocationID, + hwWlanNeighborApLocalApId, hwWlanNeighborApIdList } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 5 } + + -- 1.3.6.1.4.1.2011.6.139.19.2.2.6 + hwWlanBLESiteInfoGroup OBJECT-GROUP + OBJECTS { hwWlanBLESiteRssi, hwWlanBLESitePower, hwWlanBLESiteAdvData } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 6 } + + + -- 1.3.6.1.4.1.2011.6.139.19.2.2.7 + hwWlanApIotCardInfoGroup OBJECT-GROUP + OBJECTS { hwWlanApIotCardState, hwWlanApIotCardApName, hwWlanApIotCardSupportInfo, hwWlanApIotCardProtocolVer, hwWlanApIotCardWirelessStard, hwWlanApIotCardFreq, + hwWlanApIotCardVendorName, hwWlanApIotCardCardType, hwWlanApIotCardHardwareVer, hwWlanApIotCardFirmwareVer, hwWlanApIotCardSN } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanServiceObjectGroups 7 } + + + + END +-- +-- HUAWEI-WLAN-SERVICE-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-AP-UPDATE-MIB b/mibs/huawei/HUAWEI-WLAN-AP-UPDATE-MIB new file mode 100644 index 0000000000..73a99d4627 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-AP-UPDATE-MIB @@ -0,0 +1,855 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for update the ap's program version. +-- Reference: HUAWEI-WLAN-MIB +-- Version: V1.10 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-AP-UPDATE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + hwWlanApType + FROM HUAWEI-WLAN-AP-MIB + hwAPGroupName + FROM HUAWEI-WLAN-CONFIGURATION-MIB + hwWlanApName + FROM HUAWEI-WLAN-AP-MIB + hwWlanApMac + FROM HUAWEI-WLAN-AP-MIB + hwWlanApId + FROM HUAWEI-WLAN-AP-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.14 + hwWlanApUpdate MODULE-IDENTITY + LAST-UPDATED "201611071451Z" -- Nov 7, 2016 at 14:51 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + + DESCRIPTION + "The MIB module defines the AP update operation." + + REVISION "201611071451Z" -- Nov 7, 2016 at 14:51 GMT + DESCRIPTION + "V1.10, Modify the hwWlanApUpdateProgressStatus." + + REVISION "201606021520Z" -- June 2, 2016 at 15:20 GMT + DESCRIPTION + "V1.09, Add the hwWlanApUpdateOperEntry." + + REVISION "201605171015Z" -- May 17, 2016 at 10:15 GMT + DESCRIPTION + "V1.08, Add the hwWlanApUpdateFileType in the hwWlanApUpdateProgressTable." + + REVISION "201604181120Z" -- April 18, 2016 at 11:20 GMT + DESCRIPTION + "V1.07, Add the hwWlanApUpdateScheduleTaskTable and the hwWlanApUpdateType in the hwWlanApUpdateProgressTable." + + REVISION "201603231009Z" -- March 23, 2016 at 10:09 GMT + + DESCRIPTION + "The MIB module defines the AP update operation." + REVISION "201512180926Z" -- December 18, 2015 at 09:26 GMT + DESCRIPTION + " + V1.05, Add the value of hwWlanApUpdateProgressStatus. + " + REVISION "201509151030Z" -- sept 15, 2015 at 10:30 GMT + DESCRIPTION + "V1.04, Add the AP ID in the trap node." + REVISION "201508261030Z" -- Aug 26, 2015 at 10:30 GMT + DESCRIPTION + "V1.03, Add the AP ID in the trap node." + REVISION "201505111725Z" -- May 11, 2015 at 17:25 GMT + DESCRIPTION + " + V1.02, Add the description of mib nodes. + " + REVISION "201504071725Z" -- April 07, 2015 at 17:25 GMT + DESCRIPTION + " + V1.01, Add the value of hwWlanApUpdateProgressStatus. + " + REVISION "201502021009Z" -- February 02, 2015 at 10:09 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 14 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.14.1 + hwWlanApUpdateTrap OBJECT IDENTIFIER ::= { hwWlanApUpdate 1 } + + --1.3.6.1.4.1.2011.6.139.14.1.1 + hwWlanApUpdateBeginTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApName, hwWlanApMac, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates an AP upgrade start alarm.." + ::= { hwWlanApUpdateTrap 1 } + + --1.3.6.1.4.1.2011.6.139.14.1.2 + hwWlanApUpdateResultTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApName, hwWlanApUpdateResult, hwWlanApMac, hwWlanApUpdateTime, hwWlanApUpdateByFileName, + hwWlanApUpdateNextOper, hwWlanApUpdateResultStatus, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates the upgrade result alarm." + ::= { hwWlanApUpdateTrap 2 } + + --1.3.6.1.4.1.2011.6.139.14.1.3 + hwWlanApUpdateUbootNotMatchTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApName, hwWlanApMac, hwWlanApId } + STATUS current + DESCRIPTION + "This object indicates that the Uboot version does not match the AP version." + ::= { hwWlanApUpdateTrap 3 } + + --1.3.6.1.4.1.2011.6.139.14.2 + hwWlanApUpdateTrapObjects OBJECT IDENTIFIER ::= { hwWlanApUpdate 2 } + + --1.3.6.1.4.1.2011.6.139.14.2.1 + hwWlanApUpdateResult OBJECT-TYPE + SYNTAX INTEGER + { + success(1) , + failureUnknownError(2) , + failureInsufficientMemory(3) , + failureDownloadFileFailure(4) , + failureMismatchVersionEfsAndFileName(5) , + failureInvalidFileName(6) , + failureMismatchApTypeInEfs(7) , + failureFileContentError(8) , + failureWriteFlashFailure(9) , + failureTimeoutForUpgrade(10) , + failureCommunicationFaultApAndAc(11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP upgrade result." + ::= { hwWlanApUpdateTrapObjects 1 } + + --1.3.6.1.4.1.2011.6.139.14.2.2 + hwWlanApUpdateTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP upgrade time." + ::= { hwWlanApUpdateTrapObjects 2 } + + --1.3.6.1.4.1.2011.6.139.14.2.3 + hwWlanApUpdateByFileName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP upgrade file name." + ::= { hwWlanApUpdateTrapObjects 3 } + + --1.3.6.1.4.1.2011.6.139.14.2.4 + hwWlanApUpdateNextOper OBJECT-TYPE + SYNTAX INTEGER + { + notReset(1) , + reset(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Action after the upgrade." + ::= { hwWlanApUpdateTrapObjects 4 } + + --1.3.6.1.4.1.2011.6.139.14.2.5 + hwWlanApUpdateResultStatus OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "AP upgrade result status." + ::= { hwWlanApUpdateTrapObjects 5 } + + --1.3.6.1.4.1.2011.6.139.14.3 + hwWlanApUpdateObjects OBJECT IDENTIFIER ::= { hwWlanApUpdate 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.1 + hwWlanApUpdateConfig OBJECT IDENTIFIER ::= { hwWlanApUpdateObjects 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.1 + hwWlanApUpdateFTPIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the FTP server used in FTP upgrade mode." + ::= { hwWlanApUpdateConfig 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.2 + hwWlanApUpdateFTPUsername OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the user name of the FTP client used in FTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateFTPIPAddress or hwWlanApUpdateFTPIPv6Address." + ::= { hwWlanApUpdateConfig 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.3 + hwWlanApUpdateFTPPassword OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the password of the FTP client used in FTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateFTPIPAddress or hwWlanApUpdateFTPIPv6Address." + ::= { hwWlanApUpdateConfig 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.4 + hwWlanApUpdateMode OBJECT-TYPE + SYNTAX INTEGER + { + ftp(1) , + ac(2) , + sftp(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP upgrade mode." + ::= { hwWlanApUpdateConfig 4 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.5 + hwWlanApUpdateSFTPIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the SFTP server used in SFTP upgrade mode." + ::= { hwWlanApUpdateConfig 5 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.6 + hwWlanApUpdateSFTPUsername OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the user name of the SFTP client used in SFTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateSFTPIPAddress or hwWlanApUpdateSFTPIPv6Address." + ::= { hwWlanApUpdateConfig 6 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.7 + hwWlanApUpdateSFTPPassword OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the password of the SFTP client used in SFTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateSFTPIPAddress or hwWlanApUpdateSFTPIPv6Address." + ::= { hwWlanApUpdateConfig 7 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.8 + hwWlanApUpdateFTPMaxConnectNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of FTP connections." + ::= { hwWlanApUpdateConfig 8 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.9 + hwWlanApUpdateSFTPMaxConnectNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of SFTP connections." + ::= { hwWlanApUpdateConfig 9 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.10 + hwWlanApUpdateFTPIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the FTP server." + ::= { hwWlanApUpdateConfig 10 } + + --1.3.6.1.4.1.2011.6.139.14.3.1.11 + hwWlanApUpdateSFTPIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the SFTP server." + ::= { hwWlanApUpdateConfig 11 } + + --1.3.6.1.4.1.2011.6.139.14.3.2 + hwWlanApUpdateTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApUpdateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table maps AP types to upgrade file names. It allows you to upgrade APs in batches based on AP types." + ::= { hwWlanApUpdateObjects 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.2.1 + hwWlanApUpdateEntry OBJECT-TYPE + SYNTAX HwWlanApUpdateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApType." + INDEX { hwWlanApType } + ::= { hwWlanApUpdateTable 1 } + + + HwWlanApUpdateEntry ::= + SEQUENCE { + hwWlanApUpdateFilename + OCTET STRING, + hwWlanApUpdateAdminOper + INTEGER, + hwWlanApUpdatePercent + Integer32, + hwWlanApUpdateRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.14.3.2.1.1 + hwWlanApUpdateFilename OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the name of the upgrade file matching the type of the APs to be upgraded." + ::= { hwWlanApUpdateEntry 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.2.1.2 + hwWlanApUpdateAdminOper OBJECT-TYPE + SYNTAX INTEGER + { + start(1) , + reset(2) , + cancel(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates that the APs begin to upgrade start(1): The AP upgrade starts reset(2): After the upgrade is complete, the APs are restarted cancel(3): The upgrade is canceled." + ::= { hwWlanApUpdateEntry 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.2.1.3 + hwWlanApUpdatePercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade progress, namely, the percentage of upgraded APs to all APs of the same type." + ::= { hwWlanApUpdateEntry 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.2.1.4 + hwWlanApUpdateRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table." + ::= { hwWlanApUpdateEntry 4 } + + --1.3.6.1.4.1.2011.6.139.14.3.3 + hwWlanApUpdateProgressTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApUpdateProgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query the AP upgrade progress." + ::= { hwWlanApUpdateObjects 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.3.1 + hwWlanApUpdateProgressEntry OBJECT-TYPE + SYNTAX HwWlanApUpdateProgressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApMac." + INDEX { hwWlanApMac } + ::= { hwWlanApUpdateProgressTable 1 } + + + HwWlanApUpdateProgressEntry ::= + SEQUENCE { + hwWlanApUpdateProgressStatus + INTEGER, + hwWlanApUpdateProgress + Integer32, + hwWlanApFlashProgress + Integer32, + hwWlanApUpdateType + INTEGER, + hwWlanApUpdateFileType + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.14.3.3.1.1 + hwWlanApUpdateProgressStatus OBJECT-TYPE + SYNTAX INTEGER + { + noUpdateResult(1) , + updating(2) , + updateSuccessful(3) , + updateFailed(4) , + insufficientApMemory(5) , + failToDownloadFile(6) , + efsAndVersionMismatched(7) , + invalidFileName(8) , + efsAndApTypeMismatched(9) , + fileContentError(10) , + writingMemoryError(11) , + updateTimeout(12) , + apAcLinkDown(13) , + noNeedToUpdate(14) , + updateCancel(15) , + sendFirstFileFailed(16) , + receiveFileFailed(17), + retransferFileFailed(18), + updateOverMaxTime(19), + noResult(20), + waitForNextBatch(21), + noNeedUpdateNeedReset(22) , + neitherNeedUpdateNorReset(23) , + fileLoading(24), + identifierErr(25) , + notInConfig(26), + getFtpInfoFailed(27), + getSftpInfoFailed(28) , + blockFull(29), + readFileFailed(30) , + normalToStandby(31) , + modeChanged(32), + succeedNeedReset(33), + succeedAutoResetting(34), + sendUpgradeCfgErr(35), + sendUpgradeRequestErr(36), + waitFragmentationTimeout(37), + upgradeCfgResponseErr(38), + processUpgradeFilenameErr(39), + cannotGetApType(40), + batchUpgradeApTypeMismatched(41), + analyzeVersionErr(42), + ageTimeOut(43), + isUpdatingNow(44), + succeedNeedModeSwitch(45), + updateFsmStateCheckFailed(46), + fileChanged(47), + noUpdateProgressStatus(255) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade status." + ::= { hwWlanApUpdateProgressEntry 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.3.1.2 + hwWlanApUpdateProgress OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade progress." + ::= { hwWlanApUpdateProgressEntry 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.3.1.3 + hwWlanApFlashProgress OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the flash writing progress." + ::= { hwWlanApUpdateProgressEntry 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.3.1.4 + hwWlanApUpdateType OBJECT-TYPE + SYNTAX INTEGER + { + autoUpdate(1) , + onlineUpdate(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade type." + ::= { hwWlanApUpdateProgressEntry 4 } + + --1.3.6.1.4.1.2011.6.139.14.3.3.1.5 + hwWlanApUpdateFileType OBJECT-TYPE + SYNTAX INTEGER + { + fit(1) , + fat(2) , + fatCloud(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade file type." + ::= { hwWlanApUpdateProgressEntry 5 } + + --1.3.6.1.4.1.2011.6.139.14.3.4 + hwWlanSingleApUpdateTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanSingleApUpdateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to specify the mapping relationship between AP IDs and upgrade file names and to perform upgrade based on specified APs." + ::= { hwWlanApUpdateObjects 4 } + + --1.3.6.1.4.1.2011.6.139.14.3.4.1 + hwWlanSingleApUpdateEntry OBJECT-TYPE + SYNTAX HwWlanSingleApUpdateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApMac." + INDEX { hwWlanApMac } + ::= { hwWlanSingleApUpdateTable 1 } + + + HwWlanSingleApUpdateEntry ::= + SEQUENCE { + hwWlanSingleApUpdateAdminOper + INTEGER, + hwWlanSingleApUpdatePercent + Integer32, + hwWlanSingleApUpdateFilename + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.14.3.4.1.1 + hwWlanSingleApUpdateAdminOper OBJECT-TYPE + SYNTAX INTEGER + { + start(1) , + reset(2) , + cancel(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a single AP upgrade start(1): The AP upgrade starts reset(2): After the upgrade is complete, the AP is restarted cancel(3): The upgrade is canceled." + ::= { hwWlanSingleApUpdateEntry 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.4.1.2 + hwWlanSingleApUpdatePercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the single AP upgrade progress." + ::= { hwWlanSingleApUpdateEntry 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.4.1.3 + hwWlanSingleApUpdateFilename OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the name of the upgrade file matching the type of the AP to be upgraded." + ::= { hwWlanSingleApUpdateEntry 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.5 + hwWlanApTypeGroupUpdateTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApTypeGroupUpdateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to map AP types and AP groups to upgrade file names. It allows you to upgrade APs in batches based on AP types and AP groups." + ::= { hwWlanApUpdateObjects 5 } + + --1.3.6.1.4.1.2011.6.139.14.3.5.1 + hwWlanApTypeGroupUpdateEntry OBJECT-TYPE + SYNTAX HwWlanApTypeGroupUpdateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanApType and hwAPGroupName." + INDEX { hwWlanApType, hwAPGroupName } + ::= { hwWlanApTypeGroupUpdateTable 1 } + + + HwWlanApTypeGroupUpdateEntry ::= + SEQUENCE { + hwWlanApTypeGroupUpdateFilename + OCTET STRING, + hwWlanApTypeGroupUpdateAdminOper + INTEGER, + hwWlanApTypeGroupUpdatePercent + Integer32, + hwWlanApTypeGroupUpdateRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.14.3.5.1.1 + hwWlanApTypeGroupUpdateFilename OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of the upgrade file matching the type of the APs to be upgraded." + ::= { hwWlanApTypeGroupUpdateEntry 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.5.1.2 + hwWlanApTypeGroupUpdateAdminOper OBJECT-TYPE + SYNTAX INTEGER + { + start(1) , + reset(2) , + cancel(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates an upgrade operation start(1): The AP upgrade starts reset(2): After the upgrade is complete, the APs are restarted cancel(3): The upgrade is canceled." + ::= { hwWlanApTypeGroupUpdateEntry 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.5.1.3 + hwWlanApTypeGroupUpdatePercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade progress, namely, the percentage of upgraded APs to all APs of the same type." + ::= { hwWlanApTypeGroupUpdateEntry 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.5.1.4 + hwWlanApTypeGroupUpdateRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table." + ::= { hwWlanApTypeGroupUpdateEntry 4 } + + --1.3.6.1.4.1.2011.6.139.14.3.6 + hwWlanApUpdateScheduleTaskTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApUpdateScheduleTaskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create, query, and delete scheduled upgrade tasks." + ::= { hwWlanApUpdateObjects 6 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1 + hwWlanApUpdateScheduleTaskEntry OBJECT-TYPE + SYNTAX HwWlanApUpdateScheduleTaskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table is hwWlanApUpdateScheduleTaskId." + INDEX { hwWlanApUpdateScheduleTaskId } + ::= { hwWlanApUpdateScheduleTaskTable 1 } + + + HwWlanApUpdateScheduleTaskEntry ::= + SEQUENCE { + hwWlanApUpdateScheduleTaskId + Integer32, + hwWlanApUpdateScheduleTaskStartTime + OCTET STRING, + hwWlanApUpdateScheduleTaskStopTime + OCTET STRING, + hwWlanApUpdateScheduleTaskApType + Integer32, + hwWlanApUpdateScheduleTaskApGroup + OCTET STRING, + hwWlanApUpdateScheduleTaskState + INTEGER, + hwWlanApUpdateScheduleTaskRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.1 + hwWlanApUpdateScheduleTaskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the ID of the task." + ::= { hwWlanApUpdateScheduleTaskEntry 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.2 + hwWlanApUpdateScheduleTaskStartTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the starting time that is in the format of 'YYYY/MM/DD,HH:MM'." + ::= { hwWlanApUpdateScheduleTaskEntry 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.3 + hwWlanApUpdateScheduleTaskStopTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the stopping time that is in the format of 'YYYY/MM/DD,HH:MM'." + ::= { hwWlanApUpdateScheduleTaskEntry 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.4 + hwWlanApUpdateScheduleTaskApType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the type of the APs to be upgraded." + ::= { hwWlanApUpdateScheduleTaskEntry 4 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.5 + hwWlanApUpdateScheduleTaskApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the group of the APs to be upgraded." + ::= { hwWlanApUpdateScheduleTaskEntry 5 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.6 + hwWlanApUpdateScheduleTaskState OBJECT-TYPE + SYNTAX INTEGER + { + idle(1) , + running(2) , + waitting(3), + done(4), + overtime(5), + dead(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the state of the task." + ::= { hwWlanApUpdateScheduleTaskEntry 6 } + + --1.3.6.1.4.1.2011.6.139.14.3.6.1.7 + hwWlanApUpdateScheduleTaskRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanApUpdateScheduleTaskEntry 7 } + + --1.3.6.1.4.1.2011.6.139.14.3.7 + hwWlanApUpdateOperEntry OBJECT IDENTIFIER ::= { hwWlanApUpdateObjects 7 } + + --1.3.6.1.4.1.2011.6.139.14.3.7.1 + hwWlanApUpdateOperAdminOper OBJECT-TYPE + SYNTAX INTEGER + { + start(1) , + reset(2) , + cancel(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the APs begin to upgrade start(1): The AP upgrade starts reset(2): After the upgrade is complete, the APs are restarted cancel(3): The upgrade is canceled." + ::= { hwWlanApUpdateOperEntry 1 } + + --1.3.6.1.4.1.2011.6.139.14.3.7.2 + hwWlanApUpdateOperApType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the type of the APs to be upgraded." + ::= { hwWlanApUpdateOperEntry 2 } + + --1.3.6.1.4.1.2011.6.139.14.3.7.3 + hwWlanApUpdateOperApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the group of the APs to be upgraded." + ::= { hwWlanApUpdateOperEntry 3 } + + --1.3.6.1.4.1.2011.6.139.14.3.7.4 + hwWlanApUpdateOperPercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP upgrade progress, namely, the percentage of upgraded APs to all APs." + ::= { hwWlanApUpdateOperEntry 4 } + + --1.3.6.1.4.1.2011.6.139.14.4 + hwWlanApUpdateConformance OBJECT IDENTIFIER ::= { hwWlanApUpdate 4 } + + --1.3.6.1.4.1.2011.6.139.14.4.1 + hwWlanApUpdateCompliances OBJECT IDENTIFIER ::= { hwWlanApUpdateConformance 1 } + + --1.3.6.1.4.1.2011.6.139.14.4.1.1 + hwWlanApUpdateCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanApUpdateTrapObjectsGroup, hwWlanApUpdateObjectsGroup } + ::= { hwWlanApUpdateCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.14.4.2 + hwWlanApUpdateObjectGroups OBJECT IDENTIFIER ::= { hwWlanApUpdateConformance 2 } + + --1.3.6.1.4.1.2011.6.139.14.4.2.1 + hwWlanApUpdateTrapGroup NOTIFICATION-GROUP + NOTIFICATIONS { hwWlanApUpdateBeginTrap, hwWlanApUpdateResultTrap, hwWlanApUpdateUbootNotMatchTrap } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApUpdateObjectGroups 1 } + + --1.3.6.1.4.1.2011.6.139.14.4.2.2 + hwWlanApUpdateTrapObjectsGroup OBJECT-GROUP + OBJECTS { hwWlanApUpdateResult, hwWlanApUpdateTime, hwWlanApUpdateByFileName, hwWlanApUpdateNextOper, hwWlanApUpdateResultStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApUpdateObjectGroups 2 } + + --1.3.6.1.4.1.2011.6.139.14.4.2.3 + hwWlanApUpdateObjectsGroup OBJECT-GROUP + OBJECTS { hwWlanApUpdateFTPIPAddress, hwWlanApUpdateFTPUsername, hwWlanApUpdateFTPPassword, hwWlanApUpdateMode, hwWlanApUpdateSFTPIPAddress, + hwWlanApUpdateSFTPUsername, hwWlanApUpdateSFTPPassword, hwWlanApUpdateFTPMaxConnectNum, hwWlanApUpdateSFTPMaxConnectNum, hwWlanApUpdateFTPIPv6Address, + hwWlanApUpdateSFTPIPv6Address, hwWlanApUpdateFilename, hwWlanApUpdateAdminOper, hwWlanApUpdatePercent, hwWlanApUpdateRowStatus, + hwWlanApUpdateProgressStatus, hwWlanApUpdateProgress, hwWlanApFlashProgress, hwWlanApUpdateType, hwWlanApUpdateFileType, hwWlanSingleApUpdateAdminOper, hwWlanSingleApUpdatePercent, + hwWlanSingleApUpdateFilename, hwWlanApTypeGroupUpdateFilename, hwWlanApTypeGroupUpdateAdminOper, hwWlanApTypeGroupUpdatePercent, hwWlanApTypeGroupUpdateRowStatus, + hwWlanApUpdateScheduleTaskStartTime, hwWlanApUpdateScheduleTaskStopTime, hwWlanApUpdateScheduleTaskApType, + hwWlanApUpdateScheduleTaskApGroup, hwWlanApUpdateScheduleTaskState, hwWlanApUpdateScheduleTaskRowStatus, hwWlanApUpdateOperAdminOper, hwWlanApUpdateOperApType, + hwWlanApUpdateOperApGroup, hwWlanApUpdateOperPercent } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApUpdateObjectGroups 3 } + + + END +-- +-- HUAWEI-WLAN-AP-UPDATE-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-CAPWAP-MIB b/mibs/huawei/HUAWEI-WLAN-CAPWAP-MIB new file mode 100644 index 0000000000..62a58a9194 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-CAPWAP-MIB @@ -0,0 +1,414 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for capwap configuration. +-- Reference: +-- Version: V1.04 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-CAPWAP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.9 + hwWlanCapwap MODULE-IDENTITY + LAST-UPDATED "201610121406Z" -- Oct 12, 2016 at 14:06 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "The MIB module defines the ap capwap operation." + REVISION "201610121406Z" -- Oct 12, 2016 at 14:06 GMT + DESCRIPTION + "Add capwap message-integrity psk switch." + REVISION "201602151709Z" -- Feb 15, 2016 at 17:09 GMT + DESCRIPTION + "Add capwap message-integrity psk and sensitive-info psk." + REVISION "201511302009Z" -- Nov 30, 2015 at 20:09 GMT + DESCRIPTION + "Add capwap multi-source operation." + REVISION "201505111452Z" -- May 11, 2015 at 14:52 GMT + DESCRIPTION + "Add the description of mib nodes." + REVISION "201502021452Z" -- February 2, 2015 at 14:52 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 9 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.9.1 + hwWlanCapwapSourceInterface OBJECT IDENTIFIER ::= { hwWlanCapwap 1 } + + --1.3.6.1.4.1.2011.6.139.9.1.1 + hwWlanCapwapSourceInterfaceValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interface number when hwWlanCapwapSourceInterfaceMethod is set to vlanif(2) or loopback(3)." + ::= { hwWlanCapwapSourceInterface 1 } + + --1.3.6.1.4.1.2011.6.139.9.1.2 + hwWlanCapwapSourceInterfaceMethod OBJECT-TYPE + SYNTAX INTEGER + { + default(1), + vlanif(2), + loopback(3), + ipaddress(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "operation method of capwap source interface.It can be set + default(1): use default setting + vlanif(2): use vlanif interface + loopback(3): use loopback interface + ipaddress(4):user ip address + " + ::= { hwWlanCapwapSourceInterface 2 } + + --1.3.6.1.4.1.2011.6.139.9.1.3 + hwWlanCapwapSourceIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If hwWlanCapwapSourceInterfaceMethod is set to ipaddress(4), this object is used to identify the IP address of the source port." + ::= { hwWlanCapwapSourceInterface 3 } + + --1.3.6.1.4.1.2011.6.139.9.2 + hwWlanCapwapSysPara OBJECT IDENTIFIER ::= { hwWlanCapwap 2 } + + --1.3.6.1.4.1.2011.6.139.9.2.1 + hwWlanCapwapDtlsSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1) , + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the global DTLS function. The default value is 1: enable 2: disable." + ::= { hwWlanCapwapSysPara 1 } + + --1.3.6.1.4.1.2011.6.139.9.2.2 + hwWlanCapwapDtlsPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device" + ::= { hwWlanCapwapSysPara 2 } + + --1.3.6.1.4.1.2011.6.139.9.2.3 + hwWlanCapwapDtlsDefaultPskSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1) , + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 3 } + + --1.3.6.1.4.1.2011.6.139.9.2.4 + hwWlanCapwapIpv6Enable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 4 } + + --1.3.6.1.4.1.2011.6.139.9.2.5 + hwWlanCapwapInterControllerDtlsEncrpyt OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 5 } + + --1.3.6.1.4.1.2011.6.139.9.2.6 + hwWlanCapwapInterControllerDtlsPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 6 } + + --1.3.6.1.4.1.2011.6.139.9.2.7 + hwCapwapEchoInterval OBJECT-TYPE + SYNTAX Integer32 (3..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 7 } + + --1.3.6.1.4.1.2011.6.139.9.2.8 + hwCapwapEchoTimes OBJECT-TYPE + SYNTAX Integer32 (2..120) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 8 } + + --1.3.6.1.4.1.2011.6.139.9.2.9 + hwWlanCapwapControlPriorityLocal OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 9 } + + --1.3.6.1.4.1.2011.6.139.9.2.10 + hwWlanCapwapControlPriorityRemote OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 10 } + + --1.3.6.1.4.1.2011.6.139.9.2.11 + hwWlanCapwapSensitiveInfoPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device" + ::= { hwWlanCapwapSysPara 11 } + + --1.3.6.1.4.1.2011.6.139.9.2.12 + hwWlanCapwapInterControllerSensitiveInfoPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 12 } + + --1.3.6.1.4.1.2011.6.139.9.2.13 + hwWlanCapwapMessageIntegrityPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device" + ::= { hwWlanCapwapSysPara 13 } + + --1.3.6.1.4.1.2011.6.139.9.2.14 + hwWlanCapwapInterControllerMessageIntegrityPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 14 } + + --1.3.6.1.4.1.2011.6.139.9.2.15 + hwWlanCapwapMessageIntegrityPskMandatoryMatchSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1) , + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 15 } + + --1.3.6.1.4.1.2011.6.139.9.2.16 + hwWlanCapwapMsgCheckSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 16 } + + --1.3.6.1.4.1.2011.6.139.9.2.17 + hwWlanCapwapInterControllerMsgCheckSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The functions corresponding to the following objects are not supported on the device. Do not use these MIB objects to maintain the device." + ::= { hwWlanCapwapSysPara 17 } + + + -- 1.3.6.1.4.1.2011.6.139.9.3 + hwWlanCapwapSource OBJECT IDENTIFIER ::= { hwWlanCapwap 3 } + hwWlanCapwapSourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanCapwapSourceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCapwapSource 1 } + + + -- 1.3.6.1.4.1.2011.6.139.9.3.1.1 + hwWlanCapwapSourceEntry OBJECT-TYPE + SYNTAX HwWlanCapwapSourceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanCapwapSourceIndex } + ::= { hwWlanCapwapSourceTable 1 } + + + HwWlanCapwapSourceEntry ::= + SEQUENCE { + hwWlanCapwapSourceIndex + Integer32, + hwWlanCapwapSourceMethod + INTEGER, + hwWlanCapwapSourceValue + Integer32, + hwWlanCapwapSourceRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.9.3.1.1.1 + hwWlanCapwapSourceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "the index of capwap source interface." + ::= { hwWlanCapwapSourceEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.9.3.1.1.2 + hwWlanCapwapSourceMethod OBJECT-TYPE + SYNTAX INTEGER + { + vlanif(2), + loopback(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "operation method of capwap source interface.It can be set + vlanif(2): use vlanif interface + loopback(3): use loopback interface." + ::= { hwWlanCapwapSourceEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.9.3.1.1.3 + hwWlanCapwapSourceValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "the value of capwap source interface." + ::= { hwWlanCapwapSourceEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.9.3.1.1.4 + hwWlanCapwapSourceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Row status: mainly to support to add or delete the relationship of the interface and the capwap-source. + createAndGo(4): add a relationship. + destroy(6): delete the relationship." + + ::= { hwWlanCapwapSourceEntry 4 } + -- 1.3.6.1.4.1.2011.6.139.9.4 + hwWlanCapwapConformance OBJECT IDENTIFIER ::= { hwWlanCapwap 4 } + + -- 1.3.6.1.4.1.2011.6.139.9.4.1 + hwWlanCapwapCompliances OBJECT IDENTIFIER ::= { hwWlanCapwapConformance 1 } + + + -- 1.3.6.1.4.1.2011.6.139.9.4.1.1 + hwWlanCapwapCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanCapwapSourceInterfaceGroup, hwWlanCapwapSysParaGroup } + ::= { hwWlanCapwapCompliances 1 } + + -- 1.3.6.1.4.1.2011.6.139.9.4.2 + hwWlanCapwapObjectGroups OBJECT IDENTIFIER ::= { hwWlanCapwapConformance 2 } + + -- 1.3.6.1.4.1.2011.6.139.9.4.2.1 + hwWlanCapwapSourceInterfaceGroup OBJECT-GROUP + OBJECTS { hwWlanCapwapSourceInterfaceValue, hwWlanCapwapSourceInterfaceMethod, hwWlanCapwapSourceIPv4Address } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCapwapObjectGroups 1 } + + -- 1.3.6.1.4.1.2011.6.139.9.4.2.2 + hwWlanCapwapSysParaGroup OBJECT-GROUP + OBJECTS { hwWlanCapwapDtlsSwitch, hwWlanCapwapDtlsPsk, hwWlanCapwapDtlsDefaultPskSwitch, hwWlanCapwapIpv6Enable, hwWlanCapwapInterControllerDtlsEncrpyt, + hwWlanCapwapInterControllerDtlsPsk, hwCapwapEchoInterval, hwCapwapEchoTimes, hwWlanCapwapControlPriorityLocal, hwWlanCapwapControlPriorityRemote, + hwWlanCapwapSensitiveInfoPsk, hwWlanCapwapInterControllerSensitiveInfoPsk, hwWlanCapwapMessageIntegrityPsk, hwWlanCapwapInterControllerMessageIntegrityPsk, + hwWlanCapwapMessageIntegrityPskMandatoryMatchSwitch, hwWlanCapwapMsgCheckSwitch, hwWlanCapwapInterControllerMsgCheckSwitch } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCapwapObjectGroups 2 } + + -- 1.3.6.1.4.1.2011.6.139.9.4.2.3 + hwWlanCapwapSourceGroup OBJECT-GROUP + OBJECTS {hwWlanCapwapSourceMethod, hwWlanCapwapSourceValue, hwWlanCapwapSourceRowStatus} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCapwapObjectGroups 3 } + + END +-- +-- HUAWEI-WLAN-CAPWAP-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-CONFIGURATION-MIB b/mibs/huawei/HUAWEI-WLAN-CONFIGURATION-MIB new file mode 100644 index 0000000000..d19fc811c8 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-CONFIGURATION-MIB @@ -0,0 +1,16707 @@ +-- ============================================================================ +-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for configuration. +-- Reference: +-- Version: V1.77 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-CONFIGURATION-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + hwWlanApName + FROM HUAWEI-WLAN-AP-MIB + hwWlanRadioID + FROM HUAWEI-WLAN-AP-RADIO-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.11 + hwWlanConfig MODULE-IDENTITY + LAST-UPDATED "201701051528Z" -- Jan 5, at 15:28 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.77, Add nodes of hwAPPortLinkProfileEEESwitch and Broadcast suppression. + " + REVISION "201701051528Z" -- Jan 5, at 15:28 GMT + DESCRIPTION + "V1.76, Modify nodes sizes of hwFatApRadioMeshProfile and hwFatApLocationProfile. + " + REVISION "201612211727Z" -- DEC 21, 2016 at 17:27 GMT + DESCRIPTION + "V1.75, Add nodes of hwVapDefenceProfile, hwVapTimeRange and hwVapPermitVlanList. + " + REVISION "201612201058Z" -- DEC 20, 2016 at 10:58 GMT + + DESCRIPTION + "V1.74, Add nodes of AP configuration. + " + REVISION "201612171058Z" -- DEC 17, 2016 at 10:58 GMT + DESCRIPTION + "V1.73, Add nodes of hwRrmSmartRoamQuickKickoffSnrThr and hwRrmSmartRoamQuickKickoffRateThr. + " + REVISION "201612140920Z" -- DEC 14, 2016 at 09:20 GMT + + DESCRIPTION + "V1.72, Add nodes of hwAPGrpCardNetTCPPort and hwAPSpIoTNetTCPPort. + " + REVISION "201611260920Z" -- NOV 26, 2016 at 09:20 GMT + + DESCRIPTION + "V1.71, Add nodes of hw2gRadioProfileAutoOffTimeRange and hw5gRadioProfileAutoOffTimeRange. + " + REVISION "201611171050Z" -- NOV 17, 2016 at 10:50 GMT + DESCRIPTION + "V1.70, Add nodes of hwWlanMeshProfileBeacon2gRate, hwWlanMeshProfileBeacon5gRate, hwWdsProfileBeacon2gRate and hwWdsProfileBeacon5gRate. + " + REVISION "201611141050Z" -- NOV 14, 2016 at 10:50 GMT + DESCRIPTION + "V1.69, Modify the OID of node hwWlanBLEBroadcastingMajorDecimal, hwWlanBLEBroadcastingMinorHex, + hwWlanBLEBroadcastingMinorDecimal. + Modify the size list of node hwWlanBLEBroadcastingMajorDecimal and hwWlanBLEBroadcastingMinorDecimal. + " + REVISION "201611031106Z" -- NOV 03, 2016 at 11:06 GMT + DESCRIPTION + "V1.68, Add nodes of hwWlanBLEBroadcastingUUIDHex, hwWlanBLEBroadcastingMajorHex, hwWlanBLEBroadcastingMajorDecimal, hwWlanBLEBroadcastingMinorHex, + hwWlanBLEBroadcastingMinorDecimal, hwApProfUsbSwitch. + " + REVISION "201610141444Z" -- Oct 14, 2016 at 14:44 GMT + DESCRIPTION + "V1.67, Modify the size list of node hwApProfPoePowerReserved, hwApProfPoePowerThreshold. + " + REVISION "201609181539Z" -- Sep 18, 2016 at 15:39 GMT + DESCRIPTION + "V1.66, Modify the node hwSsidLegacyStaSwitch. + " + REVISION "201609181013Z" -- Sep 18, 2016 at 10:13 GMT + + DESCRIPTION + "V1.65, Modify the description of node hw5gRadioChannelSwitchAnnouncementSwitch, hw5gRadioVhtNssMapMaxMcs. + hwIDIndexedAPSpRadioChannel,hwAPGrpRadioChannel,hwAPSpRadioChannel. + " + REVISION "201609140913Z" -- Sep 14, 2016 at 09:13 GMT + DESCRIPTION + "V1.64, Modify the indexes of node hwAPWiredPortProfileTrafficRemarkEntry. + Add node of hwApProfLedOffTimeRange. + Modify the value list of hwAPWiredPortProfileTrafficRemarkIPType and hwAPWiredPortProfileTrafficFilterType + " + REVISION "201609061146Z" -- Sep 6, 2016 at 11:46 GMT + DESCRIPTION + "V1.63, Add nodes of hwWlanMobilityServerIPv4, hwWlanMobilityServerIPv6, hwWlanMobilityServerState, hwWlanMobilityServerSwitch, + Add Table of hwWlanMobilityMemberIPv4Table, hwWlanMobilityMemberIPv6Table, hwWlanMobilityClientIPv4Table, hwWlanMobilityClientIPv6Table + " + REVISION "201609012041Z" -- Sep 1, 2016 at 20:41 GMT + + DESCRIPTION + "V1.62, Add Table of hwAPTrafficProfileRemarkTable." + REVISION "201608261020Z" -- Aug 26, 2016 at 10:20 GMT + + DESCRIPTION + "V1.61, Add node of hwWlanWideBandEnable." + REVISION "201608221020Z" + DESCRIPTION + "V1.60, Add notes,hwApProfPrimaryLinkIPv4, hwApProfPrimaryLinkIPv6, hwApProfBackupLinkIPv4,hwApProfBackupLinkIPv6." + REVISION "201608181514Z" DESCRIPTION + "V1.60, Add notes,hwApProfPrimaryLinkIPv4, hwApProfPrimaryLinkIPv6, hwApProfBackupLinkIPv4,hwApProfBackupLinkIPv6." + REVISION "201608181514Z" -- Auguest 18, 2016 at 15:14 GMT + DESCRIPTION + "V1.59, Add node of hwWlanGlobalLocationSourceIPAddress and hwWlanGlobalLocationSourceIPv6Address." + REVISION "201608170919Z" -- Aug 17, 2016 at 09:19 GMT + DESCRIPTION + "V1.58, Add node of hwWlanReportStaAssocInfo ." + REVISION "201608161630Z" -- Aug 16, 2016 at 16:30 GMT + DESCRIPTION + "V1.57, Add nodes hwAPSpLongitude, hwAPSpLatitude, hwWlanIDIndexedAPSpLongitude and hwWlanIDIndexedAPSpLatitude." + REVISION "201608121620Z" -- Aug 12, 2016 at 16:20 GMT + DESCRIPTION + "V1.56, Add nodes of of hwAirScanSwitch." + REVISION "201608091112Z" -- Aug 9, 2016 at 11:12 GMT + DESCRIPTION + "V1.55, Change the oid of hwWlanClusterConfig." + REVISION "201608011100Z" -- Aug 1, 2016 at 11:00 GMT + DESCRIPTION + "V1.54, Add nodes of hwWlanClusterConfig." + REVISION "201607250920Z" -- July 25, 2016 at 09:20 GMT + DESCRIPTION + "V1.53, Add notes, hwApProfIGMPSnoopingGroupTable, hwAPWiredPortProfileTrafficRemarkTable." + REVISION "201607211448Z" -- July 21, 2016 at 14:48 GMT + DESCRIPTION + "V1.52, Add notes, hwSsidProfile80211rEnable, hwSsidProfile80211rMode and hwSsidProfile80211rReassociateTimeout." + REVISION "201607121550Z" -- July 12, 2016 at 15:50 GMT + DESCRIPTION + "V1.51, Add notes, hwAPTrafficProfileMcToUcDynamicAdatptive, hwAPTrafficProfileIGMPSnoopingMaxBandwidth and hwAPTrafficProfileIGMPSnoopingMaxUser." + REVISION "201606301550Z" -- June 30, 2016 at 15:50 GMT + DESCRIPTION + "V1.50, Add notes, hwVapAntiAttackARPFloodSwitch, hwVapAntiAttackARPFloodStaRateThreshold, hwVapAntiAttackARPFloodBlacklistSwitch and so on." + REVISION "201606212010Z" -- June 21, 2016 at 20:10 GMT + DESCRIPTION + "V1.48, Add notes, hwWlanApPwdPolicyConfig and hwWlanIDIndexedAPSpBleProfile." + REVISION "201606021139Z" -- June 2, 2016 at 11:39 GMT + DESCRIPTION + "V1.47, Add notes, hwWidsStaWhitelistProfile." + REVISION "201606021000Z" -- June 1, 2016 at 15:00 GMT + DESCRIPTION + "V1.46, Add notes, hwSsidMuMIMOSwitch and hwWdsMuMIMOSwitch." + REVISION "201606011500Z" -- June 1, 2016 at 15:00 GMT + DESCRIPTION + "V1.45, Add notes, hwVapLearnIpv6AddressStrict and hwAPTrafficProfileOptimizeBcMcMismatchAct, and modify the range of hwSsidMaxStaNum." + REVISION "201606011400Z" -- June 1, 2016 at 14:00 GMT + DESCRIPTION + "V1.44, Add notes for hwIDIndexedAPSpecificRadioIdTable." + REVISION "201605241711Z" -- May 24, 2016 at 17:11 GMT + DESCRIPTION + "V1.43, Add notes, hwWlanAPProvisionAPMode, hwWlanAPProvisionCommitAPId and hwWlanAPProvisionCommitAll." + REVISION "201605231613Z" -- May 23, 2016 at 16:13 GMT + DESCRIPTION + "V1.42, Add notes, hwWlanMeshProfileClientModeSwitch." + REVISION "201605181600Z" -- May 18, 2016 at 16:00 GMT + + DESCRIPTION + "V1.41, Modify the range of hwAPGrpCardNetUDPPort, hwAPSpIoTNetUDPPort, hwIoTProfileManagementServerPort, hwIoTSerialStopbits and hwIoTProfileShareKey." + REVISION "201605131607Z" -- May 13, 2016 at 16:07 GMT + + DESCRIPTION + "V1.40, Add notes, hwWlanStaWhitelistStaMacDescription, hwWlanStaBlacklistStaMacDescription." + REVISION "201605061138Z" -- May 6, 2016 at 11:38 GMT + + DESCRIPTION + "V1.39, Add notes, hwAPWiredPortProfileIGMPSnooping." + REVISION "201604151738Z" -- April 15, 2016 at 17:38 GMT + + DESCRIPTION + "The MIB module defines the configuration of AP." + REVISION "201603291531Z" -- March 29, 2016 at 15:31 GMT + DESCRIPTION + "V1.38, Add notes, hwAPGrpBleProfile, hwAPSpBleProfile." + + REVISION "201603251531Z" -- March 25, 2016 at 15:31 GMT + DESCRIPTION + "V1.36, Modify the range of hwAPTrafficProfileOptimizeSuppressionBc, hwAPTrafficProfileOptimizeSuppressionUc, hwAPTrafficProfileOptimizeSuppressionMc and hwCellularNetworkProfilePlmnIDList." + + REVISION "201603221531Z" -- March 22, 2016 at 15:31 GMT + DESCRIPTION + "V1.36, Modify the range of hwAPTrafficProfileOptimizeSuppressionBc, hwAPTrafficProfileOptimizeSuppressionUc, hwAPTrafficProfileOptimizeSuppressionMc and hwCellularNetworkProfilePlmnIDList." + + REVISION "201603211546Z" -- March 21, 2016 at 15:46 GMT + DESCRIPTION + "V1.35, Add nodes for hwVapAntiAttackBroadcastFloodSwitch, hwVapAntiAttackBroadcastFloodStaRateThreshold and hwVapAntiAttackBroadcastFloodBlacklistSwitch." + + REVISION "201603152015Z" -- March 15, 2016 at 20:15 GMT + DESCRIPTION + "V1.34, Modify the description of hwApProfMeshRole." + + REVISION "201603101136Z" -- March 10, 2016 at 11:36 GMT + DESCRIPTION + "V1.33, Modify the range of mib nodes." + + REVISION "201602271436Z" -- Feb 27, 2016 at 14:36 GMT + DESCRIPTION + "V1.32, Modify the description of hwAPGrpRadioFrequency and hwAPSpRadioFrequency." + REVISION "201602051436Z" -- Feb 5, 2016 at 14:36 GMT + DESCRIPTION + "V1.31, Add nodes for hwBleProfileTable, hwAPGroupCardTable, hwAPSpecificCardTable, hwIoTSerialProfileTable, hwIoTProfileTable and hwIoTProfileManagementServerTable ." + REVISION "201601121347Z" -- JAN 12, 2016 at 13:47 GMT + DESCRIPTION + "V1.30, Add nodes for hwWlanIDIndexedAPSpecificTable, hwIDIndexedAPSpecificWiredPortTable, hwIDIndexedAPSpecificRadioIdTable and hwIDIndexedAPSpecificVapTable ." + REVISION "201512231525Z" -- DEC 23, 2015 at 15:25 GMT + DESCRIPTION + "V1.29, Add nodes for hwAPWiredPortProfileTable and hwAPPortLinkProfileTable." + REVISION "201512172024Z" -- DEC 17, 2015 at 20:24 GMT + DESCRIPTION + "V1.28, Modify nodes for hwAPWiredPortProfilePortMode , hwAPGrpWPInterfaceNum, hwAPSpWPInterfaceNum, hwWlanApDataCollectionInterval." + REVISION "201511211025Z" -- NOV 21, 2015 at 10:25 GMT + DESCRIPTION + "V1.27, Add nodes for hwApSystemProfileTable and hwAPPortLinkProfileTable." + REVISION "201510292030Z" -- Oct 29, 2015 at 20:30 GMT + DESCRIPTION + "V1.26, Modify the range of mib nodes." + REVISION "201510101030Z" -- Oct 10, 2015 at 10:30 GMT + DESCRIPTION + "V1.25, Modify the range of mib nodes." + REVISION "201509251030Z" -- Sept 25, 2015 at 10:30 GMT + DESCRIPTION + "V1.24, Modify the range of hwSsidClientEdcaVoiceTXOPLimit." + REVISION "201509151030Z" -- Sept 15, 2015 at 10:30 GMT + DESCRIPTION + "V1.23, Add invalid parameter in the hwAPSpecificRadioTable." + REVISION "201508261530Z" -- August 26, 2015 at 15:30 GMT + DESCRIPTION + "V1.22, Modify the nodes of HUAWEI-WLAN-CONFIGURATION-MIB file." + REVISION "201508051530Z" -- August 5, 2015 at 15:30 GMT + DESCRIPTION + "V1.21, Modify the nodes of HUAWEI-WLAN-CONFIGURATION-MIB file." + REVISION "201508050950Z" -- August 5, 2015 at 9:50 GMT + DESCRIPTION + "V1.20, Modify the nodes of HUAWEI-WLAN-CONFIGURATION-MIB file." + REVISION "201507230950Z" -- July 23, 2015 at 9:50 GMT + DESCRIPTION + "V1.19, Modify the range of hwSecurityWapiAcPrvKeyFileName." + REVISION "201507221048Z" -- July 22, 2015 at 10:48 GMT + DESCRIPTION + "V1.18, Add nodes for hwVapOptinon82RidUserDefined, hwVapOptinon82RidMacFormat,hwVapOptinon82InsertCidFormat , hwVapOptinon82CidUserDefined, + hwVapOptinon82CidMacFormat, hwSsidBeacon2gRate, hwSsidBeacon5gRate, hwSsidDenyBroadcastProbe, hwSsidProbeResponseRetry, + hwSsidUapsd, hwSsidActiveDullClient, hwWlanMeshProfilePriorityMapTrustMode, hwWlanMeshProfilePriorityDscpMap80211e, + hwWdsProfilePriorityMapTrustMode, hwWdsProfilePriorityDscpMap80211e" + REVISION "201507101400Z" -- July 10, 2015 at 14:00 GMT + DESCRIPTION + "V1.17, Add nodes for hw2gRadioProfileRadioType,hw5gRadioProfileRadioType,hwWlanCountryCodeTable" + REVISION "201506231400Z" -- June 23, 2015 at 14:00 GMT + DESCRIPTION + "V1.16, Add nodes for hwWlanMeshProfileTable,hwApSystemProfileTable,hwAPTrafficProfileTable,hwSoftgreProfileTable." + REVISION "201506211040Z" -- June 21, 2015 at 10:40 GMT + DESCRIPTION + "V1.15, Add nodes for report sta info." + REVISION "201506160910Z" -- June 16, 2015 at 9:10 GMT + DESCRIPTION + "V1.14, Add nodes for eirp." + REVISION "201506021110Z" -- June 2, 2015 at 11:10 GMT + DESCRIPTION + "V1.13, Add nodes for antenna output mode." + REVISION "201505131430Z" -- May 13, 2015 at 14:30 GMT + DESCRIPTION + "V1.12, Modify the range of hwAPTrafficProfileFilterACLID." + REVISION "201505121430Z" -- May 12, 2015 at 14:30 GMT + DESCRIPTION + "V1.11, Add the description of mib nodes." + REVISION "201505111430Z" -- May 11, 2015 at 14:30 GMT + DESCRIPTION + "V1.10, Change value of hwLocationPrivateMuEnable." + REVISION "201505041430Z" -- May 4, 2015 at 14:30 GMT + DESCRIPTION + "V1.09, Add nodes for hwWlanMeshProfileTable." + REVISION "201504271550Z" -- April 27, 2015 at 15:50 GMT + DESCRIPTION + "V1.08, Add nodes for utmost power switch." + REVISION "201504231150Z" -- April 23, 2015 at 11:50 GMT + DESCRIPTION + "V1.07, Add some nodes." + REVISION "201504200930Z" -- April 20, 2015 at 9:30 GMT + DESCRIPTION + "V1.06, Modify the range of some nodes." + REVISION "201504131015Z" -- April 13, 2015 at 10:15 GMT + DESCRIPTION + "V1.05, Modify the sequence of some table's index and the range of some nodes." + REVISION "201504101455Z" -- April 10, 2015 at 14:55 GMT + DESCRIPTION + "V1.04, 1.Modify the range of hwWidsConfidentOuiWhitelistOui, hwAPGrpWidsProfile, hwAPGrpLocationProfile, hwAPGrpSpectrumProfile, + hwAPSp2gRadioProfile, hwAPSpDomainProfile, hwAPSp5gRadioProfile, hwAPSpWidsProfile, + hwAPSpLocationProfile, hwAPSpSpectrumProfile, hwWidsContainProfile, hwWidsSpoofProfile, hwWidsConfidentProfile. + 2.Add hwWlanLoadBalanceStaticGroupTable. + 3.Delete the node hwRrmLoadBalanceGrpName and add node hwRrmSmartRoamType." + REVISION "201503301835Z" -- March 30, 2015 at 18:35 GMT + DESCRIPTION + "V1.02, Modify the name of the node of hwAPProvision." + REVISION "201503090935Z" -- March 9, 2015 at 09:35 GMT + DESCRIPTION + "V1.01, Modify the range of hwApProfHighTempThreshold and hwAPWiredPortProfilePortEthTrunkID." + REVISION "201502021055Z" -- February 2, 2015 at 10:55 GMT + DESCRIPTION + "V1.00, Inital version." + ::= { hwWlan 11 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.11.1 + hwWlanConfigObjects OBJECT IDENTIFIER ::= { hwWlanConfig 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.1 + hwWlanGlobalConfig OBJECT IDENTIFIER ::= { hwWlanConfigObjects 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.1 + hwWlanGlobalApUsername OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates user names for Telnet-based login to APs." + ::= { hwWlanGlobalConfig 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.2 + hwWlanGlobalApPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates passwords for Telnet-based login to APs." + ::= { hwWlanGlobalConfig 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.3 + hwWlanUsernamePasswordApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates query and setting of MAC addresses of clients logging in to APs." + ::= { hwWlanGlobalConfig 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.4 + hwWlanGlobalApLldpSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the global LLDP function. The default value is 2." + ::= { hwWlanGlobalConfig 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.5 + hwWlanGlobalIpv6Enable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the global IPv6 function. The default value is 1." + ::= { hwWlanGlobalConfig 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.6 + hwWlanStationIpv6Enable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IPv6 function of users. The default value is 1 . 1: disable 2: enable." + ::= { hwWlanGlobalConfig 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.7 + hwWlanApDataCollectionInterval OBJECT-TYPE + SYNTAX Integer32 (5..60 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the period of caching AP performance. The default value is 15. It is expressed in minutes." + ::= { hwWlanGlobalConfig 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.8 + hwTestRtCollectOnoff OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the real-time collection switch." + ::= { hwWlanGlobalConfig 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.9 + hwTestApNormalCollectCycle OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the regular period of an AC collecting AP performance data." + ::= { hwWlanGlobalConfig 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.10 + hwTestApRtCollectCycle OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the real-time period of an AC collecting AP performance data." + ::= { hwWlanGlobalConfig 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.11 + hwWlanConfigCommitAll OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalConfig 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12 + hwWlanProtect OBJECT IDENTIFIER ::= { hwWlanGlobalConfig 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.1 + hwWlanProtectIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the standby AC." + ::= { hwWlanProtect 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.2 + hwWlanProtectIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates setting of the IPv6 address of the standby AC." + ::= { hwWlanProtect 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.3 + hwWlanProtectPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC priority that determines whether the AC can be selected as the active AC. The default value is 0." + ::= { hwWlanProtect 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.4 + hwWlanProtectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1) , + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the hot backup function. The default value is 2." + ::= { hwWlanProtect 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.5 + hwWlanProtectRestoreSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1) , + disable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the switchback function. The default value is 1." + ::= { hwWlanProtect 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.6 + hwUndoWlanProtectIpAddress OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to restore the default setting of the IP address of the standby AC." + ::= { hwWlanProtect 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.12.7 + hwUndoWlanProtectPriority OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to restore the default setting of the priority of the standby AC." + ::= { hwWlanProtect 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.13 + hwWlanBackupHsbConfig OBJECT IDENTIFIER ::= { hwWlanGlobalConfig 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.13.1 + hwWlanCfgHsbServiceType OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + hsbGroup(2), + hsbService(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the HSB type. The default value is 1." + ::= { hwWlanBackupHsbConfig 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.13.2 + hwWlanCfgHsbGroupId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the HSB group ID. If the HSB type is set to Disable, the ID is 0xFFFFFFFF." + ::= { hwWlanBackupHsbConfig 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.13.3 + hwWlanCfgHsbTunnelId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ID of the HSB channel. If the HSB type is set to Disable, the ID is 0xFFFFFFFF." + ::= { hwWlanBackupHsbConfig 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.14 + hwWlanCommitTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanCommitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalConfig 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.14.1 + hwWlanCommitEntry OBJECT-TYPE + SYNTAX HwWlanCommitEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanCommitApMac } + ::= { hwWlanCommitTable 1 } + + + HwWlanCommitEntry ::= + SEQUENCE { + hwWlanCommitApMac + MacAddress, + hwWlanConfigCommit + Integer32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.1.14.1.1 + hwWlanCommitApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCommitEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.1.14.1.2 + hwWlanConfigCommit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCommitEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.15 + hwWlanReportStaInfo OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of recording user information in the log. 1:disable 2:enable." + ::= { hwWlanGlobalConfig 15 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.16 + hwWlanBLELowPowerWarningThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalConfig 16 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.17 + hwWlanBLEMonitorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanBLEMonitorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalConfig 17 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.17.1 + hwWlanBLEMonitorListEntry OBJECT-TYPE + SYNTAX HwWlanBLEMonitorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanBLEMonitoringListMac } + ::= { hwWlanBLEMonitorListTable 1 } + + HwWlanBLEMonitorListEntry ::= + SEQUENCE { + hwWlanBLEMonitoringListMac + MacAddress, + hwWlanBLEMonitoringListRowStatue + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.17.1.1 + hwWlanBLEMonitoringListMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLEMonitorListEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.17.1.2 + hwWlanBLEMonitoringListRowStatue OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBLEMonitorListEntry 2 } + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18 + hwWlanApPwdPolicyConfig OBJECT IDENTIFIER ::= { hwWlanGlobalConfig 18 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.1 + hwApPwdPolicyEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Ap password policy,the default is disable" + ::= { hwWlanApPwdPolicyConfig 1 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.2 + hwApPwdPolicyExpire OBJECT-TYPE + SYNTAX Unsigned32 (0..999) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the days of password expire,the default is 90" + ::= { hwWlanApPwdPolicyConfig 2 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.3 + hwApPwdPolicyHistoryRecordNum OBJECT-TYPE + SYNTAX Unsigned32 (0..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of password history record,the default is 5" + ::= { hwWlanApPwdPolicyConfig 3 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.4 + hwApPwdPolicyAlertBefore OBJECT-TYPE + SYNTAX Unsigned32 (0..999) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The days of password before-expire,the default is 30" + ::= { hwWlanApPwdPolicyConfig 4 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.5 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.5 + hwApPwdPolicyAlertOriginal OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set password original-alert,the default is enable" + ::= { hwWlanApPwdPolicyConfig 5 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.6 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.6 + hwApPwdSetTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Get the password set time" + ::= { hwWlanApPwdPolicyConfig 6 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.7 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.7 + hwApPwdIsExpired OBJECT-TYPE + SYNTAX INTEGER + { + notexpired(1), + expired(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Query password is expired or not" + ::= { hwWlanApPwdPolicyConfig 7 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.1.18.8 + -- 1.3.6.1.4.1.2011.6.139.11.1.1.18.8 + hwApPwdIsOrginal OBJECT-TYPE + SYNTAX INTEGER + { + notoriginal(1), + original(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Query password is original or not" + ::= { hwWlanApPwdPolicyConfig 8 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.1.19 + hwWlanReportStaAssocInfo OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of recording user online and offline information in the log. 1:disable 2:enable." + ::= { hwWlanGlobalConfig 19 } + -- 1.3.6.1.4.1.2011.6.139.11.1.1.20 + hwWlanGlobalLocationSourceIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the global source IPv4 address for reporting location data in AeroScout or Ekahau location mode. You choose an IPv4 or IPv6 address." + ::= { hwWlanGlobalConfig 20 } + -- 1.3.6.1.4.1.2011.6.139.11.1.1.21 + hwWlanGlobalLocationSourceIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the global source IPv6 address for reporting location data in AeroScout or Ekahau location mode. You choose an IPv4 or IPv6 address." + ::= { hwWlanGlobalConfig 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.2 + hwApAuthObjects OBJECT IDENTIFIER ::= { hwWlanConfigObjects 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.1 + hwWlanApAuthMode OBJECT-TYPE + SYNTAX INTEGER + { + macAuth(1) , + snAuth(2) , + noAuth(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP authentication mode. The default value is 1." + ::= { hwApAuthObjects 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.2 + hwWlanApMacWhitelistTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApMacWhitelistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to add and delete AP MAC addresses in the white lists." + ::= { hwApAuthObjects 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.2.1 + hwWlanApMacWhitelistEntry OBJECT-TYPE + SYNTAX HwWlanApMacWhitelistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApMacWhitelistMacAddr." + INDEX { hwWlanApMacWhitelistMacAddr } + ::= { hwWlanApMacWhitelistTable 1 } + + + HwWlanApMacWhitelistEntry ::= + SEQUENCE { + hwWlanApMacWhitelistMacAddr + MacAddress, + hwWlanApMacWhitelistRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.2.2.1.1 + hwWlanApMacWhitelistMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwWlanApMacWhitelistEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.2.1.2 + hwWlanApMacWhitelistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table." + ::= { hwWlanApMacWhitelistEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.3 + hwWlanApSnWhitelistTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApSnWhitelistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to add and delete AP sequence numbers in the white lists of AP sequence numbers." + ::= { hwApAuthObjects 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.3.1 + hwWlanApSnWhitelistEntry OBJECT-TYPE + SYNTAX HwWlanApSnWhitelistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApSnWhitelistSn." + INDEX { hwWlanApSnWhitelistSn } + ::= { hwWlanApSnWhitelistTable 1 } + + + HwWlanApSnWhitelistEntry ::= + SEQUENCE { + hwWlanApSnWhitelistSn + OCTET STRING, + hwWlanApSnWhitelistRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.2.3.1.1 + hwWlanApSnWhitelistSn OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanApSnWhitelistEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.3.1.2 + hwWlanApSnWhitelistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicate the row status of this table." + ::= { hwWlanApSnWhitelistEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.4 + hwWlanApMacBlacklistTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApMacBlacklistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the AP MAC blacklist.This table is used to add an AP's MAC address to the blacklist or delete an AP's MAC address from the blacklist." + ::= { hwApAuthObjects 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.4.1 + hwWlanApMacBlacklistEntry OBJECT-TYPE + SYNTAX HwWlanApMacBlacklistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApMacBlacklistMacAddr." + INDEX { hwWlanApMacBlacklistMacAddr } + ::= { hwWlanApMacBlacklistTable 1 } + + + HwWlanApMacBlacklistEntry ::= + SEQUENCE { + hwWlanApMacBlacklistMacAddr + MacAddress, + hwWlanApMacBlacklistRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.2.4.1.1 + hwWlanApMacBlacklistMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwWlanApMacBlacklistEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.2.4.1.2 + hwWlanApMacBlacklistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table." + ::= { hwWlanApMacBlacklistEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.3 + hwAPGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete AP groups and bind or unbind the AP system profile, 2G radio profile, and domain profile." + ::= { hwWlanConfigObjects 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.3.1 + hwAPGroupEntry OBJECT-TYPE + SYNTAX HwAPGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwAPGroupName." + INDEX { hwAPGroupName } + ::= { hwAPGroupTable 1 } + + + HwAPGroupEntry ::= + SEQUENCE { + hwAPGroupName + OCTET STRING, + hwAPGrpAPSystemProfile + OCTET STRING, + hwAPGrpDomainProfile + OCTET STRING, + hwAPGrpRowStatus + RowStatus, + hwAPGrpWidsProfile + OCTET STRING, + hwAPGrpBleProfile + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.3.1.1 + hwAPGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the AP group name. It is the index of the table." + ::= { hwAPGroupEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.3.1.2 + hwAPGrpAPSystemProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the system profile to which AP groups are bound. The default value is default." + ::= { hwAPGroupEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.3.1.4 + hwAPGrpDomainProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the domain profile to which AP groups are bound. The default value is default." + ::= { hwAPGroupEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.3.1.5 + hwAPGrpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used ? ROWSTATUS_UNDEFINED: undefined ROWSTATUS_ACTIVE: active ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy" + ::= { hwAPGroupEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.3.1.6 + hwAPGrpWidsProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound WIDS profile." + ::= { hwAPGroupEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.3.1.7 + hwAPGrpBleProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound BLE profile." + ::= { hwAPGroupEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.4 + hwAPGroupWiredPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPGroupWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is the AP wired port profile table.This table is used to bind a wired port profile to an AP group or unbind a wired port profile from an AP group." + ::= { hwWlanConfigObjects 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.4.1 + hwAPGroupWiredPortEntry OBJECT-TYPE + SYNTAX HwAPGroupWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPGroupName, hwAPGrpWPInterfaceType, and hwAPGrpWPInterfaceNum." + INDEX { hwAPGroupName, hwAPGrpWPInterfaceType, hwAPGrpWPInterfaceNum } + ::= { hwAPGroupWiredPortTable 1 } + + + HwAPGroupWiredPortEntry ::= + SEQUENCE { + hwAPGrpWPInterfaceType + INTEGER, + hwAPGrpWPInterfaceNum + Unsigned32, + hwAPGrpWPProfile + OCTET STRING, + hwAPGrpWPRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.4.1.1 + hwAPGrpWPInterfaceType OBJECT-TYPE + SYNTAX INTEGER + { + fe(1) , + ge(2) , + trunk(3), + multige(4) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the interface type. It is the index of the table." + ::= { hwAPGroupWiredPortEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.4.1.2 + hwAPGrpWPInterfaceNum OBJECT-TYPE + SYNTAX Unsigned32 (0..27) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the interface index." + ::= { hwAPGroupWiredPortEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.4.1.3 + hwAPGrpWPProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound wired port profile." + ::= { hwAPGroupWiredPortEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.4.1.4 + hwAPGrpWPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEAN." + ::= { hwAPGroupWiredPortEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.5 + hwAPGroupRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPGroupRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to bind a 5G radio profile, Mesh profile, WDS profile, WIDS profile, location profile, or spectrum profile to an AP group or unbind a 5G radio profile, Mesh profile, WDS profile, WIDS profile, location profile, or spectrum profile from an AP group.." + ::= { hwWlanConfigObjects 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.5.1 + hwAPGroupRadioEntry OBJECT-TYPE + SYNTAX HwAPGroupRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPGroupName and hwAPGrpRadioId." + INDEX { hwAPGrpRadioId, hwAPGroupName } + ::= { hwAPGroupRadioTable 1 } + + + HwAPGroupRadioEntry ::= + SEQUENCE { + hwAPGrpRadioId + Unsigned32, + hwAPGrpRadio5gProfile + OCTET STRING, + hwAPGrpMeshProfile + OCTET STRING, + hwAPGrpWdsProfile + OCTET STRING, + hwAPGrpLocationProfile + OCTET STRING, + hwAPGrpRadioRowStatus + RowStatus, + hwAPGrpRadio2gProfile + OCTET STRING, + hwAPGrpMeshWhitelistProfile + OCTET STRING, + hwAPGrpWdsWhitelistProfile + OCTET STRING, + hwAPGrpRadioSwitch + INTEGER, + hwAPGrpRadioChannel + Unsigned32, + hwAPGrpRadioBandwidth + INTEGER, + hwAPGrpRadioEirp + Unsigned32, + hwAPGrpRadioAntennaGain + Unsigned32, + hwAPGrpRadioCoverageDistance + Unsigned32, + hwAPGrpRadioWorkMode + INTEGER, + hwAPGrpRadioFrequency + INTEGER, + hwAPGrpSpectrumAnalysisSwitch + INTEGER, + hwAPGrpWidsDeviceDetectSwitch + INTEGER, + hwAPGrpWidsAttackDetectEnBmp + Unsigned32, + hwAPGrpWidsRogueContainSwitch + INTEGER, + hwAPGrpRadioSecondChannel + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.5.1.1 + hwAPGrpRadioId OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID. It is the index of the table." + ::= { hwAPGroupRadioEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.5.1.2 + hwAPGrpRadio5gProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound 5G radio profile." + ::= { hwAPGroupRadioEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.5.1.3 + hwAPGrpMeshProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound Mesh profile." + ::= { hwAPGroupRadioEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.5.1.4 + hwAPGrpWdsProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound WDS profile." + ::= { hwAPGroupRadioEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.5.1.6 + hwAPGrpLocationProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound location profile." + ::= { hwAPGroupRadioEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.8 + hwAPGrpRadioRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used ? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwAPGroupRadioEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.9 + hwAPGrpRadio2gProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the 2G radio profile to which AP groups are bound. The default value is default." + ::= { hwAPGroupRadioEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.10 + hwAPGrpMeshWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwAPGroupRadioEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.11 + hwAPGrpWdsWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwAPGroupRadioEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.12 + hwAPGrpRadioSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a 2G radio profile. It is the index of the table." + ::= { hwAPGroupRadioEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.13 + hwAPGrpRadioChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 196 (with a separation interval of 4)." + ::= { hwAPGroupRadioEntry 13 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.14 + hwAPGrpRadioBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40Plus(2), + ht40Minus(3), + ht80(4), + ht160(5), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate a bandwidth. The default value is 1." + ::= { hwAPGroupRadioEntry 14 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.15 + hwAPGrpRadioEirp OBJECT-TYPE + SYNTAX Unsigned32 (1..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a power value. The default value is 127. The configuration is saved but the actual power is determined by the maximum power supported by the AP." + ::= { hwAPGroupRadioEntry 15 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.16 + hwAPGrpRadioAntennaGain OBJECT-TYPE + SYNTAX Unsigned32 (0..30 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates antenna gains. The default value 0xFF indicates that the default gain of an AP is used. It is expressed in dB. Default gains vary with different types of APs." + ::= { hwAPGroupRadioEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.17 + hwAPGrpRadioCoverageDistance OBJECT-TYPE + SYNTAX Unsigned32 (1..400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio coverage distance. The default value is 3. The unit is 0.1 km." + ::= { hwAPGroupRadioEntry 17 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.18 + hwAPGrpRadioWorkMode OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + monitor(2), + dualband(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio working mode. The default value is 1." + ::= { hwAPGroupRadioEntry 18 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.19 + hwAPGrpRadioFrequency OBJECT-TYPE + SYNTAX INTEGER + { + frequency2G(1), + frequency5G(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the setting of the frequency band for radio 0. The default value is 1. 1: frequency2G, 2: frequency5G." + ::= { hwAPGroupRadioEntry 19 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.20 + hwAPGrpSpectrumAnalysisSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the spectrum analysis function. The default value is 1." + ::= { hwAPGroupRadioEntry 20 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.21 + hwAPGrpWidsDeviceDetectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwAPGroupRadioEntry 21 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.22 + hwAPGrpWidsAttackDetectEnBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bit map of the brute force attack switch. bit0:weak-iv, bit1:spoof, bit2:flood, bit3:wpa-psk, bit4:wpa2-psk, bit5:wapi-psk, bit6:wep-psk." + ::= { hwAPGroupRadioEntry 22 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.23 + hwAPGrpWidsRogueContainSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwAPGroupRadioEntry 23 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.5.1.24 + hwAPGrpRadioSecondChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 165 (with a separation interval of 4)." + ::= { hwAPGroupRadioEntry 24 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.6 + hwAPGroupVapTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPGroupVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create VAPs in an AP group." + ::= { hwWlanConfigObjects 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.6.1 + hwAPGroupVapEntry OBJECT-TYPE + SYNTAX HwAPGroupVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPGroupName, hwAPGrpRadioId, and hwAPGrpWlanId." + INDEX { hwAPGroupName, hwAPGrpRadioId, hwAPGrpWlanId } + ::= { hwAPGroupVapTable 1 } + + + HwAPGroupVapEntry ::= + SEQUENCE { + hwAPGrpWlanId + Unsigned32, + hwAPGrpVapProfile + OCTET STRING, + hwAPGrpVapRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.6.1.1 + hwAPGrpWlanId OBJECT-TYPE + SYNTAX Unsigned32 (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the WLAN ID. It is the index of the table." + ::= { hwAPGroupVapEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.6.1.2 + hwAPGrpVapProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound VAP profile." + ::= { hwAPGroupVapEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.6.1.3 + hwAPGrpVapRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwAPGroupVapEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.7 + hwAPSpecificTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPSpecificEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete an AP specific profile and bind an AP system profile, 2G radio profile, or domain profile to it or unbind an AP system profile, 2G radio profile, or domain profile from it." + ::= { hwWlanConfigObjects 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.7.1 + hwAPSpecificEntry OBJECT-TYPE + SYNTAX HwAPSpecificEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwAPSpApMac." + INDEX { hwAPSpApMac } + ::= { hwAPSpecificTable 1 } + + + HwAPSpecificEntry ::= + SEQUENCE { + hwAPSpAPSystemProfile + OCTET STRING, + hwAPSpDomainProfile + OCTET STRING, + hwAPSpRowStatus + RowStatus, + hwAPSpApMac + MacAddress, + hwAPSpApId + Unsigned32, + hwAPSpApTypeInfo + OCTET STRING, + hwAPSpWidsProfile + OCTET STRING, + hwAPSpBleProfile + OCTET STRING, + hwAPSpLongitude + OCTET STRING, + hwAPSpLatitude + OCTET STRING, + hwAPSpApAddressMode + INTEGER, + hwAPSpApIPv4Address + IpAddress, + hwAPSpApIPv4Mask + IpAddress, + hwAPSpApIPv4Gateway + IpAddress, + hwAPSpApIPv6Address + OCTET STRING, + hwAPSpApIPv6PrefixLen + Integer32, + hwAPSpApIPv6Gateway + OCTET STRING, + hwAPSpIPv4ACList + OCTET STRING, + hwAPSpIPv6ACList + OCTET STRING, + hwAPSpGroupName + OCTET STRING, + hwAPSpApName + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.2 + hwAPSpAPSystemProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the system profile bound to the AP specific profile." + ::= { hwAPSpecificEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.4 + hwAPSpDomainProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the domain profile bound to the AP specific profile." + ::= { hwAPSpecificEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.5 + hwAPSpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwAPSpecificEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.6 + hwAPSpApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwAPSpecificEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.7 + hwAPSpApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwAPSpecificEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.8 + hwAPSpApTypeInfo OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the domain profile bound to the AP specific profile." + ::= { hwAPSpecificEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.9 + hwAPSpWidsProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound WIDS profile." + ::= { hwAPSpecificEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.10 + hwAPSpBleProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound BLE profile." + ::= { hwAPSpecificEntry 10 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.11 + hwAPSpLongitude OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the longitude." + ::= { hwAPSpecificEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.12 + hwAPSpLatitude OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the latitude." + ::= { hwAPSpecificEntry 12 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.13 + hwAPSpApAddressMode OBJECT-TYPE + SYNTAX INTEGER + { + invalid(-1), + static(1), + dhcp(2), + slaac(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address allocation mode." + ::= { hwAPSpecificEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.14 + hwAPSpApIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 address. + hwAPSpApIPv4Address takes effect if hwAPSpApAddressMode is set to static." + ::= { hwAPSpecificEntry 14 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.15 + hwAPSpApIPv4Mask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 mask. + hwAPSpApIPv4Mask takes effect if hwAPSpApAddressMode is set to static." + ::= { hwAPSpecificEntry 15 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.16 + hwAPSpApIPv4Gateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 gateway. + hwAPSpApIPv4Gateway takes effect if hwAPSpApAddressMode is set to static." + ::= { hwAPSpecificEntry 16 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.17 + hwAPSpApIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv6 address. + hwAPSpApIPv6Address takes effect if hwAPSpApAddressMode is set to static." + ::= { hwAPSpecificEntry 17 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.18 + hwAPSpApIPv6PrefixLen OBJECT-TYPE + SYNTAX Integer32 (0..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the length of the IPv6 address prefix." + ::= { hwAPSpecificEntry 18 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.19 + hwAPSpApIPv6Gateway OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv6 gateway. + hwAPSpApIPv6Gateway takes effect if hwAPSpApAddressMode is set to static." + ::= { hwAPSpecificEntry 19 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.20 + hwAPSpIPv4ACList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC IPv4 address list. + NOTE AC lists are separated by question marks (?).A maximum of four AC lists can be configured." + ::= { hwAPSpecificEntry 20 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.21 + hwAPSpIPv6ACList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC IPv6 address list. + NOTE AC lists are separated by question marks (?).A maximum of four AC lists can be configured." + ::= { hwAPSpecificEntry 21 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.22 + hwAPSpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificEntry 22 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.7.1.23 + hwAPSpApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificEntry 23 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.8 +-- 1.3.6.1.4.1.2011.6.139.11.1.8 + -- 1.3.6.1.4.1.2011.6.139.11.1.8 + hwAPSpecificWiredPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPSpecificWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to bind an AP wired port profile to an AP specific profile or unbind an AP wired port profile from an AP specific profile.." + ::= { hwWlanConfigObjects 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.8.1 + hwAPSpecificWiredPortEntry OBJECT-TYPE + SYNTAX HwAPSpecificWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPSpWPInterfaceType, hwAPSpWPInterfaceNum and hwAPSpApMac." + INDEX { hwAPSpWPInterfaceType, hwAPSpWPInterfaceNum, hwAPSpApMac } + ::= { hwAPSpecificWiredPortTable 1 } + + + HwAPSpecificWiredPortEntry ::= + SEQUENCE { + hwAPSpWPInterfaceType + INTEGER, + hwAPSpWPInterfaceNum + Unsigned32, + hwAPSpWPProfile + OCTET STRING, + hwAPSpWPRowStatus + RowStatus, + hwAPSpWPApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.8.1.1 + hwAPSpWPInterfaceType OBJECT-TYPE + SYNTAX INTEGER + { + fe(1), + ge(2) , + trunk(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the interface type." + ::= { hwAPSpecificWiredPortEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.8.1.2 + hwAPSpWPInterfaceNum OBJECT-TYPE + SYNTAX Unsigned32 (0..27) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the interface index." + ::= { hwAPSpecificWiredPortEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.8.1.3 + hwAPSpWPProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound wired port profile." + ::= { hwAPSpecificWiredPortEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.8.1.4 + hwAPSpWPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwAPSpecificWiredPortEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.8.1.5 + hwAPSpWPApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwAPSpecificWiredPortEntry 5 } + + + --1.3.6.1.4.1.2011.6.139.11.1.9 + hwAPSpecificRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPSpecificRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table records the information about profiles bound based on radio in an AP specific profile, including 5G radio profile, Mesh profile, WDS profile, WIDS profile, location profile, and spectrum profile." + ::= { hwWlanConfigObjects 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.9.1 + hwAPSpecificRadioEntry OBJECT-TYPE + SYNTAX HwAPSpecificRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPSpecificName and hwAPSpRadio." + INDEX { hwAPSpRadio,hwAPSpApMac } + ::= { hwAPSpecificRadioTable 1 } + + + HwAPSpecificRadioEntry ::= + SEQUENCE { + hwAPSpRadio + Unsigned32, + hwAPSp5gRadioProfile + OCTET STRING, + hwAPSpMeshProfile + OCTET STRING, + hwAPSpWdsProfile + OCTET STRING, + hwAPSpLocationProfile + OCTET STRING, + hwAPSpRadioRowStatus + RowStatus, + hwAPSpRadio2gProfile + OCTET STRING, + hwAPSpMeshWhitelistProfile + OCTET STRING, + hwAPSpWdsWhitelistProfile + OCTET STRING, + hwAPSpRadioSwitch + INTEGER, + hwAPSpRadioChannel + Unsigned32, + hwAPSpRadioBandwidth + INTEGER, + hwAPSpRadioEirp + Unsigned32, + hwAPSpRadioAntennaGain + Unsigned32, + hwAPSpRadioCoverageDistance + Unsigned32, + hwAPSpRadioWorkMode + INTEGER, + hwAPSpRadioFrequency + INTEGER, + hwAPSpSpectrumAnalysisSwitch + INTEGER, + hwAPSpWidsDeviceDetectSwitch + INTEGER, + hwAPSpWidsAttackDetectEnBmp + Unsigned32, + hwAPSpWidsRogueContainSwitch + INTEGER, + hwAPSpRadioApId + Unsigned32, + hwAPSpRadioSecondChannel + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.9.1.1 + hwAPSpRadio OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID. It is the index of the table." + ::= { hwAPSpecificRadioEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.9.1.2 + hwAPSp5gRadioProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound 5G radio profile." + ::= { hwAPSpecificRadioEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.9.1.3 + hwAPSpMeshProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound Mesh profile." + ::= { hwAPSpecificRadioEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.9.1.4 + hwAPSpWdsProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound WDS profile." + ::= { hwAPSpecificRadioEntry 4 } + + + --1.3.6.1.4.1.2011.6.139.11.1.9.1.6 + hwAPSpLocationProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound location profile." + ::= { hwAPSpecificRadioEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.8 + hwAPSpRadioRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwAPSpecificRadioEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.9 + hwAPSpRadio2gProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the system profile to which AP groups are bound. The default value is default." + ::= { hwAPSpecificRadioEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.10 + hwAPSpMeshWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwAPSpecificRadioEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.11 + hwAPSpWdsWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwAPSpecificRadioEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.12 + hwAPSpRadioSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a 2G radio profile. It is the index of the table." + ::= { hwAPSpecificRadioEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.13 + hwAPSpRadioChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 196 (with a separation interval of 4)." + ::= { hwAPSpecificRadioEntry 13 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.14 + hwAPSpRadioBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40Plus(2), + ht40Minus(3), + ht80(4), + ht160(5), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate a bandwidth. The default value is 1." + ::= { hwAPSpecificRadioEntry 14 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.15 + hwAPSpRadioEirp OBJECT-TYPE + SYNTAX Unsigned32 (1..127 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a power value. The default value is 127. The configuration is saved but the actual power is determined by the maximum power supported by the AP." + ::= { hwAPSpecificRadioEntry 15 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.16 + hwAPSpRadioAntennaGain OBJECT-TYPE + SYNTAX Unsigned32 (0..30 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates antenna gains. The default value 0xFF indicates that the default gain of an AP is used. It is expressed in dB. Default gains vary with different types of APs." + ::= { hwAPSpecificRadioEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.17 + hwAPSpRadioCoverageDistance OBJECT-TYPE + SYNTAX Unsigned32 (1..400 | 65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio coverage distance. The default value is 3. The unit is 0.1 km." + ::= { hwAPSpecificRadioEntry 17 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.18 + hwAPSpRadioWorkMode OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + monitor(2), + dualband(3), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio working mode. The default value is 1." + ::= { hwAPSpecificRadioEntry 18 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.19 + hwAPSpRadioFrequency OBJECT-TYPE + SYNTAX INTEGER + { + frequency2G(1), + frequency5G(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the setting of the frequency band for radio 0. The default value is invalid. 1: frequency2G, 2: frequency5G." + ::= { hwAPSpecificRadioEntry 19 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.20 + hwAPSpSpectrumAnalysisSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the spectrum analysis function. The default value is 1." + ::= { hwAPSpecificRadioEntry 20 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.21 + hwAPSpWidsDeviceDetectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwAPSpecificRadioEntry 21 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.22 + hwAPSpWidsAttackDetectEnBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bit map of the brute force attack switch. bit0:weak-iv, bit1:spoof, bit2:flood, bit3:wpa-psk, bit4:wpa2-psk, bit5:wapi-psk, bit6:wep-psk." + ::= { hwAPSpecificRadioEntry 22 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.23 + hwAPSpWidsRogueContainSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwAPSpecificRadioEntry 23 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.24 + hwAPSpRadioApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwAPSpecificRadioEntry 24 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.9.1.25 + hwAPSpRadioSecondChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 165 (with a separation interval of 4)." + ::= { hwAPSpecificRadioEntry 25 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.10 + hwAPSpecificVapTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPSpecificVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create VAPs in an AP specific profile." + ::= { hwWlanConfigObjects 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.10.1 + hwAPSpecificVapEntry OBJECT-TYPE + SYNTAX HwAPSpecificVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPSpWlan, hwAPSpRadio, and hwAPSpApMac." + INDEX { hwAPSpWlan, hwAPSpRadio, hwAPSpApMac} + ::= { hwAPSpecificVapTable 1 } + + + HwAPSpecificVapEntry ::= + SEQUENCE { + hwAPSpWlan + Unsigned32, + hwAPSpVapProfile + OCTET STRING, + hwAPSpVapRowStatus + RowStatus, + hwAPSpVapApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.10.1.1 + hwAPSpWlan OBJECT-TYPE + SYNTAX Unsigned32 (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the WLAN ID. It is the index of the table." + ::= { hwAPSpecificVapEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.10.1.2 + hwAPSpVapProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound VAP profile." + ::= { hwAPSpecificVapEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.10.1.3 + hwAPSpVapRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwAPSpecificVapEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.10.1.4 + hwAPSpVapApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwAPSpecificVapEntry 4 } + + + --1.3.6.1.4.1.2011.6.139.11.1.11 + hwRegulatoryDomainProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwRegulatoryDomainProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure country codes, calibration channels, and calibration channel bandwidths." + ::= { hwWlanConfigObjects 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1 + hwRegulatoryDomainProfileEntry OBJECT-TYPE + SYNTAX HwRegulatoryDomainProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwRegulatoryDomainProfileName." + INDEX { hwRegulatoryDomainProfileName } + ::= { hwRegulatoryDomainProfileTable 1 } + + + HwRegulatoryDomainProfileEntry ::= + SEQUENCE { + hwRegulatoryDomainProfileName + OCTET STRING, + hwCountryCode + OCTET STRING, + hwDcaChannel5GBandwidth + INTEGER, + hwDcaChannel5GChannelSet + OCTET STRING, + hwDcaChannel2GChannelSet + OCTET STRING, + hwRegulatoryDomainProfilRowStatus + RowStatus, + hwWlanWideBandEnable + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.1 + hwRegulatoryDomainProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a regulatory domain profile. It is the index of the table." + ::= { hwRegulatoryDomainProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.2 + hwCountryCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the country code. Its value range is subject to the country code table. The default value is CN." + ::= { hwRegulatoryDomainProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.3 + hwDcaChannel5GBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + bw20Mhz(1), + bw40Mhz(2), + bw80Mhz(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the calibration bandwidth on the 5 GHz frequency band. The default value is 1 ? 1: bw20 MHz ? 2: bw40 MHz ? 3: bw80 MHz." + ::= { hwRegulatoryDomainProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.4 + hwDcaChannel5GChannelSet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the calibration channel set on the 5 GHz frequency band." + ::= { hwRegulatoryDomainProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.5 + hwDcaChannel2GChannelSet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the calibration channel set on the 2 GHz frequency band." + ::= { hwRegulatoryDomainProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.6 + hwRegulatoryDomainProfilRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used ? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwRegulatoryDomainProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.11.1.7 + hwWlanWideBandEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates wide band status. The default value is disable." + ::= { hwRegulatoryDomainProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.12 + hwApSystemProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwApSystemProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete an AP system profile and configure AP attributes." + ::= { hwWlanConfigObjects 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1 + hwApSystemProfileEntry OBJECT-TYPE + SYNTAX HwApSystemProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwApSystemProfName." + INDEX { hwApSystemProfName } + ::= { hwApSystemProfileTable 1 } + + + HwApSystemProfileEntry ::= + SEQUENCE { + hwApSystemProfName + OCTET STRING, + hwApProfStatInterval + Unsigned32, + hwApProfSampleTime + Unsigned32, + hwApProfLedSwitch + INTEGER, + hwApProfMaxStaNum + Unsigned32, + hwApProfMtu + Unsigned32, + hwApProfMeshRole + INTEGER, + hwApProfTemporaryManagement + INTEGER, + hwApProfManagementVlan + Unsigned32, + hwApProfHighTempThreshold + Unsigned32, + hwApProfLowTempThreshold + Integer32, + hwApProfOpHRxPowerThreshold + Unsigned32, + hwApProfOpLRxPowerThreshold + Unsigned32, + hwApProfOpHTempThreshold + Unsigned32, + hwApProfOpLTempThreshold + Integer32, + hwApProfMemoryUsageThreshold + Unsigned32, + hwApProfCpuUsageThreshold + Unsigned32, + hwApProfTelnetSwitch + INTEGER, + hwApProfSTelnetSwitch + INTEGER, + hwApProfConsoleSwitch + INTEGER, + hwApProfLogRecordLevel + INTEGER, + hwApProfLogServerIp + IpAddress, + hwApProfLogServerIpv6 + OCTET STRING, + hwApProfAlarmRestrictionSwitch + INTEGER, + hwApProfAlarmRestrictionPeriod + Unsigned32, + hwApProfKeepServiceSwitch + INTEGER, + hwApProfProtectPriority + Unsigned32, + hwApProfProtectACIp + IpAddress, + hwApProfProtectACIpv6 + OCTET STRING, + hwApProfEapStartMode + INTEGER, + hwApProfEapStartTransform + INTEGER, + hwApProfEapStartUnicastMac + MacAddress, + hwApProfEapResponseMode + INTEGER, + hwApProfEapResponseTransform + INTEGER, + hwApProfEapResponseUnicastMac + MacAddress, + hwApProfLldpRestartDelay + Unsigned32, + hwApProfLldpAdminStatus + INTEGER, + hwApProfLldpRetransDelay + Unsigned32, + hwApProfLldpRetransHoldMultiplier + Unsigned32, + hwApProfLldpInterval + Unsigned32, + hwApProfLldpReportInterval + Unsigned32, + hwApProfStaAccessMode + INTEGER, + hwApProfStaAccessModeProfile + OCTET STRING, + hwApProfRowStatus + RowStatus, + hwApProfSFTPSwitch + INTEGER, + hwApProfDynamicBlackListAgingTime + Unsigned32, + hwApProfAntennaOutputMode + INTEGER, + hwApProfMppActiveReselectionSwitch + INTEGER, + hwApProfSpectrumServerIPAddress + IpAddress, + hwApProfSpectrumServerIPv6Address + OCTET STRING, + hwApProfSpectrumServerPort + Unsigned32, + hwApProfSpectrumViaACSwitch + INTEGER, + hwApProfSpectrumViaACPort + Unsigned32, + hwApProfSpectrumNonWifiDeviceAgingTime + Unsigned32, + hwApProfPoeMaxPower + Unsigned32, + hwApProfPoePowerReserved + Unsigned32, + hwApProfPoePowerThreshold + Unsigned32, + hwApProfPoeAfInrushSwitch + INTEGER, + hwApProfPoeHighInrushSwitch + INTEGER, + hwApProfPrimaryLinkIPv4 + IpAddress, + hwApProfPrimaryLinkIPv6 + OCTET STRING, + hwApProfBackupLinkIPv4 + IpAddress, + hwApProfBackupLinkIPv6 + OCTET STRING, + hwApProfLedOffTimeRange + OCTET STRING, + hwApProfUsbSwitch + INTEGER, + hwApProfBroadcastSuppressionArpEnable + INTEGER, + hwApProfBroadcastSuppressionArpThreshold + Unsigned32, + hwApProfBroadcastSuppressionIgmpEnable + INTEGER, + hwApProfBroadcastSuppressionIgmpThreshold + Unsigned32, + hwApProfBroadcastSuppressionNdEnable + INTEGER, + hwApProfBroadcastSuppressionNdThreshold + Unsigned32, + hwApProfBroadcastSuppressionOtherEnable + INTEGER, + hwApProfBroadcastSuppressionOtherThreshold + Unsigned32, + hwApProfBroadcastSuppressionAllEnable + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.1 + hwApSystemProfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an AP system profile. It is the index of the table." + ::= { hwApSystemProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.3 + hwApProfStatInterval OBJECT-TYPE + SYNTAX Unsigned32 (60..900) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwApSystemProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.4 + hwApProfSampleTime OBJECT-TYPE + SYNTAX Unsigned32 (2..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the sampling interval for the AC to collecting AP performance data. The default value is 30. It is expressed in seconds." + ::= { hwApSystemProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.5 + hwApProfLedSwitch OBJECT-TYPE + SYNTAX INTEGER + { + off(1), + on(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the AP's LED indicator. The default value is 2." + ::= { hwApSystemProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.6 + hwApProfMaxStaNum OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of access users on an AP. The default value is 128." + ::= { hwApSystemProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.7 + hwApProfMtu OBJECT-TYPE + SYNTAX Unsigned32 (128..1700) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the MTU of an AP interface. The default value is 1500." + ::= { hwApSystemProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.8 + hwApProfMeshRole OBJECT-TYPE + SYNTAX INTEGER + { + mp(1), + mpp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a Mesh role. The default value is 1." + ::= { hwApSystemProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.9 + hwApProfTemporaryManagement OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the AP-based offline VAP switch. The default value is 1." + ::= { hwApSystemProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.10 + hwApProfManagementVlan OBJECT-TYPE + SYNTAX Unsigned32 (1..4094|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the management VLAN for APs. The default value is 1." + ::= { hwApSystemProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.11 + hwApProfHighTempThreshold OBJECT-TYPE + SYNTAX Unsigned32 (20..110|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the high temperature alarm threshold on an AP. The default value 0xFFFFFFFF indicates the system threshold of the AP NOTE System thresholds vary with different AP types. For details, see AP device information." + ::= { hwApSystemProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.12 + hwApProfLowTempThreshold OBJECT-TYPE + SYNTAX Integer32 (-70..10|65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the low temperature alarm threshold on an AP. The default value 0xFFFF indicates the system threshold of the AP." + ::= { hwApSystemProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.13 + hwApProfOpHRxPowerThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1000..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the high power threshold of an optical module. The default value is 1000." + ::= { hwApSystemProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.14 + hwApProfOpLRxPowerThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..250) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the low power threshold of an optical module. The default value is 50." + ::= { hwApSystemProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.15 + hwApProfOpHTempThreshold OBJECT-TYPE + SYNTAX Unsigned32 (70..125) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the high temperature threshold of an optical module. The default value is 70." + ::= { hwApSystemProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.16 + hwApProfOpLTempThreshold OBJECT-TYPE + SYNTAX Integer32 (-40..-5) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the low temperature threshold of an optical module. The default value is -5." + ::= { hwApSystemProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.17 + hwApProfMemoryUsageThreshold OBJECT-TYPE + SYNTAX Unsigned32 (30..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the memory usage alarm threshold of an AP. The default value is 80. It is expressed in percentage." + ::= { hwApSystemProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.18 + hwApProfCpuUsageThreshold OBJECT-TYPE + SYNTAX Unsigned32 (50..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the CPU usage alarm threshold of an AP. The default value is 90. It is expressed in percentage." + ::= { hwApSystemProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.19 + hwApProfTelnetSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable Telnet. The default value is 1." + ::= { hwApSystemProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.20 + hwApProfSTelnetSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable SSH. The default value is 2." + ::= { hwApSystemProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.21 + hwApProfConsoleSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the console. The default value is 2." + ::= { hwApSystemProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.22 + hwApProfLogRecordLevel OBJECT-TYPE + SYNTAX INTEGER + { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the log backup level. The default value is 7." + ::= { hwApSystemProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.23 + hwApProfLogServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the log server." + ::= { hwApSystemProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.24 + hwApProfLogServerIpv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the log server." + ::= { hwApSystemProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.25 + hwApProfAlarmRestrictionSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the alarm suppression switch. The default value is 2." + ::= { hwApSystemProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.26 + hwApProfAlarmRestrictionPeriod OBJECT-TYPE + SYNTAX Unsigned32 (10..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm suppression period. The default value is 60 seconds." + ::= { hwApSystemProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.27 + hwApProfKeepServiceSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(1) , + disable(2) , + allowaccess(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the offline service retaining function. The default value is 2." + ::= { hwApSystemProfileEntry 27 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.28 + hwApProfProtectPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC priority. A smaller value indicates a higher priority. The default value 0xFFFFFFFF indicates that no priority is configured." + ::= { hwApSystemProfileEntry 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.29 + hwApProfProtectACIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the standby AC." + ::= { hwApSystemProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.30 + hwApProfProtectACIpv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the standby AC." + ::= { hwApSystemProfileEntry 30 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.31 + hwApProfEapStartMode OBJECT-TYPE + SYNTAX INTEGER + { + broadcast(1), + multicast(2), + unicast(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EAP Start packet conversion mode. The default value is 2." + ::= { hwApSystemProfileEntry 31 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.32 + hwApProfEapStartTransform OBJECT-TYPE + SYNTAX INTEGER + { + equalBssid(1) , + always(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EAP Start packet conversion mode. The default value is 2." + ::= { hwApSystemProfileEntry 32 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.33 + hwApProfEapStartUnicastMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that EAP Start packets are converted to those with specific MAC addresses." + ::= { hwApSystemProfileEntry 33 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.34 + hwApProfEapResponseMode OBJECT-TYPE + SYNTAX INTEGER + { + broadcast(1), + multicast(2) , + specific(3), + learnling(4) + + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EAP Response packet conversion mode. The default value is 2." + ::= { hwApSystemProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.35 + hwApProfEapResponseTransform OBJECT-TYPE + SYNTAX INTEGER + { + equalBssid(1) , + always(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EAP Response packet conversion mode. The default value is 4." + ::= { hwApSystemProfileEntry 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.36 + hwApProfEapResponseUnicastMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that EAP Response packets are converted to those with specific MAC addresses." + ::= { hwApSystemProfileEntry 36 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.37 + hwApProfLldpRestartDelay OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the delay for re-enabling LLDP. The default value is 2. It is expressed in seconds." + ::= { hwApSystemProfileEntry 37 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.38 + hwApProfLldpAdminStatus OBJECT-TYPE + SYNTAX INTEGER + { + txrx(1), + rx(2), + tx(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the operation mode of LLDP. The default value is 1." + ::= { hwApSystemProfileEntry 38 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.39 + hwApProfLldpRetransDelay OBJECT-TYPE + SYNTAX Unsigned32 (1..8192) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the message retransmitting delay. The default value is 2. It is expressed in seconds." + ::= { hwApSystemProfileEntry 39 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.40 + hwApProfLldpRetransHoldMultiplier OBJECT-TYPE + SYNTAX Unsigned32 (2..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the hold time multiplier of device information on neighbors (cardinal number is the interval time). The default value is 4." + ::= { hwApSystemProfileEntry 40 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.41 + hwApProfLldpInterval OBJECT-TYPE + SYNTAX Unsigned32 (5..32768) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval at which LLDP packets are sent. The default value is 30 seconds." + ::= { hwApSystemProfileEntry 41 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.42 + hwApProfLldpReportInterval OBJECT-TYPE + SYNTAX Unsigned32 (5..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval at which LLDP packets are reported. The default value is 30 seconds." + ::= { hwApSystemProfileEntry 42 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.43 + hwApProfStaAccessMode OBJECT-TYPE + SYNTAX INTEGER + { + unknown(-1) , + disable(1) , + blacklist(2) , + whitelist(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the access mode. The default value is 1." + ::= { hwApSystemProfileEntry 43 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.44 + hwApProfStaAccessModeProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates blacklist and whitelist profiles." + ::= { hwApSystemProfileEntry 44 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.45 + hwApProfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used ? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwApSystemProfileEntry 45 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.46 + hwApProfSFTPSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the SFTP. The default value is 2." + ::= { hwApSystemProfileEntry 46 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.47 + hwApProfDynamicBlackListAgingTime OBJECT-TYPE + SYNTAX Unsigned32 (180..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the aging time of the dynamic blacklist entries. The default value is 600." + ::= { hwApSystemProfileEntry 47 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.48 + hwApProfAntennaOutputMode OBJECT-TYPE + SYNTAX INTEGER + { + combine(1), + split(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwApSystemProfileEntry 48 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.49 + hwApProfMppActiveReselectionSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates of mpp active reselection." + ::= { hwApSystemProfileEntry 49 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.50 + hwApProfSpectrumServerIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the spectrum analysis server. You choose an IPv4 or IPv6 address. By default, the IPv4 address 255.255.255.255 is used." + ::= { hwApSystemProfileEntry 50 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.51 + hwApProfSpectrumServerIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the spectrum analysis server. You choose an IPv4 or IPv6 address. By default, it is not configured." + ::= { hwApSystemProfileEntry 51 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.52 + hwApProfSpectrumServerPort OBJECT-TYPE + SYNTAX Unsigned32 (0 | 5000..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the port of the spectrum analysis server. The default value is 32181." + ::= { hwApSystemProfileEntry 52 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.53 + hwApProfSpectrumViaACSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the spectrum analysis function. The default value is 2." + ::= { hwApSystemProfileEntry 53 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.54 + hwApProfSpectrumViaACPort OBJECT-TYPE + SYNTAX Unsigned32 (0 | 5000..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the port number used by the AP to report spectrum analysis data to the AC. The default value is 6412." + ::= { hwApSystemProfileEntry 54 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.55 + hwApProfSpectrumNonWifiDeviceAgingTime OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the aging time of non-WLAN devices on the AC. The default value is 3 minutes." + ::= { hwApSystemProfileEntry 55 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.56 + hwApProfPoeMaxPower OBJECT-TYPE + SYNTAX Unsigned32 (15400..380000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum output power of the AP.The default value is 380000." + ::= { hwApSystemProfileEntry 56 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.57 + hwApProfPoePowerReserved OBJECT-TYPE + SYNTAX Unsigned32 (0..100 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the percentage of reserved PoE power to the available PoE power.The default value is 0." + ::= { hwApSystemProfileEntry 57 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.58 + hwApProfPoePowerThreshold OBJECT-TYPE + SYNTAX Unsigned32 (0..100 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold of PoE power consumption percentage.The default value is 100." + ::= { hwApSystemProfileEntry 58 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.59 + hwApProfPoeAfInrushSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the IEEE 802.3at-compliant device to provide power in accordance with IEEE 802.3af.The default value is 1." + ::= { hwApSystemProfileEntry 59 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.60 + hwApProfPoeHighInrushSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the device to allow high inrush current during power-on.The default value is 1." + ::= { hwApSystemProfileEntry 60 } + --1.3.6.1.4.1.2011.6.139.11.1.12.1.61 + hwApProfPrimaryLinkIPv4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the primary AC." + ::= { hwApSystemProfileEntry 61 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.62 + hwApProfPrimaryLinkIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the primary AC." + ::= { hwApSystemProfileEntry 62 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.63 + hwApProfBackupLinkIPv4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the backup AC." + ::= { hwApSystemProfileEntry 63 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.64 + hwApProfBackupLinkIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the backup AC." + ::= { hwApSystemProfileEntry 64 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.65 + hwApProfLedOffTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to make a configured Led off time range effective." + ::= { hwApSystemProfileEntry 65 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.66 + hwApProfUsbSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the USB. The default value is 1." + ::= { hwApSystemProfileEntry 66 } + + --1.3.6.1.4.1.2011.6.139.11.1.12.1.67 + hwApProfBroadcastSuppressionArpEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the arp broadcast suppression.The default value is 1." + ::= { hwApSystemProfileEntry 67 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.68 + hwApProfBroadcastSuppressionArpThreshold OBJECT-TYPE + SYNTAX Unsigned32 (64..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the threshold of arp broadcast suppression. The default value is 256." + ::= { hwApSystemProfileEntry 68 } + + hwApProfBroadcastSuppressionIgmpEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the igmp broadcast suppression.The default value is 1." + ::= { hwApSystemProfileEntry 69 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.70 + hwApProfBroadcastSuppressionIgmpThreshold OBJECT-TYPE + SYNTAX Unsigned32 (64..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the threshold of igmp broadcast suppression. The default value is 256." + ::= { hwApSystemProfileEntry 70 } + + hwApProfBroadcastSuppressionNdEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the nd broadcast suppression.The default value is 1." + ::= { hwApSystemProfileEntry 71 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.72 + hwApProfBroadcastSuppressionNdThreshold OBJECT-TYPE + SYNTAX Unsigned32 (64..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the threshold of nd broadcast suppression. The default value is 256." + ::= { hwApSystemProfileEntry 72 } + + hwApProfBroadcastSuppressionOtherEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the other broadcast suppression.The default value is 1." + ::= { hwApSystemProfileEntry 73 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.12.1.74 + hwApProfBroadcastSuppressionOtherThreshold OBJECT-TYPE + SYNTAX Unsigned32 (64..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the threshold of other broadcast suppression. The default value is 256." + ::= { hwApSystemProfileEntry 74 } + + hwApProfBroadcastSuppressionAllEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable all the broadcast suppression.The default value is 1." + ::= { hwApSystemProfileEntry 75 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13 + hwAPWiredPortProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPWiredPortProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete an AP wired port link profile and modify or query attributes." + ::= { hwWlanConfigObjects 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1 + hwAPWiredPortProfileEntry OBJECT-TYPE + SYNTAX HwAPWiredPortProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwAPWiredPortProfileName." + INDEX { hwAPWiredPortProfileName } + ::= { hwAPWiredPortProfileTable 1 } + + + HwAPWiredPortProfileEntry ::= + SEQUENCE { + hwAPWiredPortProfileName + OCTET STRING, + hwAPWiredPortPortLinkProfileName + OCTET STRING, + hwAPWiredPortProfilePortDesc + OCTET STRING, + hwAPWiredPortProfilePortEthTrunkID + Unsigned32, + hwAPWiredPortProfilePortSTPSwitch + INTEGER, + hwAPWiredPortProfilePortMode + INTEGER, + hwAPWiredPortProfilePortVlanPvid + Unsigned32, + hwAPWiredPortProfilePortVlanTagged + OCTET STRING, + hwAPWiredPortProfilePortVlanUntagged + OCTET STRING, + hwAPWiredPortProfileUserIsolate + INTEGER, + hwAPWiredPortProfileDhcpTrust + INTEGER, + hwAPWiredPortProfileNdTrust + INTEGER, + hwAPWiredPortProfileRowStatus + RowStatus, + hwAPWiredPortProfileLearnAddress + INTEGER, + hwAPWiredPortProfileIpBindCheck + INTEGER, + hwAPWiredPortProfileArpBindCheck + INTEGER, + hwAPWiredPortProfileSTPAutoShutdown + INTEGER, + hwAPWiredPortProfileSTPAutoShutdownRecoveryTime + Unsigned32, + hwAPWiredPortProfileTrafficOptimizeSuppressionBc + Unsigned32, + hwAPWiredPortProfileTrafficOptimizeSuppressionUc + Unsigned32, + hwAPWiredPortProfileTrafficOptimizeSuppressionMc + Unsigned32, + hwAPWiredPortProfileIGMPSnooping + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.1 + hwAPWiredPortProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an AP wired port link profile." + ::= { hwAPWiredPortProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.2 + hwAPWiredPortPortLinkProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound AP wired port link profile." + ::= { hwAPWiredPortProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.3 + hwAPWiredPortProfilePortDesc OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the description of an interface." + ::= { hwAPWiredPortProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.4 + hwAPWiredPortProfilePortEthTrunkID OBJECT-TYPE + SYNTAX Unsigned32 (0 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ID of a Trunk. 0 is valid and 0xFFFFFFFF is invalid. The default value is 0xFFFFFFFF." + ::= { hwAPWiredPortProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.5 + hwAPWiredPortProfilePortSTPSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable STP on wired ports. The default value is 1." + ::= { hwAPWiredPortProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.6 + hwAPWiredPortProfilePortMode OBJECT-TYPE + SYNTAX INTEGER + { + root(1), + endpoint(2), + middle(3), + null(256) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mode of the wired port. For FE ports of plate APs, the default value is 2. For other ports, the default value is 1." + ::= { hwAPWiredPortProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.7 + hwAPWiredPortProfilePortVlanPvid OBJECT-TYPE + SYNTAX Unsigned32 (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the PVID of a port. The default value is 1." + ::= { hwAPWiredPortProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.8 + hwAPWiredPortProfilePortVlanTagged OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to tag ports with VLAN IDs. The default value is 0." + ::= { hwAPWiredPortProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.9 + hwAPWiredPortProfilePortVlanUntagged OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to untag VLAN IDS from ports. The default value is 1." + ::= { hwAPWiredPortProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.10 + hwAPWiredPortProfileUserIsolate OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + l3Isolate(2), + l2Isolate(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the user isolation function. The default value is 1." + ::= { hwAPWiredPortProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.11 + hwAPWiredPortProfileDhcpTrust OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether a port is configured as a DHCP trusted port. The default value is 1." + ::= { hwAPWiredPortProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.12 + hwAPWiredPortProfileNdTrust OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether a port is configured as a ND trusted port. The default value is 1." + ::= { hwAPWiredPortProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.13.1.13 + hwAPWiredPortProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwAPWiredPortProfileEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.14 + hwAPWiredPortProfileLearnAddress OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable address learning.The default value is 1." + ::= { hwAPWiredPortProfileEntry 14 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.15 + hwAPWiredPortProfileIpBindCheck OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable IP packet checking against the binding table.The default value is 1." + ::= { hwAPWiredPortProfileEntry 15 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.16 + hwAPWiredPortProfileArpBindCheck OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable ARP packet checking against the binding table.The default value is 1." + ::= { hwAPWiredPortProfileEntry 16 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.17 + hwAPWiredPortProfileSTPAutoShutdown OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable STP-triggered port shutdown.The default value is 1." + ::= { hwAPWiredPortProfileEntry 17 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.18 + hwAPWiredPortProfileSTPAutoShutdownRecoveryTime OBJECT-TYPE + SYNTAX Unsigned32 (600..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the automatic port recovery time after an STP-triggered shutdown.The default value is 600." + ::= { hwAPWiredPortProfileEntry 18 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.19 + hwAPWiredPortProfileTrafficOptimizeSuppressionBc OBJECT-TYPE + SYNTAX Unsigned32 (0..14881000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the rate limit for broadcast storm suppression.The default value is 0xFFFFFFFF." + ::= { hwAPWiredPortProfileEntry 19 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.20 + hwAPWiredPortProfileTrafficOptimizeSuppressionUc OBJECT-TYPE + SYNTAX Unsigned32 (0..14881000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the rate limit for unknown unicast storm suppression.The default value is 0xFFFFFFFF." + ::= { hwAPWiredPortProfileEntry 20 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.21 + hwAPWiredPortProfileTrafficOptimizeSuppressionMc OBJECT-TYPE + SYNTAX Unsigned32 (0..14881000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the rate limit for multicast storm suppression.The default value is 0xFFFFFFFF." + ::= { hwAPWiredPortProfileEntry 21 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.13.1.22 + hwAPWiredPortProfileIGMPSnooping OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable IGMP-snooping.The default value is 1." + ::= { hwAPWiredPortProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.14 + hwAPWiredPortProfileTrafficFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPWiredPortProfileTrafficFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure ACL-based packet filtering in an AP wired port profile." + ::= { hwWlanConfigObjects 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.14.1 + hwAPWiredPortProfileTrafficFilterEntry OBJECT-TYPE + SYNTAX HwAPWiredPortProfileTrafficFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwAPWiredPortProfileName." + INDEX { hwAPWiredPortProfileName, hwAPWiredPortProfileTrafficFilterType,hwAPWiredPortProfileTrafficFilterDirection } + ::= { hwAPWiredPortProfileTrafficFilterTable 1 } + + + HwAPWiredPortProfileTrafficFilterEntry ::= + SEQUENCE { + hwAPWiredPortProfileTrafficFilterDirection + INTEGER, + hwAPWiredPortProfileTrafficFilterType + INTEGER, + hwAPWiredPortProfileTrafficFilterAclID + Integer32, + hwAPWiredPortProfileTrafficFilterRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.14.1.1 + hwAPWiredPortProfileTrafficFilterDirection OBJECT-TYPE + SYNTAX INTEGER + { + inbound(1), + outbound(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the direction of the ACL-based packet filtering." + ::= { hwAPWiredPortProfileTrafficFilterEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.14.1.2 + hwAPWiredPortProfileTrafficFilterType OBJECT-TYPE + SYNTAX INTEGER + { + ipv4(1), + ipv6(2), + l2(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the type of the ACL-based packet filtering." + ::= { hwAPWiredPortProfileTrafficFilterEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.14.1.3 + hwAPWiredPortProfileTrafficFilterAclID OBJECT-TYPE + SYNTAX Integer32 (3000..3031|4000..4031) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates ACL rules for packet filtering." + ::= { hwAPWiredPortProfileTrafficFilterEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.14.1.4 + hwAPWiredPortProfileTrafficFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates packet filtering rules configured on the wired interface." + ::= { hwAPWiredPortProfileTrafficFilterEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.15 + hwAPPortLinkProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPPortLinkProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete an AP wired port link profile and configure parameters." + ::= { hwWlanConfigObjects 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1 + hwAPPortLinkProfileEntry OBJECT-TYPE + SYNTAX HwAPPortLinkProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwAPPortLinkProfileName." + INDEX { hwAPPortLinkProfileName } + ::= { hwAPPortLinkProfileTable 1 } + + + HwAPPortLinkProfileEntry ::= + SEQUENCE { + hwAPPortLinkProfileName + OCTET STRING, + hwAPPortLinkProfileLldpEnable + INTEGER, + hwAPPortLinkProfileLldpTlvType + Unsigned32, + hwAPPortLinkProfileCrcAlarmEnable + INTEGER, + hwAPPortLinkProfileCrcAlarmThreshold + Unsigned32, + hwAPPortLinkProfileCrcAlarmResumeThreshold + Unsigned32, + hwAPPortLinkProfileRowStatus + RowStatus, + hwAPPortLinkProfilePoeSwitch + INTEGER, + hwAPPortLinkProfilePoePriority + INTEGER, + hwAPPortLinkProfilePoeForcePowerSwitch + INTEGER, + hwAPPortLinkProfilePoeLegacySwitch + INTEGER, + hwAPPortLinkProfilePoeOffTimeRange + OCTET STRING, + hwAPPortLinkProfileAdminStatus + INTEGER, + hwAPPortLinkProfileEEESwitch + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.1 + hwAPPortLinkProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an AP wired port link profile." + ::= { hwAPPortLinkProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.2 + hwAPPortLinkProfileLldpEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the LLDP function. The default value is 2." + ::= { hwAPPortLinkProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.3 + hwAPPortLinkProfileLldpTlvType OBJECT-TYPE + SYNTAX Unsigned32(0..31) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the types of TLVs that can be advertised from an AP's wired port. The default value is all(0x11) ? 0: invalid ? bit0: management-address ? bit1: port-description ? bit2: system-capability ? bit3: system-description ? bit4: system-name." + ::= { hwAPPortLinkProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.4 + hwAPPortLinkProfileCrcAlarmEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the CRC error alarm function. The default value is 1." + ::= { hwAPPortLinkProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.5 + hwAPPortLinkProfileCrcAlarmThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a CRC error alarm threshold. The default value is 50. It is expressed in percentage." + ::= { hwAPPortLinkProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.6 + hwAPPortLinkProfileCrcAlarmResumeThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a CRC error alarm clearing threshold. The default value is 20. It is expressed in percentage." + ::= { hwAPPortLinkProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.15.1.7 + hwAPPortLinkProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used ? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE:notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwAPPortLinkProfileEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.8 + hwAPPortLinkProfilePoeSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the PoE function on the interface.The default value is 2." + ::= { hwAPPortLinkProfileEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.9 + hwAPPortLinkProfilePoePriority OBJECT-TYPE + SYNTAX INTEGER + { + critical(1), + high(2), + low(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the power priority of PoE interfaces.The default value is 3." + ::= { hwAPPortLinkProfileEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.10 + hwAPPortLinkProfilePoeForcePowerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable forcible PoE power supply on an interface.The default value is 1." + ::= { hwAPPortLinkProfileEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.11 + hwAPPortLinkProfilePoeLegacySwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the PSE to check compatibility of the connected PDs.The default value is 1." + ::= { hwAPPortLinkProfileEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.12 + hwAPPortLinkProfilePoeOffTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to make a configured PoE power-off time range effective on interfaces." + ::= { hwAPPortLinkProfileEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.13 + hwAPPortLinkProfileAdminStatus OBJECT-TYPE + SYNTAX INTEGER + { + down(1), + up(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable port shutdown.The default value is 2." + ::= { hwAPPortLinkProfileEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.15.1.14 + hwAPPortLinkProfileEEESwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the EEE function on the interface.The default value is 1." + ::= { hwAPPortLinkProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.16 + hw2gRadioProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF Hw2gRadioProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure 2.4 GHz radio parameters, including physical radio parameters such as channel, power, antenna gain, and working mode, and bind air scan and RRM profiles." + ::= { hwWlanConfigObjects 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1 + hw2gRadioProfileEntry OBJECT-TYPE + SYNTAX Hw2gRadioProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hw2gRadioProfileName." + INDEX { hw2gRadioProfileName } + ::= { hw2gRadioProfileTable 1 } + + + Hw2gRadioProfileEntry ::= + SEQUENCE { + hw2gRadioProfileName + OCTET STRING, + hw2gRadioBeaconInterval + Unsigned32, + hw2gRadioGuardIntervalMode + INTEGER, + hw2gRadioShortPreamble + INTEGER, + hw2gRadioFragmentationThreshold + Integer32, + hw2gRadioHtAmpduSwitch + INTEGER, + hw2gRadioHtAmpduMaxLengthExponent + Integer32, + hw2gRadioDot11bgBasicRate + Unsigned32, + hw2gRadioDot11bgSupportRate + Unsigned32, + hw2gRadioMulticastRate + Unsigned32, + hw2gRadioWmmMandatorySwitch + INTEGER, + hw2gRadioApEDCAVoiceECWmax + Unsigned32, + hw2gRadioApEDCAVoiceECWmin + Unsigned32, + hw2gRadioApEDCAVoiceAIFSN + Unsigned32, + hw2gRadioApEDCAVoiceTXOPLimit + Unsigned32, + hw2gRadioApEDCAVoiceAckPolicy + INTEGER, + hw2gRadioApEDCAVideoECWmax + Unsigned32, + hw2gRadioApEDCAVideoECWmin + Unsigned32, + hw2gRadioApEDCAVideoAIFSN + Unsigned32, + hw2gRadioApEDCAVideoTXOPLimit + Unsigned32, + hw2gRadioApEDCAVideoAckPolicy + INTEGER, + hw2gRadioApEDCABEECWmax + Unsigned32, + hw2gRadioApEDCABEECWmin + Unsigned32, + hw2gRadioApEDCABEAIFSN + Unsigned32, + hw2gRadioApEDCABETXOPLimit + Unsigned32, + hw2gRadioApEDCABEAckPolicy + INTEGER, + hw2gRadioApEDCABKECWmax + Unsigned32, + hw2gRadioApEDCABKECWmin + Unsigned32, + hw2gRadioApEDCABKAIFSN + Unsigned32, + hw2gRadioApEDCABKTXOPLimit + Unsigned32, + hw2gRadioApEDCABKAckPolicy + INTEGER, + hw2gRadioWmmSwitch + INTEGER, + hw2gRadioRtsCtsThreshold + Unsigned32, + hw2gRadioRtsCtsMode + INTEGER, + hw2gRadioPowerAutoAdjustSwitch + INTEGER, + hw2gRadioBeamformingSwitch + INTEGER, + hw2gRadioWifiLight + INTEGER, + hw2gRadioChannelSwitchAnnouncementSwitch + INTEGER, + hw2gRadioChannelSwitchMode + INTEGER, + hw2gRadioAutoOffServiceSwitch + INTEGER, + hw2gRadioAutoOffServiceStartTime + OCTET STRING, + hw2gRadioAutoOffServiceEndTime + OCTET STRING, + hw2gRadioInterferenceDetectSwitch + INTEGER, + hw2gRadioInterferenceIntraFrequencyThreshold + Unsigned32, + hw2gRadioInterferenceAdjacentFrequencyThreshold + Unsigned32, + hw2gRadioInterferenceStationThreshold + Unsigned32, + hw2gRadioRrmProfile + OCTET STRING, + hw2gRadioAirScanProfile + OCTET STRING, + hw2gRadioProfileRowStatus + RowStatus, + hw2gRadioProfileUtmostPowerSwitch + INTEGER, + hw2gRadioProfileRadioType + INTEGER, + hw2gRadioProfileSmartAntennaEnable + INTEGER, + hw2gRadioProfileTxChainNum + Unsigned32, + hw2gRadioProfileRxChainNum + Unsigned32, + hw2gRadioProfileAutoOffTimeRange + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.1 + hw2gRadioProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a 2G radio profile. It is the index of the table." + ::= { hw2gRadioProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.6 + hw2gRadioBeaconInterval OBJECT-TYPE + SYNTAX Unsigned32 (60..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a Beacon interval. The default value is 100. It is expressed in ms." + ::= { hw2gRadioProfileEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.10 + hw2gRadioGuardIntervalMode OBJECT-TYPE + SYNTAX INTEGER + { + short(1), + normal(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the GI mode. The default value is 2." + ::= { hw2gRadioProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.11 + hw2gRadioShortPreamble OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the preamble mode. The default value is 2." + ::= { hw2gRadioProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.12 + hw2gRadioFragmentationThreshold OBJECT-TYPE + SYNTAX Integer32 (256..2346) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the packet fragmentation threshold. The default value is 2346. It is expressed in bytes." + ::= { hw2gRadioProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.13 + hw2gRadioHtAmpduSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the aggregation function. The default value is 2." + ::= { hw2gRadioProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.14 + hw2gRadioHtAmpduMaxLengthExponent OBJECT-TYPE + SYNTAX Integer32 (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum length of frames converged by an MPDU. The default value is 3 ? 0: 8191 bytes ? 1: 16383 bytes ? 2: 32767 bytes ? 3: 65535 bytes." + ::= { hw2gRadioProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.15 + hw2gRadioDot11bgBasicRate OBJECT-TYPE + SYNTAX Unsigned32 (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the basic rate set of the 802.11bg protocol. The default value is 3 ? bit0: 1 Mbit/s ? bit1: 2 Mbit/s ? bit2: 5.5 Mbit/s ? bit3: 6 Mbit/s ? bit4: 9 Mbit/s ? bit5: 11 Mbit/s ? bit6: 12 Mbit/s ? bit7: 18 Mbit/s ? bit8: 24 Mbit/s ? bit9: 36 Mbit/s ? bit10: 48 Mbit/s ? bit11: 54 Mbit/s." + ::= { hw2gRadioProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.16 + hw2gRadioDot11bgSupportRate OBJECT-TYPE + SYNTAX Unsigned32 (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the supported rate set of the 802.11bg protocol. The default value is 0xFFF ? bit0: 1 Mbit/s? bit1: 2 Mbit/s? bit2: 5.5 Mbit/s? bit3: 6 Mbit/s? bit4: 9 Mbit/s? bit5: 11 Mbit/s? bit6: 12 Mbit/s ? bit7: 18 Mbit/s? bit8: 24 Mbit/s? bit9: 36 Mbit/s? bit10: 48 Mbit/s? bit11: 54 Mbit/s." + ::= { hw2gRadioProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.17 + hw2gRadioMulticastRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the multicast rate. The default value is 0x2F ? bit0: 1 Mbit/s ? bit1: 2 Mbit/s ? bit2: 5.5 Mbit/s ? bit3: 6 Mbit/s ? bit4: 9 Mbit/s ? bit5: 11 Mbit/s ? bit6: 12 Mbit/s ? bit7: 18 Mbit/s ? bit8: 24 Mbit/s ? bit9: 36 Mbit/s ? bit10: 48 Mbit/s ? bit11: 54 Mbit/s." + ::= { hw2gRadioProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.18 + hw2gRadioWmmMandatorySwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the mandatory WMM matching function. The default value is 1." + ::= { hw2gRadioProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.19 + hw2gRadioApEDCAVoiceECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for voice services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 3." + ::= { hw2gRadioProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.20 + hw2gRadioApEDCAVoiceECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for voice services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 2." + ::= { hw2gRadioProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.21 + hw2gRadioApEDCAVoiceAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for voice services on APs. The default value is 1." + ::= { hw2gRadioProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.22 + hw2gRadioApEDCAVoiceTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for voice services on APs. The default value is 47. The unit is 32 us." + ::= { hw2gRadioProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.23 + hw2gRadioApEDCAVoiceAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for voice services on APs. The default value is 1." + ::= { hw2gRadioProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.24 + hw2gRadioApEDCAVideoECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for video services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 4." + ::= { hw2gRadioProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.25 + hw2gRadioApEDCAVideoECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for video services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 3." + ::= { hw2gRadioProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.26 + hw2gRadioApEDCAVideoAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for video services on APs. The default value is 1." + ::= { hw2gRadioProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.27 + hw2gRadioApEDCAVideoTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for video services on APs. The default value is 94. The unit is 32 us." + ::= { hw2gRadioProfileEntry 27 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.28 + hw2gRadioApEDCAVideoAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for video services on APs. The default value is 1." + ::= { hw2gRadioProfileEntry 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.29 + hw2gRadioApEDCABEECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for BE services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 6." + ::= { hw2gRadioProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.30 + hw2gRadioApEDCABEECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for BE services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 4." + ::= { hw2gRadioProfileEntry 30 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.31 + hw2gRadioApEDCABEAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for BE services on APs. The default value is 3." + ::= { hw2gRadioProfileEntry 31 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.32 + hw2gRadioApEDCABETXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit for BE services on APs. It indicates the transmission opportunity limit. The default value is 0. The unit is 32 us." + ::= { hw2gRadioProfileEntry 32 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.33 + hw2gRadioApEDCABEAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for BE services on APs. The default value is 1." + ::= { hw2gRadioProfileEntry 33 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.34 + hw2gRadioApEDCABKECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for BK services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 10." + ::= { hw2gRadioProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.35 + hw2gRadioApEDCABKECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for BK services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 4." + ::= { hw2gRadioProfileEntry 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.36 + hw2gRadioApEDCABKAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for BK services on APs. The default value is 7." + ::= { hw2gRadioProfileEntry 36 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.37 + hw2gRadioApEDCABKTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for BK services on APs. The default value is 0. The unit is 32 us." + ::= { hw2gRadioProfileEntry 37 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.38 + hw2gRadioApEDCABKAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for BK services on APs. The default value is 1." + ::= { hw2gRadioProfileEntry 38 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.39 + hw2gRadioWmmSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the WMM function. The default value is 2." + ::= { hw2gRadioProfileEntry 39 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.40 + hw2gRadioRtsCtsThreshold OBJECT-TYPE + SYNTAX Unsigned32 (64..2347) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the request To Send/Clear To Send (RTS/CTS) threshold. If the length of a frame to be sent by the MAC Layer exceeds this threshold, an RTS frame needs to be sent before this frame. The default value is 2347. It is expressed in bytes." + ::= { hw2gRadioProfileEntry 40 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.41 + hw2gRadioRtsCtsMode OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + ctsToSelf(2) , + rtsCts(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the RTS-CTS mode set for the specified radio profile. The default value is 2." + ::= { hw2gRadioProfileEntry 41 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.42 + hw2gRadioPowerAutoAdjustSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the user-by-user power control function. The default value is 1." + ::= { hw2gRadioProfileEntry 42 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.43 + hw2gRadioBeamformingSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the beamforming function. The default value is 1." + ::= { hw2gRadioProfileEntry 43 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.44 + hw2gRadioWifiLight OBJECT-TYPE + SYNTAX INTEGER + { + signalStrength(1) , + traffic(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates information reflected by the blinking frequency of the Wireless LED on an AP." + ::= { hw2gRadioProfileEntry 44 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.45 + hw2gRadioChannelSwitchAnnouncementSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the channel switchover announcement function. The default value is 1." + ::= { hw2gRadioProfileEntry 45 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.46 + hw2gRadioChannelSwitchMode OBJECT-TYPE + SYNTAX INTEGER + { + continueTransmitting(1) , + stopTransmitting(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the channel switch announcement mode. The default value is 1." + ::= { hw2gRadioProfileEntry 46 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.47 + hw2gRadioAutoOffServiceSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the scheduled radio disabling function. The default value is 1." + ::= { hw2gRadioProfileEntry 47 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.48 + hw2gRadioAutoOffServiceStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the start time for disabling the radio. The value is in the format of hh:mm:ss NOTE ? hh specifies the hour. The value is an integer that ranges from 0 to 23.? mm specifies the minute. The value is an integer that ranges from 0 to 59.? ss specifies the second. The value is an integer that ranges from 0 to 59." + ::= { hw2gRadioProfileEntry 48 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.49 + hw2gRadioAutoOffServiceEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the end time for disabling of the radio. The value is in the format of hh:mm:ss NOTE ? hh specifies the hour. The value is an integer that ranges from 0 to 23.? mm specifies the minute. The value is an integer that ranges from 0 to 59.? ss specifies the second. The value is an integer that ranges from 0 to 59." + ::= { hw2gRadioProfileEntry 49 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.50 + hw2gRadioInterferenceDetectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the user-by-user power control function. The default value is 1." + ::= { hw2gRadioProfileEntry 50 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.51 + hw2gRadioInterferenceIntraFrequencyThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold for co-channel interference, namely, the percentage of the co-channel interference power against the maximum power. The default value is 50." + ::= { hw2gRadioProfileEntry 51 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.52 + hw2gRadioInterferenceAdjacentFrequencyThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold for adjacent-channel interference, namely, the percentage of the adjacent-channel interference power against the maximum power. The default value is 50." + ::= { hw2gRadioProfileEntry 52 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.53 + hw2gRadioInterferenceStationThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold for station interference. When the number of the STAs detected exceeds the specified alarm threshold, the AP reports alarms to the AC.The default value is 32." + ::= { hw2gRadioProfileEntry 53 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.54 + hw2gRadioRrmProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound RRM profile." + ::= { hw2gRadioProfileEntry 54 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.55 + hw2gRadioAirScanProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound air scan profile." + ::= { hw2gRadioProfileEntry 55 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.56 + hw2gRadioProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used ? ROWSTATUS_UNDEFINED: undefined? ROWSTATUS_ACTIVE: active? ROWSTATUS_NOTINSERVICE: notInService? ROWSTATUS_NOTREADY: notReady? ROWSTATUS_CREATEANDFLOW: createAndGo? ROWSTATUS_CREATEANDWAIT: createAndWait? ROWSTATUS_DESTROY: destroy." + ::= { hw2gRadioProfileEntry 56 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.57 + hw2gRadioProfileUtmostPowerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch for the function of sending packets at maximum power." + ::= { hw2gRadioProfileEntry 57 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.59 + hw2gRadioProfileRadioType OBJECT-TYPE + SYNTAX INTEGER + { + dot11b(1), + dot11g(5), + dot11n(9) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the type of radio. The default value is 9. " + ::= { hw2gRadioProfileEntry 59 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.60 + hw2gRadioProfileSmartAntennaEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { disable } + ::= { hw2gRadioProfileEntry 60 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.61 + hw2gRadioProfileTxChainNum OBJECT-TYPE + SYNTAX Unsigned32 (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 4 } + ::= { hw2gRadioProfileEntry 61 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.16.1.62 + hw2gRadioProfileRxChainNum OBJECT-TYPE + SYNTAX Unsigned32 (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 4 } + ::= { hw2gRadioProfileEntry 62 } + + --1.3.6.1.4.1.2011.6.139.11.1.16.1.63 + hw2gRadioProfileAutoOffTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the time range for disabling the radio." + ::= { hw2gRadioProfileEntry 63 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17 + hw5gRadioProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF Hw5gRadioProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure 5 GHz radio parameters, including physical radio parameters such as channel, power, antenna gain, and working mode, and bind air scan profiles and RRM profiles." + ::= { hwWlanConfigObjects 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1 + hw5gRadioProfileEntry OBJECT-TYPE + SYNTAX Hw5gRadioProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hw5gRadioProfileName." + INDEX { hw5gRadioProfileName } + ::= { hw5gRadioProfileTable 1 } + + + Hw5gRadioProfileEntry ::= + SEQUENCE { + hw5gRadioProfileName + OCTET STRING, + hw5gRadioBeaconInterval + Unsigned32, + hw5gRadioGuardIntervalMode + INTEGER, + hw5gRadioShortPreamble + INTEGER, + hw5gRadioFragmentationThreshold + Unsigned32, + hw5gRadioHtAmpduSwitch + INTEGER, + hw5gRadioHtAmpduMaxLengthExponent + Unsigned32, + hw5gRadioVhtAmpduMaxLengthExponent + Integer32, + hw5gRadioVhtAmsduSwitch + INTEGER, + hw5gRadioVhtAmsduMaxFrameNum + Unsigned32, + hw5gRadioDot11aBasicRate + Unsigned32, + hw5gRadioDot11aSupportRate + Unsigned32, + hw5gRadioMulticastRate + Unsigned32, + hw5gRadioVhtNssMapMaxMcs + OCTET STRING, + hw5gRadioWmmMandatorySwitch + INTEGER, + hw5gRadioApEDCAVoiceECWmax + Unsigned32, + hw5gRadioApEDCAVoiceECWmin + Unsigned32, + hw5gRadioApEDCAVoiceAIFSN + Unsigned32, + hw5gRadioApEDCAVoiceTXOPLimit + Unsigned32, + hw5gRadioApEDCAVoiceAckPolicy + INTEGER, + hw5gRadioApEDCAVideoECWmax + Unsigned32, + hw5gRadioApEDCAVideoECWmin + Unsigned32, + hw5gRadioApEDCAVideoAIFSN + Unsigned32, + hw5gRadioApEDCAVideoTXOPLimit + Unsigned32, + hw5gRadioApEDCAVideoAckPolicy + INTEGER, + hw5gRadioApEDCABEECWmax + Unsigned32, + hw5gRadioApEDCABEECWmin + Unsigned32, + hw5gRadioApEDCABEAIFSN + Unsigned32, + hw5gRadioApEDCABETXOPLimit + Unsigned32, + hw5gRadioApEDCABEAckPolicy + INTEGER, + hw5gRadioApEDCABKECWmax + Unsigned32, + hw5gRadioApEDCABKECWmin + Unsigned32, + hw5gRadioApEDCABKAIFSN + Unsigned32, + hw5gRadioApEDCABKTXOPLimit + Unsigned32, + hw5gRadioApEDCABKAckPolicy + INTEGER, + hw5gRadioWmmSwitch + INTEGER, + hw5gRadioRtsCtsThreshold + Unsigned32, + hw5gRadioRtsCtsMode + INTEGER, + hw5gRadioPowerAutoAdjustSwitch + INTEGER, + hw5gRadioBeamformingSwitch + INTEGER, + hw5gRadioWifiLight + INTEGER, + hw5gRadioChannelSwitchAnnouncementSwitch + INTEGER, + hw5gRadioChannelSwitchMode + INTEGER, + hw5gRadioAutoOffServiceSwitch + INTEGER, + hw5gRadioAutoOffServiceStartTime + OCTET STRING, + hw5gRadioAutoOffServiceEndTime + OCTET STRING, + hw5gRadioInterferenceDetectSwitch + INTEGER, + hw5gRadioInterferenceIntraFrequencyThreshold + Unsigned32, + hw5gRadioInterferenceAdjacentFrequencyThreshold + Unsigned32, + hw5gRadioInterferenceStationThreshold + Unsigned32, + hw5gRadioRrmProfile + OCTET STRING, + hw5gRadioAirScanProfile + OCTET STRING, + hw5gRadioProfileRowStatus + RowStatus, + hw5gRadioProfileUtmostPowerSwitch + INTEGER, + hw5gRadioProfileRadioType + INTEGER, + hw5gRadioProfileSmartAntennaEnable + INTEGER, + hw5gRadioProfileMuMIMOEnable + INTEGER, + hw5gRadioProfileTxChainNum + Unsigned32, + hw5gRadioProfileRxChainNum + Unsigned32, + hw5gRadioProfileAutoOffTimeRange + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.1 + hw5gRadioProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a 5G radio profile. It is the index of the table." + ::= { hw5gRadioProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.6 + hw5gRadioBeaconInterval OBJECT-TYPE + SYNTAX Unsigned32 (60..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a Beacon interval. The default value is 100. It is expressed in ms." + ::= { hw5gRadioProfileEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.10 + hw5gRadioGuardIntervalMode OBJECT-TYPE + SYNTAX INTEGER + { + short(1), + normal(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the GI mode. The default value is 2." + ::= { hw5gRadioProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.11 + hw5gRadioShortPreamble OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the short preamble is enabled. The default value is 2." + ::= { hw5gRadioProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.12 + hw5gRadioFragmentationThreshold OBJECT-TYPE + SYNTAX Unsigned32 (256..2346) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the packet fragmentation threshold. The default value is 2346. It is expressed in bytes." + ::= { hw5gRadioProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.13 + hw5gRadioHtAmpduSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the aggregation function. The default value is 2." + ::= { hw5gRadioProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.14 + hw5gRadioHtAmpduMaxLengthExponent OBJECT-TYPE + SYNTAX Unsigned32 (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum length of frames converged by an MPDU. The default value is 3 ? 0: 8191 bytes? 1: 16383 bytes? 2: 32767 bytes ? 3: 65535 bytes." + ::= { hw5gRadioProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.15 + hw5gRadioVhtAmpduMaxLengthExponent OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum length of frames converged by an MPDU. The default value is 7 ? 0: 8191 bytes? 1: 16383 bytes? 2: 32767 bytes? 3: 65535 bytes? 4: 131071 bytes? 5: 262143 bytes? 6: 524287 bytes? 7: 1048575 bytes." + ::= { hw5gRadioProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.16 + hw5gRadioVhtAmsduSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the A-MSDU aggregation function. The default value is 1." + ::= { hw5gRadioProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.17 + hw5gRadioVhtAmsduMaxFrameNum OBJECT-TYPE + SYNTAX Unsigned32 (2..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of sub-frames that can be aggregated into an A-MSDU. The default value is 2." + ::= { hw5gRadioProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.18 + hw5gRadioDot11aBasicRate OBJECT-TYPE + SYNTAX Unsigned32 (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the basic rate set of the 802.11bg protocol. The default value is 0x148 (6 Mbit/s/12 Mbit/s/24 Mbit/s) ? bit0: 1 Mbit/s? bit1: 2 Mbit/s? bit2: 5.5 Mbit/s? bit3: 6 Mbit/s? bit4: 9 Mbit/s? bit5: 11 Mbit/s? bit6: 12 Mbit/s? bit7: 18 Mbit/s? bit8: 24 Mbit/s? bit9: 36 Mbit/s? bit10: 48 Mbit/s? bit11: 54 Mbit/s." + ::= { hw5gRadioProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.19 + hw5gRadioDot11aSupportRate OBJECT-TYPE + SYNTAX Unsigned32 (1..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the supported rate set of the 802.11bg protocol. The default value is 0xFD8 (6 Mbit/s/9 Mbit/s/12 Mbit/s/18 Mbit/s/24 Mbit/s/36 Mbit/s/48 Mbit/s/54 Mbit/s).? bit0: 1 Mbit/s? bit1: 2 Mbit/s? bit2: 5.5 Mbit/s? bit3: 6 Mbit/s? bit4: 9 Mbit/s? bit5: 11 Mbit/s? bit6: 12 Mbit/s? bit7: 18 Mbit/s? bit8: 24 Mbit/s? bit9: 36 Mbit/s? bit10: 48 Mbit/s? bit11: 54 Mbit/s." + ::= { hw5gRadioProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.20 + hw5gRadioMulticastRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the multicast rate. The default value is 0x8(6M).? bit0: 1 Mbit/s? bit1: 2 Mbit/s? bit2: 5.5 Mbit/s? bit3: 6 Mbit/s? bit4: 9 Mbit/s? bit5: 11 Mbit/s? bit6: 12 Mbit/s? bit7: 18 Mbit/s? bit8: 24 Mbit/s? bit9: 36 Mbit/s? bit10: 48 Mbit/s? bit11: 54 Mbit/s." + ::= { hw5gRadioProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.21 + hw5gRadioVhtNssMapMaxMcs OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum MCS value for 802.11ac radios. The number of spatial flows is 4 and the maximum MCS value is 7-9. The format is x?x?x?x. The default value is 9?9?9?9." + ::= { hw5gRadioProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.22 + hw5gRadioWmmMandatorySwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the mandatory WMM matching function. The default value is 1." + ::= { hw5gRadioProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.23 + hw5gRadioApEDCAVoiceECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for voice services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 3." + ::= { hw5gRadioProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.24 + hw5gRadioApEDCAVoiceECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for voice services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 2." + ::= { hw5gRadioProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.25 + hw5gRadioApEDCAVoiceAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for voice services on APs. The default value is 1." + ::= { hw5gRadioProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.26 + hw5gRadioApEDCAVoiceTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for voice services on APs. The default value is 47. The unit is 32 us." + ::= { hw5gRadioProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.27 + hw5gRadioApEDCAVoiceAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for voice services on APs. The default value is 1." + ::= { hw5gRadioProfileEntry 27 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.28 + hw5gRadioApEDCAVideoECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for video services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 4." + ::= { hw5gRadioProfileEntry 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.29 + hw5gRadioApEDCAVideoECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for video services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 3." + ::= { hw5gRadioProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.30 + hw5gRadioApEDCAVideoAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for video services on APs. The default value is 1." + ::= { hw5gRadioProfileEntry 30 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.31 + hw5gRadioApEDCAVideoTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for video services on APs. The default value is 94. The unit is 32 us." + ::= { hw5gRadioProfileEntry 31 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.32 + hw5gRadioApEDCAVideoAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for video services on APs. The default value is 1." + ::= { hw5gRadioProfileEntry 32 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.33 + hw5gRadioApEDCABEECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for BE services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 6." + ::= { hw5gRadioProfileEntry 33 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.34 + hw5gRadioApEDCABEECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for BE services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 4." + ::= { hw5gRadioProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.35 + hw5gRadioApEDCABEAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for BE services on APs. The default value is 3." + ::= { hw5gRadioProfileEntry 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.36 + hw5gRadioApEDCABETXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for BE services on APs. The default value is 0. The unit is 32 us." + ::= { hw5gRadioProfileEntry 36 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.37 + hw5gRadioApEDCABEAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for BE services on APs. The default value is 1." + ::= { hw5gRadioProfileEntry 37 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.38 + hw5gRadioApEDCABKECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmax, namely, exponent form of Cwmax, for BK services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 10." + ::= { hw5gRadioProfileEntry 38 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.39 + hw5gRadioApEDCABKECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter ECWmin, namely, exponent form of Cwmin, for BK services on APs. ECWmin and ECWmax determine the average backoff time (ECWmax > ECWmin). The default value is 4." + ::= { hw5gRadioProfileEntry 39 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.40 + hw5gRadioApEDCABKAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AIFSN, namely, arbitration interframe spacing number, for BK services on APs. The default value is 7.." + ::= { hw5gRadioProfileEntry 40 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.41 + hw5gRadioApEDCABKTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter TXOPLimit, namely, transmission opportunity limit, for BK services on APs. The default value is 0. The unit is 32 us." + ::= { hw5gRadioProfileEntry 41 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.42 + hw5gRadioApEDCABKAckPolicy OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + noAck(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA parameter AckPolicy for BK services on APs. The default value is 1." + ::= { hw5gRadioProfileEntry 42 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.43 + hw5gRadioWmmSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the WMM function. The default value is 2." + ::= { hw5gRadioProfileEntry 43 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.44 + hw5gRadioRtsCtsThreshold OBJECT-TYPE + SYNTAX Unsigned32 (64..2347) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the request To Send/Clear To Send (RTS/CTS) threshold. If the length of a frame to be sent by the MAC Layer exceeds this threshold, an RTS frame needs to be sent before this frame. The default value is 2347 bytes." + ::= { hw5gRadioProfileEntry 44 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.45 + hw5gRadioRtsCtsMode OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + ctsToSelf(2) , + rtsCts(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the RTS-CTS mode set for the specified radio profile. The default value is 2." + ::= { hw5gRadioProfileEntry 45 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.46 + hw5gRadioPowerAutoAdjustSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the user-by-user power control function. The default value is 1." + ::= { hw5gRadioProfileEntry 46 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.47 + hw5gRadioBeamformingSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the beamforming function. The default value is 1." + ::= { hw5gRadioProfileEntry 47 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.48 + hw5gRadioWifiLight OBJECT-TYPE + SYNTAX INTEGER + { + signalStrength(1) , + traffic(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates information reflected by the blinking frequency of the Wireless LED on an AP. The default value is 1 NOTE ? If Mesh is enabled on an AP, the Wireless indicator blinking frequency reflects the signal strength of the AP with the weakest signal among received signals from all neighboring APs.? If WDS is enabled on an AP, the the Wireless indicator blinking frequency reflects the signal strength of the connected WDS AP.? For a Leaf AP, the Wireless indicator blinking frequency reflects the signal strength of the connected Middle AP.? For a Middle AP, the Wireless indicator blinking frequency reflects the signal strength of the connected Root AP.? For a root AP, the Wireless indicator blinking frequency reflects the signal strength of the connected Middle AP with the weakest signal.? If WDS or Mesh is not enabled on an AP, the Wireless indicator blinking frequency reflects the service traffic volume on the radio." + ::= { hw5gRadioProfileEntry 48 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.49 + hw5gRadioChannelSwitchAnnouncementSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the channel switchover announcement function. The default value is 2." + ::= { hw5gRadioProfileEntry 49 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.50 + hw5gRadioChannelSwitchMode OBJECT-TYPE + SYNTAX INTEGER + { + continueTransmitting(1) , + stopTransmitting(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the channel switch announcement mode. The default value is 1." + ::= { hw5gRadioProfileEntry 50 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.51 + hw5gRadioAutoOffServiceSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the scheduled radio disabling function. The default value is 1." + ::= { hw5gRadioProfileEntry 51 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.52 + hw5gRadioAutoOffServiceStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the start time for disabling the radio. The value is in the format of hh:mm:ss NOTE ? hh specifies the hour. The value is an integer that ranges from 0 to 23.? mm specifies the minute. The value is an integer that ranges from 0 to 59.? ss specifies the second. The value is an integer that ranges from 0 to 59.." + ::= { hw5gRadioProfileEntry 52 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.53 + hw5gRadioAutoOffServiceEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the end time for disabling of the radio. The value is in the format of hh:mm:ss. NOTE? hh specifies the hour. The value is an integer that ranges from 0 to 23.? mm specifies the minute. The value is an integer that ranges from 0 to 59.? ss specifies the second. The value is an integer that ranges from 0 to 59." + ::= { hw5gRadioProfileEntry 53 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.54 + hw5gRadioInterferenceDetectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the user-by-user power control function. The default value is 1." + ::= { hw5gRadioProfileEntry 54 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.55 + hw5gRadioInterferenceIntraFrequencyThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold for co-channel interference, namely, the percentage of the co-channel interference power against the maximum power. The default value is 50. " + ::= { hw5gRadioProfileEntry 55 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.56 + hw5gRadioInterferenceAdjacentFrequencyThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold for adjacent-channel interference, namely, the percentage of the adjacent-channel interference power against the maximum power. The default value is 50." + ::= { hw5gRadioProfileEntry 56 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.57 + hw5gRadioInterferenceStationThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the alarm threshold for adjacent-channel interference. When the number of the STAs detected exceeds the specified alarm threshold, the AP reports alarms to the AC. The default value is 32." + ::= { hw5gRadioProfileEntry 57 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.58 + hw5gRadioRrmProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound RRM profile." + ::= { hw5gRadioProfileEntry 58 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.59 + hw5gRadioAirScanProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound air scan profile." + ::= { hw5gRadioProfileEntry 59 } + + --1.3.6.1.4.1.2011.6.139.11.1.17.1.60 + hw5gRadioProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used.? ROWSTATUS_UNDEFINED: undefined? ROWSTATUS_ACTIVE: active? ROWSTATUS_NOTINSERVICE: notInService? ROWSTATUS_NOTREADY: notReady? ROWSTATUS_CREATEANDFLOW: createAndGo? ROWSTATUS_CREATEANDWAIT: createAndWait? ROWSTATUS_DESTROY: destroy." + ::= { hw5gRadioProfileEntry 60 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.61 + hw5gRadioProfileUtmostPowerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch for the function of sending packets at maximum power." + ::= { hw5gRadioProfileEntry 61 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.63 + hw5gRadioProfileRadioType OBJECT-TYPE + SYNTAX INTEGER + { + dot11a(2), + dot11n(6), + dot11ac(14) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the type of radio. The default value is 14. " + ::= { hw5gRadioProfileEntry 63 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.64 + hw5gRadioProfileSmartAntennaEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { disable } + ::= { hw5gRadioProfileEntry 64 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.65 + hw5gRadioProfileMuMIMOEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { disable } + ::= { hw5gRadioProfileEntry 65 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.66 + hw5gRadioProfileTxChainNum OBJECT-TYPE + SYNTAX Unsigned32 (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 4 } + ::= { hw5gRadioProfileEntry 66 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.67 + hw5gRadioProfileRxChainNum OBJECT-TYPE + SYNTAX Unsigned32 (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 4 } + ::= { hw5gRadioProfileEntry 67 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.17.1.68 + hw5gRadioProfileAutoOffTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the time range for disabling the radio." + ::= { hw5gRadioProfileEntry 68 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.18 + hwRrmProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwRrmProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure radio resource management parameters, including parameters related to band steering, dynamic load balancing, smart roaming, and UAC." + ::= { hwWlanConfigObjects 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1 + hwRrmProfileEntry OBJECT-TYPE + SYNTAX HwRrmProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwRrmProfileName." + INDEX { hwRrmProfileName } + ::= { hwRrmProfileTable 1 } + + + HwRrmProfileEntry ::= + SEQUENCE { + hwRrmProfileName + OCTET STRING, + hwRrmAutoChannelSelectSwitch + INTEGER, + hwRrmAutoTxPowerSelectSwitch + INTEGER, + hwRrmErrRateThreshold + Unsigned32, + hwRrmAirtimeFairSchduleSwitch + INTEGER, + hwRrmDynamicEdcaSwitch + INTEGER, + hwRrmUacLimitClientSnrSwitch + INTEGER, + hwRrmUacClientSnrThreshold + Unsigned32, + hwRrmUacPolicySwitch + INTEGER, + hwRrmUacPolicyType + INTEGER, + hwRrmUacClientNumAccessThreshold + Unsigned32, + hwRrmUacClientNumRoamThreshold + Unsigned32, + hwRrmUacReachThresholdHideSsidSwitch + INTEGER, + hwRrmBandSteerDenyThreshold + Unsigned32, + hwRrmBandSteerLbClientThreshold + Unsigned32, + hwRrmBandSteerLbGapThreshold + Unsigned32, + hwRrmBandSteerClientBandsExpire + Unsigned32, + hwRrmLoadBalanceSwitch + INTEGER, + hwRrmLoadBalanceClientThreshold + Unsigned32, + hwRrmLoadBalanceGapThreshold + Unsigned32, + hwRrmLoadBalanceDenyThreshold + Unsigned32, + hwRrmSmartRoamCheckType + INTEGER, + hwRrmSmartRoamSwitch + INTEGER, + hwRrmSmartRoamSnrThreshold + Unsigned32, + hwRrmSmartRoamRateThreshold + Unsigned32, + hwRrmSmartRoamSnrHighLevelMargin + Unsigned32, + hwRrmSmartRoamSnrLowLevelMargin + Unsigned32, + hwRrmSmartRoamSnrCheckInterval + Unsigned32, + hwRrmSmartRoamUnableRoamExpireTime + Unsigned32, + hwRrmProfileRowStatus + RowStatus, + hwRrmUacChannelUtiAccessThreshold + Unsigned32, + hwRrmUacChannelUtiRoamThreshold + Unsigned32, + hwRrmSmartRoamQuickKickoffRateThr + Unsigned32, + hwRrmSmartRoamQuickKickoffSnrThr + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.1 + hwRrmProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of the RRM profile. It is the index of the table." + ::= { hwRrmProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.2 + hwRrmAutoChannelSelectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the automatic channel selection function. The default value is 2." + ::= { hwRrmProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.3 + hwRrmAutoTxPowerSelectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the automatic power selection function. The default value is 2." + ::= { hwRrmProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.4 + hwRrmErrRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (20..80) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate the error packet threshold triggering the automatic channel or power selection function. The default value is 50. It is expressed in percentage." + ::= { hwRrmProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.5 + hwRrmAirtimeFairSchduleSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the airtime scheduling function. The default value is 1." + ::= { hwRrmProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.6 + hwRrmDynamicEdcaSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the dynamic EDCA parameter adjustment function. The default value is 1." + ::= { hwRrmProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.7 + hwRrmUacLimitClientSnrSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the rejecting access from terminals with weak signals function. The default value is 1." + ::= { hwRrmProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.8 + hwRrmUacClientSnrThreshold OBJECT-TYPE + SYNTAX Unsigned32 (5..75|255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the SNR threshold for rejecting access from terminals. The default value is 15. It is expressed in dB." + ::= { hwRrmProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.9 + hwRrmUacPolicySwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the UAC policy function. The default value is 1." + ::= { hwRrmProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.10 + hwRrmUacPolicyType OBJECT-TYPE + SYNTAX INTEGER + { + users(1) , + channelUtilization(2), + unknown(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the UAC policy. The default value is 1." + ::= { hwRrmProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.11 + hwRrmUacClientNumAccessThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwRrmProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.12 + hwRrmUacClientNumRoamThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwRrmProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.13 + hwRrmUacReachThresholdHideSsidSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the function of hiding the SSID when the value of UAC reaches the specified threshold. The default value is 1." + ::= { hwRrmProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.14 + hwRrmBandSteerDenyThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of times the band steering function rejects association requests from terminals. The default value is 2." + ::= { hwRrmProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.15 + hwRrmBandSteerLbClientThreshold OBJECT-TYPE + SYNTAX Unsigned32 (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the minimum number of terminals for triggering inter-band load balancing. The default value is 10.." + ::= { hwRrmProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.16 + hwRrmBandSteerLbGapThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwRrmProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.17 + hwRrmBandSteerClientBandsExpire OBJECT-TYPE + SYNTAX Unsigned32 (10..300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the load difference percentage for triggering inter-band load balancing. The default value is 20." + ::= { hwRrmProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.18 + hwRrmLoadBalanceSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the load balancing group function. The default value is 1." + ::= { hwRrmProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.19 + hwRrmLoadBalanceClientThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the percentage of terminals for triggering load balancing. The default value is 10. It is expressed in percentage." + ::= { hwRrmProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.20 + hwRrmLoadBalanceGapThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the load difference threshold for triggering load balancing, which is expressed in the number of terminals. The default value is 10." + ::= { hwRrmProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.21 + hwRrmLoadBalanceDenyThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of times the load balancing function rejects association requests from terminals. The default value is 3." + ::= { hwRrmProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.22 + hwRrmSmartRoamCheckType OBJECT-TYPE + SYNTAX INTEGER + { + checkSnr(1) , + checkRate(2), + checkAll(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether STA active roaming is triggered by rate check or SNR check.The values are as follows:? 1: checkSnr? 2: checkRate? 3: checkAll." + ::= { hwRrmProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.23 + hwRrmSmartRoamSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the smart roaming function. The default value is 1." + ::= { hwRrmProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.24 + hwRrmSmartRoamSnrThreshold OBJECT-TYPE + SYNTAX Unsigned32 (5..75) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the SNR threshold for triggering the smart roaming function. The default value is 20 dB." + ::= { hwRrmProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.25 + hwRrmSmartRoamRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the rate threshold for triggering the smart roaming function. It is expressed in the percentage against the maximum rate supported by the terminal. The default value is 0. It is expressed in percentage." + ::= { hwRrmProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.26 + hwRrmSmartRoamSnrHighLevelMargin OBJECT-TYPE + SYNTAX Unsigned32 (10..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the upper SNR difference threshold for triggering smart roaming. The default value is 15. It is expressed in dB." + ::= { hwRrmProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.27 + hwRrmSmartRoamSnrLowLevelMargin OBJECT-TYPE + SYNTAX Unsigned32 (3..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the lower SNR difference threshold for triggering smart roaming. The default value is 6. It is expressed in dB." + ::= { hwRrmProfileEntry 27 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.28 + hwRrmSmartRoamSnrCheckInterval OBJECT-TYPE + SYNTAX Unsigned32 (3..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the terminal SNR detection interval for smart roaming. The default value is 3. It is expressed in s." + ::= { hwRrmProfileEntry 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.29 + hwRrmSmartRoamUnableRoamExpireTime OBJECT-TYPE + SYNTAX Unsigned32 (30..2880) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the aging time of records that terminals are unable to roam. The default value is 240. It is expressed in minutes." + ::= { hwRrmProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.18.1.30 + hwRrmProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwRrmProfileEntry 30 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.18.1.31 + hwRrmUacChannelUtiAccessThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwRrmProfileEntry 31 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.18.1.32 + hwRrmUacChannelUtiRoamThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwRrmProfileEntry 32 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.18.1.33 + hwRrmSmartRoamQuickKickoffRateThr OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Smart roam quick-kickoff rate threshold" + ::= { hwRrmProfileEntry 33 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.18.1.34 + hwRrmSmartRoamQuickKickoffSnrThr OBJECT-TYPE + SYNTAX Unsigned32 (5..75) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Smart roam quick-kickoff SNR threshold" + ::= { hwRrmProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.19 + hwAirScanProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAirScanProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure air scan intervals, duration, and scan channel sets." + ::= { hwWlanConfigObjects 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1 + hwAirScanProfileEntry OBJECT-TYPE + SYNTAX HwAirScanProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwAirScanProfileName." + INDEX { hwAirScanProfileName } + ::= { hwAirScanProfileTable 1 } + + + HwAirScanProfileEntry ::= + SEQUENCE { + hwAirScanProfileName + OCTET STRING, + hwAirScanPeriod + Unsigned32, + hwAirScanInterval + Unsigned32, + hwAirScanChannelSet + INTEGER, + hwAirScanProfilRowStatus + RowStatus, + hwAirScanVoiceAware + INTEGER, + hwAirScanVideoAware + INTEGER, + hwAirScanSwitch + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.1 + hwAirScanProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an air scan profile. It is the index of the table." + ::= { hwAirScanProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.2 + hwAirScanPeriod OBJECT-TYPE + SYNTAX Unsigned32 (60..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the air scan period. The default value is 60. It is expressed in ms." + ::= { hwAirScanProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.3 + hwAirScanInterval OBJECT-TYPE + SYNTAX Unsigned32 (300..600000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the scan interval. The default value is 600. The unit is 0.1s." + ::= { hwAirScanProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.4 + hwAirScanChannelSet OBJECT-TYPE + SYNTAX INTEGER + { + countryChannel(1), + dcaChannel(2), + workChannel(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the scan channel set. The default value is 1." + ::= { hwAirScanProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.5 + hwAirScanProfilRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used.? ROWSTATUS_UNDEFINED: undefined? ROWSTATUS_ACTIVE: active? ROWSTATUS_NOTINSERVICE: notInService? ROWSTATUS_NOTREADY: notReady? ROWSTATUS_CREATEANDFLOW: createAndGo? ROWSTATUS_CREATEANDWAIT: createAndWait? ROWSTATUS_DESTROY: destroy." + ::= { hwAirScanProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.6 + hwAirScanVoiceAware OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the voice aware set. The default value is enable." + ::= { hwAirScanProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.19.1.7 + hwAirScanVideoAware OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the video aware set. The default value is enable." + ::= { hwAirScanProfileEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.19.1.8 + hwAirScanSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the scan switch status. The default value is enable." + ::= { hwAirScanProfileEntry 8 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20 + hwVapProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwVapProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query VAP profile parameters." + ::= { hwWlanConfigObjects 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1 + hwVapProfileEntry OBJECT-TYPE + SYNTAX HwVapProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwVapProfileName." + INDEX { hwVapProfileName } + ::= { hwVapProfileTable 1 } + + + HwVapProfileEntry ::= + SEQUENCE { + hwVapProfileName + OCTET STRING, + hwVapForwardMode + INTEGER, + hwVapTunnelForwardProtocol + Unsigned32, + hwVapServiceSwitch + INTEGER, + hwVapAutoOffStartTime + OCTET STRING, + hwVapAutoOffEndTime + OCTET STRING, + hwVapTemporaryManagementSwitch + INTEGER, + hwVapServiceVlan + Unsigned32, + hwVapVlanPool + OCTET STRING, + hwVapType + INTEGER, + hwVapStaAccessMode + INTEGER, + hwVapStaAccessModePorfile + OCTET STRING, + hwVapRoamHomeAgent + INTEGER, + hwVapRoamVlanMobilityGroup + Unsigned32, + hwVapRoamLayer3Switch + INTEGER, + hwVapBandSteerSwitch + INTEGER, + hwVapLearnIpv4Address + INTEGER, + hwVapLearnIpv6Address + INTEGER, + hwVapLearnIpv4AddressStrict + INTEGER, + hwVapIpBindCheck + INTEGER, + hwVapArpBindCheck + INTEGER, + hwVapOptinon82InsertSwitch + INTEGER, + hwVapOptinon82InsertRidFormat + INTEGER, + hwVapDhcpTrustPort + INTEGER, + hwVapNdTrustPort + INTEGER, + hwVapSecurityProfile + OCTET STRING, + hwVapTrafficProfile + OCTET STRING, + hwVapSsidProfile + OCTET STRING, + hwVapAuthenticationProfile + OCTET STRING, + hwVapSacProfile + OCTET STRING, + hwVapProfileRowStatus + RowStatus, + hwVapUserProfile + OCTET STRING, + hwVapHotspot2Profile + OCTET STRING, + hwSoftgreProfile + OCTET STRING, + hwVapOptinon82RidUserDefined + OCTET STRING, + hwVapOptinon82RidMacFormat + INTEGER, + hwVapOptinon82InsertCidFormat + INTEGER, + hwVapOptinon82CidUserDefined + OCTET STRING, + hwVapOptinon82CidMacFormat + INTEGER, + hwVapUccProfile + OCTET STRING, + hwVapAntiAttackBroadcastFloodSwitch + INTEGER, + hwVapAntiAttackBroadcastFloodStaRateThreshold + Unsigned32, + hwVapAntiAttackBroadcastFloodBlacklistSwitch + INTEGER, + hwVapLearnIpv6AddressStrict + INTEGER, + hwVapAntiAttackARPFloodSwitch + INTEGER, + hwVapAntiAttackARPFloodStaRateThreshold + Unsigned32, + hwVapAntiAttackARPFloodBlacklistSwitch + INTEGER, + hwVapAntiAttackNDFloodSwitch + INTEGER, + hwVapAntiAttackNDFloodStaRateThreshold + Unsigned32, + hwVapAntiAttackNDFloodBlacklistSwitch + INTEGER, + hwVapAntiAttackIGMPFloodSwitch + INTEGER, + hwVapAntiAttackIGMPFloodStaRateThreshold + Unsigned32, + hwVapAntiAttackIGMPFloodBlacklistSwitch + INTEGER, + hwVapDefenceProfile + OCTET STRING, + hwVapTimeRange + OCTET STRING, + hwVapPermitVlanList + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.1 + hwVapProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a VAP profile. It is the index of the table." + ::= { hwVapProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.2 + hwVapForwardMode OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + directForward(2), + tunnel(3), + softgre(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the service forwarding mode. The default value is 1." + ::= { hwVapProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.3 + hwVapTunnelForwardProtocol OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the format of packets forwarded by tunnel. The default value is 0xF.? bit0: dot1x? bit1: http? bit2: wapi? bit3: mdns." + ::= { hwVapProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.4 + hwVapServiceSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP service function. The default value is 2." + ::= { hwVapProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.5 + hwVapAutoOffStartTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the start time of VAP profile. The format is HH:MM:SS." + ::= { hwVapProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.6 + hwVapAutoOffEndTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..11)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the end time of VAP profile. The format is HH:MM:SS." + ::= { hwVapProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.7 + hwVapTemporaryManagementSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this parameter is set to 2, the VAP automatically becomes the management VAP for offline APs after the AP is disconnected. It can still send signals so that maintenance personnel can access it to identify faults (the security mode is the non-authentication security mode and the SSID will be hidden). The default value is 1." + ::= { hwVapProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.8 + hwVapServiceVlan OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the service VLAN for the VAP. The default value is 1." + ::= { hwVapProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.9 + hwVapVlanPool OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VLAN pool to which the VAP is bound." + ::= { hwVapProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.10 + hwVapType OBJECT-TYPE + SYNTAX INTEGER + { + service(1) , + managementAp(2), + managementAc(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VAP type. The default value is 1." + ::= { hwVapProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.11 + hwVapStaAccessMode OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + blacklist(2), + whitelist(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the access mode. The default value is 1." + ::= { hwVapProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.12 + hwVapStaAccessModePorfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates blacklist and whitelist profiles." + ::= { hwVapProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.13 + hwVapRoamHomeAgent OBJECT-TYPE + SYNTAX INTEGER + { + ap(1), + ac(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the tunnel endpoint for inter-Layer 3 roaming. The default value is 1.." + ::= { hwVapProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.14 + hwVapRoamVlanMobilityGroup OBJECT-TYPE + SYNTAX Unsigned32 (1..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VLAN group for roaming. For the same VLAN, if the VAP is in different VLAN groups for roaming, the roaming is also inter-Layer 3 roaming. The default value is 1.." + ::= { hwVapProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.15 + hwVapRoamLayer3Switch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the Layer 3 roaming function. The default value is 2." + ::= { hwVapProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.16 + hwVapBandSteerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the band steering function. The default value is 2." + ::= { hwVapProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.17 + hwVapLearnIpv4Address OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IPv4 address learning function. The default value is 2." + ::= { hwVapProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.18 + hwVapLearnIpv6Address OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IPv6 address learning function. The default value is 2." + ::= { hwVapProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.19 + hwVapLearnIpv4AddressStrict OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) , + enableBlacklist(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the strict address learning (only through the DHCP) function. The default value is 1." + ::= { hwVapProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.20 + hwVapIpBindCheck OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IP binding relationship check function. The default value is 1." + ::= { hwVapProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.21 + hwVapArpBindCheck OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the ARP binding relationship check function. The default value is 1." + ::= { hwVapProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.22 + hwVapOptinon82InsertSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the function of appending the Option 82 field to DHCP messages. The default value is 1." + ::= { hwVapProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.23 + hwVapOptinon82InsertRidFormat OBJECT-TYPE + SYNTAX INTEGER + { + apMac(1), + apMacSsid(2), + userDefined(3), + apName(4), + apNameSsid(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mode to append the Option 82 field to DHCP messages. The default value is 2." + ::= { hwVapProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.24 + hwVapDhcpTrustPort OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the radio interface DHCP trust function. The default value is 1." + ::= { hwVapProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.25 + hwVapNdTrustPort OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the radio interface ND trust function. The default value is 1." + ::= { hwVapProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.26 + hwVapSecurityProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the security profile that is bound to the VAP. The default value is default." + ::= { hwVapProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.27 + hwVapTrafficProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the traffic profile that is bound to the VAP. The default value is default." + ::= { hwVapProfileEntry 27 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.28 + hwVapSsidProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the SSID profile that is bound to the VAP. The default value is default." + ::= { hwVapProfileEntry 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.29 + hwVapAuthenticationProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the authentication profile that is bound to the VAP. The default value is default." + ::= { hwVapProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.30 + hwVapSacProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the SAC profile that is bound to the VAP." + ::= { hwVapProfileEntry 30 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.31 + hwVapProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used.? ROWSTATUS_UNDEFINED: undefined? ROWSTATUS_ACTIVE: active? ROWSTATUS_NOTINSERVICE: notInService? ROWSTATUS_NOTREADY: notReady? ROWSTATUS_CREATEANDFLOW: createAndGo? ROWSTATUS_CREATEANDWAIT: createAndWait? ROWSTATUS_DESTROY: destroy." + ::= { hwVapProfileEntry 31 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.32 + hwVapUserProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the user profile that is bound to the VAP." + ::= { hwVapProfileEntry 32 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.33 + hwVapHotspot2Profile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the Hotspot2.0 profile that is bound to the VAP." + ::= { hwVapProfileEntry 33 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.34 + hwSoftgreProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the Softgre profile that is bound to the VAP." + ::= { hwVapProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.35 + hwVapOptinon82RidUserDefined OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVapProfileEntry 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.36 + hwVapOptinon82RidMacFormat OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + normal(1) , + compact(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVapProfileEntry 36 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.37 + hwVapOptinon82InsertCidFormat OBJECT-TYPE + SYNTAX INTEGER + { + apMac(1), + apMacSsid(2), + userDefined(3), + apName(4), + apNameSsid(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVapProfileEntry 37 } + + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.38 + hwVapOptinon82CidUserDefined OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVapProfileEntry 38 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.39 + hwVapOptinon82CidMacFormat OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + normal(1) , + compact(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVapProfileEntry 39 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.40 + hwVapUccProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the UCC profile that is bound to the VAP." + ::= { hwVapProfileEntry 40 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.41 + hwVapAntiAttackBroadcastFloodSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack braoadcast flood function. The default value is 2." + ::= { hwVapProfileEntry 41 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.42 + hwVapAntiAttackBroadcastFloodStaRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (5..5000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the anti-attack braoadcast flood sta-rate-threshold for the VAP. The default value is 10." + ::= { hwVapProfileEntry 42 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.43 + hwVapAntiAttackBroadcastFloodBlacklistSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack braoadcast flood blacklist function. The default value is 1." + ::= { hwVapProfileEntry 43 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.44 + hwVapLearnIpv6AddressStrict OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2), + enableBlacklist(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the strict address learning (only through the DHCPv6) function. The default value is 1." + ::= { hwVapProfileEntry 44 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.45 + hwVapAntiAttackARPFloodSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack ARP flood function. The default value is 2." + ::= { hwVapProfileEntry 45 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.46 + hwVapAntiAttackARPFloodStaRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the anti-attack ARP flood sta-rate-threshold for the VAP. The default value is 5." + ::= { hwVapProfileEntry 46 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.47 + hwVapAntiAttackARPFloodBlacklistSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack ARP flood blacklist function. The default value is 1." + ::= { hwVapProfileEntry 47 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.48 + hwVapAntiAttackNDFloodSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack ND flood function. The default value is 2." + ::= { hwVapProfileEntry 48 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.49 + hwVapAntiAttackNDFloodStaRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the anti-attack ND flood sta-rate-threshold for the VAP. The default value is 16." + ::= { hwVapProfileEntry 49 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.50 + hwVapAntiAttackNDFloodBlacklistSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack ND flood blacklist function. The default value is 1." + ::= { hwVapProfileEntry 50 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.51 + hwVapAntiAttackIGMPFloodSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack IGMP flood function. The default value is 2." + ::= { hwVapProfileEntry 51 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.52 + hwVapAntiAttackIGMPFloodStaRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..500) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the anti-attack IGMP flood sta-rate-threshold for the VAP. The default value is 4." + ::= { hwVapProfileEntry 52 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.20.1.53 + hwVapAntiAttackIGMPFloodBlacklistSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack IGMP flood blacklist function. The default value is 1." + ::= { hwVapProfileEntry 53 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.54 + hwVapDefenceProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the Defence profile that is bound to the VAP. " + ::= { hwVapProfileEntry 54 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.55 + hwVapTimeRange OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the TimeRange ." + ::= { hwVapProfileEntry 55 } + + --1.3.6.1.4.1.2011.6.139.11.1.20.1.56 + hwVapPermitVlanList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the PermitVlanList. The default value is 0." + ::= { hwVapProfileEntry 56 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.21 + hwSsidProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSsidProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query SSID profile parameters." + ::= { hwWlanConfigObjects 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1 + hwSsidProfileEntry OBJECT-TYPE + SYNTAX HwSsidProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwSsidProfileName." + INDEX { hwSsidProfileName } + ::= { hwSsidProfileTable 1 } + + + HwSsidProfileEntry ::= + SEQUENCE { + hwSsidProfileName + OCTET STRING, + hwSsidText + OCTET STRING, + hwSsidHide + INTEGER, + hwSsidAssocTimeout + Unsigned32, + hwSsidMaxStaNum + Unsigned32, + hwSsidLegacyStaSwitch + INTEGER, + hwSsidDtimInterval + Unsigned32, + hwSsidClientEdcaVoiceECWmax + Unsigned32, + hwSsidClientEdcaVoiceECWmin + Unsigned32, + hwSsidClientEdcaVoiceAIFSN + Unsigned32, + hwSsidClientEdcaVoiceTXOPLimit + Unsigned32, + hwSsidClientEdcaVideoECWmax + Unsigned32, + hwSsidClientEdcaVideoECWmin + Unsigned32, + hwSsidClientEdcaVideoAIFSN + Unsigned32, + hwSsidClientEdcaVideoTXOPLimit + Unsigned32, + hwSsidClientEdcaBeECWmax + Unsigned32, + hwSsidClientEdcaBeECWmin + Unsigned32, + hwSsidClientEdcaBeAIFSN + Unsigned32, + hwSsidClientEdcaBeTXOPLimit + Unsigned32, + hwSsidClientEdcaBkECWmax + Unsigned32, + hwSsidClientEdcaBkECWmin + Unsigned32, + hwSsidClientEdcaBkAIFSN + Unsigned32, + hwSsidClientEdcaBkTXOPLimit + Unsigned32, + hwSsidInboundCarCir + Unsigned32, + hwSsidInboundCarPir + Unsigned32, + hwSsidInboundCarCbs + Unsigned32, + hwSsidInboundCarPbs + Unsigned32, + hwSsidOutboundCarCir + Unsigned32, + hwSsidOutboundCarPir + Unsigned32, + hwSsidOutboundCarCbs + Unsigned32, + hwSsidOutboundCarPbs + Unsigned32, + hwSsidProfileRowStatus + RowStatus, + hwSsidHideWhileReachMaxSta + INTEGER, + hwSsidBeacon2gRate + INTEGER, + hwSsidBeacon5gRate + INTEGER, + hwSsidDenyBroadcastProbe + INTEGER, + hwSsidProbeResponseRetry + Unsigned32, + hwSsidUapsd + INTEGER, + hwSsidActiveDullClient + INTEGER, + hwSsidMuMIMOSwitch + INTEGER, + hwSsidProfile80211rEnable + INTEGER, + hwSsidProfile80211rMode + INTEGER, + hwSsidProfile80211rReassociateTimeout + Integer32 + } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.1 + hwSsidProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a VAP profile. It is the index of the table." + ::= { hwSsidProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.2 + hwSsidText OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the SSID character string. The default value is huawei-default." + ::= { hwSsidProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.3 + hwSsidHide OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable SSID hiding. The default value is 1." + ::= { hwSsidProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.4 + hwSsidAssocTimeout OBJECT-TYPE + SYNTAX Unsigned32 (1..30) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the association timeout period of a user. The default value is 5 minutes." + ::= { hwSsidProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.5 + hwSsidMaxStaNum OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the number of access users on a VAP. The default value is 64." + ::= { hwSsidProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.6 + hwSsidLegacyStaSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) , + onlyDot11bDisable(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to allow access from legacy terminals. The default value is 2." + ::= { hwSsidProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.7 + hwSsidDtimInterval OBJECT-TYPE + SYNTAX Unsigned32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the DTIM interval. The default value is 3." + ::= { hwSsidProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.8 + hwSsidClientEdcaVoiceECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmax value, which determines the average avoidance time. The value of this object is the ECWmax value of the AC_VO queue on the station. The default value is 3." + ::= { hwSsidProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.9 + hwSsidClientEdcaVoiceECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmin value, which determines the average avoidance time. The value of this object is the ECWmin value of the AC_VO queue on the station. The default value is 2." + ::= { hwSsidProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.10 + hwSsidClientEdcaVoiceAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN value, which determines the idle waiting time. The value of this object is the AIFSN value of the AC_VO queue on the station. The default value is 2." + ::= { hwSsidProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.11 + hwSsidClientEdcaVoiceTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the TXOPLimit value, which determines the time for occupying the channel. The value of this object is the TXOPLimit value of the AC_VO queue on the station. The default value is 47." + ::= { hwSsidProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.12 + hwSsidClientEdcaVideoECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmax value, which determines the average avoidance time. The value of this object is the ECWmax value of the AC_VI queue on the station. The default value is 4." + ::= { hwSsidProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.13 + hwSsidClientEdcaVideoECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmin value, which determines the average avoidance time. The value of this object is the ECWmin value of the AC_VI queue on the station. The default value is 3." + ::= { hwSsidProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.14 + hwSsidClientEdcaVideoAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN value, which determines the idle waiting time. The value of this object is the AIFSN value of the AC_VI queue on the station. The default value is 2." + ::= { hwSsidProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.15 + hwSsidClientEdcaVideoTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the TXOPLimit value, which determines the time for occupying the channel. The value of this object is the TXOPLimit value of the AC_VI queue on the station. The default value is 94." + ::= { hwSsidProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.16 + hwSsidClientEdcaBeECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmax value, which determines the average avoidance time. The value of this object is the ECWmax value of the AC_BE queue on the station. The default value is 10." + ::= { hwSsidProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.17 + hwSsidClientEdcaBeECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmin value, which determines the average avoidance time. The value of this object is the ECWmin value of the AC_BE queue on the station. The default value is 4." + ::= { hwSsidProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.18 + hwSsidClientEdcaBeAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN value, which determines the idle waiting time. The value of this object is the AIFSN value of the AC_BE queue on the station. The default value is 3." + ::= { hwSsidProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.19 + hwSsidClientEdcaBeTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the TXOPLimit value, which determines the time for occupying the channel. The value of this object is the TXOPLimit value of the AC_BE queue on the station. The default value is 0." + ::= { hwSsidProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.20 + hwSsidClientEdcaBkECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmax value, which determines the average avoidance time. The value of this object is the ECWmax value of the AC_BK queue on the station. The default value is 10." + ::= { hwSsidProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.21 + hwSsidClientEdcaBkECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ECWmin value, which determines the average avoidance time. The value of this object is the ECWmin value of the AC_BK queue on the station. The default value is 4." + ::= { hwSsidProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.22 + hwSsidClientEdcaBkAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN value, which determines the idle waiting time. The value of this object is the AIFSN value of the AC_BK queue on the station. The default value is 7." + ::= { hwSsidProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.23 + hwSsidClientEdcaBkTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the TXOPLimit value, which determines the time for occupying the channel. The value of this object is the TXOPLimit value of the AC_BK queue on the station. The default value is 0." + ::= { hwSsidProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.24 + hwSsidInboundCarCir OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the inbound committed information rate (CIR) of the SSID. The default value is 0 kbit/s. Invalid value is 1 to 63." + ::= { hwSsidProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.25 + hwSsidInboundCarPir OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the inbound peak information rate (PIR) of the SSID. The default value is 0 kbit/s. Invalid value is 1 to 63." + ::= { hwSsidProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.26 + hwSsidInboundCarCbs OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the inbound committed burst size (CBS) of the SSID. The default value is 0 bytes. Invalid value is 1 to 1499." + ::= { hwSsidProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.27 + hwSsidInboundCarPbs OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the inbound peak burst size (PBS) of the SSID. The default value is 0 bytes. Invalid value is 1 to 1499." + ::= { hwSsidProfileEntry 27 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.28 + hwSsidOutboundCarCir OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the outbound committed information rate (CIR) of the SSID. The default value is 0 kbit/s. Invalid value is 1 to 63." + ::= { hwSsidProfileEntry 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.29 + hwSsidOutboundCarPir OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the outbound peak information rate (PIR) of the SSID. The default value is 0 kbit/s. Invalid value is 1 to 63." + ::= { hwSsidProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.30 + hwSsidOutboundCarCbs OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the outbound committed burst size (CBS) of the SSID. The default value is 0 bytes. Invalid value is 1 to 1499." + ::= { hwSsidProfileEntry 30 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.31 + hwSsidOutboundCarPbs OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the outbound peak burst size (PBS) of the SSID. The default value is 0 bytes. Invalid value is 1 to 1499." + ::= { hwSsidProfileEntry 31 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.32 + hwSsidProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 32 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.33 + hwSsidHideWhileReachMaxSta OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 33 } + + + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.34 + hwSsidBeacon2gRate OBJECT-TYPE + SYNTAX INTEGER + { + one(1), + two(2), + five(5), + six(6), + nine(9), + eleven(11), + twelve(12), + eighteen(18), + twentyfour(24), + thirtysix(36), + fortyeight (48), + fiftyfour(54) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.35 + hwSsidBeacon5gRate OBJECT-TYPE + SYNTAX INTEGER + { + six(6), + nine(9), + twelve(12), + eighteen(18), + twentyfour(24), + thirtysix(36), + fortyeight (48), + fiftyfour(54) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.36 + hwSsidDenyBroadcastProbe OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 36 } + + --1.3.6.1.4.1.2011.6.139.11.1.21.1.37 + hwSsidProbeResponseRetry OBJECT-TYPE + SYNTAX Unsigned32 (0..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 37 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.38 + hwSsidUapsd OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 38 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.39 + hwSsidActiveDullClient OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 39 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.40 + hwSsidMuMIMOSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSsidProfileEntry 40 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.41 + hwSsidProfile80211rEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of 802.11r." + ::= { hwSsidProfileEntry 41 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.42 + hwSsidProfile80211rMode OBJECT-TYPE + SYNTAX INTEGER + { + unknown(0), + overtheair (1), + overtheds(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mode of 802.11r." + ::= { hwSsidProfileEntry 42 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.21.1.43 + hwSsidProfile80211rReassociateTimeout OBJECT-TYPE + SYNTAX Integer32 (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the reassociate timeout of 802.11r." + ::= { hwSsidProfileEntry 43 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.22 + hwSecurityProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSecurityProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to describe the information of a security profile." + ::= { hwWlanConfigObjects 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1 + hwSecurityProfileEntry OBJECT-TYPE + SYNTAX HwSecurityProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwSecurityProfileName." + INDEX { hwSecurityProfileName } + ::= { hwSecurityProfileTable 1 } + + + HwSecurityProfileEntry ::= + SEQUENCE { + hwSecurityProfileName + OCTET STRING, + hwSecurityPolicy + INTEGER, + hwSecurityWepEncrypt + Unsigned32, + hwSecurityWepPskMode + Unsigned32, + hwSecurityWepPsk1 + OCTET STRING, + hwSecurityWepPsk2 + OCTET STRING, + hwSecurityWepPsk3 + OCTET STRING, + hwSecurityWepPsk4 + OCTET STRING, + hwSecurityWepDefaultKeyId + Unsigned32, + hwSecurityWpaEncrypt + INTEGER, + hwSecurityWpaPskMode + INTEGER, + hwSecurityWpaPsk + OCTET STRING, + hwSecurityWpaPtkUpdateSwitch + INTEGER, + hwSecurityWpaPtkUpdateInterval + Unsigned32, + hwSecurityWapiPskMode + INTEGER, + hwSecurityWapiPsk + OCTET STRING, + hwSecurityWapiAsuIpAddress + IpAddress, + hwSecurityWapiIssuerCertFileName + OCTET STRING, + hwSecurityWapiAsuCertFileName + OCTET STRING, + hwSecurityWapiAcCertFileName + OCTET STRING, + hwSecurityWapiAcPrvKeyFileName + OCTET STRING, + hwSecurityWapiIssuerPfxPassword + OCTET STRING, + hwSecurityWapiAsuPfxPassword + OCTET STRING, + hwSecurityWapiAcPfxPassword + OCTET STRING, + hwSecurityWapiAcPrvKeyPassword + OCTET STRING, + hwSecurityWapiCertRetransCount + Unsigned32, + hwSecurityWapiBkThreshold + Unsigned32, + hwSecurityWapiBkLifetime + Unsigned32, + hwSecurityWapiUskUpdateMethod + INTEGER, + hwSecurityWapiMskUpdateMethod + INTEGER, + hwSecurityWapiUskUpdateInterval + Unsigned32, + hwSecurityWapiUskUpdatePackets + Unsigned32, + hwSecurityWapiUskRetansCount + Unsigned32, + hwSecurityWapiMskUpdateInterval + Unsigned32, + hwSecurityWapiMskUpdatePackets + Unsigned32, + hwSecurityWapiMskRetansCount + Unsigned32, + hwSecurityWapiSATimeout + Unsigned32, + hwSecurityPMF + Unsigned32, + hwSecurityProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.1 + hwSecurityProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a security profile. It is the index of the table." + ::= { hwSecurityProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.2 + hwSecurityPolicy OBJECT-TYPE + SYNTAX INTEGER + { + wapiCert(1), + wapiPsk(2), + wpaDot1x(3), + wpaPsk(4), + wpa2Dot1x(5), + wpa2Psk(6), + wepShareKey(7), + open(8), + wpaWpa2Psk(9), + wpaWpa2Dot1x(10), + wepNoauth(11) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the air interface authentication policy. The default value is 8(open)." + ::= { hwSecurityProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.3 + hwSecurityWepEncrypt OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WEP encryption algorithm. The default value is 4369." + ::= { hwSecurityProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.4 + hwSecurityWepPskMode OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the WEP PSK mode is PassPhase or Hex. The default value is 4369." + ::= { hwSecurityProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.5 + hwSecurityWepPsk1 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WEP PSK1." + ::= { hwSecurityProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.6 + hwSecurityWepPsk2 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WEP PSK2." + ::= { hwSecurityProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.7 + hwSecurityWepPsk3 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WEP PSK3." + ::= { hwSecurityProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.8 + hwSecurityWepPsk4 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WEP PSK4." + ::= { hwSecurityProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.9 + hwSecurityWepDefaultKeyId OBJECT-TYPE + SYNTAX Unsigned32 (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the default key ID for WEP. The default value is 1." + ::= { hwSecurityProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.10 + hwSecurityWpaEncrypt OBJECT-TYPE + SYNTAX INTEGER + { + unknown(0), + wpaAes(1), + wpaTkip(2), + wpaAesTkip(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WPA/WPA2 encryption algorithm." + ::= { hwSecurityProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.11 + hwSecurityWpaPskMode OBJECT-TYPE + SYNTAX INTEGER + { + pskPassphase(1), + pskHex(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the WPA PSK mode is PassPhase or Hex." + ::= { hwSecurityProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.12 + hwSecurityWpaPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0|6|8..108)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WPA/WPA2 PSK." + ::= { hwSecurityProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.13 + hwSecurityWpaPtkUpdateSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of WPA PTK update function. The default value is 1." + ::= { hwSecurityProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.14 + hwSecurityWpaPtkUpdateInterval OBJECT-TYPE + SYNTAX Unsigned32 (30..86400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WPA PTK update interval. The default value is 43200 seconds." + ::= { hwSecurityProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.15 + hwSecurityWapiPskMode OBJECT-TYPE + SYNTAX INTEGER + { + pskPassphase(1), + pskHex(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI PSK mode. The default value is 1. 1:pskPassphase 2:pskHex." + ::= { hwSecurityProfileEntry 15 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.22.1.16 + hwSecurityWapiPsk OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0|6|8..108)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI PSK." + ::= { hwSecurityProfileEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.22.1.17 + hwSecurityWapiAsuIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the WAPI ASU." + ::= { hwSecurityProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.18 + hwSecurityWapiIssuerCertFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the certificate file name of the WAPI issuer." + ::= { hwSecurityProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.19 + hwSecurityWapiAsuCertFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate the certificate file name of the WAPI ASU." + ::= { hwSecurityProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.20 + hwSecurityWapiAcCertFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate the certificate file name of the WAPI AC." + ::= { hwSecurityProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.21 + hwSecurityWapiAcPrvKeyFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the private key file name of the WAPI AC." + ::= { hwSecurityProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.22 + hwSecurityWapiIssuerPfxPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI issuer certificate key." + ::= { hwSecurityProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.23 + hwSecurityWapiAsuPfxPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI ASU certificate key." + ::= { hwSecurityProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.24 + hwSecurityWapiAcPfxPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI AC certificate key." + ::= { hwSecurityProfileEntry 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.25 + hwSecurityWapiAcPrvKeyPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the key for reading the AC private key file." + ::= { hwSecurityProfileEntry 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.26 + hwSecurityWapiCertRetransCount OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the number of retransmissions of WAPI certificate authentication packets. The default value is 3." + ::= { hwSecurityProfileEntry 26 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.27 + hwSecurityWapiBkThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI BK lifetime percentage. The default value is 70." + ::= { hwSecurityProfileEntry 27 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.22.1.28 + hwSecurityWapiBkLifetime OBJECT-TYPE + SYNTAX Unsigned32 (600..604800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval for updating the WAPI BK. The default value is 43200 seconds." + ::= { hwSecurityProfileEntry 28 } + + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.29 + hwSecurityWapiUskUpdateMethod OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1) , + timeBased(2) , + packetBased(3) , + timepacketBased(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI USK update mode. The default value is 2." + ::= { hwSecurityProfileEntry 29 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.30 + hwSecurityWapiMskUpdateMethod OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1) , + timeBased(2) , + packetBased(3) , + timepacketBased(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WAPI MSK update mode. The default value is 2." + ::= { hwSecurityProfileEntry 30 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.31 + hwSecurityWapiUskUpdateInterval OBJECT-TYPE + SYNTAX Unsigned32 (600..604800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the time-based interval for updating the WAPI USK. The default value is 86400 seconds." + ::= { hwSecurityProfileEntry 31 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.32 + hwSecurityWapiUskUpdatePackets OBJECT-TYPE + SYNTAX Unsigned32 (1..4200000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the number of packets that will trigger WAPI USK update. The default value is 10." + ::= { hwSecurityProfileEntry 32 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.33 + hwSecurityWapiUskRetansCount OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of retransmissions of a WAPI USK negotiation packet. The default value is 3." + ::= { hwSecurityProfileEntry 33 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.34 + hwSecurityWapiMskUpdateInterval OBJECT-TYPE + SYNTAX Unsigned32 (600..604800) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the time-based interval for updating the WAPI MSK. The default value is 86400 seconds." + ::= { hwSecurityProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.35 + hwSecurityWapiMskUpdatePackets OBJECT-TYPE + SYNTAX Unsigned32 (1..4200000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the number of packets that will trigger WAPI MSK update. The default value is 10." + ::= { hwSecurityProfileEntry 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.36 + hwSecurityWapiMskRetansCount OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of retransmissions of a WAPI MSK negotiation packet. The default value is 3." + ::= { hwSecurityProfileEntry 36 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.37 + hwSecurityWapiSATimeout OBJECT-TYPE + SYNTAX Unsigned32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the timeout period of a WAPI-based security association (SA). The default value is 60 seconds." + ::= { hwSecurityProfileEntry 37 } + + --1.3.6.1.4.1.2011.6.139.11.1.22.1.38 + hwSecurityPMF OBJECT-TYPE + SYNTAX Unsigned32 (1..3) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the PMF function. The default value is 1." + ::= { hwSecurityProfileEntry 38 } + hwSecurityProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwSecurityProfileEntry 39 } + + --1.3.6.1.4.1.2011.6.139.11.1.23 + hwAPTrafficProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPTrafficProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query traffic profile parameters." + ::= { hwWlanConfigObjects 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1 + hwAPTrafficProfileEntry OBJECT-TYPE + SYNTAX HwAPTrafficProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwAPTrafficProfileName." + INDEX { hwAPTrafficProfileName } + ::= { hwAPTrafficProfileTable 1 } + + + HwAPTrafficProfileEntry ::= + SEQUENCE { + hwAPTrafficProfileName + OCTET STRING, + hwAPTrafficProfilePriorityMapDnTrustMode + INTEGER, + hwAPTrafficProfilePriorityDscpDnMap80211e + OCTET STRING, + hwAPTrafficProfilePriority80211eUpMapDscp + OCTET STRING, + hwAPTrafficProfileUserIsolate + INTEGER, + hwAPTrafficProfileRateLimitClientUp + Unsigned32, + hwAPTrafficProfileRateLimitClientDn + Unsigned32, + hwAPTrafficProfileRateLimitVapUp + Unsigned32, + hwAPTrafficProfileRateLimitVapDn + Unsigned32, + hwAPTrafficProfileMldSnooping + INTEGER, + hwAPTrafficProfileIGMPSnooping + INTEGER, + hwAPTrafficProfileIGMPSnoopingReportSuppress + INTEGER, + hwAPTrafficProfileMcToUc + INTEGER, + hwAPTrafficProfileOptimizeSuppressionBc + Unsigned32, + hwAPTrafficProfileOptimizeSuppressionUc + Unsigned32, + hwAPTrafficProfileOptimizeSuppressionMc + Unsigned32, + hwAPTrafficProfileOptimizeTCPAdjustMSS + Unsigned32, + hwAPTrafficProfileOptimizeProxyARP + INTEGER, + hwAPTrafficProfileOptimizeProxyND + INTEGER, + hwAPTrafficProfileOptimizeUcSendARP + INTEGER, + hwAPTrafficProfileOptimizeUcSendND + INTEGER, + hwAPTrafficProfileOptimizeUcSendDHCP + INTEGER, + hwAPTrafficProfileOptimizeBcMcDenyAll + INTEGER, + hwAPTrafficProfileOptimizeStaBridgeForward + INTEGER, + hwAPTrafficProfileRowStatus + RowStatus, + hwAPTrafficProfilePriorityMapUpTrustMode + INTEGER, + hwAPTrafficProfilePriorityDscpUpMapDscp + OCTET STRING, + hwAPTrafficProfileOptimizeBcMcMismatchAct + INTEGER, + hwAPTrafficProfileMcToUcDynamicAdatptive + INTEGER, + hwAPTrafficProfileIGMPSnoopingMaxBandwidth + Unsigned32, + hwAPTrafficProfileIGMPSnoopingMaxUser + Unsigned32, + hwAPTrafficProfilePriorityDscpUpMap8021p + OCTET STRING, + hwAPTrafficProfilePriority80211eUpMap8021p + OCTET STRING, + hwAPTrafficProfilePriority8021pDnMap80211e + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.1 + hwAPTrafficProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a traffic profile." + ::= { hwAPTrafficProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.2 + hwAPTrafficProfilePriorityMapDnTrustMode OBJECT-TYPE + SYNTAX INTEGER + { + trustDSCP(1), + trust8021P(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the downstream service priority mapping mode. The default value is 1." + ::= { hwAPTrafficProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.3 + hwAPTrafficProfilePriorityDscpDnMap80211e OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mapping relationship between 802.1p priorities of 802.3 packets and user priorities of 802.11 packets when data packets are sent to a downstream AP. DSCP values range from 0 to 63 and 802.11e priorities range from 0 to 7. Two mapped data are separated by a comma." + ::= { hwAPTrafficProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.4 + hwAPTrafficProfilePriority80211eUpMapDscp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the tunnel priority mappings when data packets are sent from APs to an AC. DSCP values range from 0 to 63 and 802.11e priorities range from 0 to 7. Two mapped data are separated by a comma." + ::= { hwAPTrafficProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.5 + hwAPTrafficProfileUserIsolate OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + l3Isolate(2), + l2Isolate(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the user isolation mode. The default value is 1." + ::= { hwAPTrafficProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.6 + hwAPTrafficProfileRateLimitClientUp OBJECT-TYPE + SYNTAX Unsigned32 (64..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the STA's uplink rate limit. The default value is 0xFFFFFFFF. It is expressed in kbit/s." + ::= { hwAPTrafficProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.7 + hwAPTrafficProfileRateLimitClientDn OBJECT-TYPE + SYNTAX Unsigned32 (64..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the STA's downlink rate limit. The default value is 0xFFFFFFFF. It is expressed in kbit/s." + ::= { hwAPTrafficProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.8 + hwAPTrafficProfileRateLimitVapUp OBJECT-TYPE + SYNTAX Unsigned32 (64..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VAP's uplink rate limit. The default value is 0xFFFFFFFF. It is expressed in kbit/s." + ::= { hwAPTrafficProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.9 + hwAPTrafficProfileRateLimitVapDn OBJECT-TYPE + SYNTAX Unsigned32 (64..4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VAP's downlink rate limit. The default value is 0xFFFFFFFF. It is expressed in kbit/s." + ::= { hwAPTrafficProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.10 + hwAPTrafficProfileMldSnooping OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the MLD snooping function. The default value is 1." + ::= { hwAPTrafficProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.11 + hwAPTrafficProfileIGMPSnooping OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IGMP snooping function. The default value is 1." + ::= { hwAPTrafficProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.12 + hwAPTrafficProfileIGMPSnoopingReportSuppress OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IGMP snooping report suppression function. The default value is 1." + ::= { hwAPTrafficProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.13 + hwAPTrafficProfileMcToUc OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the function of converting multicast to unicast. The default value is 1." + ::= { hwAPTrafficProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.14 + hwAPTrafficProfileOptimizeSuppressionBc OBJECT-TYPE + SYNTAX Unsigned32 (0..14881000|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the information about broadcast storm suppression. The unit is pps. The default value is 0xFFFFFFFF, indicating that the broadcast storm suppression is not enabled." + ::= { hwAPTrafficProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.15 + hwAPTrafficProfileOptimizeSuppressionUc OBJECT-TYPE + SYNTAX Unsigned32 (0..14881000|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the information about unknown unicast storm suppression. The unit is pps. The default value is 0xFFFFFFFF, indicating that the broadcast storm suppression is not enabled." + ::= { hwAPTrafficProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.16 + hwAPTrafficProfileOptimizeSuppressionMc OBJECT-TYPE + SYNTAX Unsigned32 (0..14881000|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the information about multicast storm suppression. The unit is pps. The default value is 0xFFFFFFFF, indicating that the broadcast storm suppression is not enabled." + ::= { hwAPTrafficProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.17 + hwAPTrafficProfileOptimizeTCPAdjustMSS OBJECT-TYPE + SYNTAX Unsigned32 (128..2048|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the information about the automatic MSS adjustment. The default value is 0xFFFFFFFF, indicating that this function is not enabled." + ::= { hwAPTrafficProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.18 + hwAPTrafficProfileOptimizeProxyARP OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the ARP proxy function. The default value is 1." + ::= { hwAPTrafficProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.19 + hwAPTrafficProfileOptimizeProxyND OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the ND proxy function. The default value is 1." + ::= { hwAPTrafficProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.20 + hwAPTrafficProfileOptimizeUcSendARP OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the unicast ARP function. The default value is 2." + ::= { hwAPTrafficProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.21 + hwAPTrafficProfileOptimizeUcSendND OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the unicast ND function. The default value is 2." + ::= { hwAPTrafficProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.22 + hwAPTrafficProfileOptimizeUcSendDHCP OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the unicast DHCP function. The default value is 1." + ::= { hwAPTrafficProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.23 + hwAPTrafficProfileOptimizeBcMcDenyAll OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "After this function is enabled, other multicast packets, except for proxy response packets and multicast packets converted to unicast packets, are discarded. The default value is 1." + ::= { hwAPTrafficProfileEntry 23 } + + --1.3.6.1.4.1.2011.6.139.11.1.23.1.24 + hwAPTrafficProfileOptimizeStaBridgeForward OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the STA bridge forwarding function. The default value is 2." + ::= { hwAPTrafficProfileEntry 24 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.25 + hwAPTrafficProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwAPTrafficProfileEntry 25 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.26 + hwAPTrafficProfilePriorityMapUpTrustMode OBJECT-TYPE + SYNTAX INTEGER + { + trust80211e(1), + trustdscp(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the tunnel priority mapping mode." + ::= { hwAPTrafficProfileEntry 26 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.27 + hwAPTrafficProfilePriorityDscpUpMapDscp OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mapping relationship between DSCP and DSCP. DSCP values range from 0 to 63. Two mapped data are separated by a comma." + ::= { hwAPTrafficProfileEntry 27 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.28 + hwAPTrafficProfileOptimizeBcMcMismatchAct OBJECT-TYPE + SYNTAX INTEGER + { + traverse(1), + drop(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the bcmc unicast send mismacth action function. The default value is 1." + ::= { hwAPTrafficProfileEntry 28 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.29 + hwAPTrafficProfileMcToUcDynamicAdatptive OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the multicast to unicast dynamic adaptive function. The default value is 2." + ::= { hwAPTrafficProfileEntry 29 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.30 + hwAPTrafficProfileIGMPSnoopingMaxBandwidth OBJECT-TYPE + SYNTAX Unsigned32 (0..10000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IGMP snooping max bandwidth function. The invalid value is 0." + ::= { hwAPTrafficProfileEntry 30 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.31 + hwAPTrafficProfileIGMPSnoopingMaxUser OBJECT-TYPE + SYNTAX Unsigned32 (0..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the IGMP snooping max user function. The invalid value is 0." + ::= { hwAPTrafficProfileEntry 31 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.32 + hwAPTrafficProfilePriorityDscpUpMap8021p OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mapping relationship between DSCP and 802.1p. DSCP values range from 0 to 63. Two mapped data are separated by a comma." + ::= { hwAPTrafficProfileEntry 32 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.33 + hwAPTrafficProfilePriority80211eUpMap8021p OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mapping relationship between 802.11e and 802.1p. 802.11e values range from 0 to 7. Two mapped data are separated by a comma." + ::= { hwAPTrafficProfileEntry 33 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.23.1.34 + hwAPTrafficProfilePriority8021pDnMap80211e OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mapping relationship between 802.11e and 802.1p. 802.11e values range from 0 to 7. Two mapped data are separated by a comma." + ::= { hwAPTrafficProfileEntry 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.24 + hwAPTrafficProfileFilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPTrafficProfileFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure QoS filter information." + ::= { hwWlanConfigObjects 24 } + + --1.3.6.1.4.1.2011.6.139.11.1.24.1 + hwAPTrafficProfileFilterEntry OBJECT-TYPE + SYNTAX HwAPTrafficProfileFilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwAPTrafficProfileName, hwAPTrafficProfileFilterType, and hwAPTrafficProfileFilterDirection." + INDEX { hwAPTrafficProfileName, hwAPTrafficProfileFilterType,hwAPTrafficProfileFilterDirection } + ::= { hwAPTrafficProfileFilterTable 1 } + + + HwAPTrafficProfileFilterEntry ::= + SEQUENCE { + hwAPTrafficProfileFilterDirection + INTEGER, + hwAPTrafficProfileFilterType + INTEGER, + hwAPTrafficProfileFilterACLID + Integer32, + hwAPTrafficProfileFilterRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.24.1.1 + hwAPTrafficProfileFilterDirection OBJECT-TYPE + SYNTAX INTEGER + { + inbound(1), + outbound(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the ACL rule direction for packet filtering in a traffic profile. This parameter has no default value." + ::= { hwAPTrafficProfileFilterEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.24.1.2 + hwAPTrafficProfileFilterType OBJECT-TYPE + SYNTAX INTEGER + { + ipv4(1), + ipv6(2), + l2(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the ACL rule type for packet filtering in a traffic profile. This parameter has no default value." + ::= { hwAPTrafficProfileFilterEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.24.1.3 + hwAPTrafficProfileFilterACLID OBJECT-TYPE + SYNTAX Integer32 (3000..3031 | 4000..4031 | 6000..6031) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ACL rule for packet filtering in a traffic profile." + ::= { hwAPTrafficProfileFilterEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.24.1.4 + hwAPTrafficProfileFilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwAPTrafficProfileFilterEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.25 + hwWlanVlanPoolTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanVlanPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure VLAN pools." + ::= { hwWlanConfigObjects 25 } + + --1.3.6.1.4.1.2011.6.139.11.1.25.1 + hwWlanVlanPoolEntry OBJECT-TYPE + SYNTAX HwWlanVlanPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwVlanPoolName." + INDEX { hwVlanPoolName } + ::= { hwWlanVlanPoolTable 1 } + + + HwWlanVlanPoolEntry ::= + SEQUENCE { + hwVlanPoolName + OCTET STRING, + hwVlanPoolVlanlist + OCTET STRING, + hwVlanPoolAssignMethod + INTEGER, + hwVlanPoolRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.25.1.1 + hwVlanPoolName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the VLAN pool name. It is the index of the table." + ::= { hwWlanVlanPoolEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.25.1.2 + hwVlanPoolVlanlist OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..640)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VLAN list." + ::= { hwWlanVlanPoolEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.25.1.3 + hwVlanPoolAssignMethod OBJECT-TYPE + SYNTAX INTEGER + { + hash(1), + even(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the VLAN pool allocation algorithm. The default value is 1." + ::= { hwWlanVlanPoolEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.25.1.4 + hwVlanPoolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanVlanPoolEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.26 + hwWlanStaWhitelistConfig OBJECT IDENTIFIER ::= { hwWlanConfigObjects 26 } + hwWlanStaWhitelistProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaWhitelistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create STA whitelist profiles." + ::= { hwWlanStaWhitelistConfig 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.1.1 + hwWlanStaWhitelistProfileEntry OBJECT-TYPE + SYNTAX HwWlanStaWhitelistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanStaWhitelistProfileName." + INDEX { hwWlanStaWhitelistProfileName } + ::= { hwWlanStaWhitelistProfileTable 1 } + + + HwWlanStaWhitelistProfileEntry ::= + SEQUENCE { + hwWlanStaWhitelistProfileName + OCTET STRING, + hwWlanStaWhitelistProfileRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.1.1.1 + hwWlanStaWhitelistProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a STA whitelist profile. It is the index of the table." + ::= { hwWlanStaWhitelistProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.1.1.2 + hwWlanStaWhitelistProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table." + ::= { hwWlanStaWhitelistProfileEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.2 + hwWlanStaWhitelistProfileConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaWhitelistProfileConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure STA whitelist profiles." + ::= { hwWlanStaWhitelistConfig 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.2.1 + hwWlanStaWhitelistProfileConfigEntry OBJECT-TYPE + SYNTAX HwWlanStaWhitelistProfileConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanStaWhitelistProfileName and hwWlanStaWhitelistStaMac." + INDEX { hwWlanStaWhitelistStaMac, hwWlanStaWhitelistProfileName } + ::= { hwWlanStaWhitelistProfileConfigTable 1 } + + + HwWlanStaWhitelistProfileConfigEntry ::= + SEQUENCE { + hwWlanStaWhitelistStaMac + MacAddress, + hwWlanStaWhitelistRowStatus + RowStatus, + hwWlanStaWhitelistStaMacDescription + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.2.1.1 + hwWlanStaWhitelistStaMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the whitelist." + ::= { hwWlanStaWhitelistProfileConfigEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.2.1.2 + hwWlanStaWhitelistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanStaWhitelistProfileConfigEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.26.2.1.3 + hwWlanStaWhitelistStaMacDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the description of the sta-mac." + ::= { hwWlanStaWhitelistProfileConfigEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.27 + hwWlanStaBlacklistConfig OBJECT IDENTIFIER ::= { hwWlanConfigObjects 27 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.1 + hwWlanStaBlacklistProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaBlacklistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create STA blacklist profiles." + ::= { hwWlanStaBlacklistConfig 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.1.1 + hwWlanStaBlacklistProfileEntry OBJECT-TYPE + SYNTAX HwWlanStaBlacklistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanStaBlacklistProfileName." + INDEX { hwWlanStaBlacklistProfileName } + ::= { hwWlanStaBlacklistProfileTable 1 } + + + HwWlanStaBlacklistProfileEntry ::= + SEQUENCE { + hwWlanStaBlacklistProfileName + OCTET STRING, + hwWlanStaBlacklistProfileRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.1.1.1 + hwWlanStaBlacklistProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the STA blacklist profile name. It is the index of the table." + ::= { hwWlanStaBlacklistProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.1.1.2 + hwWlanStaBlacklistProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanStaBlacklistProfileEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.2 + hwWlanStaBlacklistProfileConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaBlacklistProfileConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure STA blacklist profiles." + ::= { hwWlanStaBlacklistConfig 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.2.1 + hwWlanStaBlacklistProfileConfigEntry OBJECT-TYPE + SYNTAX HwWlanStaBlacklistProfileConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanStaBlacklistProfileName and hwWlanStaBlacklistStaMac." + INDEX { hwWlanStaBlacklistStaMac, hwWlanStaBlacklistProfileName } + ::= { hwWlanStaBlacklistProfileConfigTable 1 } + + + HwWlanStaBlacklistProfileConfigEntry ::= + SEQUENCE { + hwWlanStaBlacklistStaMac + MacAddress, + hwWlanStaBlacklistRowStatus + RowStatus, + hwWlanStaBlacklistStaMacDescription + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.2.1.1 + hwWlanStaBlacklistStaMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the blacklist." + ::= { hwWlanStaBlacklistProfileConfigEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.2.1.2 + hwWlanStaBlacklistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanStaBlacklistProfileConfigEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.27.2.1.3 + hwWlanStaBlacklistStaMacDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..80)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the description of the sta-mac." + ::= { hwWlanStaBlacklistProfileConfigEntry 3 } + --1.3.6.1.4.1.2011.6.139.11.1.28 + hwWidsProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure WIDS classify profiles, WIDS attack profiles, and WIDS contain profiles." + ::= { hwWlanConfigObjects 28 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1 + hwWidsProfileEntry OBJECT-TYPE + SYNTAX HwWidsProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWidsProfileName." + INDEX { hwWidsProfileName } + ::= { hwWidsProfileTable 1 } + + + HwWidsProfileEntry ::= + SEQUENCE { + hwWidsProfileName + OCTET STRING, + hwWidsProfileRowStatus + RowStatus, + hwWidsDeviceReportInterval + Unsigned32, + hwWidsDeviceSyncInterval + Unsigned32, + hwWidsSpoofProfile + OCTET STRING, + hwWidsWhitelistProfile + OCTET STRING, + hwWidsBruteForceDetectInterval + Unsigned32, + hwWidsBruteForceDetectThreshold + Unsigned32, + hwWidsBruteForceQuietTime + Unsigned32, + hwWidsFloodDetectInterval + Unsigned32, + hwWidsFloodDetectThreshold + Unsigned32, + hwWidsFloodQuietTime + Unsigned32, + hwWidsWeakIvQuietTime + Unsigned32, + hwWidsSpoofQuietTime + Unsigned32, + hwWidsDynamicBlackListSwitch + INTEGER, + hwWidsRogueContainModeBmp + Unsigned32, + hwWidsStaWhitelistProfile + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.1 + hwWidsProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS profile. It is the index of the table." + ::= { hwWidsProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.5 + hwWidsProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWidsProfileEntry 5 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.6 + hwWidsDeviceReportInterval OBJECT-TYPE + SYNTAX Unsigned32 (10..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the device detection reporting interval. The default value is 300 seconds." + ::= { hwWidsProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.7 + hwWidsDeviceSyncInterval OBJECT-TYPE + SYNTAX Unsigned32 (120..360) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval for APs to report all device information to an AC. The default value is 360 minutes." + ::= { hwWidsProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.8 + hwWidsSpoofProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS spoof profile." + ::= { hwWidsProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.9 + hwWidsWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS confident profile." + ::= { hwWidsProfileEntry 9 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.10 + hwWidsBruteForceDetectInterval OBJECT-TYPE + SYNTAX Unsigned32 (10..120) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval for brute force attack detection. The default value is 60. It is expressed in s." + ::= { hwWidsProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.11 + hwWidsBruteForceDetectThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the threshold for the number of brute force attack attempts, namely, the threshold for the number of key negotiation failures within a detection period. If the number of brute-force attack attempts exceeds the threshold, the terminal initiates brute force attacks. The default value is 20." + ::= { hwWidsProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.12 + hwWidsBruteForceQuietTime OBJECT-TYPE + SYNTAX Unsigned32 (60..36000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the quiet period for brute force attack alarm reporting. The default value is 600 seconds." + ::= { hwWidsProfileEntry 12 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.13 + hwWidsFloodDetectInterval OBJECT-TYPE + SYNTAX Unsigned32 (10..120) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the flood attack detection interval. The default value is 60. It is expressed in s." + ::= { hwWidsProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.14 + hwWidsFloodDetectThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the threshold for food attack detection. If the number of packets of the same type received within a detection period exceeds the threshold, flood attacks occur. The default value is 300." + ::= { hwWidsProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.15 + hwWidsFloodQuietTime OBJECT-TYPE + SYNTAX Unsigned32 (60..36000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the quiet period for flood attack alarm reporting. The default value is 600 seconds." + ::= { hwWidsProfileEntry 15 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.16 + hwWidsWeakIvQuietTime OBJECT-TYPE + SYNTAX Unsigned32 (60..36000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the quiet period for weak IV attack alarm reporting. The default value is 600 seconds." + ::= { hwWidsProfileEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.17 + hwWidsSpoofQuietTime OBJECT-TYPE + SYNTAX Unsigned32 (60..36000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the quiet period for spoofing attack alarm reporting. The default value is 600 seconds." + ::= { hwWidsProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.28.1.18 + hwWidsDynamicBlackListSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the dynamic blacklist function. The default value is 1." + ::= { hwWidsProfileEntry 18 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.19 + hwWidsRogueContainModeBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bit map of rogue device countering types. The default value is 0." + ::= { hwWidsProfileEntry 19 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.28.1.20 + hwWidsStaWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a sta whitelist profile." + ::= { hwWidsProfileEntry 20 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.32 + -- 1.3.6.1.4.1.2011.6.139.11.1.32 + hwWidsSpoofProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsSpoofProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure matching rules for spoof APs." + ::= { hwWlanConfigObjects 32 } + + --1.3.6.1.4.1.2011.6.139.11.1.32.1 + hwWidsSpoofProfileEntry OBJECT-TYPE + SYNTAX HwWidsSpoofProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWidsSpoofProfileName and hwWidsSpoofSsidRegex." + INDEX { hwWidsSpoofProfileName, hwWidsSpoofSsidRegex } + ::= { hwWidsSpoofProfileTable 1 } + + + HwWidsSpoofProfileEntry ::= + SEQUENCE { + hwWidsSpoofProfileName + OCTET STRING, + hwWidsSpoofSsidRegex + OCTET STRING, + hwWidsSpoofProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.32.1.1 + hwWidsSpoofProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS spoof profile. It is the index of the table." + ::= { hwWidsSpoofProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.32.1.2 + hwWidsSpoofSsidRegex OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..48)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the matching rules for spoofing SSIDs." + ::= { hwWidsSpoofProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.32.1.3 + hwWidsSpoofProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWidsSpoofProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.33 + hwWidsWhitelistProfileMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsWhitelistProfileMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure WIDS MAC whitelists." + ::= { hwWlanConfigObjects 33 } + + --1.3.6.1.4.1.2011.6.139.11.1.33.1 + hwWidsWhitelistProfileMacEntry OBJECT-TYPE + SYNTAX HwWidsWhitelistProfileMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWidsWhitelistProfileName." + INDEX { hwWidsWhitelistProfileName, hwWidsWhitelistProfileMac } + ::= { hwWidsWhitelistProfileMacTable 1 } + + + HwWidsWhitelistProfileMacEntry ::= + SEQUENCE { + hwWidsWhitelistProfileName + OCTET STRING, + hwWidsWhitelistProfileMac + MacAddress, + hwWidsWhitelistProfileMacRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.33.1.1 + hwWidsWhitelistProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS confident profile. It is the index of the table." + ::= { hwWidsWhitelistProfileMacEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.33.1.2 + hwWidsWhitelistProfileMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address whitelist." + ::= { hwWidsWhitelistProfileMacEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.33.1.3 + hwWidsWhitelistProfileMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWidsWhitelistProfileMacEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.34 + hwWidsWhitelistProfileOuiTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsWhitelistProfileOuiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure WIDS OUI whitelists." + ::= { hwWlanConfigObjects 34 } + + --1.3.6.1.4.1.2011.6.139.11.1.34.1 + hwWidsWhitelistProfileOuiEntry OBJECT-TYPE + SYNTAX HwWidsWhitelistProfileOuiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWidsWhitelistProfileOui." + INDEX { hwWidsWhitelistProfileName, hwWidsWhitelistProfileOui } + ::= { hwWidsWhitelistProfileOuiTable 1 } + + + HwWidsWhitelistProfileOuiEntry ::= + SEQUENCE { + hwWidsWhitelistProfileOui + OCTET STRING, + hwWidsWhitelistProfileOuiRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.34.1.1 + hwWidsWhitelistProfileOui OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..8)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of the OUI whitelist in the WIDS confident profile. Its format is XX-XX-XX. XX is a hexadecimal number." + ::= { hwWidsWhitelistProfileOuiEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.34.1.2 + hwWidsWhitelistProfileOuiRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWidsWhitelistProfileOuiEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.35 + hwWidsWhitelistProfileSsidTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsWhitelistProfileSsidEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure WIDS SSID whitelists." + ::= { hwWlanConfigObjects 35 } + + --1.3.6.1.4.1.2011.6.139.11.1.35.1 + hwWidsWhitelistProfileSsidEntry OBJECT-TYPE + SYNTAX HwWidsWhitelistProfileSsidEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWidsWhitelistProfileSsid." + INDEX { hwWidsWhitelistProfileName, hwWidsWhitelistProfileSsid } + ::= { hwWidsWhitelistProfileSsidTable 1 } + + + HwWidsWhitelistProfileSsidEntry ::= + SEQUENCE { + hwWidsWhitelistProfileSsid + OCTET STRING, + hwWidsWhitelistProfileSsidRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.35.1.1 + hwWidsWhitelistProfileSsid OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the trusted SSIDs that are case-sensitive." + ::= { hwWidsWhitelistProfileSsidEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.35.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.35.1.2 + hwWidsWhitelistProfileSsidRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWidsWhitelistProfileSsidEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36 + -- 1.3.6.1.4.1.2011.6.139.11.1.36 + hwWlanMeshProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMeshProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query Mesh profile parameters." + ::= { hwWlanConfigObjects 36 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1 + hwWlanMeshProfileEntry OBJECT-TYPE + SYNTAX HwWlanMeshProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanMeshProfileName." + INDEX { hwWlanMeshProfileName } + ::= { hwWlanMeshProfileTable 1 } + + + HwWlanMeshProfileEntry ::= + SEQUENCE { + hwWlanMeshProfileName + OCTET STRING, + hwWlanMeshID + OCTET STRING, + hwWlanMeshDhcpTrustPort + INTEGER, + hwWlanMeshLinkReportInterval + Unsigned32, + hwWlanMeshMaxLinkNum + Unsigned32, + hwWlanMeshRssiThreshold + Integer32, + hwWlanMeshSecurityProfileName + OCTET STRING, + hwWlanMeshProfileHandoverProfileName + OCTET STRING, + hwWlanMeshFwaSwitch + INTEGER, + hwWlanMeshFwaEdcaMode + INTEGER, + hwWlanMeshProfileRowStatus + RowStatus, + hwWlanMeshClientEdcaVoiceECWmax + Unsigned32, + hwWlanMeshClientEdcaVoiceECWmin + Unsigned32, + hwWlanMeshClientEdcaVoiceAIFSN + Unsigned32, + hwWlanMeshClientEdcaVoiceTXOPLimit + Unsigned32, + hwWlanMeshClientEdcaVideoECWmax + Unsigned32, + hwWlanMeshClientEdcaVideoECWmin + Unsigned32, + hwWlanMeshClientEdcaVideoAIFSN + Unsigned32, + hwWlanMeshClientEdcaVideoTXOPLimit + Unsigned32, + hwWlanMeshClientEdcaBeECWmax + Unsigned32, + hwWlanMeshClientEdcaBeECWmin + Unsigned32, + hwWlanMeshClientEdcaBeAIFSN + Unsigned32, + hwWlanMeshClientEdcaBeTXOPLimit + Unsigned32, + hwWlanMeshClientEdcaBkECWmax + Unsigned32, + hwWlanMeshClientEdcaBkECWmin + Unsigned32, + hwWlanMeshClientEdcaBkAIFSN + Unsigned32, + hwWlanMeshClientEdcaBkTXOPLimit + Unsigned32, + hwWlanMeshNdTrustPort + INTEGER, + hwWlanMeshLinkAgingTime + Unsigned32, + hwWlanMeshProfilePriorityMapTrustMode + INTEGER, + hwWlanMeshProfilePriorityDscpMap80211e + OCTET STRING, + hwWlanMeshProfileClientModeSwitch + INTEGER, + hwWlanMeshProfileBeacon2gRate + INTEGER, + hwWlanMeshProfileBeacon5gRate + INTEGER + } + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.1 + hwWlanMeshProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a mesh profile. It is the index of the table." + ::= { hwWlanMeshProfileEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.2 + hwWlanMeshID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mesh ID. The value is a string of case-sensitive characters without question marks (and spaces. It cannot begin or end with double quotation marks. The default value is huaweimesh." + ::= { hwWlanMeshProfileEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.3 + hwWlanMeshDhcpTrustPort OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the DHCP trusted port on an AP. The default value is 2." + ::= { hwWlanMeshProfileEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.4 + hwWlanMeshLinkReportInterval OBJECT-TYPE + SYNTAX Unsigned32 (5..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval for reporting mesh link information. The default value is 30 seconds." + ::= { hwWlanMeshProfileEntry 4 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.5 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.5 + hwWlanMeshMaxLinkNum OBJECT-TYPE + SYNTAX Unsigned32 (1..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "In FWA mode, the maximum number of Mesh links supported is 32,otherwise, it is 8" + ::= { hwWlanMeshProfileEntry 5 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.6 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.6 + hwWlanMeshRssiThreshold OBJECT-TYPE + SYNTAX Integer32 (-90..-20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the valid RSSI threshold for a Mesh link route. The default value is -75 dBm." + ::= { hwWlanMeshProfileEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.8 + hwWlanMeshSecurityProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the bound security profile." + ::= { hwWlanMeshProfileEntry 8 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.9 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.9 + hwWlanMeshProfileHandoverProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the bound handover profile." + ::= { hwWlanMeshProfileEntry 9 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.10 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.10 + hwWlanMeshFwaSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the FWA mode function. The default value is 1." + ::= { hwWlanMeshProfileEntry 10 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.11 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.11 + hwWlanMeshFwaEdcaMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1), + manual(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the EDCA mode in FWA mode. The default value is 1." + ::= { hwWlanMeshProfileEntry 11 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.36.1.12 + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.12 + hwWlanMeshProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanMeshProfileEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.13 + hwWlanMeshClientEdcaVoiceECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the maximum contention window (ECWmax) for AC_VO packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 13 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.14 + hwWlanMeshClientEdcaVoiceECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the minimum contention window (ECWmin) for AC_VO packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 14 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.15 + hwWlanMeshClientEdcaVoiceAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN for AC_VO packets, which determines the channel idle time." + ::= { hwWlanMeshProfileEntry 15 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.16 + hwWlanMeshClientEdcaVoiceTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the transmission opportunity limit (TXOPLimit) for AC_VO packets, which determines the maximum duration in which an STA can occupy a channel. A larger TXOPLimit value indicates a longer duration to occupy a channel." + ::= { hwWlanMeshProfileEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.17 + hwWlanMeshClientEdcaVideoECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the maximum contention window (ECWmax) for AC_VI packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 17 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.18 + hwWlanMeshClientEdcaVideoECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the minimum contention window (ECWmin) for AC_VI packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 18 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.19 + hwWlanMeshClientEdcaVideoAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN for AC_VI packets, which determines the channel idle time." + ::= { hwWlanMeshProfileEntry 19 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.20 + hwWlanMeshClientEdcaVideoTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the transmission opportunity limit (TXOPLimit) for AC_VI packets, which determines the maximum duration in which an STA can occupy a channel. A larger TXOPLimit value indicates a longer duration to occupy a channel." + ::= { hwWlanMeshProfileEntry 20 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.21 + hwWlanMeshClientEdcaBeECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the maximum contention window (ECWmax) for AC_BE packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 21 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.22 + hwWlanMeshClientEdcaBeECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the minimum contention window (ECWmin) for AC_BE packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 22 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.23 + hwWlanMeshClientEdcaBeAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN for AC_BE packets, which determines the channel idle time." + ::= { hwWlanMeshProfileEntry 23 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.24 + hwWlanMeshClientEdcaBeTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the transmission opportunity limit (TXOPLimit) for AC_BE packets, which determines the maximum duration in which an STA can occupy a channel. A larger TXOPLimit value indicates a longer duration to occupy a channel." + ::= { hwWlanMeshProfileEntry 24 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.25 + hwWlanMeshClientEdcaBkECWmax OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the maximum contention window (ECWmax) for AC_BK packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 25 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.26 + hwWlanMeshClientEdcaBkECWmin OBJECT-TYPE + SYNTAX Unsigned32 (0..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the exponent form of the minimum contention window (ECWmin) for AC_BK packets. ECWmin and ECWmax determine the average backoff time." + ::= { hwWlanMeshProfileEntry 26 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.27 + hwWlanMeshClientEdcaBkAIFSN OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AIFSN for AC_BK packets, which determines the channel idle time." + ::= { hwWlanMeshProfileEntry 27 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.28 + hwWlanMeshClientEdcaBkTXOPLimit OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the transmission opportunity limit (TXOPLimit) for AC_BK packets, which determines the maximum duration in which an STA can occupy a channel. A larger TXOPLimit value indicates a longer duration to occupy a channel." + ::= { hwWlanMeshProfileEntry 28 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.29 + hwWlanMeshNdTrustPort OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the ND trusted port on an AP. The default value is 2." + ::= { hwWlanMeshProfileEntry 29 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.30 + hwWlanMeshLinkAgingTime OBJECT-TYPE + SYNTAX Unsigned32 (5..60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mesh aging time." + ::= { hwWlanMeshProfileEntry 30 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.31 + hwWlanMeshProfilePriorityMapTrustMode OBJECT-TYPE + SYNTAX INTEGER + { + trustDSCP(1), + trust8021P(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshProfileEntry 31 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.32 + hwWlanMeshProfilePriorityDscpMap80211e OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshProfileEntry 32 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.33 + hwWlanMeshProfileClientModeSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the Mesh client mode function. The default value is 1." + ::= { hwWlanMeshProfileEntry 33 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.34 + hwWlanMeshProfileBeacon2gRate OBJECT-TYPE + SYNTAX INTEGER + { + one(1), + two(2), + five(5), + six(6), + nine(9), + eleven(11), + twelve(12), + eighteen(18), + twentyfour(24), + thirtysix(36), + fortyeight(48), + fiftyfour(54) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mesh 2g beacon rate. The default value is 1." + ::= { hwWlanMeshProfileEntry 34 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.36.1.35 + hwWlanMeshProfileBeacon5gRate OBJECT-TYPE + SYNTAX INTEGER + { + six(6), + nine(9), + twelve(12), + eighteen(18), + twentyfour(24), + thirtysix(36), + fortyeight(48), + fiftyfour(54) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mesh 5g beacon rate. The default value is 6." + ::= { hwWlanMeshProfileEntry 35 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.37 + hwWlanMeshWhitelistProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMeshWhitelistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the Mesh whitelist profile." + ::= { hwWlanConfigObjects 37 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.37.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.37.1 + hwWlanMeshWhitelistProfileEntry OBJECT-TYPE + SYNTAX HwWlanMeshWhitelistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanMeshWhitelistProfileName." + INDEX { hwWlanMeshWhitelistProfileName } + ::= { hwWlanMeshWhitelistProfileTable 1 } + + + HwWlanMeshWhitelistProfileEntry ::= + SEQUENCE { + hwWlanMeshWhitelistProfileName + OCTET STRING, + hwWlanMeshWhitelistProfileRowStatus + RowStatus + } + +-- 1.3.6.1.4.1.2011.6.139.11.1.37.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.37.1.1 + hwWlanMeshWhitelistProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a mesh profile." + ::= { hwWlanMeshWhitelistProfileEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.37.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.37.1.2 + hwWlanMeshWhitelistProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanMeshWhitelistProfileEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.38 + -- 1.3.6.1.4.1.2011.6.139.11.1.38 + hwWlanMeshWhitelistProfileConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMeshWhitelistProfileConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes Mesh whitelists in the Mesh whitelist profile." + ::= { hwWlanConfigObjects 38 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.38.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.38.1 + hwWlanMeshWhitelistProfileConfigEntry OBJECT-TYPE + SYNTAX HwWlanMeshWhitelistProfileConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwWlanMeshWhitelistProfileName and hwWlanMeshWhitelistPeerApMac." + INDEX { hwWlanMeshWhitelistProfileName,hwWlanMeshWhitelistPeerApMac } + ::= { hwWlanMeshWhitelistProfileConfigTable 1 } + + + HwWlanMeshWhitelistProfileConfigEntry ::= + SEQUENCE { + hwWlanMeshWhitelistPeerApMac + MacAddress, + hwWlanMeshWhitelistRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.38.1.1 + hwWlanMeshWhitelistPeerApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the whitelist." + ::= { hwWlanMeshWhitelistProfileConfigEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.38.1.2 + hwWlanMeshWhitelistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanMeshWhitelistProfileConfigEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.39 + hwWlanMeshHandoverProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMeshHandoverProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query Mesh handover profile parameters." + ::= { hwWlanConfigObjects 39 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1 + hwWlanMeshHandoverProfileEntry OBJECT-TYPE + SYNTAX HwWlanMeshHandoverProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanMeshHandoverProfileName." + INDEX { hwWlanMeshHandoverProfileName } + ::= { hwWlanMeshHandoverProfileTable 1 } + + + HwWlanMeshHandoverProfileEntry ::= + SEQUENCE { + hwWlanMeshHandoverProfileName + OCTET STRING, + hwWlanMeshHOLinkProbeInterval + Unsigned32, + hwWlanMeshHOMinRssiThreshold + Integer32, + hwWlanMeshHOMaxRssiThreshold + Integer32, + hwWlanMeshHOLinkHoldPeriod + Unsigned32, + hwWlanMeshHORssiMargin + Unsigned32, + hwWlanMeshHOLocationBasedAlgorithmEnable + INTEGER, + hwWlanMeshHOMovingDirection + INTEGER, + hwWlanMeshHOPNCriteriaObserveTime + Unsigned32, + hwWlanMeshHOPNCriteriaQualifyTime + Unsigned32, + hwWlanMeshUrgentHandoverLowRateThreshold + Unsigned32, + hwWlanMeshUrgentHandoverLowRatePeriod + Unsigned32, + hwWlanMeshUrgentHandoverPunishmentPeriod + Unsigned32, + hwWlanMeshUrgentHandoverPunishmentRssi + Unsigned32, + hwWlanMeshHandoverProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.1 + hwWlanMeshHandoverProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a mesh profile. It is the index of the table." + ::= { hwWlanMeshHandoverProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.2 + hwWlanMeshHOLinkProbeInterval OBJECT-TYPE + SYNTAX Unsigned32 (50..6000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.3 + hwWlanMeshHOMinRssiThreshold OBJECT-TYPE + SYNTAX Integer32 (-90..-20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.4 + hwWlanMeshHOMaxRssiThreshold OBJECT-TYPE + SYNTAX Integer32 (-90..0) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.5 + hwWlanMeshHOLinkHoldPeriod OBJECT-TYPE + SYNTAX Unsigned32 (1000..60000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.6 + hwWlanMeshHORssiMargin OBJECT-TYPE + SYNTAX Unsigned32 (1..70) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.7 + hwWlanMeshHOLocationBasedAlgorithmEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.8 + hwWlanMeshHOMovingDirection OBJECT-TYPE + SYNTAX INTEGER + { + forward(1), + backward(2), + undetermined(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.9 + hwWlanMeshHOPNCriteriaObserveTime OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.10 + hwWlanMeshHOPNCriteriaQualifyTime OBJECT-TYPE + SYNTAX Unsigned32 (1..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.11 + hwWlanMeshUrgentHandoverLowRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..1300) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.12 + hwWlanMeshUrgentHandoverLowRatePeriod OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.13 + hwWlanMeshUrgentHandoverPunishmentPeriod OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.14 + hwWlanMeshUrgentHandoverPunishmentRssi OBJECT-TYPE + SYNTAX Unsigned32 (0..50) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMeshHandoverProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.39.1.15 + hwWlanMeshHandoverProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwWlanMeshHandoverProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.40 + hwWdsProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWdsProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query WDS profile parameters." + ::= { hwWlanConfigObjects 40 } + + --1.3.6.1.4.1.2011.6.139.11.1.40.1 + hwWdsProfileEntry OBJECT-TYPE + SYNTAX HwWdsProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWdsProfileName." + INDEX { hwWdsProfileName } + ::= { hwWdsProfileTable 1 } + + + HwWdsProfileEntry ::= + SEQUENCE { + hwWdsProfileName + OCTET STRING, + hwWdsName + OCTET STRING, + hwWdsMode + INTEGER, + hwWdsDhcpTrustPort + INTEGER, + hwWdsVlanTagged + OCTET STRING, + hwWdsSecurityProfileName + OCTET STRING, + hwWdsProfileRowStatus + RowStatus, + hwWdsNdTrustPort + INTEGER, + hwWdsProfilePriorityMapTrustMode + INTEGER, + hwWdsProfilePriorityDscpMap80211e + OCTET STRING, + hwWdsMuMIMOSwitch + INTEGER, + hwWdsProfileBeacon2gRate + INTEGER, + hwWdsProfileBeacon5gRate + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.11.1.40.1.1 + hwWdsProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a WDS profile. It is the index of the table." + ::= { hwWdsProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.2 + hwWdsName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the WDS identifier. The value is a string of case-sensitive characters without question marks and spaces. It cannot begin or end with double quotation marks. + The default value is huaweiwds." + DEFVAL { "HUAWEI-WLAN-WDS" } + ::= { hwWdsProfileEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.3 + hwWdsMode OBJECT-TYPE + SYNTAX INTEGER + { + middle(1), + root(2), + leaf(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the mode of the WDS. The default value is 3." + ::= { hwWdsProfileEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.4 + hwWdsDhcpTrustPort OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the DHCP trusted port on an AP. The default value is 2." + ::= { hwWdsProfileEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.5 + hwWdsVlanTagged OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the tagged VLAN in a bridge profile. It is used to add one or a group of VLANs to the WDS bridge profile in tagged mode. By default, no VLAN is configured in the WDS bridge profile." + ::= { hwWdsProfileEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.6 + hwWdsSecurityProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object indicates the bound security profile." + ::= { hwWdsProfileEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.8 + hwWdsProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used.ROWSTATUS_UNDEFINED: undefined ROWSTATUS_ACTIVE: active ROWSTATUS_NOTINSERVICE: notInService ROWSTATUS_NOTREADY: notReady ROWSTATUS_CREATEANDFLOW: createAndGoROWSTATUS_CREATEANDWAIT: createAndWaitROWSTATUS_DESTROY: destroy" + ::= { hwWdsProfileEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.9 + hwWdsNdTrustPort OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether to enable the ND trusted port on an AP. The default value is 2." + DEFVAL { 2 } + ::= { hwWdsProfileEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.10 + hwWdsProfilePriorityMapTrustMode OBJECT-TYPE + SYNTAX INTEGER + { + trustDSCP(1), + trust8021P(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsProfileEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.11 + hwWdsProfilePriorityDscpMap80211e OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsProfileEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.12 + hwWdsMuMIMOSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsProfileEntry 12 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.13 + hwWdsProfileBeacon2gRate OBJECT-TYPE + SYNTAX INTEGER + { + one(1), + two(2), + five(5), + six(6), + nine(9), + eleven(11), + twelve(12), + eighteen(18), + twentyfour(24), + thirtysix(36), + fortyeight(48), + fiftyfour(54) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the wds 2g beacon rate. The default value is 1." + ::= { hwWdsProfileEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.40.1.14 + hwWdsProfileBeacon5gRate OBJECT-TYPE + SYNTAX INTEGER + { + six(6), + nine(9), + twelve(12), + eighteen(18), + twentyfour(24), + thirtysix(36), + fortyeight(48), + fiftyfour(54) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the wds 5g beacon rate. The default value is 6." + ::= { hwWdsProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.41 + hwWdsWhitelistProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWdsWhitelistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 41 } + + --1.3.6.1.4.1.2011.6.139.11.1.41.1 + hwWdsWhitelistProfileEntry OBJECT-TYPE + SYNTAX HwWdsWhitelistProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWdsWhitelistProfileName } + ::= { hwWdsWhitelistProfileTable 1 } + + + HwWdsWhitelistProfileEntry ::= + SEQUENCE { + hwWdsWhitelistProfileName + OCTET STRING, + hwWdsWhitelistProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.41.1.1 + hwWdsWhitelistProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsWhitelistProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.41.1.2 + hwWdsWhitelistProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsWhitelistProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.42 + hwWdsWhitelistTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWdsWhitelistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 42 } + + --1.3.6.1.4.1.2011.6.139.11.1.42.1 + hwWdsWhitelistEntry OBJECT-TYPE + SYNTAX HwWdsWhitelistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWdsWhitelistProfileName, hwWdsWhitelistPeerApMac } + ::= { hwWdsWhitelistTable 1 } + + + HwWdsWhitelistEntry ::= + SEQUENCE { + hwWdsWhitelistPeerApMac + MacAddress, + hwWdsWhitelistRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.42.1.1 + hwWdsWhitelistPeerApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsWhitelistEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.42.1.2 + hwWdsWhitelistRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWdsWhitelistEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.43 + hwLocationProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwLocationProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure terminal location and tag location." + ::= { hwWlanConfigObjects 43 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1 + hwLocationProfileEntry OBJECT-TYPE + SYNTAX HwLocationProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwLocationProfileName." + INDEX { hwLocationProfileName } + ::= { hwLocationProfileTable 1 } + + + HwLocationProfileEntry ::= + SEQUENCE { + hwLocationProfileName + OCTET STRING, + hwLocationAeroscoutTagSwitch + INTEGER, + hwLocationAeroscoutMuSwitch + INTEGER, + hwLocationAeroscoutServerPort + Unsigned32, + hwLocationAeroscoutViaACSwitch + INTEGER, + hwLocationAeroscoutViaACPort + Unsigned32, + hwLocationAeroscoutCompoundTime + Unsigned32, + hwLocationEkahauTagEnable + INTEGER, + hwLocationEkahauServerIPAddress + IpAddress, + hwLocationEkahauServerIPv6Address + OCTET STRING, + hwLocationEkahauServerPort + Unsigned32, + hwLocationEkahauViaACEnable + INTEGER, + hwLocationEkahauViaACPort + Unsigned32, + hwLocationSourceIPAddress + IpAddress, + hwLocationSourceIPv6Address + OCTET STRING, + hwLocationPrivateMuEnable + INTEGER, + hwLocationPrivateServerIPAddress + IpAddress, + hwLocationPrivateServerIPv6Address + OCTET STRING, + hwLocationPrivateServerPort + Unsigned32, + hwLocationPrivateViaACEnable + INTEGER, + hwLocationPrivateViaACPort + Unsigned32, + hwLocationPrivateReportFrequency + Unsigned32, + hwLocationProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.1 + hwLocationProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a location profile. It is the index of the table." + ::= { hwLocationProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.2 + hwLocationAeroscoutTagSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the AeroScout tag location function. The default value is 1." + ::= { hwLocationProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.3 + hwLocationAeroscoutMuSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the AeroScout MU location function. The default value is 1." + ::= { hwLocationProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.4 + hwLocationAeroscoutServerPort OBJECT-TYPE + SYNTAX Unsigned32 (0 | 1025..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the port used by APs or ACs to report AeroScout location data to the AE server." + ::= { hwLocationProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.5 + hwLocationAeroscoutViaACSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether AeroScout tag location data is reported to the AC. This parameter has no default value." + ::= { hwLocationProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.6 + hwLocationAeroscoutViaACPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that AeroScout location data is reported to the AC that forwards the data to the AE. A port is configured for the AP to report location data to the AC." + ::= { hwLocationProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.7 + hwLocationAeroscoutCompoundTime OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AerosScout location data compound time. The value 0 indicates that data is not compounded and the AP reports location data in real time. The default value is 65535 and the unit is 0.1s." + ::= { hwLocationProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.8 + hwLocationEkahauTagEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the Ekahau tag location function. The default value is 1." + ::= { hwLocationProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.9 + hwLocationEkahauServerIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the location server for Ekahau tag location." + ::= { hwLocationProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.10 + hwLocationEkahauServerIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the location server for Ekahau tag location." + ::= { hwLocationProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.11 + hwLocationEkahauServerPort OBJECT-TYPE + SYNTAX Unsigned32 (0 | 1025..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the port number of the location server for Ekahau tag location." + ::= { hwLocationProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.12 + hwLocationEkahauViaACEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether Ekahau tag location data is reported to the AC." + ::= { hwLocationProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.13 + hwLocationEkahauViaACPort OBJECT-TYPE + SYNTAX Unsigned32 (0 | 1025..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that Ekahau location data is reported to the AC that forwards the data to the AE. A port is configured for the AP to report location data to the AC." + ::= { hwLocationProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.14 + hwLocationSourceIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the source IPv4 address for reporting location data in AeroScout or Ekahau location mode. You choose an IPv4 or IPv6 address." + ::= { hwLocationProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.15 + hwLocationSourceIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the source IPv6 address for reporting location data in AeroScout or Ekahau location mode. You choose an IPv4 or IPv6 address." + ::= { hwLocationProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.16 + hwLocationPrivateMuEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the Huawei proprietary terminal location function. The default value is 1." + ::= { hwLocationProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.17 + hwLocationPrivateServerIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address of the server for the Huawei proprietary location function." + ::= { hwLocationProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.18 + hwLocationPrivateServerIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the server for the Huawei proprietary location function." + ::= { hwLocationProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.19 + hwLocationPrivateServerPort OBJECT-TYPE + SYNTAX Unsigned32 (0|5000..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the port number of the server for the Huawei proprietary location function." + ::= { hwLocationProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.20 + hwLocationPrivateViaACEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether Huawei proprietary terminal location data is reported to the AC. The default value is 2.1: Enable2: Disable" + ::= { hwLocationProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.21 + hwLocationPrivateViaACPort OBJECT-TYPE + SYNTAX Unsigned32 (0|5000..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that Huawei proprietary terminal location data is reported to the AC that forwards the data to the location server. A port is configured for the AP to report location data to the AC. +The default destination IP address and port number to which the AP reports terminal location data is the AC's IP address and 6411 respectively." + ::= { hwLocationProfileEntry 21 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.22 + hwLocationPrivateReportFrequency OBJECT-TYPE + SYNTAX Unsigned32 (500..60000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interval for the AP to report location data in Huawei proprietary terminal location mode. The default value is 20000 ms." + ::= { hwLocationProfileEntry 22 } + + --1.3.6.1.4.1.2011.6.139.11.1.43.1.23 + hwLocationProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used.ROWSTATUS_UNDEFINED: undefinedROWSTATUS_ACTIVE: activeROWSTATUS_NOTINSERVICE: notInServiceROWSTATUS_NOTREADY: notReadyROWSTATUS_CREATEANDFLOW: createAndGoROWSTATUS_CREATEANDWAIT: createAndWaitROWSTATUS_DESTROY: destroy" + ::= { hwLocationProfileEntry 23 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.45 + hwHotspot2ProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwHotspot2ProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query Hotspot2.0 profile parameters." + ::= { hwWlanConfigObjects 45 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1 + hwHotspot2ProfileEntry OBJECT-TYPE + SYNTAX HwHotspot2ProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwHotspot2ProfileName." + INDEX { hwHotspot2ProfileName } + ::= { hwHotspot2ProfileTable 1 } + + + HwHotspot2ProfileEntry ::= + SEQUENCE { + hwHotspot2ProfileName + OCTET STRING, + hwHotspot2NetworkType + Unsigned32, + hwHotspot2InternetAccess + INTEGER, + hwHotspot2VenueGroupCode + Unsigned32, + hwHotspot2VenueTypeCode + Unsigned32, + hwHotspot2Hessid + MacAddress, + hwHotspot2IPv4AddressAvail + Unsigned32, + hwHotspot2IPv6AddressAvail + Unsigned32, + hwHotspot2NetworkAuthenType + Unsigned32, + hwHotspot2RedirectUrl + OCTET STRING, + hwHotspot2CarryP2PCrossConnectInfo + INTEGER, + hwHotspot2CellularNetworkProfile + OCTET STRING, + hwHotspot2ConnectionCapabilityProfile + OCTET STRING, + hwHotspot2OperatorNameProfile + OCTET STRING, + hwHotspot2OperatingClassProfile + OCTET STRING, + hwHotspot2OperatorDomainProfile + OCTET STRING, + hwHotspot2NaiRealmProfile + OCTET STRING, + hwHotspot2VenueNameProfile + OCTET STRING, + hwHotspot2RoamingConsortiumProfile + OCTET STRING, + hwHotspot2ProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.1 + hwHotspot2ProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a Hotspot2.0 profile. It is the index of the table." + ::= { hwHotspot2ProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.2 + hwHotspot2NetworkType OBJECT-TYPE + SYNTAX Unsigned32 (0..1|2..3|4..5|14..15) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the network type is an interworking information element. This configuration is mandatory. The AP adds this information to Beacon and Probe Response packets, which indicates network types, to assist users in discovering and selecting networks. The default value is 15.0: Private-network1: private-guest2: public-chargeable3: public-free4: personal-device5: emergency-service14: Test15: Wildcard" + ::= { hwHotspot2ProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.3 + hwHotspot2InternetAccess OBJECT-TYPE + SYNTAX INTEGER + { + allowAcess(1), + unallowedAcess(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the Internet attribute is an interworking information element. This configuration is mandatory. The AP adds this information to Beacon and Probe Response packets, which indicates whether users are allowed to access the Internet, to assist users in discovering and selecting networks. The default value is 2." + ::= { hwHotspot2ProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.4 + hwHotspot2VenueGroupCode OBJECT-TYPE + SYNTAX Unsigned32 (0..255|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "For details, see Table 7-25m-Venue Group codes and descriptions in the 802.11u protocol. +The default value 0xFFFFFFFF indicates that no configuration is added." + ::= { hwHotspot2ProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.5 + hwHotspot2VenueTypeCode OBJECT-TYPE + SYNTAX Unsigned32 (0..255|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "For details, see Table 7-25n-Venue Type assignments in the 802.11u protocol. +The default value 0xFFFFFFFF indicates that no configuration is added." + ::= { hwHotspot2ProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.6 + hwHotspot2Hessid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the HESSID of a hot spot network. The default value is null, indicating that no configuration is added." + ::= { hwHotspot2ProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.7 + hwHotspot2IPv4AddressAvail OBJECT-TYPE + SYNTAX Unsigned32 (0..7|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates available types of IPv4 addresses. 8 to 63 are reserved. The default value 0xFFFFFFFF indicates that no configuration is added.0: Address type not available.1: Public IPv4 address available,2: Port-restricted IPv4 address available,3: Single NATed private IPv4 address available,4: Double NATed private IPv4 address available,5: Port-restricted IPv4 address and single NATed IPv4 address available,6: Port-restricted IPv4 address and double NATed IPv4 address available,7: Availability of the address type is not known,8 to 63: Reserved" + ::= { hwHotspot2ProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.8 + hwHotspot2IPv6AddressAvail OBJECT-TYPE + SYNTAX Unsigned32 (0..2|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates available types of IPv4 addresses. 3 is reserved. The default value 0xFFFFFFFF indicates that no configuration is added.0: Address type not available1: Address type available2: Availability of the address type not known3: Reserved" + ::= { hwHotspot2ProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.9 + hwHotspot2NetworkAuthenType OBJECT-TYPE + SYNTAX Unsigned32 (0..3|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the network authentication type. 4 to 255 are reserved. The default value 0xFFFFFFFF indicates that no configuration is added.0: Acceptance of terms and conditions.1: On-line enrollment supported,2: http/https redirection,3: DNS redirection,4 to 255: Reserved" + ::= { hwHotspot2ProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.10 + hwHotspot2RedirectUrl OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the redirection URL.This parameter is optional when Network Authentication Type is set to acceptance.This parameter is mandatory when Network Authentication Type is set to http-https-redirection.This parameter is not configurable when Network Authentication Type is set to other values." + ::= { hwHotspot2ProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.11 + hwHotspot2CarryP2PCrossConnectInfo OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether hot spot networks allow P2P devices to set up cross connections. Currently, this function is not supported. The default value is 1." + ::= { hwHotspot2ProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.12 + hwHotspot2CellularNetworkProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound cellular network profile. By default, no cellular network profile is bound." + ::= { hwHotspot2ProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.13 + hwHotspot2ConnectionCapabilityProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound connection capability profile. By default, no connection capability profile is bound." + ::= { hwHotspot2ProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.14 + hwHotspot2OperatorNameProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound operator name profile. By default, no operator name profile is bound." + ::= { hwHotspot2ProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.15 + hwHotspot2OperatingClassProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound operating class profile. By default, no operating class profile is bound." + ::= { hwHotspot2ProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.16 + hwHotspot2OperatorDomainProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound operator domain profile. By default, no operator domain profile is bound." + ::= { hwHotspot2ProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.17 + hwHotspot2NaiRealmProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound NAI realm profile. By default, no NAI realm profile is bound." + ::= { hwHotspot2ProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.18 + hwHotspot2VenueNameProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound venue name profile. By default, no venue name profile is bound." + ::= { hwHotspot2ProfileEntry 18 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.19 + hwHotspot2RoamingConsortiumProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound roaming consortium profile. By default, no roaming consortium profile is bound." + ::= { hwHotspot2ProfileEntry 19 } + + --1.3.6.1.4.1.2011.6.139.11.1.45.1.20 + hwHotspot2ProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used.ROWSTATUS_UNDEFINED: undefinedROWSTATUS_ACTIVE: activeROWSTATUS_NOTINSERVICE: notInServiceROWSTATUS_NOTREADY: notReadyROWSTATUS_CREATEANDFLOW: createAndGoROWSTATUS_CREATEANDWAIT: createAndWaitROWSTATUS_DESTROY: destroy" + ::= { hwHotspot2ProfileEntry 20 } + + --1.3.6.1.4.1.2011.6.139.11.1.46 + hwCellularNetworkProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwCellularNetworkProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query cellular network profile parameters." + ::= { hwWlanConfigObjects 46 } + + --1.3.6.1.4.1.2011.6.139.11.1.46.1 + hwCellularNetworkProfileEntry OBJECT-TYPE + SYNTAX HwCellularNetworkProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwCellularNetworkProfileName." + INDEX { hwCellularNetworkProfileName } + ::= { hwCellularNetworkProfileTable 1 } + + + HwCellularNetworkProfileEntry ::= + SEQUENCE { + hwCellularNetworkProfileName + OCTET STRING, + hwCellularNetworkProfilePlmnIDList + OCTET STRING, + hwCellularNetworkProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.46.1.1 + hwCellularNetworkProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a cellular network profile. It is the index of the table." + ::= { hwCellularNetworkProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.46.1.2 + hwCellularNetworkProfilePlmnIDList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "NOTE By default, no configuration is added.PLMNs are separated by question marks (?).A maximum of 32 PLMNs can be configured.A PLMN is a 5-digit or 6-digit numeric string." + ::= { hwCellularNetworkProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.46.1.3 + hwCellularNetworkProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwCellularNetworkProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.47 + hwConnectionCapabilityProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwConnectionCapabilityProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query connection capability profile parameters." + ::= { hwWlanConfigObjects 47 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1 + hwConnectionCapabilityProfileEntry OBJECT-TYPE + SYNTAX HwConnectionCapabilityProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwConnectionCapabilityProfileName." + INDEX { hwConnectionCapabilityProfileName } + ::= { hwConnectionCapabilityProfileTable 1 } + + + HwConnectionCapabilityProfileEntry ::= + SEQUENCE { + hwConnectionCapabilityProfileName + OCTET STRING, + hwConnectionCapabilityEsp + INTEGER, + hwConnectionCapabilityIcmp + INTEGER, + hwConnectionCapabilityTcpFtp + INTEGER, + hwConnectionCapabilityTcpHttp + INTEGER, + hwConnectionCapabilityTcpPptpVpn + INTEGER, + hwConnectionCapabilityTcpSsh + INTEGER, + hwConnectionCapabilityTcpTlsVpn + INTEGER, + hwConnectionCapabilityTcpVoip + INTEGER, + hwConnectionCapabilityUdpIke2Port4500 + INTEGER, + hwConnectionCapabilityUdpIke2Port500 + INTEGER, + hwConnectionCapabilityUdpVoip + INTEGER, + hwConnectionCapabilityProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.1 + hwConnectionCapabilityProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a connection capability profile. It is the index of the table." + ::= { hwConnectionCapabilityProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.2 + hwConnectionCapabilityEsp OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether ESP is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.3 + hwConnectionCapabilityIcmp OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether ICMP is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.4 + hwConnectionCapabilityTcpFtp OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether FTP(TCP) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.5 + hwConnectionCapabilityTcpHttp OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether HTTP (port 80) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.6 + hwConnectionCapabilityTcpPptpVpn OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether PPTP for VPN services (port 1723) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.7 + hwConnectionCapabilityTcpSsh OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether SSH is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.8 + hwConnectionCapabilityTcpTlsVpn OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether TLS VPN (port 443) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.9 + hwConnectionCapabilityTcpVoip OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether VoIP (port 5060) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.10 + hwConnectionCapabilityUdpIke2Port4500 OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether IKEv2 (port 4500) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.11 + hwConnectionCapabilityUdpIke2Port500 OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether IKEv2 (port 500) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.12 + hwConnectionCapabilityUdpVoip OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + on(2), + off(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether VoIP (port 5060) is supported. +The default value is unknown(1)." + ::= { hwConnectionCapabilityProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.47.1.13 + hwConnectionCapabilityProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwConnectionCapabilityProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.48 + hwOperatorNameProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwOperatorNameProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query operator name profile parameters." + ::= { hwWlanConfigObjects 48 } + + --1.3.6.1.4.1.2011.6.139.11.1.48.1 + hwOperatorNameProfileEntry OBJECT-TYPE + SYNTAX HwOperatorNameProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwOperatorNameProfileName." + INDEX { hwOperatorNameProfileName } + ::= { hwOperatorNameProfileTable 1 } + + + HwOperatorNameProfileEntry ::= + SEQUENCE { + hwOperatorNameProfileName + OCTET STRING, + hwOperatorNameLanguageCodeList + OCTET STRING, + hwOperatorFriendlyNameList + OCTET STRING, + hwOperatorNameProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.48.1.1 + hwOperatorNameProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an operator name profile. It is the index of the table." + ::= { hwOperatorNameProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.48.1.2 + hwOperatorNameLanguageCodeList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A value of LanguageCode indicates a language. It is a string of 2-3 characters. +chi/zho/zh indicates Chinese and eng/en indicates English. +NOTE By default, no configuration is added.Values of LanguageCode are separated by question marks (?).A maximum of 32 LanguageCode values can be configured.A LanguageCode value must match a FriendlyName value." + ::= { hwOperatorNameProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.48.1.3 + hwOperatorFriendlyNameList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "NOTE By default, no configuration is added.A FriendlyName value is a string of 1-32 characters. FriendlyName values are separated by question marks (?).A maximum of 32 FriendlyName values can be configured.A LanguageCode value must match a FriendlyName value." + ::= { hwOperatorNameProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.48.1.4 + hwOperatorNameProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwOperatorNameProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.49 + hwOperatorClassProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwOperatorClassProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure operating class profile parameters." + ::= { hwWlanConfigObjects 49 } + + --1.3.6.1.4.1.2011.6.139.11.1.49.1 + hwOperatorClassProfileEntry OBJECT-TYPE + SYNTAX HwOperatorClassProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwOperatorClassProfileName." + INDEX { hwOperatorClassProfileName } + ::= { hwOperatorClassProfileTable 1 } + + + HwOperatorClassProfileEntry ::= + SEQUENCE { + hwOperatorClassProfileName + OCTET STRING, + hwOperatorClassIndicationList + OCTET STRING, + hwOperatorClassProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.49.1.1 + hwOperatorClassProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an operating class profile profile. It is the index of the table." + ::= { hwOperatorClassProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.49.1.2 + hwOperatorClassIndicationList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "NOTE By default, no configuration is added.A value of OperatorClassIndication is an integer that ranges from 1 to 255.A maximum of 32 OperatorClassIndication values can be configured." + ::= { hwOperatorClassProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.49.1.3 + hwOperatorClassProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwOperatorClassProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.50 + hwOperatorDomainNameProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwOperatorDomainNameProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query operator domain profile parameters." + ::= { hwWlanConfigObjects 50 } + + --1.3.6.1.4.1.2011.6.139.11.1.50.1 + hwOperatorDomainNameProfileEntry OBJECT-TYPE + SYNTAX HwOperatorDomainNameProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwOperatorDomainNameProfileName." + INDEX { hwOperatorDomainNameProfileName } + ::= { hwOperatorDomainNameProfileTable 1 } + + + HwOperatorDomainNameProfileEntry ::= + SEQUENCE { + hwOperatorDomainNameProfileName + OCTET STRING, + hwOperatorDomainNameList + OCTET STRING, + hwOperatorDomainNameProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.50.1.1 + hwOperatorDomainNameProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an operating class profile profile. It is the index of the table." + ::= { hwOperatorDomainNameProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.50.1.2 + hwOperatorDomainNameList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "NOTE By default, no configuration is added.A DomainName value is a string of 1-64 characters in compliance with RFC1035.DomainName values are separated by question marks (?).A maximum of 32 DomainName values can be configured." + ::= { hwOperatorDomainNameProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.50.1.3 + hwOperatorDomainNameProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwOperatorDomainNameProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.51 + hwNAIRealmProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwNAIRealmProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query NAI realm profile parameters." + ::= { hwWlanConfigObjects 51 } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1 + hwNAIRealmProfileEntry OBJECT-TYPE + SYNTAX HwNAIRealmProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwNAIRealmProfileName, hwNAIRealmName, hwNAIRealmEapMethodType, and hwNAIRealmEapAuthenID." + INDEX { hwNAIRealmProfileName,hwNAIRealmName,hwNAIRealmEapMethodType,hwNAIRealmEapAuthenID } + ::= { hwNAIRealmProfileTable 1 } + + + HwNAIRealmProfileEntry ::= + SEQUENCE { + hwNAIRealmProfileName + OCTET STRING, + hwNAIRealmName + OCTET STRING, + hwNAIRealmEapMethodType + Unsigned32, + hwNAIRealmEapAuthenID + Unsigned32, + hwNAIRealmEapAuthenPara + Unsigned32, + hwNAIRealmProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1.1 + hwNAIRealmProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a NAI realm profile. It is the index of the table." + ::= { hwNAIRealmProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1.2 + hwNAIRealmName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..63)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates a network identifier." + ::= { hwNAIRealmProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1.3 + hwNAIRealmEapMethodType OBJECT-TYPE + SYNTAX Unsigned32 (0..255 | 4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the authorization type. +The default value is 0xffffffff that indicates that the following four types are supported: EAP_AKA, EAP_SIM, EAP_TLS, and EAP_TTLS." + ::= { hwNAIRealmProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1.4 + hwNAIRealmEapAuthenID OBJECT-TYPE + SYNTAX Unsigned32 (0..255 | 4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the authorization ID. +The default value is 0xffffffff that indicates that all IDs within the value range are supported." + ::= { hwNAIRealmProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1.5 + hwNAIRealmEapAuthenPara OBJECT-TYPE + SYNTAX Unsigned32 (0..255 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate authorization parameter. +The default value is 0xffffffff that indicates all parameters within the value range are supported." + ::= { hwNAIRealmProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.51.1.6 + hwNAIRealmProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwNAIRealmProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.52 + hwVenueNameProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwVenueNameProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query venue name profile parameters." + ::= { hwWlanConfigObjects 52 } + + --1.3.6.1.4.1.2011.6.139.11.1.52.1 + hwVenueNameProfileEntry OBJECT-TYPE + SYNTAX HwVenueNameProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwVenueNameProfileName." + INDEX { hwVenueNameProfileName } + ::= { hwVenueNameProfileTable 1 } + + + HwVenueNameProfileEntry ::= + SEQUENCE { + hwVenueNameProfileName + OCTET STRING, + hwVenueNameLanguageCodeList + OCTET STRING, + hwVenueNameList + OCTET STRING, + hwVenueNameProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.52.1.1 + hwVenueNameProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a venue name profile. It is the index of the table." + ::= { hwVenueNameProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.52.1.2 + hwVenueNameLanguageCodeList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A value of LanguageCode indicates a language. It is a string of 2-3 characters. +For details about GUI value ranges, see ISO 639 on the Codes for the Representation of Names of Languages page. The path is http://www.loc.gov/standards/iso639-2/php/ code_list.php. chi/zho/zh indicates Chinese and eng/en indicates English. +NOTE By default, no configuration is added.Values of LanguageCode are separated by question marks (?).A maximum of 32 LanguageCode values can be configured.A LanguageCode value must match a VenueName value." + ::= { hwVenueNameProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.52.1.3 + hwVenueNameList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If the language-code is set to eng, the name is a string of characters. Rules are the same as those for SSIDs. When it is set to other values, the venue-name is set to a hexadecimal UTF-8 code because current WLANs support English only, for example, venue-name language-code ZHO name 025AB1472568. +NOTE By default, no configuration is added.A venue-name value cannot exceed 32 characters.venue-name values are separated by question marks (?).A LanguageCode value must match a VenueName value." + ::= { hwVenueNameProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.52.1.4 + hwVenueNameProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwVenueNameProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.53 + hwRoamingConsortiumProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwRoamingConsortiumProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query roaming consortium profile parameters." + ::= { hwWlanConfigObjects 53 } + + --1.3.6.1.4.1.2011.6.139.11.1.53.1 + hwRoamingConsortiumProfileEntry OBJECT-TYPE + SYNTAX HwRoamingConsortiumProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwRoamingConsortiumProfileName." + INDEX { hwRoamingConsortiumProfileName } + ::= { hwRoamingConsortiumProfileTable 1 } + + + HwRoamingConsortiumProfileEntry ::= + SEQUENCE { + hwRoamingConsortiumProfileName + OCTET STRING, + hwRoamingConsortiumOIList + OCTET STRING, + hwRoamingConsortiumOIInBeaconList + OCTET STRING, + hwRoamingConsortiumProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.53.1.1 + hwRoamingConsortiumProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a roaming consortium profile. It is the index of the table." + ::= { hwRoamingConsortiumProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.53.1.2 + hwRoamingConsortiumOIList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the roaming consortium member. +The roaming consortium OI is a hexadecimal number in the format of HH-HH-HH or HH-HH-HH-HH-HH. The length of a roaming consortium OI is three to five bytes, for example, 12-34-56?12-34-58?34-45-67. +NOTE By default, no configuration is added.RoamingConsortiumOI values are separated by question marks (?).A maximum of 32 RoamingConsortiumOI values can be configured.A RoamingConsortiumOI value must match an OIInBeacon value." + ::= { hwRoamingConsortiumProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.53.1.3 + hwRoamingConsortiumOIInBeaconList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether a roaming consortium member carries the inbeacon tag, for example, YES?NO?NO. +NOTE By default, no configuration is added.A RoamingConsortiumOI value must match an OIInBeacon value.A maximum of three RoamingConsortiumOI values can be configured.in-beacon can be set to YES." + ::= { hwRoamingConsortiumProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.53.1.4 + hwRoamingConsortiumProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwRoamingConsortiumProfileEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.54 + hwSACProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query SAC profile parameters." + ::= { hwWlanConfigObjects 54 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.54.1 + hwSACProfileEntry OBJECT-TYPE + SYNTAX HwSACProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwSACProfileName." + INDEX { hwSACProfileName } + ::= { hwSACProfileTable 1 } + + + HwSACProfileEntry ::= + SEQUENCE { + hwSACProfileName + OCTET STRING, + hwSACProfUserStat + INTEGER, + hwSACProfVapStat + INTEGER, + hwSACProfRowStatus + RowStatus + } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.54.1.1 + hwSACProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an SAC profile. It is the index of the table." + ::= { hwSACProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.54.1.2 + hwSACProfUserStat OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the user statistics function is enabled in the SAC profile. +The default value is disable (1)." + ::= { hwSACProfileEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.54.1.3 + hwSACProfVapStat OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the VAP statistics function is enabled in the SAC profile. +The default value is disable (1)." + ::= { hwSACProfileEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.54.1.4 + hwSACProfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwSACProfileEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.55 + hwSACProfileActionTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACProfileActionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes SAC profile action configurations.This table is used to configure actions in an SAC profile." + ::= { hwWlanConfigObjects 55 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1 + hwSACProfileActionEntry OBJECT-TYPE + SYNTAX HwSACProfileActionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwSACProfileName and hwSACProfileActionIndex." + INDEX { hwSACProfileName,hwSACProfileActionIndex} + ::= { hwSACProfileActionTable 1 } + + + HwSACProfileActionEntry ::= + SEQUENCE { + hwSACProfileActionIndex + Unsigned32, + hwSACProfileActProtocolType + INTEGER, + hwSACProfileActProtocolName + OCTET STRING, + hwSACProfileActProtocolGrpName + OCTET STRING, + hwSACProfileActionType + INTEGER, + hwSACProfileActCarCir + Unsigned32, + hwSACProfileActRemarkDscpValue + Unsigned32, + hwSACProfileActRemark8021pValue + Unsigned32, + hwSACProfileActionRowstatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.1 + hwSACProfileActionIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal index of the action. It is the index of the table." + ::= { hwSACProfileActionEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.2 + hwSACProfileActProtocolType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(0) , + application(1) , + applicationGroup(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the protocol type." + ::= { hwSACProfileActionEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.3 + hwSACProfileActProtocolName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the protocol name." + ::= { hwSACProfileActionEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.4 + hwSACProfileActProtocolGrpName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the protocol group name." + ::= { hwSACProfileActionEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.5 + hwSACProfileActionType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(0) , + deny(1), + car(2), + remarkDscp(3), + remark8021p(4), + dynamicOptimization(5), + voiceDynamicOptimization(6), + videoDynamicOptimization(7) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the action type." + ::= { hwSACProfileActionEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.6 + hwSACProfileActCarCir OBJECT-TYPE + SYNTAX Unsigned32 (64..10000000|4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the CAR CIR value." + ::= { hwSACProfileActionEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.7 + hwSACProfileActRemarkDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the DSCP value." + ::= { hwSACProfileActionEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.8 + hwSACProfileActRemark8021pValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the 802.1p priority." + ::= { hwSACProfileActionEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.55.1.9 + hwSACProfileActionRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwSACProfileActionEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.56 + hwWlanAPProvision OBJECT IDENTIFIER ::= { hwWlanConfigObjects 56 } + + + + --1.3.6.1.4.1.2011.6.139.11.1.59.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.56.1 + hwWlanAPProvisionAddressMode OBJECT-TYPE + SYNTAX INTEGER + { + static(1), + dhcp(2), + slaac(3), + invalid(-1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv4 address allocation mode." + ::= { hwWlanAPProvision 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.3 + hwWlanAPProvisionIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 address. +hwWlanAPProvisionIPv4Address takes effect if hwAPIPv4Method is set to static." + ::= { hwWlanAPProvision 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.4 + hwWlanAPProvisionIPv4Mask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 mask. +hwWlanAPProvisionIPv4Mask takes effect if hwAPIPv4Method is set to static." + ::= { hwWlanAPProvision 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.5 + hwWlanAPProvisionIPv4Gateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 gateway. +hwWlanAPProvisionIPv4Gateway takes effect if hwAPIPv4Method is set to static." + ::= { hwWlanAPProvision 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.6 + hwWlanAPProvisionIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv6 address. +hwWlanAPProvisionIPv6Address takes effect if hwAPIPv6Method is set to static." + ::= { hwWlanAPProvision 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.7 + hwWlanAPProvisionIPv6PrefixLen OBJECT-TYPE + SYNTAX Unsigned32 (0..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the length of the IPv6 address prefix." + ::= { hwWlanAPProvision 6 } + + + --1.3.6.1.4.1.2011.6.139.11.1.59.8 + hwWlanAPProvisionIPv6Gateway OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv6 gateway. +hwWlanAPProvisionIPv6Gateway takes effect if hwAPIPv6Method is set to static." + ::= { hwWlanAPProvision 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.9 + hwWlanAPProvisionGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the group name." + ::= { hwWlanAPProvision 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.10 + hwWlanAPProvisionName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of an AP." + ::= { hwWlanAPProvision 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.11 + hwWlanAPProvisionIPv4ACList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC IPv4 address list. +NOTE ACL rules are separated by question marks (?).A maximum of four ACL rules can be configured." + ::= { hwWlanAPProvision 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.12 + hwWlanAPProvisionIPv6ACList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC IPv6 address list. +NOTE ACL rules are separated by question marks (?).A maximum of four ACL rules can be configured." + ::= { hwWlanAPProvision 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.13 + hwWlanAPProvisionCommitAPName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the configuration is delivered based on AP names." + ::= { hwWlanAPProvision 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.14 + hwWlanAPProvisionCommitAPMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the configuration is delivered based on MAC addresses of APs." + ::= { hwWlanAPProvision 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.59.15 + hwWlanAPProvisionCommitAPGroup OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the configuration is delivered based on AP groups." + ::= { hwWlanAPProvision 14 } + + hwWlanAPProvisionAPMode OBJECT-TYPE + SYNTAX INTEGER + { + fat(1), + cloud(2), + invalid(-1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP mode." + ::= { hwWlanAPProvision 15 } + + hwWlanAPProvisionCommitAPId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the configuration is delivered based on AP ID." + ::= { hwWlanAPProvision 16 } + + hwWlanAPProvisionCommitAll OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the configuration is delivered to all APs." + ::= { hwWlanAPProvision 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.60 + hwWlanRadioCalibrateManagement OBJECT IDENTIFIER ::= { hwWlanConfigObjects 57 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.57.1 + hwWlanRadioCalibrateMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1), + manual(2), + schedule(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio calibration mode. +The default value is auto(1)." + ::= { hwWlanRadioCalibrateManagement 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.57.2 + hwWlanRadioCalibrateScheduleTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the scheduled radio calibration time." + ::= { hwWlanRadioCalibrateManagement 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.57.3 + hwWlanRadioCalibrateManualStartup OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the manually triggered radio calibration. It is valid only when the radio calibration mode is manual." + ::= { hwWlanRadioCalibrateManagement 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.57.4 + hwWlanRadioCalibrateAutoInterval OBJECT-TYPE + SYNTAX Integer32 (30..1440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the automatic radio calibration interval. +It is expressed in minutes. +The default value is 1440." + ::= { hwWlanRadioCalibrateManagement 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.57.5 + hwWlanRadioCalibratePolicy OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio calibration policy.bit0: rogue-ap bit1: nonWifi bit2: load +The default value is 0, indicating that this function is not enabled." + ::= { hwWlanRadioCalibrateManagement 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.60.6 + -- 1.3.6.1.4.1.2011.6.139.11.1.57.6 + hwWlanRadioCalibrateSensitivity OBJECT-TYPE + SYNTAX INTEGER + { + medium(1), + high(2), + low(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio calibration sensitivity. +The default value is medium(2)." + ::= { hwWlanRadioCalibrateManagement 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.60.7 + -- 1.3.6.1.4.1.2011.6.139.11.1.57.7 + hwWlanRadioCalibrateAutoStartTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the start time of automatic radio calibration. +The default value is 00:00:00." + ::= { hwWlanRadioCalibrateManagement 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.61 + -- 1.3.6.1.4.1.2011.6.139.11.1.58 + hwWlanMobilityObjects OBJECT IDENTIFIER ::= { hwWlanConfigObjects 58 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.61.1 +-- 1.3.6.1.4.1.2011.6.139.11.1.61.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1 + hwWlanMobilityManagement OBJECT IDENTIFIER ::= { hwWlanMobilityObjects 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.1 + hwWlanMasterControllerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1) , + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the CUC function. +The default value is disable (1)." + ::= { hwWlanMobilityManagement 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.2 + hwWlanConnectMasterControllerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disconnect(1) , + connect(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This objection indicates the status of the connection between the AC and Master Controller. The establishment of connection between the AC and Master Controller requires the IP address of the Master Controller. +The default value is disconnect(1)." + ::= { hwWlanMobilityManagement 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.3 + hwWlanConnectMasterControllerIPv4Addr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv4 address of the CUC that needs to set up a link with the Master Controller." + ::= { hwWlanMobilityManagement 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.4 + hwWlanConnectMasterControllerIPv6Addr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the CUC that needs to set up a link with the Master Controller." + ::= { hwWlanMobilityManagement 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.5 + hwWlanMobilityServerIPv4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityManagement 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.6 + hwWlanMobilityServerIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityManagement 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.7 + hwWlanMobilityServerState OBJECT-TYPE + SYNTAX INTEGER + { + fault(1), + vmiss(2), + normal(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityManagement 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.1.8 + hwWlanMobilityServerSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityManagement 8 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.61.2 + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2 + hwWlanMobilityAcTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityAcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.2.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2.1 + hwWlanMobilityAcEntry OBJECT-TYPE + SYNTAX HwWlanMobilityAcEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanMemAcIndex." + INDEX { hwWlanMemAcIndex } + ::= { hwWlanMobilityAcTable 1 } + + + HwWlanMobilityAcEntry ::= + SEQUENCE { + hwWlanMemAcIndex + Integer32, + hwWlanAcIPv4Address + IpAddress, + hwWlanAcIPv6Address + OCTET STRING, + hwWlanAcState + INTEGER, + hwWlanAcRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.61.2.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2.1.1 + hwWlanMemAcIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanMobilityAcEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.2.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2.1.2 + hwWlanAcIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC's IPv4 address." + ::= { hwWlanMobilityAcEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.2.1.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2.1.3 + hwWlanAcIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC's IPv6 address." + ::= { hwWlanMobilityAcEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.2.1.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2.1.4 + hwWlanAcState OBJECT-TYPE + SYNTAX INTEGER + { + normal(1) , + fault(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the state of connections to the AC." + ::= { hwWlanMobilityAcEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.2.1.5 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.2.1.5 + hwWlanAcRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanMobilityAcEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.3 + hwWlanMobilityGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.3.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.3.1 + hwWlanMobilityGroupEntry OBJECT-TYPE + SYNTAX HwWlanMobilityGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanMobilityGroupName." + INDEX { hwWlanMobilityGroupName } + ::= { hwWlanMobilityGroupTable 1 } + + + HwWlanMobilityGroupEntry ::= + SEQUENCE { + hwWlanMobilityGroupName + OCTET STRING, + hwWlanMobilityGroupRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.61.3.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.3.1.1 + hwWlanMobilityGroupName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the mobility group name." + ::= { hwWlanMobilityGroupEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.3.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.3.1.2 + hwWlanMobilityGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates to add or delete mobility groups." + ::= { hwWlanMobilityGroupEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.4 + hwWlanMobilityGroupMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.4.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.4.1 + hwWlanMobilityGroupMemberEntry OBJECT-TYPE + SYNTAX HwWlanMobilityGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwWlanMobilityGroupName and hwWlanMobilityGroupMemberACIndex." + INDEX { hwWlanMobilityGroupMemberACIndex,hwWlanMobilityGroupName } + ::= { hwWlanMobilityGroupMemberTable 1 } + + + HwWlanMobilityGroupMemberEntry ::= + SEQUENCE { + hwWlanMobilityGroupMemberACIndex + Integer32, + hwWlanMobilityGroupMemberRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.61.4.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.4.1.1 + hwWlanMobilityGroupMemberACIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates mobility group members (AC ID)." + ::= { hwWlanMobilityGroupMemberEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.4.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.58.4.1.2 + hwWlanMobilityGroupMemberRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates to add or delete mobility group members." + ::= { hwWlanMobilityGroupMemberEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.5 + hwWlanMobilityMemberIPv4Table OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityMemberIPv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.5.1 + hwWlanMobilityMemberIPv4Entry OBJECT-TYPE + SYNTAX HwWlanMobilityMemberIPv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanMobilityGroupName, hwWlanMobilityMemberIPv4Addr } + ::= { hwWlanMobilityMemberIPv4Table 1 } + + + HwWlanMobilityMemberIPv4Entry ::= + SEQUENCE { + hwWlanMobilityMemberIPv4Addr + IpAddress, + hwWlanMobilityMemberIPv4Description + OCTET STRING, + hwWlanMobilityMemberIPv4State + INTEGER, + hwWlanMobilityMemberIPv4RowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.5.1.1 + hwWlanMobilityMemberIPv4Addr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv4Entry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.5.1.2 + hwWlanMobilityMemberIPv4Description OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv4Entry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.5.1.3 + hwWlanMobilityMemberIPv4State OBJECT-TYPE + SYNTAX INTEGER + { + fault(1), + normal(2), + vmiss(3), + invalid(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv4Entry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.5.1.4 + hwWlanMobilityMemberIPv4RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv4Entry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.6 + hwWlanMobilityMemberIPv6Table OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityMemberIPv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.6.1 + hwWlanMobilityMemberIPv6Entry OBJECT-TYPE + SYNTAX HwWlanMobilityMemberIPv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanMobilityGroupName, hwWlanMobilityMemberIPv6Addr } + ::= { hwWlanMobilityMemberIPv6Table 1 } + + + HwWlanMobilityMemberIPv6Entry ::= + SEQUENCE { + hwWlanMobilityMemberIPv6Addr + OCTET STRING, + hwWlanMobilityMemberIPv6Description + OCTET STRING, + hwWlanMobilityMemberIPv6State + INTEGER, + hwWlanMobilityMemberIPv6RowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.6.1.1 + hwWlanMobilityMemberIPv6Addr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv6Entry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.6.1.2 + hwWlanMobilityMemberIPv6Description OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv6Entry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.6.1.3 + hwWlanMobilityMemberIPv6State OBJECT-TYPE + SYNTAX INTEGER + { + fault(1), + normal(2), + vmiss(3), + invalid(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv6Entry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.6.1.4 + hwWlanMobilityMemberIPv6RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityMemberIPv6Entry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.7 + hwWlanMobilityClientIPv4Table OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityClientIPv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.7.1 + hwWlanMobilityClientIPv4Entry OBJECT-TYPE + SYNTAX HwWlanMobilityClientIPv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanMobilityClientIPv4Addr } + ::= { hwWlanMobilityClientIPv4Table 1 } + + + HwWlanMobilityClientIPv4Entry ::= + SEQUENCE { + hwWlanMobilityClientIPv4Addr + IpAddress, + hwWlanMobilityClientIPv4State + INTEGER + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.7.1.1 + hwWlanMobilityClientIPv4Addr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityClientIPv4Entry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.7.1.2 + hwWlanMobilityClientIPv4State OBJECT-TYPE + SYNTAX INTEGER + { + fault(1), + normal(2), + vmiss(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityClientIPv4Entry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.8 + hwWlanMobilityClientIPv6Table OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMobilityClientIPv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityObjects 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.8.1 + hwWlanMobilityClientIPv6Entry OBJECT-TYPE + SYNTAX HwWlanMobilityClientIPv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanMobilityClientIPv6Addr } + ::= { hwWlanMobilityClientIPv6Table 1 } + + + HwWlanMobilityClientIPv6Entry ::= + SEQUENCE { + hwWlanMobilityClientIPv6Addr + OCTET STRING, + hwWlanMobilityClientIPv6State + INTEGER + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.8.1.1 + hwWlanMobilityClientIPv6Addr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityClientIPv6Entry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.58.8.1.2 + hwWlanMobilityClientIPv6State OBJECT-TYPE + SYNTAX INTEGER + { + fault(1), + normal(2), + vmiss(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMobilityClientIPv6Entry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.11.1.62 + + -- 1.3.6.1.4.1.2011.6.139.11.1.59 + hwWlanLanguageCodeTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanLanguageCodeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "It is the language code table. It complies with ISO 639 and is used by hotspot networks to obtain language code information." + ::= { hwWlanConfigObjects 59 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.62.1 +-- 1.3.6.1.4.1.2011.6.139.11.1.62.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.59.1 + hwWlanLanguageCodeEntry OBJECT-TYPE + SYNTAX HwWlanLanguageCodeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanLanguageCode." + INDEX { hwWlanLanguageCode } + ::= { hwWlanLanguageCodeTable 1 } + + + HwWlanLanguageCodeEntry ::= + SEQUENCE { + hwWlanLanguageCode + OCTET STRING, + hwWlanLanguageCodeDescription + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.11.1.62.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.59.1.1 + hwWlanLanguageCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..3)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the language code." + ::= { hwWlanLanguageCodeEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.62.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.59.1.2 + hwWlanLanguageCodeDescription OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the description of language codes." + ::= { hwWlanLanguageCodeEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.63 + -- 1.3.6.1.4.1.2011.6.139.11.1.60 + hwFatApConfigObjects OBJECT IDENTIFIER ::= { hwWlanConfigObjects 60 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.63.1 +-- 1.3.6.1.4.1.2011.6.139.11.1.63.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1 + hwFatApGlobalConfig OBJECT IDENTIFIER ::= { hwFatApConfigObjects 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.1 + hwFatApCountryCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.2 + hwFatApMaxStaNum OBJECT-TYPE + SYNTAX Unsigned32 (1..256) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.3 + hwFatApStaAccessMode OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + blacklist(2), + whitelist(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.4 + hwFatApStaAccessModePorfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.5 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.5 + hwFatApHighTempThreshold OBJECT-TYPE + SYNTAX Unsigned32 (20..100|65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.6 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.6 + hwFatApLowTempThreshold OBJECT-TYPE + SYNTAX Integer32 (-70..10|65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.7 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.7 + hwFatApDcaChannel5GBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40(2), + ht80(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.8 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.8 + hwFatApDcaChannel5GChannelSet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.9 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.9 + hwFatApDcaChannel2GChannelSet OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 9 } + --1.3.6.1.4.1.2011.6.139.11.1.63.1.10 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.10 + hwFatApDynamicBlackAgingTime OBJECT-TYPE + SYNTAX Unsigned32 (180..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.11 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.1.11 + hwFatApAntennaOutputMode OBJECT-TYPE + SYNTAX INTEGER + { + combine(1), + split(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApGlobalConfig 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2 + hwFatApRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwFatApRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApConfigObjects 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.2.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1 + hwFatApRadioEntry OBJECT-TYPE + SYNTAX HwFatApRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwFatApRadio } + ::= { hwFatApRadioTable 1 } + + + HwFatApRadioEntry ::= + SEQUENCE { + hwFatApRadio + Unsigned32, + hwFatApRadio0Frequency + INTEGER, + hwFatApRadio2gProfile + OCTET STRING, + hwFatApRadio5gProfile + OCTET STRING, + hwFatApRadioMeshProfile + OCTET STRING, + hwFatApLocationProfile + OCTET STRING, + hwFatApRadioRowStatus + RowStatus, + hwFatApMeshWhitelistProfile + OCTET STRING, + hwFatApWdsWhitelistProfile + OCTET STRING, + hwFatApRadioSwitch + INTEGER, + hwFatApRadioChannel + Unsigned32, + hwFatApRadioBandwidth + INTEGER, + hwFatApRadioEirp + Unsigned32, + hwFatApRadioAntennaGain + Unsigned32, + hwFatApRadioCoverageDistance + Unsigned32, + hwFatApRadioWorkMode + INTEGER, + hwFatApWidsDeviceDetectSwitch + INTEGER, + hwFatApWidsAttackDetectEnBmp + Unsigned32, + hwFatApWidsRogueContainSwitch + INTEGER, + hwFatApRadioSecondChannel + Unsigned32 + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.1 + hwFatApRadio OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.2 + hwFatApRadio0Frequency OBJECT-TYPE + SYNTAX INTEGER + { + frequency5G(1), + frequency2G(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.3 + hwFatApRadio2gProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.4 + hwFatApRadio5gProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.5 + hwFatApRadioMeshProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.7 + hwFatApLocationProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.8 + hwFatApRadioRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApRadioEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.9 + hwFatApMeshWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwFatApRadioEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.10 + hwFatApWdsWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwFatApRadioEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.11 + hwFatApRadioSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a 2G radio profile. It is the index of the table." + ::= { hwFatApRadioEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.12 + hwFatApRadioChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 165 (with a separation interval of 4)." + ::= { hwFatApRadioEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.13 + hwFatApRadioBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40Plus(2), + ht40Minus(3), + ht80(4), + ht160(5), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate a bandwidth. The default value is 1." + ::= { hwFatApRadioEntry 13 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.14 + hwFatApRadioEirp OBJECT-TYPE + SYNTAX Unsigned32 (1..127) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a power value. The default value is 127. The configuration is saved but the actual power is determined by the maximum power supported by the AP." + ::= { hwFatApRadioEntry 14 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.15 + hwFatApRadioAntennaGain OBJECT-TYPE + SYNTAX Unsigned32 (0..30 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates antenna gains. The default value 0xFF indicates that the default gain of an AP is used. It is expressed in dB. Default gains vary with different types of APs." + ::= { hwFatApRadioEntry 15 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.16 + hwFatApRadioCoverageDistance OBJECT-TYPE + SYNTAX Unsigned32 (1..400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio coverage distance. The default value is 3. The unit is 0.1 km." + ::= { hwFatApRadioEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.17 + hwFatApRadioWorkMode OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + monitor(2), + dualband(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio working mode. The default value is 1." + ::= { hwFatApRadioEntry 17 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.18 + hwFatApWidsDeviceDetectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwFatApRadioEntry 18 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.19 + hwFatApWidsAttackDetectEnBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bit map of the brute force attack switch. bit0:weak-iv, bit1:spoof, bit2:flood, bit3:wpa-psk, bit4:wpa2-psk, bit5:wapi-psk, bit6:wep-psk." + ::= { hwFatApRadioEntry 19 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.20 + hwFatApWidsRogueContainSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwFatApRadioEntry 20 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.2.1.21 + hwFatApRadioSecondChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 165 (with a separation interval of 4)." + ::= { hwFatApRadioEntry 21 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.60.3 +-- 1.3.6.1.4.1.2011.6.139.11.1.60.3 +-- 1.3.6.1.4.1.2011.6.139.11.1.60.3 +-- 1.3.6.1.4.1.2011.6.139.11.1.60.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.3 + hwFatApVapTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwFatApVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApConfigObjects 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.60.3.1 + hwFatApVapEntry OBJECT-TYPE + SYNTAX HwFatApVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwFatApWlanId, hwFatApRadioId } + ::= { hwFatApVapTable 1 } + + + HwFatApVapEntry ::= + SEQUENCE { + hwFatApWlanId + Unsigned32, + hwFatApRadioId + Unsigned32, + hwFatApVapProfile + OCTET STRING, + hwFatApVapProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.63.3.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.3.1.1 + hwFatApWlanId OBJECT-TYPE + SYNTAX Unsigned32 (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApVapEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.3.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.3.1.2 + hwFatApRadioId OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApVapEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.3.1.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.3.1.3 + hwFatApVapProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApVapEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.3.1.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.60.3.1.4 + hwFatApVapProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwFatApVapEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.61 + hwNAIRealmProfileListTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwNAIRealmProfileListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the NAI realm profile." + ::= { hwWlanConfigObjects 61 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1 + hwNAIRealmProfileListEntry OBJECT-TYPE + SYNTAX HwNAIRealmProfileListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwNAIRealmProfileListProfileName." + INDEX { hwNAIRealmProfileListProfileName } + ::= { hwNAIRealmProfileListTable 1 } + + + HwNAIRealmProfileListEntry ::= + SEQUENCE { + hwNAIRealmProfileListProfileName + OCTET STRING, + hwNAIRealmProfileListRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1.1 + hwNAIRealmProfileListProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the profile name." + ::= { hwNAIRealmProfileListEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.61.1.2 + hwNAIRealmProfileListRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwNAIRealmProfileListEntry 2 } + + + --1.3.6.1.4.1.2011.6.139.11.1.62 + hwWidsSpoofProfileListTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsSpoofProfileListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete WIDS spoof SSID profiles." + ::= { hwWlanConfigObjects 62 } + + --1.3.6.1.4.1.2011.6.139.11.1.62.1 + hwWidsSpoofProfileListEntry OBJECT-TYPE + SYNTAX HwWidsSpoofProfileListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWidsSpoofProfileListProfileName." + INDEX { hwWidsSpoofProfileListProfileName } + ::= { hwWidsSpoofProfileListTable 1 } + + + HwWidsSpoofProfileListEntry ::= + SEQUENCE { + hwWidsSpoofProfileListProfileName + OCTET STRING, + hwWidsSpoofProfileListRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.62.1.1 + hwWidsSpoofProfileListProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS spoof SSID profile." + ::= { hwWidsSpoofProfileListEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.62.1.2 + hwWidsSpoofProfileListRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwWidsSpoofProfileListEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.63 + hwWidsWhitelistProfileListTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWidsWhitelistProfileListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete WIDS confident profiles." + ::= { hwWlanConfigObjects 63 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1 + hwWidsWhitelistProfileListEntry OBJECT-TYPE + SYNTAX HwWidsWhitelistProfileListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWidsWhitelistProfileListProfileName." + INDEX { hwWidsWhitelistProfileListProfileName } + ::= { hwWidsWhitelistProfileListTable 1 } + + + HwWidsWhitelistProfileListEntry ::= + SEQUENCE { + hwWidsWhitelistProfileListProfileName + OCTET STRING, + hwWidsWhitelistProfileListRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.1 + hwWidsWhitelistProfileListProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a WIDS confident profile." + ::= { hwWidsWhitelistProfileListEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.63.1.2 + hwWidsWhitelistProfileListRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwWidsWhitelistProfileListEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64 + hwWlanLoadBalanceStaticGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanLoadBalanceStaticGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table records information about the static load balancing group." + ::= { hwWlanConfigObjects 64 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1 + hwWlanLoadBalanceStaticGroupEntry OBJECT-TYPE + SYNTAX HwWlanLoadBalanceStaticGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanLBGroupName." + INDEX { hwWlanLBGroupName } + ::= { hwWlanLoadBalanceStaticGroupTable 1 } + + + HwWlanLoadBalanceStaticGroupEntry ::= + SEQUENCE { + hwWlanLBGroupName + OCTET STRING, + hwWlanLBGapThreshold + Unsigned32, + hwWlanLBDenyThreshold + Unsigned32, + hwWlanLBStartThreshold + Unsigned32, + hwWlanLBGroupStatus + Unsigned32, + hwWlanLBGroupRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1.1 + hwWlanLBGroupName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of the static load balancing group." + ::= { hwWlanLoadBalanceStaticGroupEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1.2 + hwWlanLBGapThreshold OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the load difference threshold of a static load balancing group." + ::= { hwWlanLoadBalanceStaticGroupEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1.3 + hwWlanLBDenyThreshold OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the maximum number of times an AP rejects association requests of a STA in the static load balancing group." + ::= { hwWlanLoadBalanceStaticGroupEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1.4 + hwWlanLBStartThreshold OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the start threshold for load balancing in a static load balancing group." + ::= { hwWlanLoadBalanceStaticGroupEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1.5 + hwWlanLBGroupStatus OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the load balancing status in the static load balancing group.1: Load is not balanced.2: Load is balanced." + ::= { hwWlanLoadBalanceStaticGroupEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.64.1.6 + hwWlanLBGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table, which can be createAndGo(4) or destroy(6)." + ::= { hwWlanLoadBalanceStaticGroupEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.65 + hwWlanLoadBalanceStaticGroupMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanLoadBalanceStaticGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table records information about members in the static load balancing group." + ::= { hwWlanConfigObjects 65 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.65.1 + hwWlanLoadBalanceStaticGroupMemberEntry OBJECT-TYPE + SYNTAX HwWlanLoadBalanceStaticGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanLBGroupName, hwWlanApName, and hwWlanRadioID." + INDEX { hwWlanLBGroupName, hwWlanApName, hwWlanRadioID } + ::= { hwWlanLoadBalanceStaticGroupMemberTable 1 } + + + HwWlanLoadBalanceStaticGroupMemberEntry ::= + SEQUENCE { + hwWlanLBMemberRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.65.1.1 + hwWlanLBMemberRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table." + ::= { hwWlanLoadBalanceStaticGroupMemberEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66 + hwWlanCountryCodeTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanCountryCodeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 66 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1 + hwWlanCountryCodeEntry OBJECT-TYPE + SYNTAX HwWlanCountryCodeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanCountryCode } + ::= { hwWlanCountryCodeTable 1 } + + + HwWlanCountryCodeEntry ::= + SEQUENCE { + hwWlanCountryCode + OCTET STRING, + hwWlanCountryCodeEngDescription + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet2gBW20 + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet2gBW40Plus + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet2gBW40Minus + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet5gBW20 + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet5gBW40Plus + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet5gBW40Minus + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet5gBW80 + OCTET STRING, + hwWlanCountryCodeAvailableChannelSet5gBW160 + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.1 + hwWlanCountryCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.2 + hwWlanCountryCodeEngDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.3 + hwWlanCountryCodeAvailableChannelSet2gBW20 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.4 + hwWlanCountryCodeAvailableChannelSet2gBW40Plus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.5 + hwWlanCountryCodeAvailableChannelSet2gBW40Minus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.6 + hwWlanCountryCodeAvailableChannelSet5gBW20 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.7 + hwWlanCountryCodeAvailableChannelSet5gBW40Plus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.8 + hwWlanCountryCodeAvailableChannelSet5gBW40Minus OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.9 + hwWlanCountryCodeAvailableChannelSet5gBW80 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 9 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.66.1.10 + hwWlanCountryCodeAvailableChannelSet5gBW160 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanCountryCodeEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.67 + hwUCCProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwUCCProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to configure and query UCC profile parameters." + ::= { hwWlanConfigObjects 67 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1 + hwUCCProfileEntry OBJECT-TYPE + SYNTAX HwUCCProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwUCCProfileName." + INDEX { hwUCCProfileName } + ::= { hwUCCProfileTable 1 } + + + HwUCCProfileEntry ::= + SEQUENCE { + hwUCCProfileName + OCTET STRING, + hwUCCProfLyncVoice8021p + INTEGER, + hwUCCProfLyncVoice8021pValue + Unsigned32, + hwUCCProfLyncVoiceDscp + INTEGER, + hwUCCProfLyncVoiceDscpValue + Unsigned32, + hwUCCProfLyncVideo8021p + INTEGER, + hwUCCProfLyncVideo8021pValue + Unsigned32, + hwUCCProfLyncVideoDscp + INTEGER, + hwUCCProfLyncVideoDscpValue + Unsigned32, + hwUCCProfLyncShare8021p + INTEGER, + hwUCCProfLyncShare8021pValue + Unsigned32, + hwUCCProfLyncShareDscp + INTEGER, + hwUCCProfLyncShareDscpValue + Unsigned32, + hwUCCProfLyncFileTransfer8021p + INTEGER, + hwUCCProfLyncFileTransfer8021pValue + Unsigned32, + hwUCCProfLyncFileTransferDscp + INTEGER, + hwUCCProfLyncFileTransferDscpValue + Unsigned32, + hwUCCProfileRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.1 + hwUCCProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of a UCC profile. It is the index of the table." + ::= { hwUCCProfileEntry 1 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.2 + hwUCCProfLyncVoice8021p OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-voice remark 8021p." + ::= { hwUCCProfileEntry 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.3 + hwUCCProfLyncVoice8021pValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-voice remark 8021p." + ::= { hwUCCProfileEntry 3 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.4 + hwUCCProfLyncVoiceDscp OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-voice remark dscp." + ::= { hwUCCProfileEntry 4 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.5 + hwUCCProfLyncVoiceDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-voice remark dscp." + ::= { hwUCCProfileEntry 5 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.6 + hwUCCProfLyncVideo8021p OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-video remark 8021p." + ::= { hwUCCProfileEntry 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.7 + hwUCCProfLyncVideo8021pValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-video remark 8021p." + ::= { hwUCCProfileEntry 7 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.8 + hwUCCProfLyncVideoDscp OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-video remark dscp." + ::= { hwUCCProfileEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.9 + hwUCCProfLyncVideoDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-video remark dscp." + ::= { hwUCCProfileEntry 9 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.10 + hwUCCProfLyncShare8021p OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-destop-share remark 8021p." + ::= { hwUCCProfileEntry 10 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.11 + hwUCCProfLyncShare8021pValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-destop-share remark 8021p." + ::= { hwUCCProfileEntry 11 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.12 + hwUCCProfLyncShareDscp OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-destop-share remark dscp." + ::= { hwUCCProfileEntry 12 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.13 + hwUCCProfLyncShareDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-destop-share remark dscp." + ::= { hwUCCProfileEntry 13 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.14 + hwUCCProfLyncFileTransfer8021p OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-file-transfer remark 8021p." + ::= { hwUCCProfileEntry 14 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.15 + hwUCCProfLyncFileTransfer8021pValue OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-file-transfer remark 8021p." + ::= { hwUCCProfileEntry 15 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.16 + hwUCCProfLyncFileTransferDscp OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the switch of lync-file-transfer remark dscp." + ::= { hwUCCProfileEntry 16 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.17 + hwUCCProfLyncFileTransferDscpValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the value of lync-file-transfer remark dscp." + ::= { hwUCCProfileEntry 17 } + + --1.3.6.1.4.1.2011.6.139.11.1.67.1.18 + hwUCCProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwUCCProfileEntry 18 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.68 + hwSoftgreProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSoftgreProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 68 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1 + hwSoftgreProfileEntry OBJECT-TYPE + SYNTAX HwSoftgreProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSoftgreProfileName } + ::= { hwSoftgreProfileTable 1 } + + + HwSoftgreProfileEntry ::= + SEQUENCE { + hwSoftgreProfileName + OCTET STRING, + hwSoftgreDestinationIPAddress + IpAddress, + hwSoftgreDestinationIPv6Address + OCTET STRING, + hwSoftgreKeepaliveFlag + INTEGER, + hwSoftgreKeepalivePeriod + Unsigned32, + hwSoftgreKeepaliveRetryTimes + Unsigned32, + hwSoftgreProfileRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.1 + hwSoftgreProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.2 + hwSoftgreDestinationIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.3 + hwSoftgreDestinationIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.4 + hwSoftgreKeepaliveFlag OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.5 + hwSoftgreKeepalivePeriod OBJECT-TYPE + SYNTAX Unsigned32 (1..32767) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.6 + hwSoftgreKeepaliveRetryTimes OBJECT-TYPE + SYNTAX Unsigned32 (1..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.68.1.7 + hwSoftgreProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSoftgreProfileEntry 7 } + --1.3.6.1.4.1.2011.6.139.11.1.69 + hwWlanIDIndexedAPSpecificTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanIDIndexedAPSpecificEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create or delete an AP specific profile and bind an AP system profile, 2G radio profile, or domain profile to it or unbind an AP system profile, 2G radio profile, or domain profile from it." + ::= { hwWlanConfigObjects 69 } + --1.3.6.1.4.1.2011.6.139.11.1.69.1 + hwWlanIDIndexedAPSpecificEntry OBJECT-TYPE + SYNTAX HwWlanIDIndexedAPSpecificEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanIDIndexedAPSpApId." + INDEX { hwWlanIDIndexedAPSpApId } + ::= { hwWlanIDIndexedAPSpecificTable 1 } + HwWlanIDIndexedAPSpecificEntry ::= + SEQUENCE { + hwWlanIDIndexedAPSpApId + Unsigned32, + hwWlanIDIndexedAPSpAPSystemProfile + OCTET STRING, + hwWlanIDIndexedAPSpDomainProfile + OCTET STRING, + hwWlanIDIndexedAPSpApMac + MacAddress, + hwWlanIDIndexedAPSpApTypeInfo + OCTET STRING, + hwWlanIDIndexedAPSpWidsProfile + OCTET STRING, + hwWlanIDIndexedAPSpRowStatus + RowStatus, + hwWlanIDIndexedAPSpBleProfile + OCTET STRING, + hwWlanIDIndexedAPSpLongitude + OCTET STRING, + hwWlanIDIndexedAPSpLatitude + OCTET STRING, + hwWlanIDIndexedSpApAddressMode + INTEGER, + hwWlanIDIndexedSpApIPv4Address + IpAddress, + hwWlanIDIndexedSpApIPv4Mask + IpAddress, + hwWlanIDIndexedSpApIPv4Gateway + IpAddress, + hwWlanIDIndexedSpApIPv6Address + OCTET STRING, + hwWlanIDIndexedSpApIPv6PrefixLen + Unsigned32, + hwWlanIDIndexedSpApIPv6Gateway + OCTET STRING, + hwWlanIDIndexedSpIPv4ACList + OCTET STRING, + hwWlanIDIndexedSpIPv6ACList + OCTET STRING, + hwWlanIDIndexedSpGroupName + OCTET STRING, + hwWlanIDIndexedSpApName + OCTET STRING + } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.1 + hwWlanIDIndexedAPSpApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanIDIndexedAPSpecificEntry 1 } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.2 + hwWlanIDIndexedAPSpAPSystemProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the system profile bound to the AP specific profile." + ::= { hwWlanIDIndexedAPSpecificEntry 2 } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.3 + hwWlanIDIndexedAPSpDomainProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the domain profile bound to the AP specific profile." + ::= { hwWlanIDIndexedAPSpecificEntry 3 } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.4 + hwWlanIDIndexedAPSpApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the MAC address of an AP." + ::= { hwWlanIDIndexedAPSpecificEntry 4 } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.5 + hwWlanIDIndexedAPSpApTypeInfo OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the domain profile bound to the AP specific profile." + ::= { hwWlanIDIndexedAPSpecificEntry 5 } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.6 + hwWlanIDIndexedAPSpWidsProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound WIDS profile." + ::= { hwWlanIDIndexedAPSpecificEntry 6 } + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.7 + hwWlanIDIndexedAPSpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwWlanIDIndexedAPSpecificEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.8 + hwWlanIDIndexedAPSpBleProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanIDIndexedAPSpecificEntry 8 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.9 + hwWlanIDIndexedAPSpLongitude OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the longitude." + ::= { hwWlanIDIndexedAPSpecificEntry 9 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.10 + hwWlanIDIndexedAPSpLatitude OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..14)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the latitude." + ::= { hwWlanIDIndexedAPSpecificEntry 10 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.11 + hwWlanIDIndexedSpApAddressMode OBJECT-TYPE + SYNTAX INTEGER + { + invalid(-1), + static(1), + dhcp(2), + slaac(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IP address allocation mode." + ::= { hwWlanIDIndexedAPSpecificEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.12 + hwWlanIDIndexedSpApIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 address. + hwWlanIDIndexedSpApIPv4Address takes effect if hwWlanIDIndexedSpApAddressMode is set to static." + ::= { hwWlanIDIndexedAPSpecificEntry 12 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.13 + hwWlanIDIndexedSpApIPv4Mask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 mask. + hwWlanIDIndexedSpApIPv4Mask takes effect if hwWlanIDIndexedSpApAddressMode is set to static." + ::= { hwWlanIDIndexedAPSpecificEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.14 + hwWlanIDIndexedSpApIPv4Gateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv4 gateway. + hwWlanIDIndexedSpApIPv4Gateway takes effect if hwWlanIDIndexedSpApAddressMode is set to static." + ::= { hwWlanIDIndexedAPSpecificEntry 14 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.15 + hwWlanIDIndexedSpApIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv6 address. + hwWlanIDIndexedSpApIPv6Address takes effect if hwWlanIDIndexedSpApAddressMode is set to static." + ::= { hwWlanIDIndexedAPSpecificEntry 15 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.16 + hwWlanIDIndexedSpApIPv6PrefixLen OBJECT-TYPE + SYNTAX Unsigned32 (0..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the length of the IPv6 address prefix." + ::= { hwWlanIDIndexedAPSpecificEntry 16 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.17 + hwWlanIDIndexedSpApIPv6Gateway OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..46)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AP's IPv6 gateway. + hwWlanIDIndexedSpApIPv6Gateway takes effect if hwWlanIDIndexedSpApAddressMode is set to static." + ::= { hwWlanIDIndexedAPSpecificEntry 17 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.18 + hwWlanIDIndexedSpIPv4ACList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC IPv4 address list. + NOTE AC lists are separated by question marks (?).A maximum of four AC lists can be configured." + ::= { hwWlanIDIndexedAPSpecificEntry 18 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.19 + hwWlanIDIndexedSpIPv6ACList OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the AC IPv6 address list. + NOTE AC lists are separated by question marks (?).A maximum of four AC lists can be configured." + ::= { hwWlanIDIndexedAPSpecificEntry 19 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.20 + hwWlanIDIndexedSpGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanIDIndexedAPSpecificEntry 20 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.69.1.21 + hwWlanIDIndexedSpApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanIDIndexedAPSpecificEntry 21 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.70 +-- 1.3.6.1.4.1.2011.6.139.11.1.70 +-- 1.3.6.1.4.1.2011.6.139.11.1.70 +-- 1.3.6.1.4.1.2011.6.139.11.1.70 +-- 1.3.6.1.4.1.2011.6.139.11.1.70 +-- 1.3.6.1.4.1.2011.6.139.11.1.70 + -- 1.3.6.1.4.1.2011.6.139.11.1.70 + hwIDIndexedAPSpecificWiredPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwIDIndexedAPSpecificWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to bind an AP wired port profile to an AP specific profile or unbind an AP wired port profile from an AP specific profile.." + ::= { hwWlanConfigObjects 70 } + --1.3.6.1.4.1.2011.6.139.11.1.70.1 + hwIDIndexedAPSpecificWiredPortEntry OBJECT-TYPE + SYNTAX HwIDIndexedAPSpecificWiredPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwIDIndexedAPSpWPInterfaceType, hwIDIndexedAPSpWPInterfaceNum and hwWlanIDIndexedAPSpApId." + INDEX { hwIDIndexedAPSpWPInterfaceType, hwIDIndexedAPSpWPInterfaceNum, hwWlanIDIndexedAPSpApId } + ::= { hwIDIndexedAPSpecificWiredPortTable 1 } + HwIDIndexedAPSpecificWiredPortEntry ::= + SEQUENCE { + hwIDIndexedAPSpWPInterfaceType + INTEGER, + hwIDIndexedAPSpWPInterfaceNum + Unsigned32, + hwIDIndexedAPSpWPProfile + OCTET STRING, + hwIDIndexedAPSpWPRowStatus + RowStatus + } + --1.3.6.1.4.1.2011.6.139.11.1.70.1.1 + hwIDIndexedAPSpWPInterfaceType OBJECT-TYPE + SYNTAX INTEGER + { + fe(1), + ge(2) , + trunk(3), + multige(4) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the interface type." + ::= { hwIDIndexedAPSpecificWiredPortEntry 1 } + --1.3.6.1.4.1.2011.6.139.11.1.70.1.2 + hwIDIndexedAPSpWPInterfaceNum OBJECT-TYPE + SYNTAX Unsigned32 (0..27) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the interface index." + ::= { hwIDIndexedAPSpecificWiredPortEntry 2 } + --1.3.6.1.4.1.2011.6.139.11.1.70.1.3 + hwIDIndexedAPSpWPProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound wired port profile." + ::= { hwIDIndexedAPSpecificWiredPortEntry 3 } + --1.3.6.1.4.1.2011.6.139.11.1.70.1.4 + hwIDIndexedAPSpWPRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used? ROWSTATUS_UNDEFINED: undefined ? ROWSTATUS_ACTIVE: active ? ROWSTATUS_NOTINSERVICE: notInService ? ROWSTATUS_NOTREADY: notReady ? ROWSTATUS_CREATEANDFLOW: createAndGo ? ROWSTATUS_CREATEANDWAIT: createAndWait ? ROWSTATUS_DESTROY: destroy." + ::= { hwIDIndexedAPSpecificWiredPortEntry 4 } + --1.3.6.1.4.1.2011.6.139.11.1.71 + hwIDIndexedAPSpecificRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwIDIndexedAPSpecificRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table records the information about profiles bound based on radio in an AP specific profile, including 5G radio profile, Mesh profile, WDS profile, WIDS profile, location profile, and spectrum profile." + ::= { hwWlanConfigObjects 71 } + --1.3.6.1.4.1.2011.6.139.11.1.71.1 + hwIDIndexedAPSpecificRadioEntry OBJECT-TYPE + SYNTAX HwIDIndexedAPSpecificRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwIDIndexedAPSpRadio and hwWlanIDIndexedAPSpApId." + INDEX { hwIDIndexedAPSpRadio, hwWlanIDIndexedAPSpApId } + ::= { hwIDIndexedAPSpecificRadioTable 1 } + HwIDIndexedAPSpecificRadioEntry ::= + SEQUENCE { + hwIDIndexedAPSpRadio + Unsigned32, + hwIDIndexedAPSp5gRadioProfile + OCTET STRING, + hwIDIndexedAPSpMeshProfile + OCTET STRING, + hwIDIndexedAPSpWdsProfile + OCTET STRING, + hwIDIndexedAPSpLocationProfile + OCTET STRING, + hwIDIndexedAPSpRadio2gProfile + OCTET STRING, + hwIDIndexedAPSpMeshWhitelistProfile + OCTET STRING, + hwIDIndexedAPSpWdsWhitelistProfile + OCTET STRING, + hwIDIndexedAPSpRadioSwitch + INTEGER, + hwIDIndexedAPSpRadioChannel + Unsigned32, + hwIDIndexedAPSpRadioBandwidth + INTEGER, + hwIDIndexedAPSpRadioEirp + Unsigned32, + hwIDIndexedAPSpRadioAntennaGain + Unsigned32, + hwIDIndexedAPSpRadioCoverageDistance + Unsigned32, + hwIDIndexedAPSpRadioWorkMode + INTEGER, + hwIDIndexedAPSpRadioFrequency + INTEGER, + hwIDIndexedAPSpSpectrumAnalysisSwitch + INTEGER, + hwIDIndexedAPSpWidsDeviceDetectSwitch + INTEGER, + hwIDIndexedAPSpWidsAttackDetectEnBmp + Unsigned32, + hwIDIndexedAPSpWidsRogueContainSwitch + INTEGER, + hwIDIndexedAPSpRadioRowStatus + RowStatus, + hwIDIndexedAPSpRadioSecondChannel + Unsigned32 + } + --1.3.6.1.4.1.2011.6.139.11.1.71.1.1 + hwIDIndexedAPSpRadio OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID. It is the index of the table." + ::= { hwIDIndexedAPSpecificRadioEntry 1 } + --1.3.6.1.4.1.2011.6.139.11.1.71.1.2 + hwIDIndexedAPSp5gRadioProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound 5G radio profile." + ::= { hwIDIndexedAPSpecificRadioEntry 2 } + --1.3.6.1.4.1.2011.6.139.11.1.71.1.3 + hwIDIndexedAPSpMeshProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound Mesh profile." + ::= { hwIDIndexedAPSpecificRadioEntry 3 } + --1.3.6.1.4.1.2011.6.139.11.1.71.1.4 + hwIDIndexedAPSpWdsProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound WDS profile." + ::= { hwIDIndexedAPSpecificRadioEntry 4 } + --1.3.6.1.4.1.2011.6.139.11.1.71.1.5 + hwIDIndexedAPSpLocationProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound location profile." + ::= { hwIDIndexedAPSpecificRadioEntry 5 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.6 + hwIDIndexedAPSpRadio2gProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the system profile to which AP groups are bound. The default value is default." + ::= { hwIDIndexedAPSpecificRadioEntry 6 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.7 + hwIDIndexedAPSpMeshWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwIDIndexedAPSpecificRadioEntry 7 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.8 + hwIDIndexedAPSpWdsWhitelistProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound whitelist profile." + ::= { hwIDIndexedAPSpecificRadioEntry 8 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.9 + hwIDIndexedAPSpRadioSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the name of a 2G radio profile. It is the index of the table." + ::= { hwIDIndexedAPSpecificRadioEntry 9 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.10 + hwIDIndexedAPSpRadioChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 196 (with a separation interval of 4)." + ::= { hwIDIndexedAPSpecificRadioEntry 10 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.11 + hwIDIndexedAPSpRadioBandwidth OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40Plus(2), + ht40Minus(3), + ht80(4), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicate a bandwidth. The default value is 1." + ::= { hwIDIndexedAPSpecificRadioEntry 11 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.12 + hwIDIndexedAPSpRadioEirp OBJECT-TYPE + SYNTAX Unsigned32 (1..127 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a power value. The default value is 127. The configuration is saved but the actual power is determined by the maximum power supported by the AP." + ::= { hwIDIndexedAPSpecificRadioEntry 12 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.13 + hwIDIndexedAPSpRadioAntennaGain OBJECT-TYPE + SYNTAX Unsigned32 (0..30 | 255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates antenna gains. The default value 0xFF indicates that the default gain of an AP is used. It is expressed in dB. Default gains vary with different types of APs." + ::= { hwIDIndexedAPSpecificRadioEntry 13 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.14 + hwIDIndexedAPSpRadioCoverageDistance OBJECT-TYPE + SYNTAX Unsigned32 (1..400 | 65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a radio coverage distance. The default value is 3. The unit is 0.1 km." + ::= { hwIDIndexedAPSpecificRadioEntry 14 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.15 + hwIDIndexedAPSpRadioWorkMode OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + monitor(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the radio working mode. The default value is 1." + ::= { hwIDIndexedAPSpecificRadioEntry 15 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.16 + hwIDIndexedAPSpRadioFrequency OBJECT-TYPE + SYNTAX INTEGER + { + frequency2G(1), + frequency5G(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the setting of the frequency band for radio 0. The default value is 1 ? 1: frequency2G ? 2: frequency5G." + ::= { hwIDIndexedAPSpecificRadioEntry 16 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.17 + hwIDIndexedAPSpSpectrumAnalysisSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the spectrum analysis function. The default value is 1." + ::= { hwIDIndexedAPSpecificRadioEntry 17 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.18 + hwIDIndexedAPSpWidsDeviceDetectSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwIDIndexedAPSpecificRadioEntry 18 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.19 + hwIDIndexedAPSpWidsAttackDetectEnBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bit map of the brute force attack switch. bit0:weak-iv, bit1:spoof, bit2:flood, bit3:wpa-psk, bit4:wpa2-psk, bit5:wapi-psk, bit6:wep-psk." + ::= { hwIDIndexedAPSpecificRadioEntry 19 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.20 + hwIDIndexedAPSpWidsRogueContainSwitch OBJECT-TYPE + SYNTAX INTEGER + { + enable(2), + invalid(255) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the device detection function. The default value is 1." + ::= { hwIDIndexedAPSpecificRadioEntry 20 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.21 + hwIDIndexedAPSpRadioRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwIDIndexedAPSpecificRadioEntry 21 } + -- 1.3.6.1.4.1.2011.6.139.11.1.71.1.22 + hwIDIndexedAPSpRadioSecondChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates a second radio-frequency channel. For 2.4G, the value ranges from 1 to 13. For 5G, the value ranges from 36 to 165 (with a separation interval of 4)." + ::= { hwIDIndexedAPSpecificRadioEntry 22 } + -- 1.3.6.1.4.1.2011.6.139.11.1.72 + hwIDIndexedAPSpecificVapTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwIDIndexedAPSpecificVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to create VAPs in an AP specific profile." + ::= { hwWlanConfigObjects 72 } + --1.3.6.1.4.1.2011.6.139.11.1.72.1 + hwIDIndexedAPSpecificVapEntry OBJECT-TYPE + SYNTAX HwIDIndexedAPSpecificVapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwIDIndexedAPSpWlan, hwIDIndexedAPSpRadio, and hwWlanIDIndexedAPSpApId." + INDEX { hwIDIndexedAPSpWlan, hwIDIndexedAPSpRadio, hwWlanIDIndexedAPSpApId} + ::= { hwIDIndexedAPSpecificVapTable 1 } + HwIDIndexedAPSpecificVapEntry ::= + SEQUENCE { + hwIDIndexedAPSpWlan + Unsigned32, + hwIDIndexedAPSpVapProfile + OCTET STRING, + hwIDIndexedAPSpVapRowStatus + RowStatus + } + --1.3.6.1.4.1.2011.6.139.11.1.72.1.1 + hwIDIndexedAPSpWlan OBJECT-TYPE + SYNTAX Unsigned32 (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the WLAN ID. It is the index of the table." + ::= { hwIDIndexedAPSpecificVapEntry 1 } + --1.3.6.1.4.1.2011.6.139.11.1.72.1.2 + hwIDIndexedAPSpVapProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the bound VAP profile." + ::= { hwIDIndexedAPSpecificVapEntry 2 } + --1.3.6.1.4.1.2011.6.139.11.1.72.1.3 + hwIDIndexedAPSpVapRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwIDIndexedAPSpecificVapEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73 + hwBleProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwBleProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 73 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1 + hwBleProfileEntry OBJECT-TYPE + SYNTAX HwBleProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanBLEProfileName } + ::= { hwBleProfileTable 1 } + + HwBleProfileEntry ::= + SEQUENCE { + hwWlanBLEProfileName + OCTET STRING, + hwWlanBLEBroadcasterEnable + INTEGER, + hwWlanBLETxPower + Integer32, + hwWlanBLEBroadcastingUUID + OCTET STRING, + hwWlanBLEBroadcastingMajor + OCTET STRING, + hwWlanBLEBroadcastingMinor + OCTET STRING, + hwWlanBLEBroadcastingReferenceRSSI + Integer32, + hwWlanBLEBroadcastingInterval + Unsigned32, + hwWlanBLESnifferEnable + INTEGER, + hwWlanBLEProfileRowStatus + RowStatus, + hwWlanBLEBroadcastingUUIDHex + OCTET STRING, + hwWlanBLEBroadcastingMajorHex + OCTET STRING, + hwWlanBLEBroadcastingMajorDecimal + Integer32, + hwWlanBLEBroadcastingMinorHex + OCTET STRING, + hwWlanBLEBroadcastingMinorDecimal + Integer32 + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.1 + hwWlanBLEProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwBleProfileEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.2 + hwWlanBLEBroadcasterEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { disable } + ::= { hwBleProfileEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.3 + hwWlanBLETxPower OBJECT-TYPE + SYNTAX Integer32 + UNITS "dbm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 0 } + ::= { hwBleProfileEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.4 + hwWlanBLEBroadcastingUUID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the string type value of UUID field in the BLE broadcast frame." + ::= { hwBleProfileEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.5 + hwWlanBLEBroadcastingMajor OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the string type value of Major field in the BLE broadcast frame." + ::= { hwBleProfileEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.6 + hwWlanBLEBroadcastingMinor OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the string type value of Minor field in the BLE broadcast frame." + ::= { hwBleProfileEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.7 + hwWlanBLEBroadcastingReferenceRSSI OBJECT-TYPE + SYNTAX Integer32 (-97..-50 | 0) + UNITS "dbm" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { -65 } + ::= { hwBleProfileEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.8 + hwWlanBLEBroadcastingInterval OBJECT-TYPE + SYNTAX Unsigned32 (100..10240) + UNITS "ms" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 500 } + ::= { hwBleProfileEntry 8 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.9 + hwWlanBLESnifferEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { disable } + ::= { hwBleProfileEntry 9 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.10 + hwWlanBLEProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. createAndGo(4) and destroy(6) are commonly used." + ::= { hwBleProfileEntry 10 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.11 + hwWlanBLEBroadcastingUUIDHex OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the hex type value of UUID field in the BLE broadcast frame." + ::= { hwBleProfileEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.12 + hwWlanBLEBroadcastingMajorHex OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the hex type value of Major field in the BLE broadcast frame." + ::= { hwBleProfileEntry 12 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.13 + hwWlanBLEBroadcastingMajorDecimal OBJECT-TYPE + SYNTAX Integer32 (-1 | 0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the decimal type value of Major field in the BLE broadcast frame. The default value is -1." + ::= { hwBleProfileEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.14 + hwWlanBLEBroadcastingMinorHex OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the hex type value of Minor field in the BLE broadcast frame." + ::= { hwBleProfileEntry 14 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.73.1.15 + hwWlanBLEBroadcastingMinorDecimal OBJECT-TYPE + SYNTAX Integer32 (-1 | 0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the decimal type value of Minor field in the BLE broadcast frame. The default value is -1." + ::= { hwBleProfileEntry 15 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74 + hwAPGroupCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPGroupCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 74 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1 + hwAPGroupCardEntry OBJECT-TYPE + SYNTAX HwAPGroupCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwAPGrpCardIndex, hwAPGroupName } + ::= { hwAPGroupCardTable 1 } + + + HwAPGroupCardEntry ::= + SEQUENCE { + hwAPGrpCardIndex + Unsigned32, + hwAPGrpCardSerialProfile + OCTET STRING, + hwAPGrpCardProfile + OCTET STRING, + hwAPGrpCardNetUDPPort + Unsigned32, + hwAPGrpIoTRowStatus + RowStatus, + hwAPGrpCardNetTCPPort + Unsigned32 + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1.1 + hwAPGrpCardIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwAPGroupCardEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1.2 + hwAPGrpCardSerialProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPGroupCardEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1.3 + hwAPGrpCardProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPGroupCardEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1.4 + hwAPGrpCardNetUDPPort OBJECT-TYPE + SYNTAX Unsigned32 (1025..55535 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPGroupCardEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1.5 + hwAPGrpIoTRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPGroupCardEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.74.1.6 + hwAPGrpCardNetTCPPort OBJECT-TYPE + SYNTAX Unsigned32 (1025..55535 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPGroupCardEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75 + hwAPSpecificCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPSpecificCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 75 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1 + hwAPSpecificCardEntry OBJECT-TYPE + SYNTAX HwAPSpecificCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwAPSpIoTIndex, IMPLIED hwWlanIDIndexedAPSpApId } + ::= { hwAPSpecificCardTable 1 } + + + HwAPSpecificCardEntry ::= + SEQUENCE { + hwAPSpIoTIndex + Unsigned32, + hwAPSpIoTSerialProfile + OCTET STRING, + hwAPSpIoTProfile + OCTET STRING, + hwAPSpIoTNetUDPPort + Unsigned32, + hwAPSpIoTRowStatus + RowStatus, + hwAPSpIoTNetTCPPort + Unsigned32 + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1.1 + hwAPSpIoTIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..2) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificCardEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1.2 + hwAPSpIoTSerialProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificCardEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1.3 + hwAPSpIoTProfile OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..35)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificCardEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1.4 + hwAPSpIoTNetUDPPort OBJECT-TYPE + SYNTAX Unsigned32 (1025..55535 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificCardEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1.5 + hwAPSpIoTRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificCardEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.75.1.6 + hwAPSpIoTNetTCPPort OBJECT-TYPE + SYNTAX Unsigned32 (1025..55535 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPSpecificCardEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76 + hwIoTSerialProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwIoTSerialProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 76 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1 + hwIoTSerialProfileEntry OBJECT-TYPE + SYNTAX HwIoTSerialProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwIoTSerialProfileName } + ::= { hwIoTSerialProfileTable 1 } + + + HwIoTSerialProfileEntry ::= + SEQUENCE { + hwIoTSerialProfileName + OCTET STRING, + hwIoTSerialSpeed + Unsigned32, + hwIoTSerialParity + INTEGER, + hwIoTSerialStopbits + INTEGER, + hwIoTSerialFrameFormat + INTEGER, + hwIoTSerialFrameLength + Unsigned32, + hwIoTSerialFrameStart + Unsigned32, + hwIoTSerialFrameStop + Unsigned32, + hwIoTSerialProfileRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.1 + hwIoTSerialProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTSerialProfileEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.2 + hwIoTSerialSpeed OBJECT-TYPE + SYNTAX Unsigned32 (9600..115200) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTSerialProfileEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.3 + hwIoTSerialParity OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + odd(2), + even(3), + space(4), + mark(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { none } + ::= { hwIoTSerialProfileEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.4 + hwIoTSerialStopbits OBJECT-TYPE + SYNTAX INTEGER + { + one(1), + two(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { one } + ::= { hwIoTSerialProfileEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.5 + hwIoTSerialFrameFormat OBJECT-TYPE + SYNTAX INTEGER + { + fixedLength(1), + frameBeginEnd(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { frame-begin-end } + ::= { hwIoTSerialProfileEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.6 + hwIoTSerialFrameLength OBJECT-TYPE + SYNTAX Unsigned32 (1..1400) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 512 } + ::= { hwIoTSerialProfileEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.7 + hwIoTSerialFrameStart OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { 'aa'h } + ::= { hwIoTSerialProfileEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.8 + hwIoTSerialFrameStop OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + DEFVAL { '7e'h } + ::= { hwIoTSerialProfileEntry 8 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.76.1.9 + hwIoTSerialProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTSerialProfileEntry 9 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77 + hwIoTProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwIoTProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 77 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77.1 + hwIoTProfileEntry OBJECT-TYPE + SYNTAX HwIoTProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwIoTProfileName } + ::= { hwIoTProfileTable 1 } + + + HwIoTProfileEntry ::= + SEQUENCE { + hwIoTProfileName + OCTET STRING, + hwIoTProfileConfigAgentPermitIp + IpAddress, + hwIoTProfileConfigAgentPermitMaskLen + Unsigned32, + hwIoTProfileShareKey + OCTET STRING, + hwIoTProfileRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77.1.1 + hwIoTProfileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77.1.2 + hwIoTProfileConfigAgentPermitIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77.1.3 + hwIoTProfileConfigAgentPermitMaskLen OBJECT-TYPE + SYNTAX Unsigned32 (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77.1.4 + hwIoTProfileShareKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..68)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.77.1.5 + hwIoTProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.78 + hwIoTProfileManagementServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwIoTProfileManagementServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 78 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.78.1 + hwIoTProfileManagementServerEntry OBJECT-TYPE + SYNTAX HwIoTProfileManagementServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwIoTProfileName, hwIoTProfileManagementServerIndex } + ::= { hwIoTProfileManagementServerTable 1 } + + + HwIoTProfileManagementServerEntry ::= + SEQUENCE { + hwIoTProfileManagementServerIndex + Unsigned32, + hwIoTProfileManagementServerIp + IpAddress, + hwIoTProfileManagementServerPort + Unsigned32, + hwIoTProfileManagementServerRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.78.1.1 + hwIoTProfileManagementServerIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..3) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileManagementServerEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.78.1.2 + hwIoTProfileManagementServerIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileManagementServerEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.78.1.3 + hwIoTProfileManagementServerPort OBJECT-TYPE + SYNTAX Unsigned32 (1025..55535 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileManagementServerEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.78.1.4 + hwIoTProfileManagementServerRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwIoTProfileManagementServerEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79 + hwVapAntiAttackUserDefFloodTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwVapAntiAttackUserDefFloodEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes SAC profile action configurations.This table is used to configure actions in an SAC profile." + ::= { hwWlanConfigObjects 79 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1 + hwVapAntiAttackUserDefFloodEntry OBJECT-TYPE + SYNTAX HwVapAntiAttackUserDefFloodEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indexes of this table are hwVapAntiAttackDefFloodIndex and hwVapProfileName." + INDEX { hwVapAntiAttackDefFloodIndex, hwVapProfileName } + ::= { hwVapAntiAttackUserDefFloodTable 1 } + + + HwVapAntiAttackUserDefFloodEntry ::= + SEQUENCE { + hwVapAntiAttackDefFloodIndex + Unsigned32, + hwVapAntiAttackDefFloodProtocolType + INTEGER, + hwVapAntiAttackDefFloodProtocolValue + Unsigned32, + hwVapAntiAttackDefFloodStaRateThreshold + Unsigned32, + hwVapAntiAttackDefFloodBlacklistSwitch + INTEGER, + hwVapAntiAttackDefFloodRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1.1 + hwVapAntiAttackDefFloodIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal index of the action. It is the index of the table." + ::= { hwVapAntiAttackUserDefFloodEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1.2 + hwVapAntiAttackDefFloodProtocolType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(0), + l2(1), + ipv4(2), + ipv6(3), + tcp(4), + udp(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the protocol type." + ::= { hwVapAntiAttackUserDefFloodEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1.3 + hwVapAntiAttackDefFloodProtocolValue OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the protocol value." + ::= { hwVapAntiAttackUserDefFloodEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1.4 + hwVapAntiAttackDefFloodStaRateThreshold OBJECT-TYPE + SYNTAX Unsigned32 (1..500 | 4294967295) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the anti-attack user-defined flood sta-rate-threshold for the VAP." + ::= { hwVapAntiAttackUserDefFloodEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1.5 + hwVapAntiAttackDefFloodBlacklistSwitch OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the status of the VAP anti-attack user-defined flood blacklist function." + ::= { hwVapAntiAttackUserDefFloodEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.79.1.6 + hwVapAntiAttackDefFloodRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwVapAntiAttackUserDefFloodEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80 + -- 1.3.6.1.4.1.2011.6.139.11.1.80 + hwApProfIGMPSnoopingGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwApProfIGMPSnoopingGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 80 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1 + hwApProfIGMPSnoopingGroupEntry OBJECT-TYPE + SYNTAX HwApProfIGMPSnoopingGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwApSystemProfName, hwAPProfIGMPSnoopingGroupIndex } + ::= { hwApProfIGMPSnoopingGroupTable 1 } + + HwApProfIGMPSnoopingGroupEntry ::= + SEQUENCE { + hwAPProfIGMPSnoopingGroupIndex + Unsigned32, + hwAPProfIGMPSnoopingGroupStartGroupAddr + IpAddress, + hwAPProfIGMPSnoopingGroupEndGroupAddr + IpAddress, + hwAPProfIGMPSnoopingGroupBandwidth + Unsigned32, + hwAPProfIGMPSnoopingGroupRowStatus + RowStatus + } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80.1.1 + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1.1 + hwAPProfIGMPSnoopingGroupIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..31) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwApProfIGMPSnoopingGroupEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80.1.2 + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1.2 + hwAPProfIGMPSnoopingGroupStartGroupAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwApProfIGMPSnoopingGroupEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80.1.3 + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1.3 + hwAPProfIGMPSnoopingGroupEndGroupAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwApProfIGMPSnoopingGroupEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80.1.4 + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1.4 + hwAPProfIGMPSnoopingGroupBandwidth OBJECT-TYPE + SYNTAX Unsigned32 (4294967295 | 1..100000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwApProfIGMPSnoopingGroupEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.11.1.80.1.5 + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1.5 + hwAPProfIGMPSnoopingGroupRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwApProfIGMPSnoopingGroupEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81 + hwAPWiredPortProfileTrafficRemarkTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPWiredPortProfileTrafficRemarkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 81 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1 + hwAPWiredPortProfileTrafficRemarkEntry OBJECT-TYPE + SYNTAX HwAPWiredPortProfileTrafficRemarkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwAPWiredPortProfileName, hwAPWiredPortProfileTrafficRemarkIPType, hwAPWiredPortProfileTrafficRemarkDirection } + ::= { hwAPWiredPortProfileTrafficRemarkTable 1 } + + HwAPWiredPortProfileTrafficRemarkEntry ::= + SEQUENCE { + hwAPWiredPortProfileTrafficRemarkDirection + INTEGER, + hwAPWiredPortProfileTrafficRemarkIPType + INTEGER, + hwAPWiredPortProfileTrafficRemarkACLID + Unsigned32, + hwAPWiredPortProfileTrafficRemarkType + INTEGER, + hwAPWiredPortProfileTrafficRemarkValue + Unsigned32, + hwAPWiredPortProfileTrafficRemarkRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1.1 + hwAPWiredPortProfileTrafficRemarkDirection OBJECT-TYPE + SYNTAX INTEGER + { + inbond(1), + outbond(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwAPWiredPortProfileTrafficRemarkEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1.2 + hwAPWiredPortProfileTrafficRemarkIPType OBJECT-TYPE + SYNTAX INTEGER + { + ipv4(1), + ipv6(2), + l2(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwAPWiredPortProfileTrafficRemarkEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1.3 + hwAPWiredPortProfileTrafficRemarkACLID OBJECT-TYPE + SYNTAX Unsigned32 (3000..3031 | 4000..4031) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPWiredPortProfileTrafficRemarkEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1.4 + hwAPWiredPortProfileTrafficRemarkType OBJECT-TYPE + SYNTAX INTEGER + { + dscp(1), + dot1p(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPWiredPortProfileTrafficRemarkEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1.5 + hwAPWiredPortProfileTrafficRemarkValue OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPWiredPortProfileTrafficRemarkEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.81.1.6 + hwAPWiredPortProfileTrafficRemarkRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwAPWiredPortProfileTrafficRemarkEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.82 + hwAPTrafficProfileRemarkTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwAPTrafficProfileRemarkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjects 82 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.82.1 + hwAPTrafficProfileRemarkEntry OBJECT-TYPE + SYNTAX HwAPTrafficProfileRemarkEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwAPTrafficProfileName, hwAPTrafficProfileRemarkDirection, hwAPTrafficProfileRemarkIPType } + ::= { hwAPTrafficProfileRemarkTable 1 } + + + HwAPTrafficProfileRemarkEntry ::= + SEQUENCE { + hwAPTrafficProfileRemarkDirection + INTEGER, + hwAPTrafficProfileRemarkIPType + INTEGER, + hwAPTrafficProfileRemarkACLID + Integer32, + hwAPTrafficProfileRemarkType + INTEGER, + hwAPTrafficProfileRemarkValue + Integer32, + hwAPTrafficProfileRemarkRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.82.1.1 + hwAPTrafficProfileRemarkDirection OBJECT-TYPE + SYNTAX INTEGER + { + inbound(1), + outbound(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the ACL rule direction for packet remarking in a traffic profile. This parameter has no default value." + ::= { hwAPTrafficProfileRemarkEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.82.1.2 + hwAPTrafficProfileRemarkIPType OBJECT-TYPE + SYNTAX INTEGER + { + ipv4(1), + ipv6(2), + l2(3) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the ACL rule type for packet remarking in a traffic profile. This parameter has no default value." + ::= { hwAPTrafficProfileRemarkEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.82.1.3 + hwAPTrafficProfileRemarkACLID OBJECT-TYPE + SYNTAX Integer32 (3000..3031 | 4000..4031 | 6000..6031) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ACL rule for packet remarking in a traffic profile." + ::= { hwAPTrafficProfileRemarkEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.82.1.4 + hwAPTrafficProfileRemarkType OBJECT-TYPE + SYNTAX INTEGER + { + dscp(1), + dot11e(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ACL rule type for packet remarking in a traffic profile. This parameter has no default value." + ::= { hwAPTrafficProfileRemarkEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.80.1.5 + hwAPTrafficProfileRemarkValue OBJECT-TYPE + SYNTAX Integer32 (0..63) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the ACL rule value for packet remarking in a traffic profile. This parameter has no default value." + ::= { hwAPTrafficProfileRemarkEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.82.1.6 + hwAPTrafficProfileRemarkRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status of this table. ROWSTATUS_CREATEANDFLOW and ROWSTATUS_DESTROY are commonly used." + ::= { hwAPTrafficProfileRemarkEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83 + hwWlanClusterConfig OBJECT IDENTIFIER ::= { hwWlanConfigObjects 83 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.1 + hwWlanClusterMasterConfig OBJECT IDENTIFIER ::= { hwWlanClusterConfig 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.1.1 + hwWlanClusterMasterIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv4 address of the master controller." + ::= { hwWlanClusterMasterConfig 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.1.2 + hwWlanClusterMasterIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the master controller." + ::= { hwWlanClusterMasterConfig 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.1.3 + hwWlanClusterPsk OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the psk of the master controller." + ::= { hwWlanClusterMasterConfig 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2 + hwWlanClusterRedundancyConfig OBJECT IDENTIFIER ::= { hwWlanClusterConfig 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.1 + hwWlanClusterRedundancyLocalIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv4 address of the local ac." + ::= { hwWlanClusterRedundancyConfig 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.2 + hwWlanClusterRedundancyLocalIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the local ac." + ::= { hwWlanClusterRedundancyConfig 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.3 + hwWlanClusterRedundancyPeerIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv4 address of the peer ac." + ::= { hwWlanClusterRedundancyConfig 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.4 + hwWlanClusterRedundancyPeerIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the peer ac." + ::= { hwWlanClusterRedundancyConfig 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.5 + hwWlanClusterRedundancyTrackVRRPID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the vrrp id." + ::= { hwWlanClusterRedundancyConfig 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.6 + hwWlanClusterRedundancyTrackInterface OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the interface index." + ::= { hwWlanClusterRedundancyConfig 6 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.2.7 + hwWlanClusterRedundancyPsk OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the psk of the redundancy ac." + ::= { hwWlanClusterRedundancyConfig 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.3 + hwWlanClusterLocalIPv4Table OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanClusterLocalIPv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the configuration of the local controller." + ::= { hwWlanClusterConfig 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.3.1 + hwWlanClusterLocalIPv4Entry OBJECT-TYPE + SYNTAX HwWlanClusterLocalIPv4Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table has no index." + INDEX { hwWlanClusterLocalIPv4Address } + ::= { hwWlanClusterLocalIPv4Table 1 } + + HwWlanClusterLocalIPv4Entry ::= + SEQUENCE { + hwWlanClusterLocalIPv4Address + IpAddress, + hwWlanClusterLocalIPv4Psk + OCTET STRING, + hwWlanClusterLocalIPv4RowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.3.1.1 + hwWlanClusterLocalIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the IPv4 address of the local controller." + ::= { hwWlanClusterLocalIPv4Entry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.3.1.2 + hwWlanClusterLocalIPv4Psk OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the psk of the local controller." + ::= { hwWlanClusterLocalIPv4Entry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.3.1.3 + hwWlanClusterLocalIPv4RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanClusterLocalIPv4Entry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.4 + hwWlanClusterLocalIPv6Table OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanClusterLocalIPv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the configuration of the local controller." + ::= { hwWlanClusterConfig 4 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.4.1 + hwWlanClusterLocalIPv6Entry OBJECT-TYPE + SYNTAX HwWlanClusterLocalIPv6Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table has no index." + INDEX { hwWlanClusterLocalIPv6Address } + ::= { hwWlanClusterLocalIPv6Table 1 } + + HwWlanClusterLocalIPv6Entry ::= + SEQUENCE { + hwWlanClusterLocalIPv6Address + OCTET STRING, + hwWlanClusterLocalIPv6Psk + OCTET STRING, + hwWlanClusterLocalIPv6RowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.4.1.1 + hwWlanClusterLocalIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the local controller." + ::= { hwWlanClusterLocalIPv6Entry 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.4.1.2 + hwWlanClusterLocalIPv6Psk OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the psk of the local controller." + ::= { hwWlanClusterLocalIPv6Entry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.4.1.3 + hwWlanClusterLocalIPv6RowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanClusterLocalIPv6Entry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.5 + hwWlanClusterSynConfig OBJECT IDENTIFIER ::= { hwWlanClusterConfig 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.5.1 + hwWlanClusterSynIPv4Address OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the Ipv4 address of the synchronize-configuration." + ::= { hwWlanClusterSynConfig 1 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.5.2 + hwWlanClusterSynIPv6Address OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the Ipv6 address of the synchronize-configuration." + ::= { hwWlanClusterSynConfig 2 } + + --1.3.6.1.4.1.2011.6.139.11.1.83.6 + hwWlanClusterACListInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanClusterACListInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the ac information." + ::= { hwWlanClusterConfig 6 } + + --1.3.6.1.4.1.2011.6.139.11.1.83.6.1 + hwWlanClusterACListInfoEntry OBJECT-TYPE + SYNTAX HwWlanClusterACListInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table has no index." + INDEX { hwWlanClusterACIndex} + ::= { hwWlanClusterACListInfoTable 1 } + + HwWlanClusterACListInfoEntry ::= + SEQUENCE { + hwWlanClusterACIndex + Unsigned32, + hwWlanClusterACIPv4 + IpAddress, + hwWlanClusterACIPv6 + OCTET STRING, + hwWlanClusterACRole + INTEGER, + hwWlanClusterACType + OCTET STRING, + hwWlanClusterACVersion + OCTET STRING, + hwWlanClusterACStatus + INTEGER, + hwWlanClusterACLastSynTime + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.1 + hwWlanClusterACIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of hwWlanClusterACListInfo." + ::= { hwWlanClusterACListInfoEntry 1} + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.2 + hwWlanClusterACIPv4 OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the ipv4 address of the ac." + ::= { hwWlanClusterACListInfoEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.3 + hwWlanClusterACIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the ipv6 address of the ac." + ::= { hwWlanClusterACListInfoEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.4 + hwWlanClusterACRole OBJECT-TYPE + SYNTAX INTEGER + { + master (1), + slave (2), + backup (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the role of the ac." + ::= { hwWlanClusterACListInfoEntry 4} + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.5 + hwWlanClusterACType OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of the ac." + ::= { hwWlanClusterACListInfoEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.6 + hwWlanClusterACVersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the version of the ac." + ::= { hwWlanClusterACListInfoEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.7 + hwWlanClusterACStatus OBJECT-TYPE + SYNTAX INTEGER + { + down(1), + up(2), + pskmismatch(3), + vermismatch(4), + cfgmismatch(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the status of the ac." + ::= { hwWlanClusterACListInfoEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.11.1.83.6.1.8 + hwWlanClusterACLastSynTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the last synchronize time of the ac." + ::= { hwWlanClusterACListInfoEntry 8 } + + --1.3.6.1.4.1.2011.6.139.11.2 + hwWlanConfigConformance OBJECT IDENTIFIER ::= { hwWlanConfig 2 } + + --1.3.6.1.4.1.2011.6.139.11.2.1 + hwWlanConfigCompliances OBJECT IDENTIFIER ::= { hwWlanConfigConformance 1 } + + --1.3.6.1.4.1.2011.6.139.11.2.1.1 + hwWlanConfigCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE -- this module + MANDATORY-GROUPS { hwWlanGlobalConfigGroups, hwApAuthObjectsGroups, hwAPGroupGroups, hwAPGroupWiredPortGroups, hwAPGroupRadioGroups, + hwAPGroupVapGroups, hwAPSpecificGroups, hwAPSpecificWiredPortGroups, hwAPSpecificRadioGroups, hwAPSpecificVapGroups, + hwRegulatoryDomainProfileGroups, hwApSystemProfileGroups, hwAPWiredPortProfileGroups, hwAPPortLinkProfileGroups, hw2gRadioProfileGroups, + hw5gRadioProfileGroups, hwRrmProfileGroups, hwAirScanProfileGroups, hwVapProfileGroups, hwSsidProfileGroups, + hwSecurityProfileGroups, hwAPTrafficProfileGroups, hwWlanVlanPoolGroups, hwStaWhitelistProfileGroups, hwStaBlacklistProfileGroups, + hwWidsProfileGroups, hwWidsSpoofProfileGroups, + hwWidsWhitelistProfileGroups, hwMeshProfileGroups, hwMeshWhitelistProfileGroups, hwMeshHandoverProfileGroups, hwWdsProfileGroups, + hwWdsWhitelistProfileGroups, hwHotspot2ProfileGroups, hwCellularNetworkProfileGroups, + hwConnectionCapabilityProfileGroups, hwOperatorNameProfileGroups, hwOperatorClassProfileGroups, hwOperatorDomainNameProfileGroups, hwNAIRealmProfileGroups, + hwVenueNameProfileGroups, hwRoamingConsortiumProfileGroups, hwSACProfileGroups, hwSACProfActionGroups, hwAPProvisionGroups, + hwWlanRadioCalibrateManagementGroups, hwWlanMobilityGroups, hwWlanLanguageGroups, hwFatApConfigGroups, hwWidsSpoofProfileListGroups, + hwWidsWhitelistProfileListGroups, hwWlanLoadBalanceStaticGroupGroups, hwWlanLoadBalanceStaticGroupMemberGroups, hwWlanCountryCodeGroups, hwUccProfileGroups, + hwSoftgreProfileGroups } + ::= { hwWlanConfigCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.11.2.2 + hwWlanConfigObjectGroups OBJECT IDENTIFIER ::= { hwWlanConfigConformance 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.1 + hwWlanGlobalConfigGroups OBJECT-GROUP + OBJECTS { hwWlanGlobalApUsername, hwWlanGlobalApPassword, hwWlanUsernamePasswordApMac, hwWlanGlobalApLldpSwitch, hwWlanGlobalIpv6Enable, + hwWlanStationIpv6Enable, hwWlanApDataCollectionInterval, hwTestRtCollectOnoff, hwTestApNormalCollectCycle, hwTestApRtCollectCycle, + hwWlanConfigCommitAll, hwWlanProtectIpAddress, hwWlanProtectIPv6Address, hwWlanProtectPriority, hwWlanProtectSwitch, + hwWlanProtectRestoreSwitch, hwUndoWlanProtectIpAddress, hwUndoWlanProtectPriority, hwWlanCfgHsbServiceType, hwWlanCfgHsbGroupId, + hwWlanCfgHsbTunnelId, hwWlanConfigCommit, hwWlanReportStaInfo, hwApPwdPolicyEnable, hwApPwdPolicyExpire, + hwApPwdPolicyHistoryRecordNum, hwApPwdPolicyAlertBefore, hwApPwdPolicyAlertOriginal, hwApPwdSetTime, hwApPwdIsExpired, + hwApPwdIsOrginal } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 1 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.2 + hwApAuthObjectsGroups OBJECT-GROUP + OBJECTS { hwWlanApAuthMode, hwWlanApMacWhitelistRowStatus, hwWlanApSnWhitelistRowStatus, hwWlanApMacBlacklistRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 2 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.3 + hwAPGroupGroups OBJECT-GROUP + OBJECTS { hwAPGrpAPSystemProfile, hwAPGrpDomainProfile, hwAPGrpRowStatus, hwAPGrpWidsProfile, hwAPGrpBleProfile} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 3 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.4 + hwAPGroupWiredPortGroups OBJECT-GROUP + OBJECTS {hwAPGrpWPProfile, hwAPGrpWPRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 4 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.5 + hwAPGroupRadioGroups OBJECT-GROUP + OBJECTS { hwAPGrpRadio5gProfile, hwAPGrpMeshProfile, hwAPGrpWdsProfile, hwAPGrpLocationProfile, hwAPGrpRadioRowStatus, hwAPGrpRadio2gProfile, + hwAPGrpMeshWhitelistProfile, hwAPGrpWdsWhitelistProfile, hwAPGrpRadioSwitch, hwAPGrpRadioChannel, hwAPGrpRadioBandwidth, + hwAPGrpRadioEirp, hwAPGrpRadioAntennaGain, hwAPGrpRadioCoverageDistance, hwAPGrpRadioWorkMode, hwAPGrpRadioFrequency, + hwAPGrpSpectrumAnalysisSwitch, hwAPGrpWidsDeviceDetectSwitch, hwAPGrpWidsAttackDetectEnBmp, hwAPGrpWidsRogueContainSwitch, + hwAPGrpRadioSecondChannel } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 5 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.6 + hwAPGroupVapGroups OBJECT-GROUP + OBJECTS {hwAPGrpVapProfile, hwAPGrpVapRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 6 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.7 + hwAPSpecificGroups OBJECT-GROUP + OBJECTS { hwAPSpAPSystemProfile, hwAPSpDomainProfile, hwAPSpRowStatus, hwAPSpApId, hwAPSpApTypeInfo, hwAPSpWidsProfile, hwAPSpBleProfile, hwAPSpLongitude, hwAPSpLatitude, + hwAPSpApAddressMode,hwAPSpApIPv4Address,hwAPSpApIPv4Mask,hwAPSpApIPv4Gateway,hwAPSpApIPv6Address,hwAPSpApIPv6PrefixLen,hwAPSpApIPv6Gateway,hwAPSpIPv4ACList,hwAPSpIPv6ACList} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 7 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.8 + hwAPSpecificWiredPortGroups OBJECT-GROUP + OBJECTS { hwAPSpWPProfile, hwAPSpWPRowStatus, hwAPSpWPApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 8 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.9 + hwAPSpecificRadioGroups OBJECT-GROUP + OBJECTS { hwAPSp5gRadioProfile, hwAPSpMeshProfile, hwAPSpWdsProfile, hwAPSpLocationProfile, hwAPSpRadioRowStatus, hwAPSpRadio2gProfile, + hwAPSpMeshWhitelistProfile, hwAPSpWdsWhitelistProfile, hwAPSpRadioSwitch, hwAPSpRadioChannel, hwAPSpRadioBandwidth, + hwAPSpRadioEirp, hwAPSpRadioAntennaGain, hwAPSpRadioCoverageDistance, hwAPSpRadioWorkMode, hwAPSpRadioFrequency, + hwAPSpSpectrumAnalysisSwitch, hwAPSpWidsDeviceDetectSwitch, hwAPSpWidsAttackDetectEnBmp, hwAPSpWidsRogueContainSwitch, hwAPSpRadioApId, + hwAPSpRadioSecondChannel } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 9 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.10 + hwAPSpecificVapGroups OBJECT-GROUP + OBJECTS { hwAPSpVapProfile, hwAPSpVapRowStatus, hwAPSpVapApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 10 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.11 + hwRegulatoryDomainProfileGroups OBJECT-GROUP + OBJECTS { hwCountryCode, hwDcaChannel5GBandwidth, hwDcaChannel5GChannelSet, hwDcaChannel2GChannelSet, hwRegulatoryDomainProfilRowStatus + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 11 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.12 + hwApSystemProfileGroups OBJECT-GROUP + OBJECTS { hwApProfStatInterval, hwApProfSampleTime, hwApProfLedSwitch, hwApProfMaxStaNum, hwApProfMtu, + hwApProfMeshRole, hwApProfTemporaryManagement, hwApProfManagementVlan, hwApProfHighTempThreshold, hwApProfLowTempThreshold, + hwApProfOpHRxPowerThreshold, hwApProfOpLRxPowerThreshold, hwApProfOpHTempThreshold, hwApProfOpLTempThreshold, hwApProfMemoryUsageThreshold, + hwApProfCpuUsageThreshold, hwApProfTelnetSwitch, hwApProfSTelnetSwitch, hwApProfConsoleSwitch, hwApProfLogRecordLevel, + hwApProfLogServerIp, hwApProfLogServerIpv6, hwApProfAlarmRestrictionSwitch, hwApProfAlarmRestrictionPeriod, hwApProfKeepServiceSwitch, + hwApProfProtectPriority, hwApProfProtectACIp, hwApProfProtectACIpv6, hwApProfEapStartMode, hwApProfEapStartTransform, + hwApProfEapStartUnicastMac, hwApProfEapResponseMode, hwApProfEapResponseTransform, hwApProfEapResponseUnicastMac, hwApProfLldpRestartDelay, + hwApProfLldpAdminStatus, hwApProfLldpRetransDelay, hwApProfLldpRetransHoldMultiplier, hwApProfLldpInterval, hwApProfLldpReportInterval, + hwApProfStaAccessMode, hwApProfStaAccessModeProfile, hwApProfRowStatus, hwApProfSFTPSwitch, hwApProfDynamicBlackListAgingTime, + hwApProfAntennaOutputMode, hwApProfMppActiveReselectionSwitch, hwApProfSpectrumServerIPAddress, hwApProfSpectrumServerIPv6Address, hwApProfSpectrumServerPort, + hwApProfSpectrumViaACSwitch, hwApProfSpectrumViaACPort, hwApProfSpectrumNonWifiDeviceAgingTime, hwApProfPoeMaxPower, hwApProfPoePowerReserved, + hwApProfPoePowerThreshold, hwApProfPoeAfInrushSwitch, hwApProfPoeHighInrushSwitch, hwApProfPrimaryLinkIPv4, hwApProfPrimaryLinkIPv6, hwApProfBackupLinkIPv4, + hwApProfBackupLinkIPv6, hwApProfLedOffTimeRange, hwApProfUsbSwitch, hwApProfBroadcastSuppressionArpEnable, hwApProfBroadcastSuppressionArpThreshold, + hwApProfBroadcastSuppressionIgmpEnable, hwApProfBroadcastSuppressionIgmpThreshold,hwApProfBroadcastSuppressionNdEnable, hwApProfBroadcastSuppressionNdThreshold, + hwApProfBroadcastSuppressionOtherEnable, hwApProfBroadcastSuppressionOtherThreshold,hwApProfBroadcastSuppressionAllEnable} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 12 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.13 + hwAPWiredPortProfileGroups OBJECT-GROUP + OBJECTS { hwAPWiredPortPortLinkProfileName, hwAPWiredPortProfilePortDesc, hwAPWiredPortProfilePortEthTrunkID, hwAPWiredPortProfilePortSTPSwitch, hwAPWiredPortProfilePortMode, + hwAPWiredPortProfilePortVlanPvid, hwAPWiredPortProfilePortVlanTagged, hwAPWiredPortProfilePortVlanUntagged, hwAPWiredPortProfileUserIsolate, hwAPWiredPortProfileDhcpTrust, + hwAPWiredPortProfileNdTrust, hwAPWiredPortProfileRowStatus, hwAPWiredPortProfileLearnAddress, hwAPWiredPortProfileIpBindCheck, hwAPWiredPortProfileArpBindCheck, + hwAPWiredPortProfileSTPAutoShutdown, hwAPWiredPortProfileSTPAutoShutdownRecoveryTime, hwAPWiredPortProfileTrafficOptimizeSuppressionBc, hwAPWiredPortProfileTrafficOptimizeSuppressionUc, hwAPWiredPortProfileTrafficOptimizeSuppressionMc, + hwAPWiredPortProfileTrafficFilterAclID, hwAPWiredPortProfileTrafficFilterRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 13 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.14 + hwAPPortLinkProfileGroups OBJECT-GROUP + OBJECTS { hwAPPortLinkProfileLldpEnable, hwAPPortLinkProfileLldpTlvType, hwAPPortLinkProfileCrcAlarmEnable, hwAPPortLinkProfileCrcAlarmThreshold, hwAPPortLinkProfileCrcAlarmResumeThreshold, + hwAPPortLinkProfileRowStatus, hwAPPortLinkProfilePoeSwitch, hwAPPortLinkProfilePoePriority, hwAPPortLinkProfilePoeForcePowerSwitch, hwAPPortLinkProfilePoeLegacySwitch, + hwAPPortLinkProfilePoeOffTimeRange, hwAPPortLinkProfileAdminStatus, hwAPPortLinkProfileEEESwitch } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 14 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.15 + hw2gRadioProfileGroups OBJECT-GROUP + OBJECTS { hw2gRadioBeaconInterval, hw2gRadioGuardIntervalMode, hw2gRadioShortPreamble, hw2gRadioFragmentationThreshold, hw2gRadioHtAmpduSwitch, + hw2gRadioHtAmpduMaxLengthExponent, hw2gRadioDot11bgBasicRate, hw2gRadioDot11bgSupportRate, hw2gRadioMulticastRate, hw2gRadioWmmMandatorySwitch, + hw2gRadioApEDCAVoiceECWmax, hw2gRadioApEDCAVoiceECWmin, hw2gRadioApEDCAVoiceAIFSN, hw2gRadioApEDCAVoiceTXOPLimit, hw2gRadioApEDCAVoiceAckPolicy, + hw2gRadioApEDCAVideoECWmax, hw2gRadioApEDCAVideoECWmin, hw2gRadioApEDCAVideoAIFSN, hw2gRadioApEDCAVideoTXOPLimit, hw2gRadioApEDCAVideoAckPolicy, + hw2gRadioApEDCABEECWmax, hw2gRadioApEDCABEECWmin, hw2gRadioApEDCABEAIFSN, hw2gRadioApEDCABETXOPLimit, hw2gRadioApEDCABEAckPolicy, + hw2gRadioApEDCABKECWmax, hw2gRadioApEDCABKECWmin, hw2gRadioApEDCABKAIFSN, hw2gRadioApEDCABKTXOPLimit, hw2gRadioApEDCABKAckPolicy, + hw2gRadioWmmSwitch, hw2gRadioRtsCtsThreshold, hw2gRadioRtsCtsMode, hw2gRadioPowerAutoAdjustSwitch, hw2gRadioBeamformingSwitch, + hw2gRadioWifiLight, hw2gRadioChannelSwitchAnnouncementSwitch, hw2gRadioChannelSwitchMode, hw2gRadioAutoOffServiceSwitch, hw2gRadioAutoOffServiceStartTime, + hw2gRadioAutoOffServiceEndTime, hw2gRadioInterferenceDetectSwitch, hw2gRadioInterferenceIntraFrequencyThreshold, hw2gRadioInterferenceAdjacentFrequencyThreshold, hw2gRadioInterferenceStationThreshold, + hw2gRadioRrmProfile, hw2gRadioAirScanProfile, hw2gRadioProfileRowStatus, hw2gRadioProfileUtmostPowerSwitch, hw2gRadioProfileRadioType, + hw2gRadioProfileSmartAntennaEnable, hw2gRadioProfileTxChainNum, hw2gRadioProfileRxChainNum,hw2gRadioProfileAutoOffTimeRange } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 15 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.16 + hw5gRadioProfileGroups OBJECT-GROUP + OBJECTS { hw5gRadioBeaconInterval, hw5gRadioGuardIntervalMode, hw5gRadioShortPreamble, hw5gRadioFragmentationThreshold, hw5gRadioHtAmpduSwitch, + hw5gRadioHtAmpduMaxLengthExponent, hw5gRadioVhtAmpduMaxLengthExponent, hw5gRadioVhtAmsduSwitch, hw5gRadioVhtAmsduMaxFrameNum, hw5gRadioDot11aBasicRate, + hw5gRadioDot11aSupportRate, hw5gRadioMulticastRate, hw5gRadioVhtNssMapMaxMcs, hw5gRadioWmmMandatorySwitch, hw5gRadioApEDCAVoiceECWmax, + hw5gRadioApEDCAVoiceECWmin, hw5gRadioApEDCAVoiceAIFSN, hw5gRadioApEDCAVoiceTXOPLimit, hw5gRadioApEDCAVoiceAckPolicy, hw5gRadioApEDCAVideoECWmax, + hw5gRadioApEDCAVideoECWmin, hw5gRadioApEDCAVideoAIFSN, hw5gRadioApEDCAVideoTXOPLimit, hw5gRadioApEDCAVideoAckPolicy, hw5gRadioApEDCABEECWmax, + hw5gRadioApEDCABEECWmin, hw5gRadioApEDCABEAIFSN, hw5gRadioApEDCABETXOPLimit, hw5gRadioApEDCABEAckPolicy, hw5gRadioApEDCABKECWmax, + hw5gRadioApEDCABKECWmin, hw5gRadioApEDCABKAIFSN, hw5gRadioApEDCABKTXOPLimit, hw5gRadioApEDCABKAckPolicy, hw5gRadioWmmSwitch, + hw5gRadioRtsCtsThreshold, hw5gRadioRtsCtsMode, hw5gRadioPowerAutoAdjustSwitch, hw5gRadioBeamformingSwitch, hw5gRadioWifiLight, + hw5gRadioChannelSwitchAnnouncementSwitch, hw5gRadioChannelSwitchMode, hw5gRadioAutoOffServiceSwitch, hw5gRadioAutoOffServiceStartTime, hw5gRadioAutoOffServiceEndTime, + hw5gRadioInterferenceDetectSwitch, hw5gRadioInterferenceIntraFrequencyThreshold, hw5gRadioInterferenceAdjacentFrequencyThreshold, hw5gRadioInterferenceStationThreshold, hw5gRadioRrmProfile, + hw5gRadioAirScanProfile, hw5gRadioProfileRowStatus, hw5gRadioProfileUtmostPowerSwitch, hw5gRadioProfileRadioType, hw5gRadioProfileSmartAntennaEnable, hw5gRadioProfileMuMIMOEnable, + hw5gRadioProfileTxChainNum, hw5gRadioProfileRxChainNum,hw5gRadioProfileAutoOffTimeRange + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 16 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.17 + hwRrmProfileGroups OBJECT-GROUP + OBJECTS { hwRrmAutoChannelSelectSwitch, hwRrmAutoTxPowerSelectSwitch, hwRrmErrRateThreshold, hwRrmAirtimeFairSchduleSwitch, hwRrmDynamicEdcaSwitch, + hwRrmUacLimitClientSnrSwitch, hwRrmUacClientSnrThreshold, hwRrmUacPolicySwitch, hwRrmUacPolicyType, hwRrmUacReachThresholdHideSsidSwitch, + hwRrmBandSteerDenyThreshold, hwRrmBandSteerLbClientThreshold, hwRrmBandSteerLbGapThreshold, hwRrmBandSteerClientBandsExpire, hwRrmLoadBalanceSwitch, + hwRrmLoadBalanceClientThreshold, hwRrmLoadBalanceGapThreshold, hwRrmLoadBalanceDenyThreshold, hwRrmSmartRoamCheckType, hwRrmSmartRoamSwitch, + hwRrmSmartRoamSnrThreshold, hwRrmSmartRoamRateThreshold, hwRrmSmartRoamSnrHighLevelMargin, hwRrmSmartRoamSnrLowLevelMargin, hwRrmSmartRoamSnrCheckInterval, + hwRrmSmartRoamUnableRoamExpireTime, hwRrmProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 17 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.18 + hwAirScanProfileGroups OBJECT-GROUP + OBJECTS { hwAirScanPeriod, hwAirScanInterval, hwAirScanChannelSet, hwAirScanProfilRowStatus, hwAirScanVoiceAware, + hwAirScanVideoAware } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 18 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.19 + hwVapProfileGroups OBJECT-GROUP + OBJECTS { hwVapForwardMode, hwVapTunnelForwardProtocol, hwVapServiceSwitch, hwVapAutoOffStartTime, hwVapAutoOffEndTime, + hwVapTemporaryManagementSwitch, hwVapServiceVlan, hwVapVlanPool, hwVapType, hwVapStaAccessMode, + hwVapStaAccessModePorfile, hwVapRoamHomeAgent, hwVapRoamVlanMobilityGroup, hwVapRoamLayer3Switch, hwVapBandSteerSwitch, + hwVapLearnIpv4Address, hwVapLearnIpv6Address, hwVapLearnIpv4AddressStrict, hwVapIpBindCheck, hwVapArpBindCheck, + hwVapOptinon82InsertSwitch, hwVapOptinon82InsertRidFormat, hwVapDhcpTrustPort, hwVapNdTrustPort, hwVapSecurityProfile, + hwVapTrafficProfile, hwVapSsidProfile, hwVapAuthenticationProfile, hwVapSacProfile, hwVapProfileRowStatus, + hwVapUserProfile, hwVapHotspot2Profile, hwSoftgreProfile, hwVapOptinon82RidUserDefined, hwVapOptinon82RidMacFormat, + hwVapOptinon82InsertCidFormat, hwVapOptinon82CidUserDefined, hwVapOptinon82CidMacFormat, hwVapUccProfile, hwVapAntiAttackBroadcastFloodSwitch, + hwVapAntiAttackBroadcastFloodStaRateThreshold, hwVapAntiAttackBroadcastFloodBlacklistSwitch, hwVapLearnIpv6AddressStrict, + hwVapAntiAttackARPFloodSwitch, hwVapAntiAttackARPFloodStaRateThreshold, hwVapAntiAttackBroadcastFloodBlacklistSwitch, + hwVapAntiAttackNDFloodSwitch, hwVapAntiAttackNDFloodStaRateThreshold, hwVapAntiAttackNDFloodBlacklistSwitch, + hwVapAntiAttackIGMPFloodSwitch, hwVapAntiAttackIGMPFloodStaRateThreshold, hwVapAntiAttackIGMPFloodBlacklistSwitch, hwVapDefenceProfile , + hwVapTimeRange, hwVapPermitVlanList} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 19 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.20 + hwSsidProfileGroups OBJECT-GROUP + OBJECTS { hwSsidText, hwSsidHide, hwSsidAssocTimeout, hwSsidMaxStaNum, hwSsidLegacyStaSwitch, + hwSsidDtimInterval, hwSsidClientEdcaVoiceECWmax, hwSsidClientEdcaVoiceECWmin, hwSsidClientEdcaVoiceAIFSN, hwSsidClientEdcaVoiceTXOPLimit, + hwSsidClientEdcaVideoECWmax, hwSsidClientEdcaVideoECWmin, hwSsidClientEdcaVideoAIFSN, hwSsidClientEdcaVideoTXOPLimit, hwSsidClientEdcaBeECWmax, + hwSsidClientEdcaBeECWmin, hwSsidClientEdcaBeAIFSN, hwSsidClientEdcaBeTXOPLimit, hwSsidClientEdcaBkECWmax, hwSsidClientEdcaBkECWmin, + hwSsidClientEdcaBkAIFSN, hwSsidClientEdcaBkTXOPLimit, hwSsidInboundCarCir, hwSsidInboundCarPir, hwSsidInboundCarCbs, + hwSsidInboundCarPbs, hwSsidOutboundCarCir, hwSsidOutboundCarPir, hwSsidOutboundCarCbs, hwSsidOutboundCarPbs, + hwSsidProfileRowStatus, hwSsidHideWhileReachMaxSta, hwSsidBeacon2gRate, hwSsidBeacon5gRate, hwSsidDenyBroadcastProbe, + hwSsidProbeResponseRetry, hwSsidUapsd, hwSsidActiveDullClient, hwSsidMuMIMOSwitch, hwSsidProfile80211rEnable, hwSsidProfile80211rMode, hwSsidProfile80211rReassociateTimeout} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 20 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.21 + hwSecurityProfileGroups OBJECT-GROUP + OBJECTS { hwSecurityPolicy, hwSecurityWepEncrypt, hwSecurityWepPskMode, hwSecurityWepPsk1, hwSecurityWepPsk2, + hwSecurityWepPsk3, hwSecurityWepPsk4, hwSecurityWepDefaultKeyId, hwSecurityWpaEncrypt, hwSecurityWpaPskMode, + hwSecurityWpaPsk, hwSecurityWpaPtkUpdateSwitch, hwSecurityWpaPtkUpdateInterval, hwSecurityWapiPskMode, hwSecurityWapiPsk, + hwSecurityWapiAsuIpAddress, hwSecurityWapiIssuerCertFileName, hwSecurityWapiAsuCertFileName, hwSecurityWapiAcCertFileName, hwSecurityWapiAcPrvKeyFileName, + hwSecurityWapiIssuerPfxPassword, hwSecurityWapiAsuPfxPassword, hwSecurityWapiAcPfxPassword, hwSecurityWapiAcPrvKeyPassword, hwSecurityWapiCertRetransCount, + hwSecurityWapiBkThreshold, hwSecurityWapiBkLifetime, hwSecurityWapiUskUpdateMethod, hwSecurityWapiMskUpdateMethod, hwSecurityWapiUskUpdateInterval, + hwSecurityWapiUskUpdatePackets, hwSecurityWapiUskRetansCount, hwSecurityWapiMskUpdateInterval, hwSecurityWapiMskUpdatePackets, hwSecurityWapiMskRetansCount, + hwSecurityWapiSATimeout, hwSecurityProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 21 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.22 + hwAPTrafficProfileGroups OBJECT-GROUP + OBJECTS { hwAPTrafficProfilePriorityMapDnTrustMode, hwAPTrafficProfilePriorityDscpDnMap80211e, hwAPTrafficProfilePriority80211eUpMapDscp, hwAPTrafficProfileUserIsolate, hwAPTrafficProfileRateLimitClientUp, + hwAPTrafficProfileRateLimitClientDn, hwAPTrafficProfileRateLimitVapUp, hwAPTrafficProfileRateLimitVapDn, hwAPTrafficProfileMldSnooping, hwAPTrafficProfileIGMPSnooping, + hwAPTrafficProfileIGMPSnoopingReportSuppress, hwAPTrafficProfileMcToUc, hwAPTrafficProfileOptimizeSuppressionBc, hwAPTrafficProfileOptimizeSuppressionUc, hwAPTrafficProfileOptimizeSuppressionMc, + hwAPTrafficProfileOptimizeTCPAdjustMSS, hwAPTrafficProfileOptimizeProxyARP, hwAPTrafficProfileOptimizeProxyND, hwAPTrafficProfileOptimizeUcSendARP, hwAPTrafficProfileOptimizeUcSendND, + hwAPTrafficProfileOptimizeUcSendDHCP, hwAPTrafficProfileOptimizeBcMcDenyAll, hwAPTrafficProfileOptimizeStaBridgeForward, hwAPTrafficProfileRowStatus, hwAPTrafficProfilePriorityMapUpTrustMode, + hwAPTrafficProfilePriorityDscpUpMapDscp, hwAPTrafficProfileFilterACLID, hwAPTrafficProfileFilterRowStatus, hwAPTrafficProfileOptimizeBcMcMismatchAct, hwAPTrafficProfileMcToUcDynamicAdatptive, + hwAPTrafficProfileIGMPSnoopingMaxBandwidth, hwAPTrafficProfileIGMPSnoopingMaxUser } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 22 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.23 + hwWlanVlanPoolGroups OBJECT-GROUP + OBJECTS { hwVlanPoolVlanlist, hwVlanPoolAssignMethod, hwVlanPoolRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 23 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.24 + hwStaWhitelistProfileGroups OBJECT-GROUP + OBJECTS {hwWlanStaWhitelistProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 24 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.25 + hwStaBlacklistProfileGroups OBJECT-GROUP + OBJECTS { hwWlanStaBlacklistProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 25 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.26 + hwWidsProfileGroups OBJECT-GROUP + OBJECTS { hwWidsProfileRowStatus, hwWidsDeviceReportInterval, hwWidsDeviceSyncInterval, hwWidsSpoofProfile, hwWidsWhitelistProfile, + hwWidsBruteForceDetectInterval, hwWidsBruteForceDetectThreshold, hwWidsBruteForceQuietTime, hwWidsFloodDetectInterval, hwWidsFloodDetectThreshold, + hwWidsFloodQuietTime, hwWidsWeakIvQuietTime, hwWidsSpoofQuietTime, hwWidsDynamicBlackListSwitch, hwWidsRogueContainModeBmp + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 26 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.30 + hwWidsSpoofProfileGroups OBJECT-GROUP + OBJECTS { hwWidsSpoofProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 30 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.31 + hwWidsWhitelistProfileGroups OBJECT-GROUP + OBJECTS { hwWidsWhitelistProfileMacRowStatus, hwWidsWhitelistProfileOuiRowStatus, hwWidsWhitelistProfileSsidRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 31 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.32 + hwMeshProfileGroups OBJECT-GROUP + OBJECTS { hwWlanMeshID, hwWlanMeshDhcpTrustPort, hwWlanMeshLinkReportInterval, hwWlanMeshMaxLinkNum, hwWlanMeshRssiThreshold, + hwWlanMeshSecurityProfileName, hwWlanMeshProfileHandoverProfileName, hwWlanMeshFwaSwitch, hwWlanMeshFwaEdcaMode, hwWlanMeshProfileRowStatus, + hwWlanMeshClientEdcaVoiceECWmax, hwWlanMeshClientEdcaVoiceECWmin, hwWlanMeshClientEdcaVoiceAIFSN, hwWlanMeshClientEdcaVoiceTXOPLimit, hwWlanMeshClientEdcaVideoECWmax, + hwWlanMeshClientEdcaVideoECWmin, hwWlanMeshClientEdcaVideoAIFSN, hwWlanMeshClientEdcaVideoTXOPLimit, hwWlanMeshClientEdcaBeECWmax, hwWlanMeshClientEdcaBeECWmin, + hwWlanMeshClientEdcaBeAIFSN, hwWlanMeshClientEdcaBeTXOPLimit, hwWlanMeshClientEdcaBkECWmax, hwWlanMeshClientEdcaBkECWmin, hwWlanMeshClientEdcaBkAIFSN, + hwWlanMeshClientEdcaBkTXOPLimit, hwWlanMeshNdTrustPort, hwWlanMeshLinkAgingTime, hwWlanMeshProfilePriorityMapTrustMode, hwWlanMeshProfilePriorityDscpMap80211e, + hwWlanMeshProfileClientModeSwitch, hwWlanMeshProfileBeacon2gRate, hwWlanMeshProfileBeacon5gRate } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 32 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.33 + hwMeshWhitelistProfileGroups OBJECT-GROUP + OBJECTS {hwWlanMeshWhitelistProfileRowStatus, hwWlanMeshWhitelistRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 33 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.34 + hwMeshHandoverProfileGroups OBJECT-GROUP + OBJECTS { hwWlanMeshHOLinkProbeInterval, hwWlanMeshHOMinRssiThreshold, hwWlanMeshHOMaxRssiThreshold, hwWlanMeshHOLinkHoldPeriod, hwWlanMeshHORssiMargin, + hwWlanMeshHOLocationBasedAlgorithmEnable, hwWlanMeshHOMovingDirection, hwWlanMeshHOPNCriteriaObserveTime, hwWlanMeshHOPNCriteriaQualifyTime, hwWlanMeshUrgentHandoverLowRateThreshold, + hwWlanMeshUrgentHandoverLowRatePeriod, hwWlanMeshUrgentHandoverPunishmentPeriod, hwWlanMeshUrgentHandoverPunishmentRssi, hwWlanMeshHandoverProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 34 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.35 + hwWdsProfileGroups OBJECT-GROUP + OBJECTS { hwWdsName, hwWdsMode, hwWdsDhcpTrustPort, hwWdsVlanTagged, hwWdsSecurityProfileName, + hwWdsProfileRowStatus, hwWdsNdTrustPort, hwWdsProfilePriorityMapTrustMode, hwWdsProfilePriorityDscpMap80211e, hwWdsMuMIMOSwitch, + hwWdsProfileBeacon2gRate, hwWdsProfileBeacon5gRate } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 35 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.36 + hwWdsWhitelistProfileGroups OBJECT-GROUP + OBJECTS { hwWdsWhitelistProfileRowStatus,hwWdsWhitelistRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 36 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.37 + hwLocationProfileGroups OBJECT-GROUP + OBJECTS { hwLocationAeroscoutTagSwitch, hwLocationAeroscoutMuSwitch, hwLocationAeroscoutServerPort, hwLocationAeroscoutViaACSwitch, + hwLocationAeroscoutViaACPort, hwLocationAeroscoutCompoundTime, hwLocationEkahauTagEnable, hwLocationEkahauServerIPAddress, hwLocationEkahauServerIPv6Address, + hwLocationEkahauServerPort, hwLocationEkahauViaACEnable, hwLocationEkahauViaACPort, hwLocationSourceIPAddress, hwLocationSourceIPv6Address, + hwLocationPrivateMuEnable, hwLocationPrivateServerIPAddress, hwLocationPrivateServerIPv6Address, hwLocationPrivateServerPort, hwLocationPrivateViaACEnable, + hwLocationPrivateViaACPort, hwLocationPrivateReportFrequency, hwLocationProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 37 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.39 + hwHotspot2ProfileGroups OBJECT-GROUP + OBJECTS { hwHotspot2NetworkType, hwHotspot2InternetAccess, hwHotspot2VenueGroupCode, hwHotspot2VenueTypeCode, hwHotspot2Hessid, + hwHotspot2IPv4AddressAvail, hwHotspot2IPv6AddressAvail, hwHotspot2NetworkAuthenType, hwHotspot2RedirectUrl, hwHotspot2CarryP2PCrossConnectInfo, + hwHotspot2CellularNetworkProfile, hwHotspot2ConnectionCapabilityProfile, hwHotspot2OperatorNameProfile, hwHotspot2OperatingClassProfile, hwHotspot2OperatorDomainProfile, + hwHotspot2NaiRealmProfile, hwHotspot2VenueNameProfile, hwHotspot2RoamingConsortiumProfile, hwHotspot2ProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 39 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.40 + hwCellularNetworkProfileGroups OBJECT-GROUP + OBJECTS { hwCellularNetworkProfilePlmnIDList, hwCellularNetworkProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 40 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.41 + hwConnectionCapabilityProfileGroups OBJECT-GROUP + OBJECTS { hwConnectionCapabilityEsp, hwConnectionCapabilityIcmp, hwConnectionCapabilityTcpFtp, hwConnectionCapabilityTcpHttp, hwConnectionCapabilityTcpPptpVpn, + hwConnectionCapabilityTcpSsh, hwConnectionCapabilityTcpTlsVpn, hwConnectionCapabilityTcpVoip, hwConnectionCapabilityUdpIke2Port4500, hwConnectionCapabilityUdpIke2Port500, + hwConnectionCapabilityUdpVoip, hwConnectionCapabilityProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 41 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.42 + hwOperatorNameProfileGroups OBJECT-GROUP + OBJECTS { hwOperatorNameLanguageCodeList, hwOperatorFriendlyNameList, hwOperatorNameProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 42 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.43 + hwOperatorClassProfileGroups OBJECT-GROUP + OBJECTS { hwOperatorClassIndicationList, hwOperatorClassProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 43 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.44 + hwOperatorDomainNameProfileGroups OBJECT-GROUP + OBJECTS { hwOperatorDomainNameList, hwOperatorDomainNameProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 44 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.45 + hwNAIRealmProfileGroups OBJECT-GROUP + OBJECTS {hwNAIRealmEapAuthenPara, + hwNAIRealmProfileRowStatus,hwNAIRealmProfileListRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 45 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.46 + hwVenueNameProfileGroups OBJECT-GROUP + OBJECTS { hwVenueNameLanguageCodeList, hwVenueNameList, hwVenueNameProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 46 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.47 + hwRoamingConsortiumProfileGroups OBJECT-GROUP + OBJECTS {hwRoamingConsortiumOIList, hwRoamingConsortiumOIInBeaconList, hwRoamingConsortiumProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 47 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.48 + hwSACProfileGroups OBJECT-GROUP + OBJECTS {hwSACProfUserStat, hwSACProfVapStat, hwSACProfRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 48 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.49 + hwSACProfActionGroups OBJECT-GROUP + OBJECTS { hwSACProfileActProtocolType, hwSACProfileActProtocolName, hwSACProfileActProtocolGrpName, hwSACProfileActionType, hwSACProfileActCarCir, + hwSACProfileActRemarkDscpValue, hwSACProfileActRemark8021pValue, hwSACProfileActionRowstatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 49 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.50 + hwAPProvisionGroups OBJECT-GROUP + OBJECTS { hwWlanAPProvisionAddressMode, hwWlanAPProvisionIPv4Address, hwWlanAPProvisionIPv4Mask, hwWlanAPProvisionIPv4Gateway, hwWlanAPProvisionIPv6Address, + hwWlanAPProvisionIPv6PrefixLen, hwWlanAPProvisionIPv6Gateway, hwWlanAPProvisionGroupName, hwWlanAPProvisionName, hwWlanAPProvisionIPv4ACList, + hwWlanAPProvisionIPv6ACList, hwWlanAPProvisionCommitAPName, hwWlanAPProvisionCommitAPMac, hwWlanAPProvisionCommitAPGroup } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 50 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.51 + hwWlanRadioCalibrateManagementGroups OBJECT-GROUP + OBJECTS { hwWlanRadioCalibrateMode, hwWlanRadioCalibrateScheduleTime, hwWlanRadioCalibrateManualStartup, hwWlanRadioCalibrateAutoInterval, hwWlanRadioCalibratePolicy, + hwWlanRadioCalibrateSensitivity, hwWlanRadioCalibrateAutoStartTime } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 51 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.52 + hwWlanMobilityGroups OBJECT-GROUP + OBJECTS { hwWlanMasterControllerSwitch, hwWlanConnectMasterControllerSwitch, hwWlanConnectMasterControllerIPv4Addr, hwWlanConnectMasterControllerIPv6Addr, + hwWlanMobilityServerIPv4,hwWlanMobilityServerIPv6,hwWlanMobilityServerState,hwWlanMobilityServerSwitch, + hwWlanAcIPv4Address, hwWlanAcIPv6Address, hwWlanAcState, hwWlanAcRowStatus, + hwWlanMobilityGroupRowStatus, hwWlanMobilityGroupMemberRowStatus, + hwWlanMobilityMemberIPv4Addr,hwWlanMobilityMemberIPv4Description,hwWlanMobilityMemberIPv4State,hwWlanMobilityMemberIPv4RowStatus,hwWlanMobilityMemberIPv6Addr, + hwWlanMobilityMemberIPv6Description,hwWlanMobilityMemberIPv6State,hwWlanMobilityMemberIPv6RowStatus,hwWlanMobilityClientIPv4Addr,hwWlanMobilityClientIPv4State,hwWlanMobilityClientIPv6Addr, + hwWlanMobilityClientIPv6State + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 52 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.53 + hwWlanLanguageGroups OBJECT-GROUP + OBJECTS { hwWlanLanguageCodeDescription } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 53 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.54 + hwFatApConfigGroups OBJECT-GROUP + OBJECTS { hwFatApCountryCode, hwFatApMaxStaNum, hwFatApStaAccessMode, hwFatApStaAccessModePorfile, hwFatApHighTempThreshold, + hwFatApLowTempThreshold, hwFatApDcaChannel5GBandwidth, hwFatApDcaChannel5GChannelSet, hwFatApDcaChannel2GChannelSet, hwFatApDynamicBlackAgingTime, + hwFatApAntennaOutputMode, hwFatApRadio0Frequency, hwFatApRadio2gProfile, hwFatApRadio5gProfile, hwFatApRadioMeshProfile, + hwFatApLocationProfile, hwFatApRadioRowStatus, hwFatApMeshWhitelistProfile, hwFatApWdsWhitelistProfile, hwFatApRadioSwitch, + hwFatApRadioChannel, hwFatApRadioBandwidth, hwFatApRadioEirp, hwFatApRadioAntennaGain, hwFatApRadioCoverageDistance, + hwFatApRadioWorkMode, hwFatApWidsDeviceDetectSwitch, hwFatApWidsAttackDetectEnBmp, hwFatApWidsRogueContainSwitch, + hwFatApVapProfile, hwFatApVapProfileRowStatus + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 54 } + + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.55 + hwWidsSpoofProfileListGroups OBJECT-GROUP + OBJECTS { hwWidsSpoofProfileListRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 55 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.56 + hwWidsWhitelistProfileListGroups OBJECT-GROUP + OBJECTS {hwWidsWhitelistProfileListRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 56 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.57 + hwWlanLoadBalanceStaticGroupGroups OBJECT-GROUP + OBJECTS { hwWlanLBGapThreshold, hwWlanLBDenyThreshold, hwWlanLBStartThreshold, hwWlanLBGroupStatus, + hwWlanLBGroupRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 57 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.58 + hwWlanLoadBalanceStaticGroupMemberGroups OBJECT-GROUP + OBJECTS { hwWlanLBMemberRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 58 } + + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.59 + hwWlanCountryCodeGroups OBJECT-GROUP + OBJECTS { hwWlanCountryCodeEngDescription, hwWlanCountryCodeAvailableChannelSet2gBW20, hwWlanCountryCodeAvailableChannelSet2gBW40Plus, hwWlanCountryCodeAvailableChannelSet2gBW40Minus, hwWlanCountryCodeAvailableChannelSet5gBW20, + hwWlanCountryCodeAvailableChannelSet5gBW40Plus, hwWlanCountryCodeAvailableChannelSet5gBW40Minus, hwWlanCountryCodeAvailableChannelSet5gBW80, + hwWlanCountryCodeAvailableChannelSet5gBW160 } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 59 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.60 + hwUccProfileGroups OBJECT-GROUP + OBJECTS { hwUCCProfLyncVoice8021p, hwUCCProfLyncVoice8021pValue, hwUCCProfLyncVoiceDscp, hwUCCProfLyncVoiceDscpValue, hwUCCProfLyncVideo8021p, + hwUCCProfLyncVideo8021pValue, hwUCCProfLyncVideoDscp, hwUCCProfLyncVideoDscpValue, hwUCCProfLyncShare8021p, hwUCCProfLyncShare8021pValue, + hwUCCProfLyncShareDscp, hwUCCProfLyncShareDscpValue, hwUCCProfLyncFileTransfer8021p, hwUCCProfLyncFileTransfer8021pValue, hwUCCProfLyncFileTransferDscp, + hwUCCProfLyncFileTransferDscpValue, hwUCCProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 60 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.61 + hwSoftgreProfileGroups OBJECT-GROUP + OBJECTS { hwSoftgreDestinationIPAddress, hwSoftgreDestinationIPv6Address, hwSoftgreKeepaliveFlag, hwSoftgreKeepalivePeriod, + hwSoftgreKeepaliveRetryTimes, hwSoftgreProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 61 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.66 + hwBleProfileGroups OBJECT-GROUP + OBJECTS { hwWlanBLEBroadcasterEnable, hwWlanBLETxPower, hwWlanBLEBroadcastingUUID, hwWlanBLEBroadcastingMajor, + hwWlanBLEBroadcastingMinor, hwWlanBLEBroadcastingReferenceRSSI, hwWlanBLEBroadcastingInterval, hwWlanBLESnifferEnable, + hwWlanBLEProfileRowStatus, hwWlanBLEBroadcastingUUIDHex, hwWlanBLEBroadcastingMajorHex, hwWlanBLEBroadcastingMajorDecimal, hwWlanBLEBroadcastingMinorHex, + hwWlanBLEBroadcastingMinorDecimal } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 66 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.67 + hwAPGroupCardGroups OBJECT-GROUP + OBJECTS { hwAPGrpCardSerialProfile, hwAPGrpCardProfile, hwAPGrpCardNetUDPPort, hwAPGrpIoTRowStatus, hwAPGrpCardNetTCPPort } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 67 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.68 + hwAPSpecificCardGroups OBJECT-GROUP + OBJECTS { hwAPSpIoTSerialProfile, hwAPSpIoTProfile, hwAPSpIoTNetUDPPort, hwAPSpIoTRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 68 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.69 + hwIoTSerialProfileGroups OBJECT-GROUP + OBJECTS { hwIoTSerialSpeed, hwIoTSerialParity, hwIoTSerialStopbits, hwIoTSerialFrameFormat, hwIoTSerialFrameLength, + hwIoTSerialFrameStart, hwIoTSerialFrameStop, hwIoTSerialProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 69 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.70 + hwIoTProfileGroups OBJECT-GROUP + OBJECTS { hwIoTProfileConfigAgentPermitIp, hwIoTProfileConfigAgentPermitMaskLen, hwIoTProfileShareKey, hwIoTProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 70 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.71 + hwIoTProfileManagementServerGroups OBJECT-GROUP + OBJECTS { hwIoTProfileManagementServerIp, hwIoTProfileManagementServerPort, hwIoTProfileManagementServerRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 71 } + + -- 1.3.6.1.4.1.2011.6.139.11.2.2.79 + hwVapAntiAttackUserDefFloodGroups OBJECT-GROUP + OBJECTS { hwVapAntiAttackDefFloodProtocolType, hwVapAntiAttackDefFloodProtocolValue, hwVapAntiAttackDefFloodStaRateThreshold, + hwVapAntiAttackDefFloodBlacklistSwitch, hwVapAntiAttackDefFloodRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConfigObjectGroups 79 } + + END +-- +-- HUAWEI-WLAN-CONFIGURATION-MIB.mib +-- \ No newline at end of file diff --git a/mibs/huawei/HUAWEI-WLAN-GLOBAL-MIB b/mibs/huawei/HUAWEI-WLAN-GLOBAL-MIB new file mode 100644 index 0000000000..c5f34b4515 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-GLOBAL-MIB @@ -0,0 +1,996 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for config the ac in global view. +-- Reference: +-- Version: V1.05 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-GLOBAL-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.12 + hwWlanGlobalManagement MODULE-IDENTITY + LAST-UPDATED "201602161615Z" -- Feb 16, 2016 at 16:15 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.05, Add the hwWlanCurrentL3RoamStaCnt info node" + REVISION "201602161615Z" -- Feb 16, 2016 at 16:15 GMT + DESCRIPTION + "The MIB module defines the ap update operation." + REVISION "201508251550Z" -- Aug 25, 2015 at 15:50 GMT + DESCRIPTION + "V1.04, Add the ApGroup Statistics info nodes." + REVISION "201506271150Z" -- June 27, 2015 at 11:50 GMT + DESCRIPTION + "V1.03, Add the hwWlanServiceNormalAPCount and hwWlanApCount info nodes." + REVISION "201506211020Z" -- June 21, 2015 at 10:20 GMT + DESCRIPTION + "V1.02, Add the backup license info nodes." + + REVISION "201502021445Z" -- May 11, 2015 at 14:40 GMT + DESCRIPTION + "V1.01, Add the description of mib nodes." + REVISION "201502021445Z" -- February 2, 2015 at 14:40 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 12 } + +-- +--Node definitions +-- + + -- 1.3.6.1.4.1.2011.6.139.12.1 + hwWlanGlobalObjects OBJECT IDENTIFIER ::= { hwWlanGlobalManagement 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.1 + hwWlanGlobalPara OBJECT IDENTIFIER ::= { hwWlanGlobalObjects 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.1.1 + hwWlanGlobalWorkMode OBJECT-TYPE + SYNTAX INTEGER + { + ac(1) , + ap(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalPara 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.1.2 + hwWlanAccessMaxApNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum number of APs." + ::= { hwWlanGlobalPara 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.1.3 + hwWlanAccessMaxStaNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the maximum number of STAs connected to an AC." + ::= { hwWlanGlobalPara 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2 + hwWlanGlobalAcStatistics OBJECT IDENTIFIER ::= { hwWlanGlobalObjects 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.1 + hwWlanCurJointApNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of APs currently connected to an AC." + ::= { hwWlanGlobalAcStatistics 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.2 + hwWlanCurAssocStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of associated users on an AC." + ::= { hwWlanGlobalAcStatistics 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.3 + hwWlanCurAuthSuccessStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of online STAs on an AC." + ::= { hwWlanGlobalAcStatistics 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.4 + hwWlanReassocSuccessTimes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of successful roaming times on an AC." + ::= { hwWlanGlobalAcStatistics 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.5 + hwWlanCurAssoc2gStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of 2.4G users on an AC." + ::= { hwWlanGlobalAcStatistics 5 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.6 + hwWlanCurAssoc5gStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of 5G users on an AC." + ::= { hwWlanGlobalAcStatistics 6 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.7 + hwWlanDualBandStaNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of dual-band STAs." + ::= { hwWlanGlobalAcStatistics 7 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.8 + hwWlanGlobalUpSpeed OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream rate of the system (uplink throughput)." + ::= { hwWlanGlobalAcStatistics 8 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.9 + hwWlanGlobalDownSpeed OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the downstream rate of the system (downlink throughput)." + ::= { hwWlanGlobalAcStatistics 9 } + + -- 1.3.6.1.4.1.2011.6.139.12.1.2.10 + hwWlanCurrentL3RoamStaCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the count of current L3 roam stations." + ::= { hwWlanGlobalAcStatistics 10 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3 + hwWlanGlobalStaStatistics OBJECT IDENTIFIER ::= { hwWlanGlobalObjects 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.1 + hwWlanStaRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the STA rate. +Unit: 0.01 Compliance standard: Rate > x (x = proportion of 12 Mbps STAs to the total number of STAs)." + ::= { hwWlanGlobalStaStatistics 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.2 + hwWlanStaSnrComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of STA signal-to-noise ratio (SNR). +Unit: 0.01 Compliance standard: SNR > x (x = 20 dB)." + ::= { hwWlanGlobalStaStatistics 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.3 + hwWlanStaResendRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the STA retransmission rate (RR). +Unit: 0.01 Compliance standard: RR < x (x = 50%)." + ::= { hwWlanGlobalStaStatistics 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.4 + hwWlanStaDropRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the STA packet loss rate (PLR). +Unit: 0.01 Compliance standard: PLR < x (x = 5%)." + ::= { hwWlanGlobalStaStatistics 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.5 + hwWlanStaComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total STA compliance ratio." + ::= { hwWlanGlobalStaStatistics 5 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.6 + hwStaSnrNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 2.4G SNR fails to meet the compliance standard. +Compliance standard: SNR > x (x = 20 dB)." + ::= { hwWlanGlobalStaStatistics 6 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.7 + hwStaRateNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 2.4G rate fails to meet the compliance standard. +Compliance standard: Rate > x (x = 12 Mbps)." + ::= { hwWlanGlobalStaStatistics 7 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.8 + hwStaResendRateNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 2.4G retransmission rate (RR) fails to meet the compliance standard. +Compliance standard: RR < x (x = 50%)." + ::= { hwWlanGlobalStaStatistics 8 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.9 + hwStaDropRateNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 2.4G packet loss rate (PLR) fails to meet the compliance standard. +Compliance standard: PLR < x (x = 5%)." + ::= { hwWlanGlobalStaStatistics 9 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.10 + hwStaThruputNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 2.4G throughput fails to meet the compliance standard. (Here the throughput refers to a sum of the uplink and the downlink throughput.) +Compliance standard: Throughput > x (x = 12 Mbps)." + ::= { hwWlanGlobalStaStatistics 10 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.11 + hwStaSnrNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 5G SNR fails to meet the compliance standard. +Compliance standard: SNR > x (x = 20 dB)." + ::= { hwWlanGlobalStaStatistics 11 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.12 + hwStaRateNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 5G rate fails to meet the compliance standard. +Compliance standard: Rate > x (x = 12 Mbps)." + ::= { hwWlanGlobalStaStatistics 12 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.13 + hwStaResendRateNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 5G retransmission rate (RR) fails to meet the compliance standard. +Compliance standard: RR < x (x = 50%)." + ::= { hwWlanGlobalStaStatistics 13 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.14 + hwStaDropRateNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 5G packet loss rate (PLR) fails to meet the compliance standard. +Compliance standard: PLR < x (x = 5%)." + ::= { hwWlanGlobalStaStatistics 14 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.3.15 + hwStaThruputNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs whose 5G throughput fails to meet the compliance standard. (Here the throughput refers to a sum of the uplink and the downlink throughput.) +Compliance standard: Throughput > x (x = 12 Mbps)." + ::= { hwWlanGlobalStaStatistics 15 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4 + hwWlanGlobalRfStatistics OBJECT IDENTIFIER ::= { hwWlanGlobalObjects 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.1 + hwWlanRfChannelUtilRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the RF channel utilization. +Unit: 0.01 Compliance standard: Channel utilization < x (x = 70%)." + ::= { hwWlanGlobalRfStatistics 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.2 + hwWlanRfNoiseComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the RF noise intensity. +Unit: 0.01 Compliance standard: Noise intensity < x (x = -80 dBm)." + ::= { hwWlanGlobalRfStatistics 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.3 + hwWlanRfChannelJamRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This objects indicates compliance ratio of the RF interference ratio. +Unit: 0.01 Compliance standard: Interference ratio < x (x = 40%)." + ::= { hwWlanGlobalRfStatistics 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.4 + hwWlanRfResendRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This objects indicate compliance ratio of the RF retransmission rate (RR). +Unit: 0.01 Compliance standard: RR < x (x = 50%)." + ::= { hwWlanGlobalRfStatistics 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.5 + hwWlanRfDropRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This objects indicates compliance ratio of the RF packet loss rate (PLR). +Unit: 0.01 Compliance standard: PLR < x (x = 5%)." + ::= { hwWlanGlobalRfStatistics 5 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.6 + hwWlanRfComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total RF compliance ratio." + ::= { hwWlanGlobalRfStatistics 6 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.7 + hwWlanRfNoiseNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 2.4G noise intensity fails to meet the compliance standard. +Compliance standard: Noise intensity < x (x = -80 dBm)." + ::= { hwWlanGlobalRfStatistics 7 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.8 + hwWlanRfChannelUtilRateNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 2.4G channel utilization fails to meet the compliance standard. +Compliance standard: Channel utilization < x (x = 70%)." + ::= { hwWlanGlobalRfStatistics 8 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.9 + hwWlanRfLoadNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 2.4G load fails to meet the compliance standard. +Compliance standard: Number of online users < x (x = 40)." + ::= { hwWlanGlobalRfStatistics 9 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.10 + hwWlanRfChannelJamRateNoncompliance2gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 2.4G interference ratio fails to meet the compliance standard. +Compliance standard: Interference ratio < x (x = 40%)." + ::= { hwWlanGlobalRfStatistics 10 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.11 + hwWlanRfNoiseNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 5G noise intensity fails to meet the compliance standard. +Compliance standard: Noise intensity < x (x = -80 dBm)." + ::= { hwWlanGlobalRfStatistics 11 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.12 + hwWlanRfChannelUtilRateNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 5G channel utilization fails to meet the compliance standard. +Compliance standard: Channel utilization < x (x = 70%)." + ::= { hwWlanGlobalRfStatistics 12 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.13 + hwWlanRfLoadNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 5G load fails to meet the compliance standard. +Compliance standard: Number of online users < x (x = 40)." + ::= { hwWlanGlobalRfStatistics 13 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.4.14 + hwWlanRfChannelJamRateNoncompliance5gCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of radios on which the 5G interference ratio fails to meet the compliance standard. +Compliance standard: Interference ratio < x (x = 40%)." + ::= { hwWlanGlobalRfStatistics 14 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5 + hwWlanGlobalApStatistics OBJECT IDENTIFIER ::= { hwWlanGlobalObjects 5 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.1 + hwWlanApNormalRatio OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the proportion of APs in normal and commit states to all APs. +Unit: 0.01." + ::= { hwWlanGlobalApStatistics 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.2 + hwWlanApStaOnlineFailRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the AP's STA access failure rate. +Unit: 0.01 Compliance standard: STA access failure rate < x (x = 20%) Access failure rate = (hwStaAccessRequestFailedCount+hwStaAuthenRequestFailedCount)/(hwStaAssocAndReAssocRequestCount+hwStaAuthenRequestCount)." + ::= { hwWlanGlobalApStatistics 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.3 + hwWlanApStaOfflineRateComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the AP's STA offline rate. +Unit: 0.01 Compliance standard: STA offline rate x (x = 20%) Offline rate = hwStaExceptionalOfflineCnt/hwStaAuthenRequestSuccessCount. Abnormal APs are those in fault, version mismatch, and type mismatch." + ::= { hwWlanGlobalApStatistics 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.4 + hwWlanApStaOnlineCntComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates compliance ratio of the number of access STAs on an AP. +Unit: 0.01 Compliance standard: Access STAs < x (x = 40). Access STAs refer to online STAs. Abnormal APs are those in fault, version mismatch, and type mismatch." + ::= { hwWlanGlobalApStatistics 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.5 + hwWlanApComplianceRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total AP compliance ratio." + ::= { hwWlanGlobalApStatistics 5 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.6 + hwWlanServiceNormalAPCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total of AP in service normal states." + ::= { hwWlanGlobalApStatistics 6 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.5.7 + hwWlanApCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total of AP." + ::= { hwWlanGlobalApStatistics 7 } + + +-- 1.3.6.1.4.1.2011.6.139.12.1.6 + -- 1.3.6.1.4.1.2011.6.139.12.1.6 + hwWlanOnlineStaCntHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanOnlineStaCntHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes historical number of access users, which is counted every 1 min. The AC stores data in the latest 15 min." + ::= { hwWlanGlobalObjects 6 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.6.1 + hwWlanOnlineStaCntHistoryEntry OBJECT-TYPE + SYNTAX HwWlanOnlineStaCntHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanOnlineStaCntTime." + INDEX { hwWlanOnlineStaCntTime } + ::= { hwWlanOnlineStaCntHistoryTable 1 } + + + HwWlanOnlineStaCntHistoryEntry ::= + SEQUENCE { + hwWlanOnlineStaCntTime + Unsigned32, + hwWlanOnlineStaCnt + Integer32, + hwWlan2gOnlineStaCnt + Integer32, + hwWlan5gOnlineStaCnt + Integer32 + } + + -- 1.3.6.1.4.1.2011.6.139.12.1.6.1.1 + hwWlanOnlineStaCntTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the count time. It is the index of the table." + ::= { hwWlanOnlineStaCntHistoryEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.6.1.2 + hwWlanOnlineStaCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of access users." + ::= { hwWlanOnlineStaCntHistoryEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.6.1.3 + hwWlan2gOnlineStaCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of users connected to the 2.4G radio." + ::= { hwWlanOnlineStaCntHistoryEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.6.1.4 + hwWlan5gOnlineStaCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of users connected to the 5G radio." + ::= { hwWlanOnlineStaCntHistoryEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.7 + hwWlanSpeedHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanSpeedHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the historical effective throughput statistics, which is collected every 1 min. The AC stores data in the latest 15 min." + ::= { hwWlanGlobalObjects 7 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.7.1 + hwWlanSpeedHistoryEntry OBJECT-TYPE + SYNTAX HwWlanSpeedHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanSpeedHistoryTime." + INDEX { hwWlanSpeedHistoryTime } + ::= { hwWlanSpeedHistoryTable 1 } + + + HwWlanSpeedHistoryEntry ::= + SEQUENCE { + hwWlanSpeedHistoryTime + Unsigned32, + hwWlanUpSpeedHistory + Integer32, + hwWlanDownSpeedHistory + Integer32 + } + + -- 1.3.6.1.4.1.2011.6.139.12.1.7.1.1 + hwWlanSpeedHistoryTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the statistics collection time. It is the index of the table." + ::= { hwWlanSpeedHistoryEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.7.1.2 + hwWlanUpSpeedHistory OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates uplink effective throughput of the AC. Unit: Mbps." + ::= { hwWlanSpeedHistoryEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.7.1.3 + hwWlanDownSpeedHistory OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates downlink effective throughput of the AC.Unit: Mbps." + ::= { hwWlanSpeedHistoryEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.8 + hwWlanBackupLicenseTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanBackupLicenseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalObjects 8 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.8.1 + hwWlanBackupLicenseEntry OBJECT-TYPE + SYNTAX HwWlanBackupLicenseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanMainAcMac } + ::= { hwWlanBackupLicenseTable 1 } + + + HwWlanBackupLicenseEntry ::= + SEQUENCE { + hwWlanMainAcMac + MacAddress, + hwWlanBackupLicense + Integer32, + hwWlanLicenseOrigin + Integer32, + hwWlanLicenseBackupTime + OCTET STRING + } + + -- 1.3.6.1.4.1.2011.6.139.12.1.8.1.1 + hwWlanMainAcMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBackupLicenseEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.8.1.2 + hwWlanBackupLicense OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBackupLicenseEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.8.1.3 + hwWlanLicenseOrigin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBackupLicenseEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.8.1.4 + hwWlanLicenseBackupTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanBackupLicenseEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.9 + hwWlanApGroupStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanApGroupStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table collects statistics about 2G and 5G users in AP groups." + ::= { hwWlanGlobalObjects 9 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.9.1 + hwWlanApGroupStatisticsEntry OBJECT-TYPE + SYNTAX HwWlanApGroupStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApGpStatAPGroupName." + INDEX { hwWlanApGpStatAPGroupName } + ::= { hwWlanApGroupStatisticsTable 1 } + + + HwWlanApGroupStatisticsEntry ::= + SEQUENCE { + hwWlanApGpStatAPGroupName + OCTET STRING, + hwWlanApGpStatCurAssoc2gStaNum + Unsigned32, + hwWlanApGpStatCurAssoc5gStaNum + Unsigned32 + } + + -- 1.3.6.1.4.1.2011.6.139.12.1.9.1.1 + hwWlanApGpStatAPGroupName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the name of an AP group. It is the index of the table." + ::= { hwWlanApGroupStatisticsEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.9.1.2 + hwWlanApGpStatCurAssoc2gStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of 2G users in an AP group." + ::= { hwWlanApGroupStatisticsEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.1.9.1.3 + hwWlanApGpStatCurAssoc5gStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of 5G users in an AP group." + ::= { hwWlanApGroupStatisticsEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.12.2 +-- 1.3.6.1.4.1.2011.6.139.12.2 + -- 1.3.6.1.4.1.2011.6.139.12.2 + hwWlanGlobalManagementConformance OBJECT IDENTIFIER ::= { hwWlanGlobalManagement 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.1 + hwWlanGlobalManagementCompliances OBJECT IDENTIFIER ::= { hwWlanGlobalManagementConformance 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.1.1 + hwWlanGlobalManagementCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanGlobalParaGroup, hwWlanGlobalStatisticsGroup, hwWlanGlobalStaStatisticsGroup, hwWlanGlobalRfStatisticsGroup, hwWlanGlobalApStatisticsGroup, + hwWlanOnlineStaCntHistoryGroup, hwWlanSpeedHistoryGroup } + ::= { hwWlanGlobalManagementCompliances 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2 + hwWlanGlobalManagementObjectGroups OBJECT IDENTIFIER ::= { hwWlanGlobalManagementConformance 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.1 + hwWlanGlobalParaGroup OBJECT-GROUP + OBJECTS { hwWlanGlobalWorkMode, hwWlanAccessMaxApNumber, hwWlanAccessMaxStaNumber } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 1 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.2 + hwWlanGlobalStatisticsGroup OBJECT-GROUP + OBJECTS { hwWlanCurJointApNum, hwWlanCurAssocStaNum, hwWlanCurAuthSuccessStaNum, hwWlanReassocSuccessTimes, hwWlanCurAssoc2gStaNum, + hwWlanCurAssoc5gStaNum, hwWlanDualBandStaNum, hwWlanGlobalUpSpeed, hwWlanGlobalDownSpeed } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 2 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.3 + hwWlanGlobalStaStatisticsGroup OBJECT-GROUP + OBJECTS { hwWlanStaRateComplianceRate, hwWlanStaSnrComplianceRate, hwWlanStaResendRateComplianceRate, hwWlanStaDropRateComplianceRate, hwWlanStaComplianceRate, + hwStaSnrNoncompliance2gCnt, hwStaRateNoncompliance2gCnt, hwStaResendRateNoncompliance2gCnt, hwStaDropRateNoncompliance2gCnt, hwStaThruputNoncompliance2gCnt, + hwStaSnrNoncompliance5gCnt, hwStaRateNoncompliance5gCnt, hwStaResendRateNoncompliance5gCnt, hwStaDropRateNoncompliance5gCnt, hwStaThruputNoncompliance5gCnt } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 3 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.4 + hwWlanGlobalRfStatisticsGroup OBJECT-GROUP + OBJECTS { hwWlanRfChannelUtilRateComplianceRate, hwWlanRfNoiseComplianceRate, hwWlanRfChannelJamRateComplianceRate, hwWlanRfResendRateComplianceRate, hwWlanRfDropRateComplianceRate, + hwWlanRfComplianceRate, hwWlanRfNoiseNoncompliance2gCnt, hwWlanRfChannelUtilRateNoncompliance2gCnt, hwWlanRfLoadNoncompliance2gCnt, hwWlanRfChannelJamRateNoncompliance2gCnt, + hwWlanRfNoiseNoncompliance5gCnt, hwWlanRfChannelUtilRateNoncompliance5gCnt, hwWlanRfLoadNoncompliance5gCnt, hwWlanRfChannelJamRateNoncompliance5gCnt } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 4 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.5 + hwWlanGlobalApStatisticsGroup OBJECT-GROUP + OBJECTS { hwWlanApNormalRatio, hwWlanApStaOnlineFailRateComplianceRate, hwWlanApStaOfflineRateComplianceRate, hwWlanApStaOnlineCntComplianceRate, hwWlanApComplianceRate, + hwWlanServiceNormalAPCount, hwWlanApCount } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 5 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.6 + hwWlanOnlineStaCntHistoryGroup OBJECT-GROUP + OBJECTS { hwWlanOnlineStaCnt, hwWlan2gOnlineStaCnt, hwWlan5gOnlineStaCnt } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 6 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.7 + hwWlanSpeedHistoryGroup OBJECT-GROUP + OBJECTS { hwWlanUpSpeedHistory, hwWlanDownSpeedHistory } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 7 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.8 + hwWlanBackupLicenseGroup OBJECT-GROUP + OBJECTS { hwWlanMainAcMac, hwWlanBackupLicense, hwWlanLicenseOrigin, hwWlanLicenseBackupTime } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 8 } + + + -- 1.3.6.1.4.1.2011.6.139.12.2.2.9 + hwWlanApGroupStatisticsGroup OBJECT-GROUP + OBJECTS { hwWlanApGpStatCurAssoc2gStaNum, hwWlanApGpStatCurAssoc5gStaNum } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanGlobalManagementObjectGroups 9 } + + + + END +-- +-- HUAWEI-WLAN-GLOBAL-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-MIB b/mibs/huawei/HUAWEI-WLAN-MIB new file mode 100644 index 0000000000..0b9803d6a5 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-MIB @@ -0,0 +1,42 @@ +-- ============================================================================ +-- Copyright (C) 2010 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The wlan root mib file. +-- Reference: +-- Version: V1.00 +-- +-- ============================================================================ + + HUAWEI-WLAN-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TimeTicks, IpAddress, Integer32, OBJECT-TYPE, MODULE-IDENTITY, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, DateAndTime, RowStatus + FROM SNMPv2-TC + huaweiUtility + FROM HUAWEI-MIB; + + hwWlan MODULE-IDENTITY + LAST-UPDATED "201006080000Z" + ORGANIZATION "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "This mib defines the root node of the wlan mib" + + REVISION "201006080000Z" + DESCRIPTION + " + V1.00, Inital version. + " + + ::= { huaweiUtility 139 } + + END diff --git a/mibs/huawei/HUAWEI-WLAN-NPE-MIB b/mibs/huawei/HUAWEI-WLAN-NPE-MIB new file mode 100644 index 0000000000..cacb466f5f --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-NPE-MIB @@ -0,0 +1,1219 @@ +-- +-- HUAWEI-WLAN-NPE-MIB.mib +-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 341 +-- Thursday, March 05, 2015 at 17:40:04 +-- + +-- ============================================================================ +-- Copyright (C) 2015 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: This mib file is used for management of huawei Class Based +-- NPE information. +-- Reference: +-- Version: V1.00 +-- History: +-- v1.00 yuxingbiao suxunjin + +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-NPE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE + FROM SNMPv2-CONF + Integer32, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + + +-- 1.3.6.1.4.1.2011.6.139.21 + -- 1.3.6.1.4.1.2011.6.139.21 + hwWlanNpe MODULE-IDENTITY + LAST-UPDATED "201506191725Z" + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com Email: support@huawei.com + " + DESCRIPTION + "Description." + + REVISION "201506191725Z" + DESCRIPTION + "V1.00, Inital version. " + + ::= { hwWlan 21 } + + +-- Node definitions +-- +-- 1.3.6.1.4.1.2011.6.139.21.1 + -- 1.3.6.1.4.1.2011.6.139.21.1 + hwWlanNpeObjects OBJECT IDENTIFIER ::= { hwWlanNpe 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.1 + hwWlanConnectProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1 + hwWlanConnectProfileEntry OBJECT-TYPE + SYNTAX HwWlanConnectProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectProfileName } + ::= { hwWlanConnectProfileTable 1 } + + + HwWlanConnectProfileEntry ::= + SEQUENCE { + hwWlanConnectProfileName + OCTET STRING, + hwWlanConnectSsid + OCTET STRING, + hwWlanConnectPeerMac + MacAddress, + hwWlanConnectPSKPassPhase + OCTET STRING, + hwWlanConnectProfileActived + Integer32, + hwWlanConnectProfileRowStatus + RowStatus + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1.1 + hwWlanConnectProfileName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectProfileEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1.2 + hwWlanConnectSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectProfileEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1.3 + hwWlanConnectPeerMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectProfileEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1.4 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1.4 + hwWlanConnectPSKPassPhase OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectProfileEntry 4 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1.5 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1.5 + hwWlanConnectProfileActived OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectProfileEntry 5 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.1.1.6 + -- 1.3.6.1.4.1.2011.6.139.21.1.1.1.6 + hwWlanConnectProfileRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectProfileEntry 6 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.2 + hwWlanRadioBasicSettingTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRadioBasicSettingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.2.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.2.1 + hwWlanRadioBasicSettingEntry OBJECT-TYPE + SYNTAX HwWlanRadioBasicSettingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanNpeRadioID } + ::= { hwWlanRadioBasicSettingTable 1 } + + + HwWlanRadioBasicSettingEntry ::= + SEQUENCE { + hwWlanNpeRadioID + Integer32, + hwWlanNpeRadioTxPower + Integer32, + hwWlanNpeRadioRtsThreshold + Integer32 + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.2.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.2.1.1 + hwWlanNpeRadioID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioBasicSettingEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.2.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.2.1.2 + hwWlanNpeRadioTxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioBasicSettingEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.2.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.2.1.3 + hwWlanNpeRadioRtsThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRadioBasicSettingEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.3 + hwWlanConnectStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1 + hwWlanConnectStatusEntry OBJECT-TYPE + SYNTAX HwWlanConnectStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectStatusPeerMac } + ::= { hwWlanConnectStatusTable 1 } + + + HwWlanConnectStatusEntry ::= + SEQUENCE { + hwWlanConnectStatusPeerMac + MacAddress, + hwWlanConnectStatusSsid + OCTET STRING, + hwWlanConnectStatus + INTEGER, + hwWlanConnectStatusSNR + Integer32, + hwWlanConnectStatusNoiseFloor + Integer32, + hwWlanConnectStatusChannel + Integer32, + hwWlanConnectStatusActualTxPower + Integer32, + hwWlanConnectStatusBeaconInterval + Integer32, + hwWlanConnectStatusCurrentRate + Integer32, + hwWlanConnectStatusTxBeamforming + Integer32, + hwWlanConnectStatusActualCountryCode + Integer32, + hwWlanConnectStatusDistance + Integer32, + hwWlanConnectStatusCurrentRateKbps + Integer32, + hwWlanConnectStatusHtMode + INTEGER, + hwWlanConnectStatusGIMode + INTEGER + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.1 + hwWlanConnectStatusPeerMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.2 + hwWlanConnectStatusSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.3 + hwWlanConnectStatus OBJECT-TYPE + SYNTAX INTEGER + { + disconnect(1), + connect(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.4 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.4 + hwWlanConnectStatusSNR OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 4 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.5 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.5 + hwWlanConnectStatusNoiseFloor OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 5 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.6 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.6 + hwWlanConnectStatusChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 6 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.7 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.7 + hwWlanConnectStatusActualTxPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 7 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.8 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.8 + hwWlanConnectStatusBeaconInterval OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 8 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.9 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.9 + hwWlanConnectStatusCurrentRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 9 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.10 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.10 + hwWlanConnectStatusTxBeamforming OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 10 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.11 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.11 + hwWlanConnectStatusActualCountryCode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 11 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.12 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.12 + hwWlanConnectStatusDistance OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatusEntry 12 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.13 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.13 + hwWlanConnectStatusCurrentRateKbps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An object is used to display the rate of current link, the unit is Kbps." + ::= { hwWlanConnectStatusEntry 13 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.14 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.14 + hwWlanConnectStatusHtMode OBJECT-TYPE + SYNTAX INTEGER + { + ht20(1), + ht40(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An object is used to display the HT mode of current link." + ::= { hwWlanConnectStatusEntry 14 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.3.1.15 + -- 1.3.6.1.4.1.2011.6.139.21.1.3.1.15 + hwWlanConnectStatusGIMode OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + short(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An object is used to display the GI mode of current link." + ::= { hwWlanConnectStatusEntry 15 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4 + -- 1.3.6.1.4.1.2011.6.139.21.1.4 + hwWlanConnectStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 4 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1 + hwWlanConnectStatisticsEntry OBJECT-TYPE + SYNTAX HwWlanConnectStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectStatisticsPeerMac } + ::= { hwWlanConnectStatisticsTable 1 } + + + HwWlanConnectStatisticsEntry ::= + SEQUENCE { + hwWlanConnectStatisticsPeerMac + MacAddress, + hwWlanConnectRxOkUcastDataFrames + Counter64, + hwWlanConnectRxOkUcastDataBytes + Counter64, + hwWlanConnectTxOkUcastDataFrames + Counter64, + hwWlanConnectTxOkUcastDataBytes + Counter64, + hwWlanConnectRxThroughput + Unsigned32, + hwWlanConnectTxThroughput + Unsigned32, + hwWlanConnectRxErrFrames + Counter64, + hwWlanConnectTxErrUcastDataFrames + Counter64, + hwWlanConnectUcastDataFrameTxRetryRatio + Unsigned32, + hwWlanConnectOnlineTime + Unsigned32, + hwWlanConnectStatisticsReset + INTEGER + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.1 + hwWlanConnectStatisticsPeerMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.2 + hwWlanConnectRxOkUcastDataFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.3 + hwWlanConnectRxOkUcastDataBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.4 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.4 + hwWlanConnectTxOkUcastDataFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 4 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.5 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.5 + hwWlanConnectTxOkUcastDataBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 5 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.6 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.6 + hwWlanConnectRxThroughput OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 6 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.7 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.7 + hwWlanConnectTxThroughput OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 7 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.8 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.8 + hwWlanConnectRxErrFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 8 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.9 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.9 + hwWlanConnectTxErrUcastDataFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 9 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.10 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.10 + hwWlanConnectUcastDataFrameTxRetryRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 10 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.11 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.11 + hwWlanConnectOnlineTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 11 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.4.1.12 + -- 1.3.6.1.4.1.2011.6.139.21.1.4.1.12 + hwWlanConnectStatisticsReset OBJECT-TYPE + SYNTAX INTEGER { reset(1) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectStatisticsEntry 12 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.5 + -- 1.3.6.1.4.1.2011.6.139.21.1.5 + hwWlanConnectRateHistogramTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectRateHistogramEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 5 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.5.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.5.1 + hwWlanConnectRateHistogramEntry OBJECT-TYPE + SYNTAX HwWlanConnectRateHistogramEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectRateStatDirection, hwWlanConnectRateStatRange } + ::= { hwWlanConnectRateHistogramTable 1 } + + + HwWlanConnectRateHistogramEntry ::= + SEQUENCE { + hwWlanConnectRateStatDirection + INTEGER, + hwWlanConnectRateStatRange + Integer32, + hwWlanConnectRateStatUcastDataFrames + Counter64 + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.5.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.5.1.1 + hwWlanConnectRateStatDirection OBJECT-TYPE + SYNTAX INTEGER + { + tx(1), + rx(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectRateHistogramEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.5.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.5.1.2 + hwWlanConnectRateStatRange OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectRateHistogramEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.5.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.5.1.3 + hwWlanConnectRateStatUcastDataFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectRateHistogramEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.6 + -- 1.3.6.1.4.1.2011.6.139.21.1.6 + hwWlanConnectAMPDUHistogramTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectAMPDUHistogramEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 6 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.6.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.6.1 + hwWlanConnectAMPDUHistogramEntry OBJECT-TYPE + SYNTAX HwWlanConnectAMPDUHistogramEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectAMPDUStatDirection, hwWlanConnectAMPDUStatRange } + ::= { hwWlanConnectAMPDUHistogramTable 1 } + + + HwWlanConnectAMPDUHistogramEntry ::= + SEQUENCE { + hwWlanConnectAMPDUStatDirection + INTEGER, + hwWlanConnectAMPDUStatRange + Integer32, + hwWlanConnectAMPDUStatUcastDataFrames + Counter64 + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.6.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.6.1.1 + hwWlanConnectAMPDUStatDirection OBJECT-TYPE + SYNTAX INTEGER + { + tx(1), + rx(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectAMPDUHistogramEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.6.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.6.1.2 + hwWlanConnectAMPDUStatRange OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectAMPDUHistogramEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.6.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.6.1.3 + hwWlanConnectAMPDUStatUcastDataFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectAMPDUHistogramEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.7 + -- 1.3.6.1.4.1.2011.6.139.21.1.7 + hwWlanConnectLenHistogramTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectLenHistogramEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 7 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.7.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.7.1 + hwWlanConnectLenHistogramEntry OBJECT-TYPE + SYNTAX HwWlanConnectLenHistogramEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectDataLenStatDirection, hwWlanConnectDataLenStatLength } + ::= { hwWlanConnectLenHistogramTable 1 } + + + HwWlanConnectLenHistogramEntry ::= + SEQUENCE { + hwWlanConnectDataLenStatDirection + INTEGER, + hwWlanConnectDataLenStatLength + Integer32, + hwWlanConnectDataLenStatFrameCounts + Counter64 + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.7.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.7.1.1 + hwWlanConnectDataLenStatDirection OBJECT-TYPE + SYNTAX INTEGER + { + tx(1), + rx(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectLenHistogramEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.7.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.7.1.2 + hwWlanConnectDataLenStatLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectLenHistogramEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.7.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.7.1.3 + hwWlanConnectDataLenStatFrameCounts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectLenHistogramEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.8 + -- 1.3.6.1.4.1.2011.6.139.21.1.8 + hwWlanConnectMaxSnrTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanConnectMaxSnrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjects 8 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.8.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.8.1 + hwWlanConnectMaxSnrEntry OBJECT-TYPE + SYNTAX HwWlanConnectMaxSnrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanConnectMaxSnrPeerMAC } + ::= { hwWlanConnectMaxSnrTable 1 } + + + HwWlanConnectMaxSnrEntry ::= + SEQUENCE { + hwWlanConnectMaxSnrPeerMAC + MacAddress, + hwWlanConnectMaxSnrValue + Integer32, + hwWlanConnectMaxSnrNoiseFloor + Integer32, + hwWlanConnectMaxSnrSSID + OCTET STRING, + hwWlanConnectMaxSnrTime + DateAndTime + } + +-- 1.3.6.1.4.1.2011.6.139.21.1.8.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.8.1.1 + hwWlanConnectMaxSnrPeerMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectMaxSnrEntry 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.8.1.2 + -- 1.3.6.1.4.1.2011.6.139.21.1.8.1.2 + hwWlanConnectMaxSnrValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectMaxSnrEntry 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.8.1.3 + -- 1.3.6.1.4.1.2011.6.139.21.1.8.1.3 + hwWlanConnectMaxSnrNoiseFloor OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectMaxSnrEntry 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.8.1.4 + -- 1.3.6.1.4.1.2011.6.139.21.1.8.1.4 + hwWlanConnectMaxSnrSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectMaxSnrEntry 4 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.8.1.5 + -- 1.3.6.1.4.1.2011.6.139.21.1.8.1.5 + hwWlanConnectMaxSnrTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanConnectMaxSnrEntry 5 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.9 + -- 1.3.6.1.4.1.2011.6.139.21.1.9 + hwWlanNpeSysPara OBJECT IDENTIFIER ::= { hwWlanNpeObjects 9 } + + +-- 1.3.6.1.4.1.2011.6.139.21.1.9.1 + -- 1.3.6.1.4.1.2011.6.139.21.1.9.1 + hwWlanNpeCountryCode OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeSysPara 1 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10 + hwWlanDot11eCarCfgInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanDot11eCarCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of 80211E CAR feature configuration information." + ::= { hwWlanNpeObjects 10 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1 + hwWlanDot11eCarCfgInfoEntry OBJECT-TYPE + SYNTAX HwWlanDot11eCarCfgInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "8021E CAR Configuration Information Entry." + INDEX { hwWlanDot11eCarIndex } + ::= { hwWlanDot11eCarCfgInfoTable 1 } + + + HwWlanDot11eCarCfgInfoEntry ::= + SEQUENCE { + hwWlanDot11eCarIndex + Integer32, + hwWlanDot11eCarCir + Unsigned32, + hwWlanDot11eCarCbs + Unsigned32, + hwWlanDot11eCarPir + Unsigned32, + hwWlanDot11eCarPbs + Unsigned32, + hwWlanDot11eCarDot11eValue + OCTET STRING, + hwWlanDot11eCarRowStatus + RowStatus + } + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.1 + hwWlanDot11eCarIndex OBJECT-TYPE + SYNTAX Integer32 (1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Every Command Index ID." + ::= { hwWlanDot11eCarCfgInfoEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.2 + hwWlanDot11eCarCir OBJECT-TYPE + SYNTAX Unsigned32 (64..4294967295) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Committed Information Rate. Unit: kbps. + Unsigned32<64-4294967295>." + ::= { hwWlanDot11eCarCfgInfoEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.3 + hwWlanDot11eCarCbs OBJECT-TYPE + SYNTAX Unsigned32 (1500..4294967295) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Committed Burst Size. Unit: byte. + Unsigned32<1500-4294967295>." + ::= { hwWlanDot11eCarCfgInfoEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.4 + hwWlanDot11eCarPir OBJECT-TYPE + SYNTAX Unsigned32 (64..4294967295) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak Information Rate. Unit: kbps. + Unsigned32<64-4294967295>." + ::= { hwWlanDot11eCarCfgInfoEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.5 + hwWlanDot11eCarPbs OBJECT-TYPE + SYNTAX Unsigned32 (1500..4294967295) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Peak Burst Size. Unit: byte. + Unsigned32<1500-4294967295>." + ::= { hwWlanDot11eCarCfgInfoEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.6 + hwWlanDot11eCarDot11eValue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "802.11e value. + STRING<0-7>." + ::= { hwWlanDot11eCarCfgInfoEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.21.1.10.1.7 + hwWlanDot11eCarRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "RowStatus. Three actions are used: active(1), + createAndGo(4), destroy(6)." + ::= { hwWlanDot11eCarCfgInfoEntry 7 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2 + -- 1.3.6.1.4.1.2011.6.139.21.2 + hwWlanNpeConformance OBJECT IDENTIFIER ::= { hwWlanNpe 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.1 + -- 1.3.6.1.4.1.2011.6.139.21.2.1 + hwWlanNpeCompliances OBJECT IDENTIFIER ::= { hwWlanNpeConformance 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.1.1 + -- 1.3.6.1.4.1.2011.6.139.21.2.1.1 + hwWlanNpeCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE -- this module + ::= { hwWlanNpeCompliances 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2 + -- 1.3.6.1.4.1.2011.6.139.21.2.2 + hwWlanNpeObjectGroups OBJECT IDENTIFIER ::= { hwWlanNpeConformance 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.1 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.1 + hwWlanNpeConnectProfileGroup OBJECT-GROUP + OBJECTS { hwWlanConnectSsid, hwWlanConnectPeerMac, hwWlanConnectPSKPassPhase, hwWlanConnectProfileActived, + hwWlanConnectProfileRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 1 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.2 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.2 + hwWlanRadioBasicSettingGroup OBJECT-GROUP + OBJECTS { hwWlanNpeRadioTxPower, hwWlanNpeRadioRtsThreshold } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 2 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.3 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.3 + hwWlanConnectStatusGroup OBJECT-GROUP + OBJECTS { hwWlanConnectStatusBeaconInterval, hwWlanConnectStatusCurrentRate, hwWlanConnectStatusTxBeamforming, hwWlanConnectStatusActualCountryCode, hwWlanConnectStatusDistance, + hwWlanConnectStatus, hwWlanConnectStatusSNR, hwWlanConnectStatusNoiseFloor, hwWlanConnectStatusChannel, hwWlanConnectStatusActualTxPower, + hwWlanConnectStatusSsid, hwWlanConnectStatusCurrentRateKbps, hwWlanConnectStatusHtMode, hwWlanConnectStatusGIMode } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 3 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.4 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.4 + hwWlanConnectStatisticsGroup OBJECT-GROUP + OBJECTS { hwWlanConnectRxOkUcastDataFrames, hwWlanConnectRxOkUcastDataBytes, hwWlanConnectTxOkUcastDataFrames, hwWlanConnectTxOkUcastDataBytes, + hwWlanConnectRxThroughput, hwWlanConnectTxThroughput, hwWlanConnectRxErrFrames, hwWlanConnectTxErrUcastDataFrames, hwWlanConnectUcastDataFrameTxRetryRatio, + hwWlanConnectOnlineTime, hwWlanConnectStatisticsReset } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 4 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.5 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.5 + hwWlanConnectRateHistogramGroup OBJECT-GROUP + OBJECTS { hwWlanConnectRateStatUcastDataFrames } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 5 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.6 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.6 + hwWlanConnectAMPDUHistogramGroup OBJECT-GROUP + OBJECTS { hwWlanConnectAMPDUStatUcastDataFrames } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 6 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.7 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.7 + hwWlanConnectLenHistogramGroup OBJECT-GROUP + OBJECTS { hwWlanConnectDataLenStatFrameCounts } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 7 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.8 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.8 + hwWlanConnectMaxSnrGroup OBJECT-GROUP + OBJECTS { hwWlanConnectMaxSnrValue, hwWlanConnectMaxSnrNoiseFloor, hwWlanConnectMaxSnrSSID, hwWlanConnectMaxSnrTime + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 8 } + + +-- 1.3.6.1.4.1.2011.6.139.21.2.2.9 + -- 1.3.6.1.4.1.2011.6.139.21.2.2.9 + hwWnpeSysParaGroup OBJECT-GROUP + OBJECTS { hwWlanNpeCountryCode } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 9 } + + + -- 1.3.6.1.4.1.2011.6.139.21.2.2.10 + hwWlanDot11eCarGroup OBJECT-GROUP + OBJECTS { hwWlanDot11eCarIndex, hwWlanDot11eCarCir, hwWlanDot11eCarCbs, hwWlanDot11eCarPir, hwWlanDot11eCarPbs, + hwWlanDot11eCarDot11eValue, hwWlanDot11eCarRowStatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanNpeObjectGroups 10 } + + + + END + +-- +-- HUAWEI-WLAN-NPE-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-SAC-MIB b/mibs/huawei/HUAWEI-WLAN-SAC-MIB new file mode 100644 index 0000000000..514842040b --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-SAC-MIB @@ -0,0 +1,2514 @@ +-- ============================================================================ +-- Copyright (C) 2015 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for configuring the information of the SAC. +-- Reference: +-- Version: V1.01 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-SAC-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.20 + hwWlanSac MODULE-IDENTITY + LAST-UPDATED "201506190900Z" -- June 19, 2015 at 09:00 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "The MIB module defines the information of the SAC." + REVISION "201506190900Z" -- June 19, 2015 at 09:00 GMT + DESCRIPTION + "V1.01, Inital version." + REVISION "201502120900Z" -- February 12, 2015 at 09:00 GMT + DESCRIPTION + "V1.00, Inital version." + ::= { hwWlan 20 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.20.1 + hwSacObjects OBJECT IDENTIFIER ::= { hwWlanSac 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.1 + hwSACEnableConfig OBJECT IDENTIFIER ::= { hwSacObjects 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.1.1 + hwSACEnableOper OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACEnableConfig 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.1.2 + hwSACEnableRuleLibName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACEnableConfig 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.2 + hwSACProtocolGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACProtocolGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.2.1 + hwSACProtocolGroupEntry OBJECT-TYPE + SYNTAX HwSACProtocolGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACProtocolGroupName } + ::= { hwSACProtocolGroupTable 1 } + + + HwSACProtocolGroupEntry ::= + SEQUENCE { + hwSACProtocolGroupName + OCTET STRING, + hwSACProtocolGroupRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.2.1.1 + hwSACProtocolGroupName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..35)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACProtocolGroupEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.2.1.2 + hwSACProtocolGroupRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACProtocolGroupEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.3 + hwSACProGroupProTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACProGroupProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.3.1 + hwSACProGroupProEntry OBJECT-TYPE + SYNTAX HwSACProGroupProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACProtocolGroupName, hwSACProtocolName } + ::= { hwSACProGroupProTable 1 } + + + HwSACProGroupProEntry ::= + SEQUENCE { + hwSACProtocolName + OCTET STRING, + hwSACProGroupProRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.3.1.1 + hwSACProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACProGroupProEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.3.1.2 + hwSACProGroupProRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACProGroupProEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.4 + hwSACVapStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACVapStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1 + hwSACVapStatEntry OBJECT-TYPE + SYNTAX HwSACVapStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACVapStatApName, hwSACVapStatRadioId, hwSACVapStatSsid, hwSACVapStatProtocolIndex, hwSACVapStatType } + ::= { hwSACVapStatTable 1 } + + + HwSACVapStatEntry ::= + SEQUENCE { + hwSACVapStatApName + OCTET STRING, + hwSACVapStatRadioId + Integer32, + hwSACVapStatSsid + OCTET STRING, + hwSACVapStatProtocolIndex + Integer32, + hwSACVapStatType + INTEGER, + hwSACVapStatProtocolName + OCTET STRING, + hwSACVapStatProtocolPktUpNum + Counter64, + hwSACVapStatProtocolByteUpNum + Counter64, + hwSACVapStatProtocolPktDnNum + Counter64, + hwSACVapStatProtocolByteDnNum + Counter64, + hwSACVapStatClear + Integer32, + hwSACVapStatRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.1 + hwSACVapStatApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.2 + hwSACVapStatRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.3 + hwSACVapStatSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.4 + hwSACVapStatProtocolIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.5 + hwSACVapStatType OBJECT-TYPE + SYNTAX INTEGER + { + total(1), + period(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.6 + hwSACVapStatProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.7 + hwSACVapStatProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 7 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.8 + hwSACVapStatProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 8 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.9 + hwSACVapStatProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 9 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.10 + hwSACVapStatProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 10 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.11 + hwSACVapStatClear OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 11 } + + --1.3.6.1.4.1.2011.6.139.20.1.4.1.12 + hwSACVapStatRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapStatEntry 12 } + + --1.3.6.1.4.1.2011.6.139.20.1.5 + hwSACUserStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACUserStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1 + hwSACUserStatEntry OBJECT-TYPE + SYNTAX HwSACUserStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACUserStatUserMac, hwSACUserStatProtocolIndex, hwSACUserStatType } + ::= { hwSACUserStatTable 1 } + + + HwSACUserStatEntry ::= + SEQUENCE { + hwSACUserStatUserMac + MacAddress, + hwSACUserStatProtocolIndex + Integer32, + hwSACUserStatType + INTEGER, + hwSACUserStatProtocolName + OCTET STRING, + hwSACUserStatProtocolPktUpNum + Counter64, + hwSACUserStatProtocolByteUpNum + Counter64, + hwSACUserStatProtocolPktDnNum + Counter64, + hwSACUserStatProtocolByteDnNum + Counter64, + hwSACUserStatClear + Integer32, + hwSACUserStatRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.1 + hwSACUserStatUserMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.2 + hwSACUserStatProtocolIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.3 + hwSACUserStatType OBJECT-TYPE + SYNTAX INTEGER + { + total(1), + period(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.4 + hwSACUserStatProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.5 + hwSACUserStatProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.6 + hwSACUserStatProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.7 + hwSACUserStatProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 7 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.8 + hwSACUserStatProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 8 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.9 + hwSACUserStatClear OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 9 } + + --1.3.6.1.4.1.2011.6.139.20.1.5.1.10 + hwSACUserStatRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserStatEntry 10 } + + --1.3.6.1.4.1.2011.6.139.20.1.6 + hwSACAppListTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACAppListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.6.1 + hwSACAppListEntry OBJECT-TYPE + SYNTAX HwSACAppListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACAppListAppIndex } + ::= { hwSACAppListTable 1 } + + + HwSACAppListEntry ::= + SEQUENCE { + hwSACAppListAppIndex + Integer32, + hwSACAppListAppID + Integer32, + hwSACAppListAppName + OCTET STRING, + hwSACAppListRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.6.1.1 + hwSACAppListAppIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACAppListEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.6.1.2 + hwSACAppListAppID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACAppListEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.6.1.3 + hwSACAppListAppName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACAppListEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.6.1.4 + hwSACAppListRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACAppListEntry 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.7 + hwSACInfo OBJECT IDENTIFIER ::= { hwSacObjects 7 } + + --1.3.6.1.4.1.2011.6.139.20.1.7.1 + hwSACInfoSACEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACInfo 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.7.2 + hwSACInfoSignatureState OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACInfo 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.7.3 + hwSACInfoSignatureName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACInfo 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.7.4 + hwSACInfoSignatureVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACInfo 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.7.5 + hwSACInfoSignatureDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACInfo 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.7.6 + hwSACInfoAppNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACInfo 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.8 + hwSACVapTop10StatTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACVapTop10StatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 8 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1 + hwSACVapTop10StatEntry OBJECT-TYPE + SYNTAX HwSACVapTop10StatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACVapTop10StatApName, hwSACVapTop10StatRadioId, hwSACVapTop10StatSsid, hwSACVapTop10StatType } + ::= { hwSACVapTop10StatTable 1 } + + + HwSACVapTop10StatEntry ::= + SEQUENCE { + hwSACVapTop10StatApName + OCTET STRING, + hwSACVapTop10StatRadioId + Integer32, + hwSACVapTop10StatSsid + OCTET STRING, + hwSACVapTop10StatType + INTEGER, + hwSACVapStatTotalPktUpNum + Counter64, + hwSACVapStatTotalByteUpNum + Counter64, + hwSACVapStatTotalPktDnNum + Counter64, + hwSACVapStatTotalByteDnNum + Counter64, + hwSACVapStat1stProtocolName + OCTET STRING, + hwSACVapStat1stProtocolPktUpNum + Counter64, + hwSACVapStat1stProtocolByteUpNum + Counter64, + hwSACVapStat1stProtocolPktDnNum + Counter64, + hwSACVapStat1stProtocolByteDnNum + Counter64, + hwSACVapStat2ndProtocolName + OCTET STRING, + hwSACVapStat2ndProtocolPktUpNum + Counter64, + hwSACVapStat2ndProtocolByteUpNum + Counter64, + hwSACVapStat2ndProtocolPktDnNum + Counter64, + hwSACVapStat2ndProtocolByteDnNum + Counter64, + hwSACVapStat3rdProtocolName + OCTET STRING, + hwSACVapStat3rdProtocolPktUpNum + Counter64, + hwSACVapStat3rdProtocolByteUpNum + Counter64, + hwSACVapStat3rdProtocolPktDnNum + Counter64, + hwSACVapStat3rdProtocolByteDnNum + Counter64, + hwSACVapStat4thProtocolName + OCTET STRING, + hwSACVapStat4thProtocolPktUpNum + Counter64, + hwSACVapStat4thProtocolByteUpNum + Counter64, + hwSACVapStat4thProtocolPktDnNum + Counter64, + hwSACVapStat4thProtocolByteDnNum + Counter64, + hwSACVapStat5thProtocolName + OCTET STRING, + hwSACVapStat5thProtocolPktUpNum + Counter64, + hwSACVapStat5thProtocolByteUpNum + Counter64, + hwSACVapStat5thProtocolPktDnNum + Counter64, + hwSACVapStat5thProtocolByteDnNum + Counter64, + hwSACVapStat6thProtocolName + OCTET STRING, + hwSACVapStat6thProtocolPktUpNum + Counter64, + hwSACVapStat6thProtocolByteUpNum + Counter64, + hwSACVapStat6thProtocolPktDnNum + Counter64, + hwSACVapStat6thProtocolByteDnNum + Counter64, + hwSACVapStat7thProtocolName + OCTET STRING, + hwSACVapStat7thProtocolPktUpNum + Counter64, + hwSACVapStat7thProtocolByteUpNum + Counter64, + hwSACVapStat7thProtocolPktDnNum + Counter64, + hwSACVapStat7thProtocolByteDnNum + Counter64, + hwSACVapStat8thProtocolName + OCTET STRING, + hwSACVapStat8thProtocolPktUpNum + Counter64, + hwSACVapStat8thProtocolByteUpNum + Counter64, + hwSACVapStat8thProtocolPktDnNum + Counter64, + hwSACVapStat8thProtocolByteDnNum + Counter64, + hwSACVapStat9thProtocolName + OCTET STRING, + hwSACVapStat9thProtocolPktUpNum + Counter64, + hwSACVapStat9thProtocolByteUpNum + Counter64, + hwSACVapStat9thProtocolPktDnNum + Counter64, + hwSACVapStat9thProtocolByteDnNum + Counter64, + hwSACVapStat10thProtocolName + OCTET STRING, + hwSACVapStat10thProtocolPktUpNum + Counter64, + hwSACVapStat10thProtocolByteUpNum + Counter64, + hwSACVapStat10thProtocolPktDnNum + Counter64, + hwSACVapStat10thProtocolByteDnNum + Counter64, + hwSACVapTop10StatClear + Integer32, + hwSACVapTop10StatRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.1 + hwSACVapTop10StatApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.2 + hwSACVapTop10StatRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.3 + hwSACVapTop10StatSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.4 + hwSACVapTop10StatType OBJECT-TYPE + SYNTAX INTEGER + { + total(1), + period(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.5 + hwSACVapStatTotalPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.6 + hwSACVapStatTotalByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.7 + hwSACVapStatTotalPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 7 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.8 + hwSACVapStatTotalByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 8 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.9 + hwSACVapStat1stProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 9 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.10 + hwSACVapStat1stProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 10 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.11 + hwSACVapStat1stProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 11 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.12 + hwSACVapStat1stProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 12 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.13 + hwSACVapStat1stProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 13 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.14 + hwSACVapStat2ndProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 14 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.15 + hwSACVapStat2ndProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 15 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.16 + hwSACVapStat2ndProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 16 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.17 + hwSACVapStat2ndProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 17 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.18 + hwSACVapStat2ndProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 18 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.19 + hwSACVapStat3rdProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 19 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.20 + hwSACVapStat3rdProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 20 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.21 + hwSACVapStat3rdProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 21 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.22 + hwSACVapStat3rdProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 22 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.23 + hwSACVapStat3rdProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 23 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.24 + hwSACVapStat4thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 24 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.25 + hwSACVapStat4thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 25 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.26 + hwSACVapStat4thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 26 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.27 + hwSACVapStat4thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 27 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.28 + hwSACVapStat4thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 28 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.29 + hwSACVapStat5thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 29 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.30 + hwSACVapStat5thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 30 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.31 + hwSACVapStat5thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 31 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.32 + hwSACVapStat5thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 32 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.33 + hwSACVapStat5thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 33 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.34 + hwSACVapStat6thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 34 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.35 + hwSACVapStat6thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 35 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.36 + hwSACVapStat6thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 36 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.37 + hwSACVapStat6thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 37 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.38 + hwSACVapStat6thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 38 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.39 + hwSACVapStat7thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 39 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.40 + hwSACVapStat7thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 40 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.41 + hwSACVapStat7thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 41 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.42 + hwSACVapStat7thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 42 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.43 + hwSACVapStat7thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 43 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.44 + hwSACVapStat8thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 44 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.45 + hwSACVapStat8thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 45 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.46 + hwSACVapStat8thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 46 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.47 + hwSACVapStat8thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 47 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.48 + hwSACVapStat8thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 48 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.49 + hwSACVapStat9thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 49 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.50 + hwSACVapStat9thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 50 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.51 + hwSACVapStat9thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 51 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.52 + hwSACVapStat9thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 52 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.53 + hwSACVapStat9thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 53 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.54 + hwSACVapStat10thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 54 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.55 + hwSACVapStat10thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 55 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.56 + hwSACVapStat10thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 56 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.57 + hwSACVapStat10thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 57 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.58 + hwSACVapStat10thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 58 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.59 + hwSACVapTop10StatClear OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 59 } + + --1.3.6.1.4.1.2011.6.139.20.1.8.1.60 + hwSACVapTop10StatRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACVapTop10StatEntry 60 } + + --1.3.6.1.4.1.2011.6.139.20.1.9 + hwSACUserTop10StatTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwSACUserTop10StatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 9 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1 + hwSACUserTop10StatEntry OBJECT-TYPE + SYNTAX HwSACUserTop10StatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwSACUserTop10StatUserMac, hwSACUserTop10StatType } + ::= { hwSACUserTop10StatTable 1 } + + + HwSACUserTop10StatEntry ::= + SEQUENCE { + hwSACUserTop10StatUserMac + MacAddress, + hwSACUserTop10StatType + INTEGER, + hwSACUserStatTotalPktUpNum + Counter64, + hwSACUserStatTotalByteUpNum + Counter64, + hwSACUserStatTotalPktDnNum + Counter64, + hwSACUserStatTotalByteDnNum + Counter64, + hwSACUserStat1stProtocolName + OCTET STRING, + hwSACUserStat1stProtocolPktUpNum + Counter64, + hwSACUserStat1stProtocolByteUpNum + Counter64, + hwSACUserStat1stProtocolPktDnNum + Counter64, + hwSACUserStat1stProtocolByteDnNum + Counter64, + hwSACUserStat2ndProtocolName + OCTET STRING, + hwSACUserStat2ndProtocolPktUpNum + Counter64, + hwSACUserStat2ndProtocolByteUpNum + Counter64, + hwSACUserStat2ndProtocolPktDnNum + Counter64, + hwSACUserStat2ndProtocolByteDnNum + Counter64, + hwSACUserStat3rdProtocolName + OCTET STRING, + hwSACUserStat3rdProtocolPktUpNum + Counter64, + hwSACUserStat3rdProtocolByteUpNum + Counter64, + hwSACUserStat3rdProtocolPktDnNum + Counter64, + hwSACUserStat3rdProtocolByteDnNum + Counter64, + hwSACUserStat4thProtocolName + OCTET STRING, + hwSACUserStat4thProtocolPktUpNum + Counter64, + hwSACUserStat4thProtocolByteUpNum + Counter64, + hwSACUserStat4thProtocolPktDnNum + Counter64, + hwSACUserStat4thProtocolByteDnNum + Counter64, + hwSACUserStat5thProtocolName + OCTET STRING, + hwSACUserStat5thProtocolPktUpNum + Counter64, + hwSACUserStat5thProtocolByteUpNum + Counter64, + hwSACUserStat5thProtocolPktDnNum + Counter64, + hwSACUserStat5thProtocolByteDnNum + Counter64, + hwSACUserStat6thProtocolName + OCTET STRING, + hwSACUserStat6thProtocolPktUpNum + Counter64, + hwSACUserStat6thProtocolByteUpNum + Counter64, + hwSACUserStat6thProtocolPktDnNum + Counter64, + hwSACUserStat6thProtocolByteDnNum + Counter64, + hwSACUserStat7thProtocolName + OCTET STRING, + hwSACUserStat7thProtocolPktUpNum + Counter64, + hwSACUserStat7thProtocolByteUpNum + Counter64, + hwSACUserStat7thProtocolPktDnNum + Counter64, + hwSACUserStat7thProtocolByteDnNum + Counter64, + hwSACUserStat8thProtocolName + OCTET STRING, + hwSACUserStat8thProtocolPktUpNum + Counter64, + hwSACUserStat8thProtocolByteUpNum + Counter64, + hwSACUserStat8thProtocolPktDnNum + Counter64, + hwSACUserStat8thProtocolByteDnNum + Counter64, + hwSACUserStat9thProtocolName + OCTET STRING, + hwSACUserStat9thProtocolPktUpNum + Counter64, + hwSACUserStat9thProtocolByteUpNum + Counter64, + hwSACUserStat9thProtocolPktDnNum + Counter64, + hwSACUserStat9thProtocolByteDnNum + Counter64, + hwSACUserStat10thProtocolName + OCTET STRING, + hwSACUserStat10thProtocolPktUpNum + Counter64, + hwSACUserStat10thProtocolByteUpNum + Counter64, + hwSACUserStat10thProtocolPktDnNum + Counter64, + hwSACUserStat10thProtocolByteDnNum + Counter64, + hwSACUserTop10StatClear + Integer32, + hwSACUserTop10StatRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.1 + hwSACUserTop10StatUserMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.2 + hwSACUserTop10StatType OBJECT-TYPE + SYNTAX INTEGER + { + total(1), + period(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.3 + hwSACUserStatTotalPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.4 + hwSACUserStatTotalByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.5 + hwSACUserStatTotalPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.6 + hwSACUserStatTotalByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.7 + hwSACUserStat1stProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 7 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.8 + hwSACUserStat1stProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 8 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.9 + hwSACUserStat1stProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 9 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.10 + hwSACUserStat1stProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 10 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.11 + hwSACUserStat1stProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 11 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.12 + hwSACUserStat2ndProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 12 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.13 + hwSACUserStat2ndProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 13 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.14 + hwSACUserStat2ndProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 14 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.15 + hwSACUserStat2ndProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 15 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.16 + hwSACUserStat2ndProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 16 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.17 + hwSACUserStat3rdProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 17 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.18 + hwSACUserStat3rdProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 18 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.19 + hwSACUserStat3rdProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 19 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.20 + hwSACUserStat3rdProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 20 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.21 + hwSACUserStat3rdProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 21 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.22 + hwSACUserStat4thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 22 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.23 + hwSACUserStat4thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 23 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.24 + hwSACUserStat4thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 24 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.25 + hwSACUserStat4thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 25 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.26 + hwSACUserStat4thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 26 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.27 + hwSACUserStat5thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 27 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.28 + hwSACUserStat5thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 28 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.29 + hwSACUserStat5thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 29 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.30 + hwSACUserStat5thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 30 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.31 + hwSACUserStat5thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 31 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.32 + hwSACUserStat6thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 32 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.33 + hwSACUserStat6thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 33 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.34 + hwSACUserStat6thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 34 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.35 + hwSACUserStat6thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 35 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.36 + hwSACUserStat6thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 36 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.37 + hwSACUserStat7thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 37 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.38 + hwSACUserStat7thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 38 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.39 + hwSACUserStat7thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 39 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.40 + hwSACUserStat7thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 40 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.41 + hwSACUserStat7thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 41 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.42 + hwSACUserStat8thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 42 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.43 + hwSACUserStat8thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 43 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.44 + hwSACUserStat8thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 44 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.45 + hwSACUserStat8thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 45 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.46 + hwSACUserStat8thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 46 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.47 + hwSACUserStat9thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 47 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.48 + hwSACUserStat9thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 48 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.49 + hwSACUserStat9thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 49 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.50 + hwSACUserStat9thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 50 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.51 + hwSACUserStat9thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 51 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.52 + hwSACUserStat10thProtocolName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 52 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.53 + hwSACUserStat10thProtocolPktUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 53 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.54 + hwSACUserStat10thProtocolByteUpNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 54 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.55 + hwSACUserStat10thProtocolPktDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 55 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.56 + hwSACUserStat10thProtocolByteDnNum OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 56 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.57 + hwSACUserTop10StatClear OBJECT-TYPE + SYNTAX Integer32 (1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 57 } + + --1.3.6.1.4.1.2011.6.139.20.1.9.1.58 + hwSACUserTop10StatRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwSACUserTop10StatEntry 58 } + + --1.3.6.1.4.1.2011.6.139.20.1.10 + hwMediaAwareConfig OBJECT IDENTIFIER ::= { hwSacObjects 10 } + + --1.3.6.1.4.1.2011.6.139.20.1.10.1 + hwWlanVoiceAware OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwMediaAwareConfig 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.10.2 + hwWlanVideoAware OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwMediaAwareConfig 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.11 + hwVoiceAwareProtocolTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwVoiceAwareProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 11 } + + --1.3.6.1.4.1.2011.6.139.20.1.11.1 + hwVoiceAwareProtocolEntry OBJECT-TYPE + SYNTAX HwVoiceAwareProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwVoiceAwareProtocolName } + ::= { hwVoiceAwareProtocolTable 1 } + + + HwVoiceAwareProtocolEntry ::= + SEQUENCE { + hwVoiceAwareProtocolName + OCTET STRING, + hwVoiceAwarePortocolEnable + INTEGER, + hwVoiceAwarePortocolRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.11.1.1 + hwVoiceAwareProtocolName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwVoiceAwareProtocolEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.11.1.2 + hwVoiceAwarePortocolEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVoiceAwareProtocolEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.11.1.3 + hwVoiceAwarePortocolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVoiceAwareProtocolEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.12 + hwVideoAwareProtocolTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwVideoAwareProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 12 } + + --1.3.6.1.4.1.2011.6.139.20.1.12.1 + hwVideoAwareProtocolEntry OBJECT-TYPE + SYNTAX HwVideoAwareProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwVideoAwareProtocolName } + ::= { hwVideoAwareProtocolTable 1 } + + + HwVideoAwareProtocolEntry ::= + SEQUENCE { + hwVideoAwareProtocolName + OCTET STRING, + hwVideoAwarePortocolEnable + INTEGER, + hwVideoAwarePortocolRowStatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.12.1.1 + hwVideoAwareProtocolName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwVideoAwareProtocolEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.12.1.2 + hwVideoAwarePortocolEnable OBJECT-TYPE + SYNTAX INTEGER + { + disable(1), + enable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVideoAwareProtocolEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.12.1.3 + hwVideoAwarePortocolRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwVideoAwareProtocolEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.13 + hwLyncRecordTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwLyncRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwSacObjects 13 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1 + hwLyncRecordEntry OBJECT-TYPE + SYNTAX HwLyncRecordEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwLyncRecordID } + ::= { hwLyncRecordTable 1 } + + + HwLyncRecordEntry ::= + SEQUENCE { + hwLyncRecordID + Unsigned32, + hwLyncRecordSrcApName + OCTET STRING, + hwLyncRecordSrcMAC + MacAddress, + hwLyncRecordSrcIP + IpAddress, + hwLyncRecordSrcPort + Unsigned32, + hwLyncRecordDstApName + OCTET STRING, + hwLyncRecordDstMAC + MacAddress, + hwLyncRecordDstIP + IpAddress, + hwLyncRecordDstPort + Unsigned32, + hwLyncRecordCallID + OCTET STRING, + hwLyncRecordStartTime + OCTET STRING, + hwLyncRecordEndTime + OCTET STRING, + hwLyncRecordProtocol + Unsigned32, + hwLyncRecordPacketUtilization + Unsigned32, + hwLyncRecordJitterInterArrival + Unsigned32, + hwLyncRecordJitterInterArrivalMax + Unsigned32, + hwLyncRecordRoundTrip + Unsigned32, + hwLyncRecordRoundTripMax + Unsigned32, + hwLyncRecordHealerPacketDropRatio + OCTET STRING, + hwLyncRecordDegradationAvg + OCTET STRING, + hwLyncRecordRatioConcealedSamplesAvg + OCTET STRING, + hwLyncRecordBurstGapDuration + Unsigned32, + hwLyncRecordDegradationMax + OCTET STRING, + hwLyncRecordRecvListenMOSMin + OCTET STRING, + hwLyncRecordRecvListenMOS + OCTET STRING, + hwLyncRecordOverallMinNetworkMOS + OCTET STRING, + hwLyncRecordOverallAvgNetworkMOS + OCTET STRING, + hwLyncRecordAppliedBandwidthLimit + Unsigned32, + hwLyncRecordRowstatus + RowStatus + } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.1 + hwLyncRecordID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 1 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.2 + hwLyncRecordSrcApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 2 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.3 + hwLyncRecordSrcMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 3 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.4 + hwLyncRecordSrcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 4 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.5 + hwLyncRecordSrcPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 5 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.6 + hwLyncRecordDstApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 6 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.7 + hwLyncRecordDstMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 7 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.8 + hwLyncRecordDstIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 8 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.9 + hwLyncRecordDstPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 9 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.10 + hwLyncRecordCallID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 10 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.11 + hwLyncRecordStartTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 11 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.12 + hwLyncRecordEndTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 12 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.13 + hwLyncRecordProtocol OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 13 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.14 + hwLyncRecordPacketUtilization OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 14 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.15 + hwLyncRecordJitterInterArrival OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 15 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.16 + hwLyncRecordJitterInterArrivalMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 16 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.17 + hwLyncRecordRoundTrip OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 17 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.18 + hwLyncRecordRoundTripMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 18 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.19 + hwLyncRecordHealerPacketDropRatio OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 19 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.20 + hwLyncRecordDegradationAvg OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 20 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.21 + hwLyncRecordRatioConcealedSamplesAvg OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 21 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.22 + hwLyncRecordBurstGapDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 22 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.23 + hwLyncRecordDegradationMax OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 23 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.24 + hwLyncRecordRecvListenMOSMin OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 24 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.25 + hwLyncRecordRecvListenMOS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 25 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.26 + hwLyncRecordOverallMinNetworkMOS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 26 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.27 + hwLyncRecordOverallAvgNetworkMOS OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 27 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.28 + hwLyncRecordAppliedBandwidthLimit OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 28 } + + --1.3.6.1.4.1.2011.6.139.20.1.13.1.29 + hwLyncRecordRowstatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Description." + ::= { hwLyncRecordEntry 29 } + + --1.3.6.1.4.1.2011.6.139.20.2 + hwWlanSacConformance OBJECT IDENTIFIER ::= { hwWlanSac 2 } + + --1.3.6.1.4.1.2011.6.139.20.2.1 + hwWlanSacCompliances OBJECT IDENTIFIER ::= { hwWlanSacConformance 1 } + + --1.3.6.1.4.1.2011.6.139.20.2.1.1 + hwWlanSacCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanSACGroup } + ::= { hwWlanSacCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.20.2.2 + hwWlanSacObjectGroups OBJECT IDENTIFIER ::= { hwWlanSacConformance 2 } + + --1.3.6.1.4.1.2011.6.139.20.2.2.1 + hwWlanSACGroup OBJECT-GROUP + OBJECTS { hwSACEnableOper, hwSACEnableRuleLibName, hwSACProtocolGroupRowstatus, hwSACProGroupProRowstatus, + hwSACVapStatProtocolName, hwSACVapStatProtocolPktUpNum, hwSACVapStatProtocolByteUpNum, hwSACVapStatProtocolPktDnNum, + hwSACVapStatProtocolByteDnNum, hwSACVapStatClear, hwSACVapStatRowstatus, + hwSACUserStatProtocolName, hwSACUserStatProtocolPktUpNum, hwSACUserStatProtocolByteUpNum, hwSACUserStatProtocolPktDnNum, + hwSACUserStatProtocolByteDnNum, hwSACUserStatClear, hwSACUserStatRowstatus, hwSACAppListAppID, + hwSACAppListAppName, hwSACAppListRowstatus, hwSACInfoSACEnable, hwSACInfoSignatureState, hwSACInfoSignatureName, + hwSACInfoSignatureVersion, hwSACInfoSignatureDate, hwSACInfoAppNum, + hwSACVapStatTotalPktUpNum, hwSACVapStatTotalByteUpNum, hwSACVapStatTotalPktDnNum, + hwSACVapStatTotalByteDnNum, hwSACVapStat1stProtocolName, hwSACVapStat1stProtocolPktUpNum, hwSACVapStat1stProtocolByteUpNum, hwSACVapStat1stProtocolPktDnNum, + hwSACVapStat1stProtocolByteDnNum, hwSACVapStat2ndProtocolName, hwSACVapStat2ndProtocolPktUpNum, hwSACVapStat2ndProtocolByteUpNum, hwSACVapStat2ndProtocolPktDnNum, + hwSACVapStat2ndProtocolByteDnNum, hwSACVapStat3rdProtocolName, hwSACVapStat3rdProtocolPktUpNum, hwSACVapStat3rdProtocolByteUpNum, hwSACVapStat3rdProtocolPktDnNum, + hwSACVapStat3rdProtocolByteDnNum, hwSACVapStat4thProtocolName, hwSACVapStat4thProtocolPktUpNum, hwSACVapStat4thProtocolByteUpNum, hwSACVapStat4thProtocolPktDnNum, + hwSACVapStat4thProtocolByteDnNum, hwSACVapStat5thProtocolName, hwSACVapStat5thProtocolPktUpNum, hwSACVapStat5thProtocolByteUpNum, hwSACVapStat5thProtocolPktDnNum, + hwSACVapStat5thProtocolByteDnNum, hwSACVapStat6thProtocolName, hwSACVapStat6thProtocolPktUpNum, hwSACVapStat6thProtocolByteUpNum, hwSACVapStat6thProtocolPktDnNum, + hwSACVapStat6thProtocolByteDnNum, hwSACVapStat7thProtocolName, hwSACVapStat7thProtocolPktUpNum, hwSACVapStat7thProtocolByteUpNum, hwSACVapStat7thProtocolPktDnNum, + hwSACVapStat7thProtocolByteDnNum, hwSACVapStat8thProtocolName, hwSACVapStat8thProtocolPktUpNum, hwSACVapStat8thProtocolByteUpNum, hwSACVapStat8thProtocolPktDnNum, + hwSACVapStat8thProtocolByteDnNum, hwSACVapStat9thProtocolName, hwSACVapStat9thProtocolPktUpNum, hwSACVapStat9thProtocolByteUpNum, hwSACVapStat9thProtocolPktDnNum, + hwSACVapStat9thProtocolByteDnNum, hwSACVapStat10thProtocolName, hwSACVapStat10thProtocolPktUpNum, hwSACVapStat10thProtocolByteUpNum, hwSACVapStat10thProtocolPktDnNum, + hwSACVapStat10thProtocolByteDnNum, hwSACVapTop10StatClear, hwSACVapTop10StatRowstatus, + hwSACUserStatTotalPktUpNum, hwSACUserStatTotalByteUpNum, hwSACUserStatTotalPktDnNum, hwSACUserStatTotalByteDnNum, hwSACUserStat1stProtocolName, + hwSACUserStat1stProtocolPktUpNum, hwSACUserStat1stProtocolByteUpNum, hwSACUserStat1stProtocolPktDnNum, hwSACUserStat1stProtocolByteDnNum, hwSACUserStat2ndProtocolName, + hwSACUserStat2ndProtocolPktUpNum, hwSACUserStat2ndProtocolByteUpNum, hwSACUserStat2ndProtocolPktDnNum, hwSACUserStat2ndProtocolByteDnNum, hwSACUserStat3rdProtocolName, + hwSACUserStat3rdProtocolPktUpNum, hwSACUserStat3rdProtocolByteUpNum, hwSACUserStat3rdProtocolPktDnNum, hwSACUserStat3rdProtocolByteDnNum, hwSACUserStat4thProtocolName, + hwSACUserStat4thProtocolPktUpNum, hwSACUserStat4thProtocolByteUpNum, hwSACUserStat4thProtocolPktDnNum, hwSACUserStat4thProtocolByteDnNum, hwSACUserStat5thProtocolName, + hwSACUserStat5thProtocolPktUpNum, hwSACUserStat5thProtocolByteUpNum, hwSACUserStat5thProtocolPktDnNum, hwSACUserStat5thProtocolByteDnNum, hwSACUserStat6thProtocolName, + hwSACUserStat6thProtocolPktUpNum, hwSACUserStat6thProtocolByteUpNum, hwSACUserStat6thProtocolPktDnNum, hwSACUserStat6thProtocolByteDnNum, hwSACUserStat7thProtocolName, + hwSACUserStat7thProtocolPktUpNum, hwSACUserStat7thProtocolByteUpNum, hwSACUserStat7thProtocolPktDnNum, hwSACUserStat7thProtocolByteDnNum, hwSACUserStat8thProtocolName, + hwSACUserStat8thProtocolPktUpNum, hwSACUserStat8thProtocolByteUpNum, hwSACUserStat8thProtocolPktDnNum, hwSACUserStat8thProtocolByteDnNum, hwSACUserStat9thProtocolName, + hwSACUserStat9thProtocolPktUpNum, hwSACUserStat9thProtocolByteUpNum, hwSACUserStat9thProtocolPktDnNum, hwSACUserStat9thProtocolByteDnNum, hwSACUserStat10thProtocolName, + hwSACUserStat10thProtocolPktUpNum, hwSACUserStat10thProtocolByteUpNum, hwSACUserStat10thProtocolPktDnNum, hwSACUserStat10thProtocolByteDnNum, hwSACUserTop10StatClear, + hwSACUserTop10StatRowstatus, hwWlanVoiceAware, hwWlanVideoAware, hwVoiceAwarePortocolEnable, + hwVoiceAwarePortocolRowStatus, hwVideoAwarePortocolEnable, hwVideoAwarePortocolRowStatus, + hwLyncRecordSrcApName, hwLyncRecordSrcMAC, hwLyncRecordSrcIP, hwLyncRecordSrcPort, hwLyncRecordDstApName, + hwLyncRecordDstMAC, hwLyncRecordDstIP, hwLyncRecordDstPort, hwLyncRecordCallID, hwLyncRecordStartTime, + hwLyncRecordEndTime, hwLyncRecordProtocol, hwLyncRecordPacketUtilization, hwLyncRecordJitterInterArrival, hwLyncRecordJitterInterArrivalMax, + hwLyncRecordRoundTrip, hwLyncRecordRoundTripMax, hwLyncRecordHealerPacketDropRatio, hwLyncRecordDegradationAvg, hwLyncRecordRatioConcealedSamplesAvg, + hwLyncRecordBurstGapDuration, hwLyncRecordDegradationMax, hwLyncRecordRecvListenMOSMin, hwLyncRecordRecvListenMOS, hwLyncRecordOverallMinNetworkMOS, + hwLyncRecordOverallAvgNetworkMOS, hwLyncRecordAppliedBandwidthLimit, hwLyncRecordRowstatus } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanSacObjectGroups 1 } + + + END +-- +-- HUAWEI-WLAN-SAC-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-STATION-MIB b/mibs/huawei/HUAWEI-WLAN-STATION-MIB new file mode 100644 index 0000000000..6b1df4b2be --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-STATION-MIB @@ -0,0 +1,2335 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for station. +-- Reference: +-- Version: V1.15 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-STATION-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + hwWlanApName + FROM HUAWEI-WLAN-AP-MIB + hwWlanApMac + FROM HUAWEI-WLAN-AP-MIB + hwWlanApId + FROM HUAWEI-WLAN-AP-MIB + hwWlanRadioID + FROM HUAWEI-WLAN-AP-RADIO-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.18 + hwWlanStation MODULE-IDENTITY + LAST-UPDATED "201612171030Z" -- Dec 17, 2016 at 10:30 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.15, Modify the description of hwWlanStaStatOperMode and hwWlanStaApId." + REVISION "201612171030Z" -- Dec 17, 2016 at 10:30 GMT + DESCRIPTION + "V1.14, Modify the description of hwWlanStaStatOperMode and hwWlanStaApId." + REVISION "201609141030Z" -- Sep 14, 2016 at 10:30 GMT + + DESCRIPTION + "V1.13, Add the nodes ofhwWlanStaGetIPFailedCount and hwWlanStaGetIPSuccessCount." + REVISION "201608161400Z" -- Aug 16, 2016 at 14:00 GMT + + DESCRIPTION + "V1.12, Modify the nodes of hwWlanStaAssocStartTime, hwWlanStaAssocSuccessTime and so on." + REVISION "201608080915Z" -- Aug 8, 2016 at 09:15 GMT + + DESCRIPTION + "V1.11, Add the node of hwWlanStaRoamTraceEntry in the hwWlanStaRoamTraceInfo." + REVISION "201607291130Z" -- Jul 18, 2016 at 11:30 GMT + + DESCRIPTION + "V1.10, Add the node of hwWlanStaAcL3RoamStatisticAcDescription in the hwWlanStaAcL3RoamStatisticsTable." + REVISION "201607181130Z" -- Jul 18, 2016 at 11:30 GMT + + + DESCRIPTION + "V1.09, Add the nodes of hwWlanStaVHTCapable,hwWlanStaVHTTxBFCapable,hwWlanStaMUMIMOCapable, + hwWlanStaWpaStartTime and hwWlanStaWpaSuccessTime in the hwWlanStationTable." + REVISION "201606010930Z" -- Jun 1, 2016 at 09:30 GMT + + DESCRIPTION + "V1.08, Add the nodes of hwWlanStaAssocStartTime,hwWlanStaAssocSuccesTime,hwWlanStaAuthStartTime, + hwWlanStaAuthSuccesTime,hwWlanStaDhcpStartTime and hwWlanStaDhcpSuccesTime in the hwWlanStationTable." + REVISION "201602260910Z" -- Feb 26, 2016 at 09:10 GMT + + DESCRIPTION + "V1.07, Add the nodes of hwWlanStationApStatApId in the hwWlanStationApStatTable." + REVISION "201602161110Z" -- Feb 16, 2016 at 11:10 GMT + DESCRIPTION + "V1.06, Add the nodes of hwWlanStationUapsdCapacity and hwWlanStationPowerSavePercent in the hwWlanStationTable." + REVISION "201511301110Z" -- Nov 30, 2015 at 11:10 GMT + DESCRIPTION + "V1.05, Add Value list in the hwWlanStaAuthenMethod node." + REVISION "201511052030Z" -- Oct 05, 2015 at 20:30 GMT + DESCRIPTION + "V1.04, Add AP ID in the trap node." + REVISION "201509151030Z" -- Sept 15, 2015 at 10:30 GMT + DESCRIPTION + "The MIB module defines the station operation." + REVISION "201508271815Z" -- Aug 27, 2015 at 18:15 GMT + DESCRIPTION + "V1.02, Add the node of hwWlanStaApId in the hwWlanStationTable." + REVISION "201506271815Z" -- June 27, 2015 at 18:15 GMT + DESCRIPTION + "V1.02, Modify the hwWlanStaEncryptMethod node." + REVISION "201505111452Z" -- May 11, 2015 at 14:52 GMT + DESCRIPTION + " + V1.01, Add the description of mib nodes. + " + REVISION "201502021452Z" -- February 2, 2015 at 14:52 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 18 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.18.1 + hwWlanStationObjects OBJECT IDENTIFIER ::= { hwWlanStation 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.1 + hwWlanStaTraps OBJECT IDENTIFIER ::= { hwWlanStationObjects 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1 + hwWlanStaTrap OBJECT IDENTIFIER ::= { hwWlanStaTraps 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.1 + hwWlanStaAuthErrorTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanStaAuthenticationMode, hwWlanStaFailCodeType, hwWlanStaAuthenticationFailCause, hwWlanStaAuthenticationFailCauseStr, hwWlanApId } + STATUS current + DESCRIPTION + "STA authentication fails." + ::= { hwWlanStaTrap 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.2 + hwWlanStaAssoFailTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanStaFailCodeType, hwWlanStaAuthenticationFailCause, hwWlanStaAuthenticationFailCauseStr, hwWlanApId } + STATUS current + DESCRIPTION + "STA association fails." + ::= { hwWlanStaTrap 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.3 + hwWlanUserInvalidCerficationTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanApId } + STATUS current + DESCRIPTION + "A user with an invalid certificate attempts to access the network." + ::= { hwWlanStaTrap 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.4 + hwWlanStaRepititiveAttackTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanApId } + STATUS current + DESCRIPTION + "The STA undergoes a replay attack." + ::= { hwWlanStaTrap 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.5 + hwWlanStaTamperAttackTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanApId } + STATUS current + DESCRIPTION + "A tamper attack occurs." + ::= { hwWlanStaTrap 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.6 + hwWlanStaLowLevelSecAttackTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanApId } + STATUS current + DESCRIPTION + "The AP security level was lowered." + ::= { hwWlanStaTrap 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.7 + hwWlanStaAddressRedirectionAttackTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanRadioID, hwWlanStaMac, hwWlanApName, hwWlanStaAssocBssid, hwWlanStaSsid, hwWlanApId } + STATUS current + DESCRIPTION + "An address redirection attack occurs." + ::= { hwWlanStaTrap 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.8 + hwWlanStaWepIdConflictTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWepIDConflictTrapAPMAC, hwWlanWepIDConflictTrapAPName, hwWlanWepIDConflictTrapRadioId, hwWlanWepIDConflictTrapPreSSID, hwWlanWepIDConflictTrapCurrSSID, + hwWlanWepIDConflictTrapCipherIdx, hwWlanApId } + STATUS current + DESCRIPTION + "SSID keys conflict" + ::= { hwWlanStaTrap 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.9 + hwStationOnlineTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanStaMac, hwWlanStaRadioId, hwWlanApName, hwWlanStaAccessChannel, + hwWlanStaRssi, hwWlanStaTrapOccurTime, hwWlanApId } + STATUS current + DESCRIPTION + "A STA goes online." + ::= { hwWlanStaTrap 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.10 + hwStationOfflineTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanStaMac, hwWlanStaRadioId, hwWlanApName, hwWlanStaAccessChannel, + hwWlanStaRssi, hwWlanStaTrapOccurTime, hwWlanApId } + STATUS current + DESCRIPTION + "A STA goes offline." + ::= { hwWlanStaTrap 10 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.1.11 + hwStationSignalStrengthLowThanThresholdTrap NOTIFICATION-TYPE + OBJECTS { hwWlanApMac, hwWlanStaMac, hwWlanStaRadioId, hwWlanApName, hwWlanStaAccessChannel, + hwWlanStaRssi, hwWlanSignalStrengthThreshold, hwWlanApId } + STATUS current + DESCRIPTION + "The STA signal strength is lower than the threshold." + ::= { hwWlanStaTrap 11 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2 + hwWlanStaTrapObjects OBJECT IDENTIFIER ::= { hwWlanStaTraps 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.1 + hwWlanStaAuthenticationMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the STA authentication mode." + ::= { hwWlanStaTrapObjects 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.2 + hwWlanStaAuthenticationFailCause OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the STA authentication failure reason." + ::= { hwWlanStaTrapObjects 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.3 + hwWlanStaAssociationFailCause OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the STA association failure reason." + ::= { hwWlanStaTrapObjects 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.4 + hwWlanStaAssocBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSSID with which the STA associates." + ::= { hwWlanStaTrapObjects 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.5 + hwWlanStaFailCodeType OBJECT-TYPE + SYNTAX INTEGER + { + reasonCode(1), + statusCode(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the error codes for STA association and authentication failures." + ::= { hwWlanStaTrapObjects 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.6 + hwWlanWepIDConflictTrapAPMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP MAC." + ::= { hwWlanStaTrapObjects 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.7 + hwWlanWepIDConflictTrapAPName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanStaTrapObjects 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.8 + hwWlanWepIDConflictTrapRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio id." + ::= { hwWlanStaTrapObjects 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.9 + hwWlanWepIDConflictTrapPreSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the previous SSID." + ::= { hwWlanStaTrapObjects 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.10 + hwWlanWepIDConflictTrapCurrSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the current SSID." + ::= { hwWlanStaTrapObjects 10 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.11 + hwWlanWepIDConflictTrapCipherIdx OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the cipher index." + ::= { hwWlanStaTrapObjects 11 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.12 + hwWlanWlanStaAuthEncryptMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the authentication and encryption modes for STAs." + ::= { hwWlanStaTrapObjects 12 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.13 + hwWlanWlanVapAuthEncryptMode OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the authentication and encryption modes for VAPs." + ::= { hwWlanStaTrapObjects 13 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.14 + hwWlanStaAuthenticationFailCauseStr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the character string indicating the STA authentication failure reason." + ::= { hwWlanStaTrapObjects 14 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.15 + hwWlanStaAssociationFailCauseStr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the character string indicating the STA association failure reason." + ::= { hwWlanStaTrapObjects 15 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.16 + hwWlanSignalStrengthThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the RSSI threshold." + ::= { hwWlanStaTrapObjects 16 } + + --1.3.6.1.4.1.2011.6.139.18.1.1.2.17 + hwWlanStaTrapOccurTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the time when a STA alarm is generated." + ::= { hwWlanStaTrapObjects 17 } + + --1.3.6.1.4.1.2011.6.139.18.1.2 + hwWlanStationTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to describe access information about terminals." + ::= { hwWlanStationObjects 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1 + hwWlanStationEntry OBJECT-TYPE + SYNTAX HwWlanStationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanStaMac." + INDEX { hwWlanStaMac } + ::= { hwWlanStationTable 1 } + + + HwWlanStationEntry ::= + SEQUENCE { + hwWlanStaMac + MacAddress, + hwWlanStaUsername + OCTET STRING, + hwWlanStaApMac + MacAddress, + hwWlanStaApName + OCTET STRING, + hwWlanStaApGroup + OCTET STRING, + hwWlanStaRadioId + Unsigned32, + hwWlanStaAssocBand + Unsigned32, + hwWlanStaSupportBand + Unsigned32, + hwWlanStaAccessChannel + Integer32, + hwWlanStaRfMode + INTEGER, + hwWlanStaHtMode + INTEGER, + hwWlanStaMcsVal + Unsigned32, + hwWlanStaShortGIStatus + INTEGER, + hwWlanStaConnectRxRate + Unsigned32, + hwWlanStaConnectTxRate + Unsigned32, + hwWlanStaEssName + OCTET STRING, + hwWlanStaBSSID + MacAddress, + hwWlanStaSsid + OCTET STRING, + hwWlanStaStatus + INTEGER, + hwWlanStaAuthenMethod + INTEGER, + hwWlanStaEncryptMethod + INTEGER, + hwWlanStaQosMode + INTEGER, + hwWlanStaRoamStatus + INTEGER, + hwWlanStaVlan + Unsigned32, + hwWlanStaIP + IpAddress, + hwWlanStaIPv6 + OCTET STRING, + hwWlanStaGateway + IpAddress, + hwWlanStaAssocTime + Integer32, + hwWlanStaAccessTime + Integer32, + hwWlanStaOnlineTime + Integer32, + hwWlanStaAccessOnlineTime + Integer32, + hwWlanStaStatOperMode + INTEGER, + hwWlanStaWirelessStatRxFrames + Counter64, + hwWlanStaWirelessRxBytes + Counter64, + hwWlanStaWirelessRxRate + Unsigned32, + hwWlanStaWirelessStatTxFrames + Counter64, + hwWlanStaWirelessTxBytes + Counter64, + hwWlanStaWirelessTxRate + Unsigned32, + hwWlanStaPeriodSendDropFrames + Counter64, + hwWlanStaPeriodReSendFrames + Counter64, + hwWlanStaPeriodReSendBytes + Counter64, + hwWlanStaRssi + Integer32, + hwWlanStaNoise + Integer32, + hwWlanStaSnrUs + Integer32, + hwWlanStaRxPowerUs + Integer32, + hwWlanStaChannelUtilRate + Unsigned32, + hwWlanStaChannelBusyRate + Unsigned32, + hwWlanStaChannelTxRatio + Unsigned32, + hwWlanStaChannelRxRatio + Unsigned32, + hwWlanStaChannelFreeRate + Unsigned32, + hwWlanStaChannelInterfRate + Unsigned32, + hwWlanStaPeriodSendFrames + Unsigned32, + hwWlanStaApId + Unsigned32, + hwWlanStationUapsdCapacity + Integer32, + hwWlanStationPowerSavePercent + Integer32, + hwWlanStaAssocStartTime + Unsigned32, + hwWlanStaAssocSuccessTime + Unsigned32, + hwWlanStaAuthStartTime + Unsigned32, + hwWlanStaAuthSuccessTime + Unsigned32, + hwWlanStaDhcpStartTime + Unsigned32, + hwWlanStaDhcpSuccessTime + Unsigned32, + hwWlanStaVHTCapable + INTEGER, + hwWlanStaVHTTxBFCapable + INTEGER, + hwWlanStaMUMIMOCapable + INTEGER, + hwWlanStaWpaStartTime + Unsigned32, + hwWlanStaWpaSuccessTime + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.1 + hwWlanStaMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the MAC address of a STA, which identifies the STA and functions as the index for querying information associated with the STA." + ::= { hwWlanStationEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.2 + hwWlanStaUsername OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the user name." + ::= { hwWlanStationEntry 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.3 + hwWlanStaApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP connected to users." + ::= { hwWlanStationEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.4 + hwWlanStaApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the AP connected to users." + ::= { hwWlanStationEntry 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.5 + hwWlanStaApGroup OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP group to which users belong." + ::= { hwWlanStationEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.6 + hwWlanStaRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio ID with which the STA associates." + ::= { hwWlanStationEntry 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.7 + hwWlanStaAssocBand OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the frequency band where users reside. 2.4G(1): 2.4G frequency band 5G(2): 5G frequency band." + ::= { hwWlanStationEntry 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.8 + hwWlanStaSupportBand OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the frequency band supported by STA, in bits. bit0: 2.4G. bit1: 5G" + ::= { hwWlanStationEntry 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.9 + hwWlanStaAccessChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel connected to users." + ::= { hwWlanStationEntry 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.10 + hwWlanStaRfMode OBJECT-TYPE + SYNTAX INTEGER + { + dotb(1), + dotg(2), + dotn(3), + dota(4), + dotac(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the user radio mode." + ::= { hwWlanStationEntry 10 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.11 + hwWlanStaHtMode OBJECT-TYPE + SYNTAX INTEGER + { + invalid(1) , + ht40(2) , + ht20(3) , + vht80(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the HT mode of STAs." + ::= { hwWlanStationEntry 11 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.12 + hwWlanStaMcsVal OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MCS value." + ::= { hwWlanStationEntry 12 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.13 + hwWlanStaShortGIStatus OBJECT-TYPE + SYNTAX INTEGER + { + nonsupport(1) , + support(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the STA supports short GI." + ::= { hwWlanStationEntry 13 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.14 + hwWlanStaConnectRxRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate at which the AP receives user packets." + ::= { hwWlanStationEntry 14 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.15 + hwWlanStaConnectTxRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate at which the AP sends packets to users." + ::= { hwWlanStationEntry 15 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.16 + hwWlanStaEssName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the ESS associated with the STA." + ::= { hwWlanStationEntry 16 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.17 + hwWlanStaBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the air interface address for STA management." + ::= { hwWlanStationEntry 17 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.18 + hwWlanStaSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID assocaited with the STA." + ::= { hwWlanStationEntry 18 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.19 + hwWlanStaStatus OBJECT-TYPE + SYNTAX INTEGER + { + age(1), + associatedNotAuthenticated(2), + associatedAndAuthenticated(3), + roam(4), + backup(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the user online status." + ::= { hwWlanStationEntry 19 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.20 + hwWlanStaAuthenMethod OBJECT-TYPE + SYNTAX INTEGER + { + wepOpenSystem(1), + wepOpenSystemMac(2), + wepOpenSystem8021X(3), + wepOpenSystemPortal(4), + wepShareKey(5), + wepShareKeyMac(6), + wepShareKey8021X(7), + wepShareKeyPortal(8), + wpa8021X(9), + wpaPreShareKey(10), + wpaPskMac(11), + wpaPskPortal(12), + wpa2Dot1x(13), + wpa2PreShareKey(14), + wpa2PskMac(15), + wpa2PskPortal(16), + wapiCertification(17), + wapiPreShareKey(18), + wpaWpa2PreShareKey(19), + wpaWpa2PskMac(20), + wpaWpa2PskPortal(21), + wpaWpa2Dot1x(22), + wapiPskPortal(23) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the user authentication method." + ::= { hwWlanStationEntry 20 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.21 + hwWlanStaEncryptMethod OBJECT-TYPE + SYNTAX INTEGER + { + wpiSms4(1), + wep40(2), + wep104(3), + tkip(4), + aes(5), + none(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the encryption method." + ::= { hwWlanStationEntry 21 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.22 + hwWlanStaQosMode OBJECT-TYPE + SYNTAX INTEGER + { + wmm(1) , + null(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the QoS mode of the STA." + ::= { hwWlanStationEntry 22 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.23 + hwWlanStaRoamStatus OBJECT-TYPE + SYNTAX INTEGER + { + no(1) , + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the roaming status of the STA." + ::= { hwWlanStationEntry 23 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.24 + hwWlanStaVlan OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the VLAN connected to users." + ::= { hwWlanStationEntry 24 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.25 + hwWlanStaIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the connected user's IP address." + ::= { hwWlanStationEntry 25 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.26 + hwWlanStaIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of a user." + ::= { hwWlanStationEntry 26 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.27 + hwWlanStaGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the user gateway." + ::= { hwWlanStationEntry 27 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.28 + hwWlanStaAssocTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the initial association time of a user." + ::= { hwWlanStationEntry 28 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.29 + hwWlanStaAccessTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the time when user authentication starts.If non-authentication is configured, the value of this object is equal to hwStaAssociateTime. If other authentication modes, especially, Portal authentication, are configured, the value of this object is larger than hwStaAssociateTime." + ::= { hwWlanStationEntry 29 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.30 + hwWlanStaOnlineTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the association time of the STA (online time), which is timed from the first association.The unit is second. 1:When the STA switches another AP, the online time is not cleared, and is accumulated. 2: When the STA is disassociated from the AP, the STA data is cleared. New statistics of the STA will be collected when the STA goes online the next time." + ::= { hwWlanStationEntry 30 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.31 + hwWlanStaAccessOnlineTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the time elapsed since the user passes the authentication. This object applies only to Portal authentication users." + ::= { hwWlanStationEntry 31 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.32 + hwWlanStaStatOperMode OBJECT-TYPE + SYNTAX INTEGER + { + invalid(1), + clearstatistic(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that STA statistics are cleared." + ::= { hwWlanStationEntry 32 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.33 + hwWlanStaWirelessStatRxFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of upstream frames received." + ::= { hwWlanStationEntry 33 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.34 + hwWlanStaWirelessRxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of upstream bytes received." + ::= { hwWlanStationEntry 34 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.35 + hwWlanStaWirelessRxRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream Committed Information Rate (CIR), in bit/s." + ::= { hwWlanStationEntry 35 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.36 + hwWlanStaWirelessStatTxFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream frames received." + ::= { hwWlanStationEntry 36 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.37 + hwWlanStaWirelessTxBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream bytes received." + ::= { hwWlanStationEntry 37 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.38 + hwWlanStaWirelessTxRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the downstream Committed Information Rate (CIR), in bit/s." + ::= { hwWlanStationEntry 38 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.39 + hwWlanStaPeriodSendDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream packets (frames) discarded at the wireless side within the echo interval." + ::= { hwWlanStationEntry 39 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.40 + hwWlanStaPeriodReSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream packets (frames) retransmitted at the wireless side within the echo interval." + ::= { hwWlanStationEntry 40 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.41 + hwWlanStaPeriodReSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream bytes retransmitted at the wireless side within the echo interval." + ::= { hwWlanStationEntry 41 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.42 + hwWlanStaRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the received signal strength indicator (RSSI) of a STA." + ::= { hwWlanStationEntry 42 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.43 + hwWlanStaNoise OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the noise from a connected STA." + ::= { hwWlanStationEntry 43 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.44 + hwWlanStaSnrUs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream SNR of the STA (AP measured), in 0.1 dB. Special value 0x7FFFFFFF indicates that the value exceeds the threshold and 0x7FFFFFFE indicates that the value cannot be obtained at present." + ::= { hwWlanStationEntry 44 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.45 + hwWlanStaRxPowerUs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the upstream input power of the STA. The value is measured by the AP, in 0.1 dB. Special value 0x7FFFFFFF indicates that the value exceeds the threshold and 0x7FFFFFFE indicates that the value cannot be obtained at present." + ::= { hwWlanStationEntry 45 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.46 + hwWlanStaChannelUtilRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel usage of the STA." + ::= { hwWlanStationEntry 46 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.47 + hwWlanStaChannelBusyRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the busy rate of the STA channel." + ::= { hwWlanStationEntry 47 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.48 + hwWlanStaChannelTxRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet sending ratio of the STA channel." + ::= { hwWlanStationEntry 48 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.49 + hwWlanStaChannelRxRatio OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the packet receiving ratio of the STA channel." + ::= { hwWlanStationEntry 49 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.50 + hwWlanStaChannelFreeRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the idle rate of the STA channel." + ::= { hwWlanStationEntry 50 } + + --1.3.6.1.4.1.2011.6.139.18.1.2.1.51 + hwWlanStaChannelInterfRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interference ratio of the STA channel." + ::= { hwWlanStationEntry 51 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.52 + hwWlanStaPeriodSendFrames OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream frames received within the echo interval." + ::= { hwWlanStationEntry 52 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.53 + hwWlanStaApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID with which the STA associates." + ::= { hwWlanStationEntry 53 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.54 + hwWlanStationUapsdCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the uapsd capacity of a STA." + DEFVAL { '0'b } + ::= { hwWlanStationEntry 54 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.55 + hwWlanStationPowerSavePercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the power save percent of a STA." + DEFVAL { '0'b } + ::= { hwWlanStationEntry 55 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.56 + hwWlanStaAssocStartTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the association start time of the station." + ::= { hwWlanStationEntry 56 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.57 + hwWlanStaAssocSuccessTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the association success time of the station." + ::= { hwWlanStationEntry 57 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.58 + hwWlanStaAuthStartTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the auth start time of the station." + ::= { hwWlanStationEntry 58 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.59 + hwWlanStaAuthSuccessTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the auth success time of the station." + ::= { hwWlanStationEntry 59 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.60 + hwWlanStaDhcpStartTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the dhcp start time of the station." + ::= { hwWlanStationEntry 60 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.61 + hwWlanStaDhcpSuccessTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the dhcp success time of the station." + ::= { hwWlanStationEntry 61 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.62 + hwWlanStaVHTCapable OBJECT-TYPE + SYNTAX INTEGER + { + nonsupport(1), + support(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the capability of VHT." + ::= { hwWlanStationEntry 62 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.63 + hwWlanStaVHTTxBFCapable OBJECT-TYPE + SYNTAX INTEGER + { + nonsupport(1), + support(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the capability of VHTTxBF." + ::= { hwWlanStationEntry 63 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.64 + hwWlanStaMUMIMOCapable OBJECT-TYPE + SYNTAX INTEGER + { + nonsupport(1), + support(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the capability of MUMIMO." + ::= { hwWlanStationEntry 64 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.65 + hwWlanStaWpaStartTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the wpa start time of the station." + ::= { hwWlanStationEntry 65 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.2.1.66 + hwWlanStaWpaSuccessTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the wpa success time of the station." + ::= { hwWlanStationEntry 66 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.3 + hwWlanStationApStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStationApStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to describe the terminal access information on APs." + ::= { hwWlanStationObjects 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1 + hwWlanStationApStatEntry OBJECT-TYPE + SYNTAX HwWlanStationApStatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanApAssocStatApMac." + INDEX { hwWlanApAssocStatApMac } + ::= { hwWlanStationApStatTable 1 } + + + HwWlanStationApStatEntry ::= + SEQUENCE { + hwWlanApAssocStatApMac + MacAddress, + hwWlanTotalOnlineTime + Unsigned32, + hwWlanTotalAssociatedStationCount + Unsigned32, + hwWlanCurrAssociatedStationCount + Unsigned32, + hwWlanAssociationRequestCount + Unsigned32, + hwWlanAssociationRejectCount + Unsigned32, + hwWlanAssociationFailedCount + Unsigned32, + hwWlanReAssociationRequestCount + Unsigned32, + hwWlanReAssociationRejectCount + Unsigned32, + hwWlanReAssociationFailedCount + Unsigned32, + hwWlanDisAssocOfUserNotifiedCount + Unsigned32, + hwWlanDisAssocOfStaRoamCount + Unsigned32, + hwWlanDisAssocOfStaAgeCount + Unsigned32, + hwWlanDisAssocOfApUnableHandleCount + Unsigned32, + hwWlanDisAssocOfOtherReasonsCount + Unsigned32, + hwWlanAssocRequestCntByResource + Unsigned32, + hwWlanStaExceptionalOfflineCnt + Unsigned32, + hwWlanReAssociationSuccessCount + Unsigned32, + hwWlanBSSNotSupportAssocFailCount + Unsigned32, + hwWlanStaAccessRequestCount + Unsigned32, + hwWlanStaAccessRequestFailedCount + Unsigned32, + hwWlanStaAuthenRequestCount + Unsigned32, + hwWlanStaAuthenRequestFailedCount + Unsigned32, + hwWlanRefusedStaNumByResource + Unsigned32, + hwWlanStaAssocAndReAssocRequestCount + Unsigned32, + hwWlanStaAuthenRequestSuccessCount + Unsigned32, + hwWlanStationApStatApId + Unsigned32, + hwWlanStaGetIPFailedCount + Unsigned32, + hwWlanStaGetIPSuccessCount + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.1 + hwWlanApAssocStatApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanStationApStatEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.2 + hwWlanTotalOnlineTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total accumulated online time of the STAs that have ever associated with the AP, in seconds." + ::= { hwWlanStationApStatEntry 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.3 + hwWlanTotalAssociatedStationCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs that have ever associated with the AP." + ::= { hwWlanStationApStatEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.4 + hwWlanCurrAssociatedStationCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STAs that are being associated with the AP." + ::= { hwWlanStationApStatEntry 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.5 + hwWlanAssociationRequestCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of association requirements received by the AP." + ::= { hwWlanStationApStatEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.6 + hwWlanAssociationRejectCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of association requirements rejected by the AP." + ::= { hwWlanStationApStatEntry 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.7 + hwWlanAssociationFailedCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of association failures on the AP, excluding rejected association requirements." + ::= { hwWlanStationApStatEntry 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.8 + hwWlanReAssociationRequestCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of re-association requirements received by the AP." + ::= { hwWlanStationApStatEntry 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.9 + hwWlanReAssociationRejectCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of re-association requirements rejected by the AP." + ::= { hwWlanStationApStatEntry 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.10 + hwWlanReAssociationFailedCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of re-association failures on the AP, excluding rejected re-association requirements." + ::= { hwWlanStationApStatEntry 10 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.11 + hwWlanDisAssocOfUserNotifiedCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of associations removed because a STA goes offline." + ::= { hwWlanStationApStatEntry 11 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.12 + hwWlanDisAssocOfStaRoamCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of associations removed because a STA roams to another AP." + ::= { hwWlanStationApStatEntry 12 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.13 + hwWlanDisAssocOfStaAgeCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of associations removed because a STA goes offline unexpectedly." + ::= { hwWlanStationApStatEntry 13 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.14 + hwWlanDisAssocOfApUnableHandleCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of associations removed due to insufficient AP capability." + ::= { hwWlanStationApStatEntry 14 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.15 + hwWlanDisAssocOfOtherReasonsCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of associations removed due to other reasons." + ::= { hwWlanStationApStatEntry 15 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.16 + hwWlanAssocRequestCntByResource OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of STA association requests rejected by the AP because of insufficient resources." + ::= { hwWlanStationApStatEntry 16 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.17 + hwWlanStaExceptionalOfflineCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times STAs are forced offline." + ::= { hwWlanStationApStatEntry 17 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.18 + hwWlanReAssociationSuccessCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of successful re-association attempts." + ::= { hwWlanStationApStatEntry 18 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.19 + hwWlanBSSNotSupportAssocFailCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of association requests rejected because the rate of STA does not meet the basic rate requirement." + ::= { hwWlanStationApStatEntry 19 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.20 + hwWlanStaAccessRequestCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of access attempts." + ::= { hwWlanStationApStatEntry 20 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.21 + hwWlanStaAccessRequestFailedCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of access failures." + ::= { hwWlanStationApStatEntry 21 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.22 + hwWlanStaAuthenRequestCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of authentication attempts." + ::= { hwWlanStationApStatEntry 22 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.23 + hwWlanStaAuthenRequestFailedCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of authentication failures." + ::= { hwWlanStationApStatEntry 23 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.24 + hwWlanRefusedStaNumByResource OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of rejected STA requests." + ::= { hwWlanStationApStatEntry 24 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.25 + hwWlanStaAssocAndReAssocRequestCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the total number of association and re-association requirements received by the AP." + ::= { hwWlanStationApStatEntry 25 } + + --1.3.6.1.4.1.2011.6.139.18.1.3.1.26 + hwWlanStaAuthenRequestSuccessCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of successful authentication requirements." + ::= { hwWlanStationApStatEntry 26 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.3.1.27 + hwWlanStationApStatApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanStationApStatEntry 27 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.3.1.28 + hwWlanStaGetIPFailedCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times STAs get IP failed." + ::= { hwWlanStationApStatEntry 28 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.3.1.29 + hwWlanStaGetIPSuccessCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of times STAs get IP successfully." + ::= { hwWlanStationApStatEntry 29 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.4 + hwWlanStaOnlineFailInfo OBJECT IDENTIFIER ::= { hwWlanStationObjects 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1 + hwWlanStaOnlineFailTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaOnlineFailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to describe information about failures of terminals to get online." + ::= { hwWlanStaOnlineFailInfo 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1 + hwWlanStaOnlineFailEntry OBJECT-TYPE + SYNTAX HwWlanStaOnlineFailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwStaOnlineFailMacAddress and hwStaOnlineFailReasonIndex." + INDEX { hwWlanStaOnlineFailMacAddress, hwWlanStaOnlineFailReasonIndex } + ::= { hwWlanStaOnlineFailTable 1 } + + + HwWlanStaOnlineFailEntry ::= + SEQUENCE { + hwWlanStaOnlineFailMacAddress + MacAddress, + hwWlanStaOnlineFailReasonIndex + Unsigned32, + hwWlanStaOnlineFailApMac + MacAddress, + hwWlanStaOnlineFailApName + OCTET STRING, + hwWlanStaOnlineFailRadioId + Unsigned32, + hwWlanStaOnlineFailWlanId + Unsigned32, + hwWlanStaOnlineFailLastFailTime + OCTET STRING, + hwWlanStaOnlineFailReason + OCTET STRING, + hwWlanStaOnlineFailSsid + OCTET STRING, + hwWlanStaOnlineFailRowStatus + RowStatus, + hwWlanStaOnlineFailApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.1 + hwWlanStaOnlineFailMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the user MAC address." + ::= { hwWlanStaOnlineFailEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.2 + hwWlanStaOnlineFailReasonIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the reason ID." + ::= { hwWlanStaOnlineFailEntry 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.3 + hwWlanStaOnlineFailApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanStaOnlineFailEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.4 + hwWlanStaOnlineFailApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanStaOnlineFailEntry 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.5 + hwWlanStaOnlineFailRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanStaOnlineFailEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.6 + hwWlanStaOnlineFailWlanId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the WLAN ID." + ::= { hwWlanStaOnlineFailEntry 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.7 + hwWlanStaOnlineFailLastFailTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the last time when a user failed to go online." + ::= { hwWlanStaOnlineFailEntry 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.8 + hwWlanStaOnlineFailReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the failure reason." + ::= { hwWlanStaOnlineFailEntry 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.9 + hwWlanStaOnlineFailSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID." + ::= { hwWlanStaOnlineFailEntry 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.4.1.1.10 + hwWlanStaOnlineFailRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanStaOnlineFailEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.4.1.1.11 + hwWlanStaOnlineFailApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanStaOnlineFailEntry 11 } + + --1.3.6.1.4.1.2011.6.139.18.1.5 + hwWlanStaOfflineInfo OBJECT IDENTIFIER ::= { hwWlanStationObjects 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1 + hwWlanStaOfflineTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaOfflineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to describe offline information." + ::= { hwWlanStaOfflineInfo 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1 + hwWlanStaOfflineEntry OBJECT-TYPE + SYNTAX HwWlanStaOfflineEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanStaOfflineMacAddress and hwWlanStaOfflineReasonIndex." + INDEX { hwWlanStaOfflineMacAddress, hwWlanStaOfflineReasonIndex } + ::= { hwWlanStaOfflineTable 1 } + + + HwWlanStaOfflineEntry ::= + SEQUENCE { + hwWlanStaOfflineMacAddress + MacAddress, + hwWlanStaOfflineReasonIndex + Unsigned32, + hwWlanStaOfflineApMac + MacAddress, + hwWlanStaOfflineApName + OCTET STRING, + hwWlanStaOfflineRadioId + Unsigned32, + hwWlanStaOfflineWlanId + Unsigned32, + hwWlanStaOfflineLastFailTime + OCTET STRING, + hwWlanStaOfflineReason + OCTET STRING, + hwWlanStaOfflineSsid + OCTET STRING, + hwWlanStaOfflineFailRowStatus + RowStatus, + hwWlanStaOfflineApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.1 + hwWlanStaOfflineMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the user MAC address." + ::= { hwWlanStaOfflineEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.2 + hwWlanStaOfflineReasonIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the reason ID." + ::= { hwWlanStaOfflineEntry 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.3 + hwWlanStaOfflineApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanStaOfflineEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.4 + hwWlanStaOfflineApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanStaOfflineEntry 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.5 + hwWlanStaOfflineRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio ID." + ::= { hwWlanStaOfflineEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.6 + hwWlanStaOfflineWlanId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the WLAN ID." + ::= { hwWlanStaOfflineEntry 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.7 + hwWlanStaOfflineLastFailTime OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the last time when a user went offline." + ::= { hwWlanStaOfflineEntry 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.8 + hwWlanStaOfflineReason OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the failure reason." + ::= { hwWlanStaOfflineEntry 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.9 + hwWlanStaOfflineSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID." + ::= { hwWlanStaOfflineEntry 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.5.1.1.10 + hwWlanStaOfflineFailRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates the row status." + ::= { hwWlanStaOfflineEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.5.1.1.11 + hwWlanStaOfflineApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanStaOfflineEntry 11 } + + + --1.3.6.1.4.1.2011.6.139.18.1.6 + hwWlanStaRoamInfo OBJECT IDENTIFIER ::= { hwWlanStationObjects 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1 + hwWlanStaRoamTraceTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaRoamTraceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes the roaming track of a STA." + ::= { hwWlanStaRoamInfo 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1 + hwWlanStaRoamTraceEntry OBJECT-TYPE + SYNTAX HwWlanStaRoamTraceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanStaRoamTraceStaMac and hwWlanStaRoamTraceIndex." + INDEX { hwWlanStaRoamTraceStaMac, hwWlanStaRoamTraceIndex } + ::= { hwWlanStaRoamTraceTable 1 } + + + HwWlanStaRoamTraceEntry ::= + SEQUENCE { + hwWlanStaRoamTraceStaMac + MacAddress, + hwWlanStaRoamTraceIndex + Integer32, + hwWlanStaRoamTraceTime + Unsigned32, + hwWlanStaRoamTraceAcIP + IpAddress, + hwWlanStaRoamTraceAcIPv6 + OCTET STRING, + hwWlanStaRoamTraceApName + OCTET STRING, + hwWlanStaRoamTraceRadioId + Integer32, + hwWlanStaRoamTraceBssid + MacAddress, + hwWlanStaRoamTraceInRate + Integer32, + hwWlanStaRoamTraceOutRate + Integer32, + hwWlanStaRoamTraceInRssi + Integer32, + hwWlanStaRoamTraceOutRssi + Integer32, + hwWlanStaRoamTraceRoamType + INTEGER, + hwWlanStaRoamTraceApId + Unsigned32, + hwWlanStaRoamTraceInfo + INTEGER + } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.1 + hwWlanStaRoamTraceStaMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the STA's MAC address." + ::= { hwWlanStaRoamTraceEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.2 + hwWlanStaRoamTraceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal ID." + ::= { hwWlanStaRoamTraceEntry 2 } + + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.3 + hwWlanStaRoamTraceTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the roaming time." + ::= { hwWlanStaRoamTraceEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.4 + hwWlanStaRoamTraceAcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address of the AC with which the STA associates." + ::= { hwWlanStaRoamTraceEntry 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.5 + hwWlanStaRoamTraceAcIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IPv6 address of the AC with which the STA associates." + ::= { hwWlanStaRoamTraceEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.6 + hwWlanStaRoamTraceApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the AP with which the STA associates." + ::= { hwWlanStaRoamTraceEntry 6 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.7 + hwWlanStaRoamTraceRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the ID of the radio which which the STA associates." + ::= { hwWlanStaRoamTraceEntry 7 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.8 + hwWlanStaRoamTraceBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSSID of the STA." + ::= { hwWlanStaRoamTraceEntry 8 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.9 + hwWlanStaRoamTraceInRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates roam-in rate." + ::= { hwWlanStaRoamTraceEntry 9 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.10 + hwWlanStaRoamTraceOutRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates roam-out rate." + ::= { hwWlanStaRoamTraceEntry 10 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.11 + hwWlanStaRoamTraceInRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the roam-in RSSI." + ::= { hwWlanStaRoamTraceEntry 11 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.12 + hwWlanStaRoamTraceOutRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates roam-out RSSI." + ::= { hwWlanStaRoamTraceEntry 12 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.1.1.13 + hwWlanStaRoamTraceRoamType OBJECT-TYPE + SYNTAX INTEGER + { + l2(1), + l3(2), + none(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the roaming type. 1: Layer 2 roaming 2: Layer 3 Roaming 3: Not roaming." + ::= { hwWlanStaRoamTraceEntry 13 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.6.1.1.14 + hwWlanStaRoamTraceApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanStaRoamTraceEntry 14 } + + + -- 1.3.6.1.4.1.2011.6.139.18.1.6.1.1.15 + hwWlanStaRoamTraceInfo OBJECT-TYPE + SYNTAX INTEGER + { + normal(0), + zeroRoam(1), + pmkCacheRoam(2), + ftRoam(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the roam type information." + ::= { hwWlanStaRoamTraceEntry 15 } + --1.3.6.1.4.1.2011.6.139.18.1.6.2 + hwWlanStaAcL3RoamStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaAcL3RoamStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes statistics on Layer 3 roaming STAs based on ACs." + ::= { hwWlanStaRoamInfo 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1 + hwWlanStaAcL3RoamStatisticsEntry OBJECT-TYPE + SYNTAX HwWlanStaAcL3RoamStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanStaAcL3RoamStatisticAcIndex." + INDEX { hwWlanStaAcL3RoamStatisticAcIndex } + ::= { hwWlanStaAcL3RoamStatisticsTable 1 } + + + HwWlanStaAcL3RoamStatisticsEntry ::= + SEQUENCE { + hwWlanStaAcL3RoamStatisticAcIndex + Integer32, + hwWlanStaAcL3RoamStatisticAcIP + IpAddress, + hwWlanStaAcL3RoamStatisticAcIPv6 + OCTET STRING, + hwWlanStaAcL3RoamStatisticRoamInCnt + Unsigned32, + hwWlanStaAcL3RoamStatisticRoamOutCnt + Unsigned32, + hwWlanStaAcL3RoamStatisticAcDescription + OCTET STRING + } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1.1 + hwWlanStaAcL3RoamStatisticAcIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the peer AC ID." + ::= { hwWlanStaAcL3RoamStatisticsEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1.2 + hwWlanStaAcL3RoamStatisticAcIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the peer AC IP address." + ::= { hwWlanStaAcL3RoamStatisticsEntry 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1.3 + hwWlanStaAcL3RoamStatisticAcIPv6 OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the peer AC IPv6 address." + ::= { hwWlanStaAcL3RoamStatisticsEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1.4 + hwWlanStaAcL3RoamStatisticRoamInCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of users who roam from peer AC to local AC." + ::= { hwWlanStaAcL3RoamStatisticsEntry 4 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1.5 + hwWlanStaAcL3RoamStatisticRoamOutCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of users who roam from local AC to peer AC." + ::= { hwWlanStaAcL3RoamStatisticsEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.2.1.6 + hwWlanStaAcL3RoamStatisticAcDescription OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AC description." + ::= { hwWlanStaAcL3RoamStatisticsEntry 6 } + + + --1.3.6.1.4.1.2011.6.139.18.1.6.3 + hwWlanStaApL3RoamStatisticsTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanStaApL3RoamStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes statistics on Layer 3 roaming STAs based on APs." + ::= { hwWlanStaRoamInfo 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.3.1 + hwWlanStaApL3RoamStatisticsEntry OBJECT-TYPE + SYNTAX HwWlanStaApL3RoamStatisticsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanStaApL3RoamStatisticApMac." + INDEX { hwWlanStaApL3RoamStatisticApMac } + ::= { hwWlanStaApL3RoamStatisticsTable 1 } + + + HwWlanStaApL3RoamStatisticsEntry ::= + SEQUENCE { + hwWlanStaApL3RoamStatisticApMac + MacAddress, + hwWlanStaApL3RoamStatisticApName + OCTET STRING, + hwWlanStaApL3RoamStatisticRoamInCnt + Unsigned32, + hwWlanStaApL3RoamStatisticRoamOutCnt + Unsigned32, + hwWlanStaApL3RoamStatisticApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.18.1.6.3.1.1 + hwWlanStaApL3RoamStatisticApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanStaApL3RoamStatisticsEntry 1 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.3.1.2 + hwWlanStaApL3RoamStatisticApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanStaApL3RoamStatisticsEntry 2 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.3.1.3 + hwWlanStaApL3RoamStatisticRoamInCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of roam-in users." + ::= { hwWlanStaApL3RoamStatisticsEntry 3 } + + --1.3.6.1.4.1.2011.6.139.18.1.6.3.1.4 + hwWlanStaApL3RoamStatisticRoamOutCnt OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of roam-out users." + ::= { hwWlanStaApL3RoamStatisticsEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.18.1.6.3.1.5 + hwWlanStaApL3RoamStatisticApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanStaApL3RoamStatisticsEntry 5 } + + --1.3.6.1.4.1.2011.6.139.18.2 + hwWlanStationConformance OBJECT IDENTIFIER ::= { hwWlanStation 2 } + + --1.3.6.1.4.1.2011.6.139.18.2.1 + hwWlanStationCompliances OBJECT IDENTIFIER ::= { hwWlanStationConformance 1 } + + --1.3.6.1.4.1.2011.6.139.18.2.1.1 + hwWlanStationCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanStationGroup, hwWlanApAssocStatGroup, hwWlanStaOnlineFailInfoGroup, hwWlanStaOfflineInfoGroup, hwWlanStaRoamInfoGroup } + ::= { hwWlanStationCompliances 1 } + + --1.3.6.1.4.1.2011.6.139.18.2.2 + hwWlanStationObjectGroups OBJECT IDENTIFIER ::= { hwWlanStationConformance 2 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.1 + hwWlanStaTrapsGroup NOTIFICATION-GROUP + NOTIFICATIONS { hwWlanStaAuthErrorTrap, hwWlanStaAssoFailTrap, hwWlanUserInvalidCerficationTrap, hwWlanStaRepititiveAttackTrap, hwWlanStaTamperAttackTrap, + hwWlanStaLowLevelSecAttackTrap, hwWlanStaAddressRedirectionAttackTrap, hwWlanStaWepIdConflictTrap, hwStationOnlineTrap, hwStationOfflineTrap, + hwStationSignalStrengthLowThanThresholdTrap } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 1 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.2 + hwWlanStaTrapsObjectGroup OBJECT-GROUP + OBJECTS { hwWlanStaAuthenticationMode,hwWlanStaTrapOccurTime,hwWlanStaFailCodeType,hwWlanSignalStrengthThreshold,hwWlanWepIDConflictTrapRadioId, + hwWlanWepIDConflictTrapAPMAC,hwWlanStaAuthenticationFailCause,hwWlanWepIDConflictTrapPreSSID,hwWlanWlanVapAuthEncryptMode,hwWlanWlanStaAuthEncryptMode, + hwWlanWepIDConflictTrapCurrSSID,hwWlanStaAuthenticationFailCauseStr,hwWlanWepIDConflictTrapCipherIdx,hwWlanWepIDConflictTrapAPName,hwWlanStaAssociationFailCauseStr, + hwWlanStaAssociationFailCause,hwWlanStaAssocBssid } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 2 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.3 + hwWlanStationGroup OBJECT-GROUP + OBJECTS { hwWlanStaMac, hwWlanStaUsername, hwWlanStaApMac, hwWlanStaApName, hwWlanStaApGroup, + hwWlanStaRadioId, hwWlanStaAssocBand, hwWlanStaSupportBand, hwWlanStaAccessChannel, hwWlanStaRfMode, + hwWlanStaHtMode, hwWlanStaMcsVal, hwWlanStaShortGIStatus, hwWlanStaConnectRxRate, hwWlanStaConnectTxRate, + hwWlanStaEssName, hwWlanStaBSSID, hwWlanStaSsid, hwWlanStaStatus, hwWlanStaAuthenMethod, + hwWlanStaEncryptMethod, hwWlanStaQosMode, hwWlanStaRoamStatus, hwWlanStaVlan, hwWlanStaIP, + hwWlanStaIPv6, hwWlanStaGateway, hwWlanStaAssocTime, hwWlanStaAccessTime, hwWlanStaOnlineTime, + hwWlanStaAccessOnlineTime, hwWlanStaStatOperMode, hwWlanStaWirelessStatRxFrames, hwWlanStaWirelessRxBytes, hwWlanStaWirelessRxRate, + hwWlanStaWirelessStatTxFrames, hwWlanStaWirelessTxBytes, hwWlanStaWirelessTxRate, hwWlanStaPeriodSendDropFrames, hwWlanStaPeriodReSendFrames, + hwWlanStaPeriodReSendBytes, hwWlanStaRssi, hwWlanStaNoise, hwWlanStaSnrUs, hwWlanStaRxPowerUs, + hwWlanStaChannelUtilRate, hwWlanStaChannelBusyRate, hwWlanStaChannelTxRatio, hwWlanStaChannelRxRatio, hwWlanStaChannelFreeRate, + hwWlanStaChannelInterfRate, hwWlanStaPeriodSendFrames, hwWlanStaApId, + hwWlanStationUapsdCapacity, hwWlanStationPowerSavePercent, hwWlanStaAssocStartTime, hwWlanStaAuthStartTime, hwWlanStaDhcpStartTime, hwWlanStaVHTCapable, hwWlanStaVHTTxBFCapable, hwWlanStaMUMIMOCapable, hwWlanStaWpaStartTime, hwWlanStaWpaSuccessTime} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 3 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.4 + hwWlanApAssocStatGroup OBJECT-GROUP + OBJECTS { hwWlanTotalOnlineTime, hwWlanTotalAssociatedStationCount, hwWlanCurrAssociatedStationCount, hwWlanAssociationRequestCount, + hwWlanAssociationRejectCount, hwWlanAssociationFailedCount, hwWlanReAssociationRequestCount, hwWlanReAssociationRejectCount, hwWlanReAssociationFailedCount, + hwWlanDisAssocOfUserNotifiedCount, hwWlanDisAssocOfStaRoamCount, hwWlanDisAssocOfStaAgeCount, hwWlanDisAssocOfApUnableHandleCount, hwWlanDisAssocOfOtherReasonsCount, + hwWlanAssocRequestCntByResource, hwWlanStaExceptionalOfflineCnt, hwWlanReAssociationSuccessCount, hwWlanBSSNotSupportAssocFailCount, hwWlanStaAccessRequestCount, + hwWlanStaAccessRequestFailedCount, hwWlanStaAuthenRequestCount, hwWlanStaAuthenRequestFailedCount, hwWlanRefusedStaNumByResource, hwWlanStaAssocAndReAssocRequestCount, + hwWlanStaAuthenRequestSuccessCount, hwWlanStationApStatApId, hwWlanStaGetIPFailedCount, hwWlanStaGetIPSuccessCount} + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 4 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.5 + hwWlanStaOnlineFailInfoGroup OBJECT-GROUP + OBJECTS { hwWlanStaOnlineFailApMac, hwWlanStaOnlineFailApName, hwWlanStaOnlineFailRadioId, + hwWlanStaOnlineFailWlanId, hwWlanStaOnlineFailLastFailTime, hwWlanStaOnlineFailReason, hwWlanStaOnlineFailSsid, hwWlanStaOnlineFailRowStatus, hwWlanStaOnlineFailApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 5 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.6 + hwWlanStaOfflineInfoGroup OBJECT-GROUP + OBJECTS { hwWlanStaOfflineApMac, hwWlanStaOfflineApName, hwWlanStaOfflineRadioId, + hwWlanStaOfflineWlanId, hwWlanStaOfflineLastFailTime, hwWlanStaOfflineReason, hwWlanStaOfflineSsid, hwWlanStaOfflineFailRowStatus, hwWlanStaOfflineApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 6 } + + --1.3.6.1.4.1.2011.6.139.18.2.2.7 + hwWlanStaRoamInfoGroup OBJECT-GROUP + OBJECTS { hwWlanStaRoamTraceTime, hwWlanStaRoamTraceAcIP, + hwWlanStaRoamTraceAcIPv6, hwWlanStaRoamTraceApName, hwWlanStaRoamTraceRadioId, hwWlanStaRoamTraceBssid, + hwWlanStaRoamTraceInRate, hwWlanStaRoamTraceOutRate, hwWlanStaRoamTraceInRssi, hwWlanStaRoamTraceOutRssi, hwWlanStaRoamTraceRoamType, + hwWlanStaRoamTraceApId, hwWlanStaRoamTraceInfo,hwWlanStaAcL3RoamStatisticAcIP, hwWlanStaAcL3RoamStatisticAcIPv6, hwWlanStaAcL3RoamStatisticRoamInCnt, hwWlanStaAcL3RoamStatisticRoamOutCnt, + hwWlanStaApL3RoamStatisticApName, hwWlanStaApL3RoamStatisticRoamInCnt, hwWlanStaApL3RoamStatisticRoamOutCnt, hwWlanStaApL3RoamStatisticApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanStationObjectGroups 7 } + + + END +-- +-- HUAWEI-WLAN-STATION-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-VAP-MIB b/mibs/huawei/HUAWEI-WLAN-VAP-MIB new file mode 100644 index 0000000000..e2c629c840 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-VAP-MIB @@ -0,0 +1,1066 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for VAP. +-- Reference: +-- Version: V1.10 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-VAP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.17 + hwWlanVap MODULE-IDENTITY + LAST-UPDATED "201607071030Z" -- July 7, 2016 at 10:30 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "The MIB module defines the VAP operation." + REVISION "201607071030Z" -- July 7, 2016 at 10:30 GMT + DESCRIPTION + " + V1.10, Add the table of hwWlanVapIGMPSnoopingCacInfoTable, hwVapIGMPSnoopingBandwidthExceedTrap and hwVapIGMPSnoopingUserExceedTrap. + " + REVISION "201602162030Z" -- Feb 16, 2016 at 20:30 GMT + DESCRIPTION + " + V1.09, Add the table of hwWlanMacRfSsidStatisticTable. + " + REVISION "201602162030Z" -- Feb 16, 2016 at 20:30 GMT + DESCRIPTION + " + V1.08, Add the table of hwWlanRfSsidStatisticTable. + " + REVISION "201512182030Z" -- Nov 18, 2015 at 20:30 GMT + DESCRIPTION + " + V1.07, Add the node of hwWlanVapTrapInfo. + " + REVISION "201511052030Z" -- Oct 5, 2015 at 20:30 GMT + DESCRIPTION + " + V1.06, Add Value list in the hwWlanVapAuthType. + " + REVISION "201508261530Z" -- Aug 26, 2015 at 15:30 GMT + DESCRIPTION + " + V1.05, Add the node of hwWlanVapApId in the hwWlanVapInfoTable. + " + REVISION "201505131530Z" -- May 13, 2015 at 15:30 GMT + DESCRIPTION + " + V1.04, Add three mib nodes: hwWlanSsidPeriodRecvFrames, hwWlanSsidSendRate, hwWlanSsidRecvRate. + " + REVISION "201505111510Z" -- May 11, 2015 at 15:10 GMT + DESCRIPTION + " + V1.03, Add the description of mib nodes. + " + REVISION "201504131510Z" -- April 13, 2015 at 15:10 GMT + DESCRIPTION + " + V1.02, Modify the name of the node of hwWlanVapInfoEntry. + " + REVISION "201502021452Z" -- February 2, 2015 at 14:52 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 17 } + +-- +--Node definitions +-- + + --1.3.6.1.4.1.2011.6.139.17.1 + hwWlanVapObjects OBJECT IDENTIFIER ::= { hwWlanVap 1 } + + --1.3.6.1.4.1.2011.6.139.17.1.1 + hwWlanVapInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanVapInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query VAP information." + ::= { hwWlanVapObjects 1 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1 + hwWlanVapInfoEntry OBJECT-TYPE + SYNTAX HwWlanVapInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanVapApMac, hwWlanVapRadioIndex, and hwWlanVapWlanId." + INDEX { hwWlanVapApMac, hwWlanVapRadioIndex, hwWlanVapWlanId } + ::= { hwWlanVapInfoTable 1 } + + + HwWlanVapInfoEntry ::= + SEQUENCE { + hwWlanVapApMac + MacAddress, + hwWlanVapRadioIndex + Integer32, + hwWlanVapWlanId + Integer32, + hwWlanVapProfileName + OCTET STRING, + hwWlanVapBssid + MacAddress, + hwWlanVapSSID + OCTET STRING, + hwWlanVapApName + OCTET STRING, + hwWlanVapAuthType + INTEGER, + hwWlanVapStaOnlineCnt + Integer32, + hwWlanVapStatus + INTEGER, + hwWlanVapApId + Unsigned32 + } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.1 + hwWlanVapApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP." + ::= { hwWlanVapInfoEntry 1 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.2 + hwWlanVapRadioIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the radio index." + ::= { hwWlanVapInfoEntry 2 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.3 + hwWlanVapWlanId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object indicates the WLAN ID." + ::= { hwWlanVapInfoEntry 3 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.4 + hwWlanVapProfileName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the ESS name." + ::= { hwWlanVapInfoEntry 4 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.5 + hwWlanVapBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSSID, that is, the physical address of the VAP on an 802.11 network." + ::= { hwWlanVapInfoEntry 5 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.6 + hwWlanVapSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the current SSID of the AP." + ::= { hwWlanVapInfoEntry 6 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.7 + hwWlanVapApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanVapInfoEntry 7 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.8 + hwWlanVapAuthType OBJECT-TYPE + SYNTAX INTEGER + { + wepOpenSystem(1), + wepOpenSystemMac(2), + wepOpenSystem8021X(3), + wepOpenSystemPortal(4), + wepShareKey(5), + wepShareKeyMac(6), + wepShareKey8021X(7), + wepShareKeyPortal(8), + wpa8021X(9), + wpaPreShareKey(10), + wpaPskMac(11), + wpaPskPortal(12), + wpa2Dot1x(13), + wpa2PreShareKey(14), + wpa2PskMac(15), + wpa2PskPortal(16), + wapiCertification(17), + wapiPreShareKey(18), + wpaWpa2PreShareKey(19), + wpaWpa2PskMac(20), + wpaWpa2PskPortal(21), + wpaWpa2Dot1x(22), + wapiPskPortal(23) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the user authentication method." + ::= { hwWlanVapInfoEntry 8 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.9 + hwWlanVapStaOnlineCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of online users." + ::= { hwWlanVapInfoEntry 9 } + + --1.3.6.1.4.1.2011.6.139.17.1.1.1.10 + hwWlanVapStatus OBJECT-TYPE + SYNTAX INTEGER + { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the VAP state." + ::= { hwWlanVapInfoEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.1.1.11 + hwWlanVapApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanVapInfoEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.2 + hwWlanSsidStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanSsidStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query SSID-based air interface statistics." + ::= { hwWlanVapObjects 2 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1 + hwWlanSsidStatisticEntry OBJECT-TYPE + SYNTAX HwWlanSsidStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanSsid." + INDEX { hwWlanSsid } + ::= { hwWlanSsidStatisticTable 1 } + + + HwWlanSsidStatisticEntry ::= + SEQUENCE { + hwWlanSsid + OCTET STRING, + hwWlanSsid2gStaCnt + Integer32, + hwWlanSsid5gStaCnt + Integer32, + hwWlanSsidApCnt + Integer32, + hwWlanSsidRecvBytes + Counter64, + hwWlanSsidPeriodRecvErrorFrames + Counter64, + hwWlanSsidRecvFrames + Counter64, + hwWlanSsidPeriodRecvDropFrames + Counter64, + hwWlanSsidSendBytes + Counter64, + hwWlanSsidSendFrames + Counter64, + hwWlanSsidPeriodSendDropFrames + Counter64, + hwWlanSsidPeriodReSendFrames + Counter64, + hwWlanSsidPeriodSendFrames + Counter64, + hwWlanSsidPeriodRecvFrames + Counter64, + hwWlanSsidSendRate + Counter64, + hwWlanSsidRecvRate + Counter64 + } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.1 + hwWlanSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the table index." + ::= { hwWlanSsidStatisticEntry 1 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.2 + hwWlanSsid2gStaCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of users at 2.4G frequency band." + ::= { hwWlanSsidStatisticEntry 2 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.3 + hwWlanSsid5gStaCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of users at 5G frequency band." + ::= { hwWlanSsidStatisticEntry 3 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.4 + hwWlanSsidApCnt OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of APs." + ::= { hwWlanSsidStatisticEntry 4 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.5 + hwWlanSsidRecvBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of bytes received at the wireless side." + ::= { hwWlanSsidStatisticEntry 5 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.6 + hwWlanSsidPeriodRecvErrorFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of error frames received at the wireless side within the echo interval." + ::= { hwWlanSsidStatisticEntry 6 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.7 + hwWlanSsidRecvFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of frames received at the wireless side." + ::= { hwWlanSsidStatisticEntry 7 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.8 + hwWlanSsidPeriodRecvDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of frames failed to be received at the wireless side within the echo interval." + ::= { hwWlanSsidStatisticEntry 8 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.9 + hwWlanSsidSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of bytes in packets sent at the wireless side." + ::= { hwWlanSsidStatisticEntry 9 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.10 + hwWlanSsidSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of frames sent at the wireless side." + ::= { hwWlanSsidStatisticEntry 10 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.11 + hwWlanSsidPeriodSendDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of frames failed to be sent at the wireless side within the echo interval." + ::= { hwWlanSsidStatisticEntry 11 } + + --1.3.6.1.4.1.2011.6.139.17.1.2.1.12 + hwWlanSsidPeriodReSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of downstream frames retransmitted at the wireless side within the echo interval." + ::= { hwWlanSsidStatisticEntry 12 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.2.1.13 + hwWlanSsidPeriodSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of frames sent at the wireless side within the echo interval." + ::= { hwWlanSsidStatisticEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.2.1.14 + hwWlanSsidPeriodRecvFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the number of frames received at the wireless side within the echo interval." + ::= { hwWlanSsidStatisticEntry 14 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.2.1.15 + hwWlanSsidSendRate OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate of bits in packets sent at the wireless side." + ::= { hwWlanSsidStatisticEntry 15 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.2.1.16 + hwWlanSsidRecvRate OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the rate of bits in packets received at the wireless side." + ::= { hwWlanSsidStatisticEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3 + hwWlanRfSsidStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanRfSsidStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapObjects 3 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1 + hwWlanRfSsidStatisticEntry OBJECT-TYPE + SYNTAX HwWlanRfSsidStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanRfSsidStatisticApId, hwWlanRfSsidStatisticRadioId, hwWlanRfSsidStatisticEssSsid } + ::= { hwWlanRfSsidStatisticTable 1 } + + + HwWlanRfSsidStatisticEntry ::= + SEQUENCE { + hwWlanRfSsidStatisticApId + Integer32, + hwWlanRfSsidStatisticRadioId + Integer32, + hwWlanRfSsidStatisticEssSsid + OCTET STRING, + hwWlanRfSsidCurrentStaNum + Unsigned32, + hwWlanRfSsidRecvBytes + Counter64, + hwWlanRfSsidRecvFrames + Counter64, + hwWlanRfSsidSendBytes + Counter64, + hwWlanRfSsidSendFrames + Counter64, + hwWlanRfSsidSendDropFrames + Counter64, + hwWlanRfSsidReSendFrames + Counter64, + hwWlanRfSsidPeriodSendFrames + Integer32, + hwWlanRfSsidPeriodSendDropFrames + Integer32, + hwWlanRfSsidPeriodReSendFrames + Integer32 + } + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.1 + hwWlanRfSsidStatisticApId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.2 + hwWlanRfSsidStatisticRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.3 + hwWlanRfSsidStatisticEssSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.4 + hwWlanRfSsidCurrentStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.5 + hwWlanRfSsidRecvBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.6 + hwWlanRfSsidRecvFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.7 + hwWlanRfSsidSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.8 + hwWlanRfSsidSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.9 + hwWlanRfSsidSendDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.10 + hwWlanRfSsidReSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.11 + hwWlanRfSsidPeriodSendFrames OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.12 + hwWlanRfSsidPeriodSendDropFrames OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.3.1.13 + hwWlanRfSsidPeriodReSendFrames OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanRfSsidStatisticEntry 13 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4 + hwWlanMacRfSsidStatisticTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanMacRfSsidStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapObjects 4 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1 + hwWlanMacRfSsidStatisticEntry OBJECT-TYPE + SYNTAX HwWlanMacRfSsidStatisticEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + INDEX { hwWlanMacRfSsidStatisticApMac, hwWlanMacRfSsidStatisticRadioId, hwWlanMacRfSsidStatisticEssSsid } + ::= { hwWlanMacRfSsidStatisticTable 1 } + + + HwWlanMacRfSsidStatisticEntry ::= + SEQUENCE { + hwWlanMacRfSsidStatisticApMac + MacAddress, + hwWlanMacRfSsidStatisticRadioId + Integer32, + hwWlanMacRfSsidStatisticEssSsid + OCTET STRING, + hwWlanMacRfSsidCurrentStaNum + Unsigned32, + hwWlanMacRfSsidRecvBytes + Counter64, + hwWlanMacRfSsidRecvFrames + Counter64, + hwWlanMacRfSsidSendBytes + Counter64, + hwWlanMacRfSsidSendFrames + Counter64, + hwWlanMacRfSsidSendDropFrames + Counter64, + hwWlanMacRfSsidReSendFrames + Counter64, + hwWlanMacRfSsidPeriodSendFrames + Integer32, + hwWlanMacRfSsidPeriodSendDropFrames + Integer32, + hwWlanMacRfSsidPeriodReSendFrames + Integer32 + } + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.1 + hwWlanMacRfSsidStatisticApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.2 + hwWlanMacRfSsidStatisticRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.3 + hwWlanMacRfSsidStatisticEssSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.4 + hwWlanMacRfSsidCurrentStaNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.5 + hwWlanMacRfSsidRecvBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.6 + hwWlanMacRfSsidRecvFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.7 + hwWlanMacRfSsidSendBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.8 + hwWlanMacRfSsidSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.9 + hwWlanMacRfSsidSendDropFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.10 + hwWlanMacRfSsidReSendFrames OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.11 + hwWlanMacRfSsidPeriodSendFrames OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.12 + hwWlanMacRfSsidPeriodSendDropFrames OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.17.1.4.1.13 + hwWlanMacRfSsidPeriodReSendFrames OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanMacRfSsidStatisticEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5 + hwWlanVapIGMPSnoopingCacInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanVapIGMPSnoopingCacInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table is used to query VAP information." + ::= { hwWlanVapObjects 5 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1 + hwWlanVapIGMPSnoopingCacInfoEntry OBJECT-TYPE + SYNTAX HwWlanVapIGMPSnoopingCacInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanVapIGMPSnoopingCacApId, hwWlanVapIGMPSnoopingCacRadioId, and hwWlanVapIGMPSnoopingCacWlanId." + INDEX { hwWlanVapIGMPSnoopingCacApId, hwWlanVapIGMPSnoopingCacRadioId, hwWlanVapIGMPSnoopingCacWlanId } + ::= { hwWlanVapIGMPSnoopingCacInfoTable 1 } + + + HwWlanVapIGMPSnoopingCacInfoEntry ::= + SEQUENCE { + hwWlanVapIGMPSnoopingCacApId + Unsigned32, + hwWlanVapIGMPSnoopingCacRadioId + Unsigned32, + hwWlanVapIGMPSnoopingCacWlanId + Unsigned32, + hwWlanVapIGMPSnoopingCacApName + OCTET STRING, + hwWlanVapIGMPSnoopingCacCurBw + Unsigned32, + hwWlanVapIGMPSnoopingCacMaxBw + Unsigned32, + hwWlanVapIGMPSnoopingCacCurUser + Unsigned32, + hwWlanVapIGMPSnoopingCacMaxUser + Unsigned32 + } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.1 + hwWlanVapIGMPSnoopingCacApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.2 + hwWlanVapIGMPSnoopingCacRadioId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio index." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.3 + hwWlanVapIGMPSnoopingCacWlanId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the WLAN ID." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 3 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.4 + hwWlanVapIGMPSnoopingCacApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP name." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 4 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.5 + hwWlanVapIGMPSnoopingCacCurBw OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the VAP IGMP snooping current bandwidth." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 5 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.6 + hwWlanVapIGMPSnoopingCacMaxBw OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the VAP IGMP snooping max bandwidth." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 6 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.7 + hwWlanVapIGMPSnoopingCacCurUser OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the VAP IGMP snooping current user number." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 7 } + + -- 1.3.6.1.4.1.2011.6.139.17.1.5.1.8 + hwWlanVapIGMPSnoopingCacMaxUser OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the VAP IGMP snooping max user number." + ::= { hwWlanVapIGMPSnoopingCacInfoEntry 8 } + + -- 1.3.6.1.4.1.2011.6.139.17.2 + hwWlanVapTrapInfo OBJECT IDENTIFIER ::= { hwWlanVap 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.1 + hwWlanVapTrap OBJECT IDENTIFIER ::= { hwWlanVapTrapInfo 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.1.1 + hwVapNumExceedSpecTrap NOTIFICATION-TYPE + OBJECTS { hwVapMaxNum } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapTrap 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.1.2 + hwVapIGMPSnoopingBandwidthExceedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanVapApMac, hwWlanVapRadioIndex, hwWlanVapWlanId, hwWlanVapApName, hwVapMulticastCacMaxBw, + hwWlanVapApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapTrap 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.1.3 + hwVapIGMPSnoopingUserExceedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanVapApMac, hwWlanVapRadioIndex, hwWlanVapWlanId, hwWlanVapApName, hwVapMulticastCacMaxUser, + hwWlanVapApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapTrap 3 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.2 + hwWlanVapTrapObjects OBJECT IDENTIFIER ::= { hwWlanVapTrapInfo 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.2.1 + hwVapMaxNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapTrapObjects 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.2.2 + hwVapMulticastCacMaxBw OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapTrapObjects 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.2.2.3 + hwVapMulticastCacMaxUser OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapTrapObjects 3 } + + -- 1.3.6.1.4.1.2011.6.139.17.3 + hwWlanVapConformance OBJECT IDENTIFIER ::= { hwWlanVap 3 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.1 + hwWlanVapCompliances OBJECT IDENTIFIER ::= { hwWlanVapConformance 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.1.1 + hwWlanVapCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE + MANDATORY-GROUPS { hwWlanVapInfoGroup, hwWlanSsidStatisticGroup } + ::= { hwWlanVapCompliances 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.2 + hwWlanVapObjectGroups OBJECT IDENTIFIER ::= { hwWlanVapConformance 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.2.1 + hwWlanVapInfoGroup OBJECT-GROUP + OBJECTS {hwWlanVapProfileName, hwWlanVapBssid, + hwWlanVapSSID, hwWlanVapApName, hwWlanVapAuthType, hwWlanVapStaOnlineCnt, hwWlanVapStatus, hwWlanVapApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapObjectGroups 1 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.2.2 + hwWlanSsidStatisticGroup OBJECT-GROUP + OBJECTS {hwWlanSsid2gStaCnt, hwWlanSsid5gStaCnt, hwWlanSsidApCnt, hwWlanSsidRecvBytes, + hwWlanSsidPeriodRecvErrorFrames, hwWlanSsidRecvFrames, hwWlanSsidPeriodRecvDropFrames, hwWlanSsidSendBytes, hwWlanSsidSendFrames, + hwWlanSsidPeriodSendDropFrames, hwWlanSsidPeriodReSendFrames, hwWlanSsidPeriodSendFrames, hwWlanSsidPeriodRecvFrames, hwWlanSsidSendRate, hwWlanSsidRecvRate } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapObjectGroups 2 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.2.3 + hwWlanVapTrapGroup NOTIFICATION-GROUP + NOTIFICATIONS { hwVapNumExceedSpecTrap } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapObjectGroups 3 } + + -- 1.3.6.1.4.1.2011.6.139.17.3.2.4 + hwWlanVapTrapObjectsGroup OBJECT-GROUP + OBJECTS { hwVapMaxNum } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanVapObjectGroups 4 } + + + END +-- +-- HUAWEI-WLAN-VAP-MIB.mib +-- diff --git a/mibs/huawei/HUAWEI-WLAN-WIDS-SERVICE-MIB b/mibs/huawei/HUAWEI-WLAN-WIDS-SERVICE-MIB new file mode 100644 index 0000000000..50ae4fba80 --- /dev/null +++ b/mibs/huawei/HUAWEI-WLAN-WIDS-SERVICE-MIB @@ -0,0 +1,2788 @@ +-- ============================================================================ +-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved. +-- Description: The mib is used for WIDS. +-- Reference: +-- Version: V1.11 +-- ============================================================================ +-- Module definition + + HUAWEI-WLAN-WIDS-SERVICE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + hwWlan + FROM HUAWEI-WLAN-MIB + hwWlanApId + FROM HUAWEI-WLAN-AP-MIB + OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP + FROM SNMPv2-CONF + IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE, + MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + MacAddress, RowStatus, DateAndTime + FROM SNMPv2-TC; + --1.3.6.1.4.1.2011.6.139.15 + hwWlanWidsService MODULE-IDENTITY + LAST-UPDATED "201606271543Z" -- June 27, 2016 at 15:43 GMT + ORGANIZATION + "Huawei Technologies Co.,Ltd." + CONTACT-INFO + "Huawei Industrial Base + Bantian, Longgang + Shenzhen 518129 + People's Republic of China + Website: http://www.huawei.com + Email: support@huawei.com + " + DESCRIPTION + "V1.11, Add hwWlanWidsDetDevStatisticsTable." + REVISION "201606271543Z" -- June 27, 2016 at 15:43 GMT + DESCRIPTION + "V1.10, Add hwWlanWidsDynamicBlacklistLeftAgeTime, hwWlanWidsDynamicBlacklistBlockTime nodes." + REVISION "201606011030Z" -- June 1, 2016 at 10:30 GMT + DESCRIPTION + "V1.09, Add Authentication nodes." + REVISION "201601201030Z" -- Jan 20, 2016 at 10:30 GMT + DESCRIPTION + "V1.08, Modify the trap nodes." + REVISION "201510101030Z" -- Oct 10, 2015 at 10:30 GMT + DESCRIPTION + "V1.07, Add AP ID in the trap node." + REVISION "201509151030Z" -- Sept 15, 2015 at 10:30 GMT + DESCRIPTION + "V1.06,Add hwWlanWidsDetDevMonitorApId node for hwWlanWidsDetDevMonitorEntry." + REVISION "201509090950Z" -- Sept 9, 2015 at 09:50 GMT + DESCRIPTION + "V1.05,Add node for hwWlanWidsAttackStatOthersSpoofAttack." + REVISION "201508190950Z" -- August 19, 2015 at 09:50 GMT + DESCRIPTION + "The MIB module defines the WIDS operation." + REVISION "201505111624Z" -- May 11, 2015 at 16:24 GMT + DESCRIPTION + " + V1.04, Add the description of mib nodes. + " + REVISION "201504231624Z" -- April 23, 2015 at 16:24 GMT + DESCRIPTION + " + V1.03, Add node for hwWlanWidsDynamicBlacklistAPEntry. + " + REVISION "201504100952Z" -- April 10, 2015 at 09:52 GMT + DESCRIPTION + " + V1.02, Modify index nodes in OBJECT-GROUP. + " + REVISION "201504070952Z" -- April 7, 2015 at 09:52 GMT + DESCRIPTION + " + V1.01, Add node for hwWlanWidsAttackDetorEntry. + " + REVISION "201502021452Z" -- February 2, 2015 at 14:52 GMT + DESCRIPTION + " + V1.00, Inital version. + " + ::= { hwWlan 15 } + + + +-- +-- Node definitions +-- + +-- Node definitions +-- +-- 1.3.6.1.4.1.2011.6.139.15.1 + -- 1.3.6.1.4.1.2011.6.139.15.1 + hwWlanWidsTrapInfo OBJECT IDENTIFIER ::= { hwWlanWidsService 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.1.1 + hwWlanWidsTrap OBJECT IDENTIFIER ::= { hwWlanWidsTrapInfo 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.1 + hwWlanWidsRougeDevDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjRogueDevMAC, hwWlanWidsObjRogueDevType, hwWlanWidsObjRogueDevChannel, hwWlanWidsObjRogueDevRSSI, hwWlanWidsObjRogueDevSSID, + hwWlanWidsObjDetAPName, hwWlanWidsObjDetAPMAC, hwWlanWidsObjDetRadioId, hwWlanWidsObjDetAPID + } + STATUS current + DESCRIPTION + "This object indicates the rogue device alarm." + ::= { hwWlanWidsTrap 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.2 + hwWlanWidsRougeDevClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjRogueDevMAC, hwWlanWidsObjRogueDevType, hwWlanWidsObjRogueDevChannel, hwWlanWidsObjRogueDevRSSI, hwWlanWidsObjRogueDevSSID, + hwWlanWidsObjDetAPName, hwWlanWidsObjDetAPMAC, hwWlanWidsObjDetRadioId, hwWlanWidsObjDetAPID + } + STATUS current + DESCRIPTION + "This object indicates the rogue device clear alarm." + ::= { hwWlanWidsTrap 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.3 + hwWlanWidsNonWifiDetTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPMAC, hwWlanWidsObjDetAPName, hwWlanWidsObjDetRadioId, hwWlanWidsObjDetRadioType, hwWlanWidsObjNonWifiDeviceType, + hwWlanWidsObjNonWifiRssi, hwWlanWidsObjNonWifiInterChannel, hwWlanWidsObjDetAPID } + STATUS current + DESCRIPTION + "This object indicates the non-Wi-Fi device alarm." + ::= { hwWlanWidsTrap 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.4 + hwWlanWidsNonWifiClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPMAC, hwWlanWidsObjDetAPName, hwWlanWidsObjDetRadioId, hwWlanWidsObjDetRadioType, hwWlanWidsObjNonWifiDeviceType, + hwWlanWidsObjNonWifiRssi, hwWlanWidsObjNonWifiInterChannel, hwWlanWidsObjDetAPID } + STATUS current + DESCRIPTION + "This object indicates the non-Wi-Fi device clear alarm." + ::= { hwWlanWidsTrap 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.5 + hwWlanWidsFloodAttackDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPMAC, hwWlanWidsObjAttackDevMAC, hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr + } + STATUS current + DESCRIPTION + "This object indicates the flood attack alarm." + ::= { hwWlanWidsTrap 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.6 + hwWlanWidsFloodAttackClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPMAC, hwWlanWidsObjAttackDevMAC, hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr + } + STATUS current + DESCRIPTION + "This object indicates the flood attack clear alarm." + ::= { hwWlanWidsTrap 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.7 + hwWlanWidsSpoofAttackDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPMAC, hwWlanWidsObjAttackDevMAC, hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr + } + STATUS current + DESCRIPTION + "This object indicates the spoofing attack alarm." + ::= { hwWlanWidsTrap 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.8 + hwWlanWidsSpoofAttackClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPMAC, hwWlanWidsObjAttackDevMAC, hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr + } + STATUS current + DESCRIPTION + "This object indicates the spoofing attack clear alarm." + ::= { hwWlanWidsTrap 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.9 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.9 + hwWlanWidsWeakIvAttackDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr, hwWlanWidsObjDetAPMAC, hwWlanWidsObjAttackDevMAC + } + STATUS current + DESCRIPTION + "This object indicates the weak IV attack alarm." + ::= { hwWlanWidsTrap 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.10 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.10 + hwWlanWidsWeakIvAttackClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr, hwWlanWidsObjDetAPMAC, hwWlanWidsObjAttackDevMAC + } + STATUS current + DESCRIPTION + "This object indicates the weak IV attack clear alarm." + ::= { hwWlanWidsTrap 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.11 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.11 + hwWlanWidsPSKAttackDetectedTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjAttackTypeStr, hwWlanWidsObjAttackType, hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackDevMAC, hwWlanWidsObjDetAPMAC + } + STATUS current + DESCRIPTION + "This object indicates the brute-force PSK attack alarm." + ::= { hwWlanWidsTrap 11 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.1.12 + -- 1.3.6.1.4.1.2011.6.139.15.1.1.12 + hwWlanWidsPSKAttackClearTrap NOTIFICATION-TYPE + OBJECTS { hwWlanWidsObjAttackTypeStr, hwWlanWidsObjAttackType, hwWlanWidsObjDetAPChannel, hwWlanWidsObjAttackDevMAC, hwWlanWidsObjDetAPMAC + } + STATUS current + DESCRIPTION + "This object indicates the brute-force PSK attack clear alarm." + ::= { hwWlanWidsTrap 12 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.1.2 + hwWlanWidsTrapObjects OBJECT IDENTIFIER ::= { hwWlanWidsTrapInfo 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.1 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.1 + hwWlanWidsObjRogueDevMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the rogue device (MacAddress)." + ::= { hwWlanWidsTrapObjects 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.2 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.2 + hwWlanWidsObjRogueDevType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the rogue device (Integer32)." + ::= { hwWlanWidsTrapObjects 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.3 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.3 + hwWlanWidsObjRogueDevChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel of the rogue device (Integer32)." + ::= { hwWlanWidsTrapObjects 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.4 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.4 + hwWlanWidsObjRogueDevRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RSSI of the rogue device (Integer32)." + ::= { hwWlanWidsTrapObjects 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.5 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.5 + hwWlanWidsObjRogueDevSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SSID of the rogue device (OCTET STRING)." + ::= { hwWlanWidsTrapObjects 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.6 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.6 + hwWlanWidsObjDetAPID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "DESCRIPTION" + ::= { hwWlanWidsTrapObjects 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.7 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.7 + hwWlanWidsObjDetRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Radio ID of the monitor AP (Integer32)." + ::= { hwWlanWidsTrapObjects 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.8 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.8 + hwWlanWidsObjDetAPChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel of the monitor AP (Integer32)." + ::= { hwWlanWidsTrapObjects 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.9 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.9 + hwWlanWidsObjDetAPMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the monitor AP (MacAddress)." + ::= { hwWlanWidsTrapObjects 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.10 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.10 + hwWlanWidsObjDetAPIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the monitor AP (IpAddress)." + ::= { hwWlanWidsTrapObjects 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.11 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.11 + hwWlanWidsObjNonWifiDeviceType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the non-Wi-Fi device (Integer32)." + ::= { hwWlanWidsTrapObjects 11 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.12 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.12 + hwWlanWidsObjNonWifiInterChannel OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Channel of the non-Wi-Fi device (OCTET STRING)." + ::= { hwWlanWidsTrapObjects 12 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.13 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.13 + hwWlanWidsObjNonWifiRssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RSSI of the non-Wi-Fi device (OCTET STRING)." + ::= { hwWlanWidsTrapObjects 13 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.14 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.14 + hwWlanWidsObjDetAPName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of the monitor AP (OCTET STRING)." + ::= { hwWlanWidsTrapObjects 14 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.15 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.15 + hwWlanWidsObjDetRadioType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Radio type (Integer32)." + ::= { hwWlanWidsTrapObjects 15 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.16 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.16 + hwWlanWidsObjAttackDevMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC address of the attack device (MacAddress)." + ::= { hwWlanWidsTrapObjects 16 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.17 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.17 + hwWlanWidsObjAttackType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the attack device (Integer32)." + ::= { hwWlanWidsTrapObjects 17 } + +-- 1.3.6.1.4.1.2011.6.139.15.1.2.18 + -- 1.3.6.1.4.1.2011.6.139.15.1.2.18 + hwWlanWidsObjAttackTypeStr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Character string description of the attack device type (OCTET STRING)." + ::= { hwWlanWidsTrapObjects 18 } + +-- 1.3.6.1.4.1.2011.6.139.15.2 + -- 1.3.6.1.4.1.2011.6.139.15.2 + hwWlanWidsGloablOper OBJECT IDENTIFIER ::= { hwWlanWidsService 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.1 + -- 1.3.6.1.4.1.2011.6.139.15.2.1 + hwWlanWidsResetDetDevTableAll OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that all devices are deleted." + ::= { hwWlanWidsGloablOper 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.2 + -- 1.3.6.1.4.1.2011.6.139.15.2.2 + hwWlanWidsResetDetDevTableByType OBJECT-TYPE + SYNTAX INTEGER + { + ap(1), + adhoc(2), + bridge(3), + client(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that entries are deleted based on device types." + ::= { hwWlanWidsGloablOper 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.3 + -- 1.3.6.1.4.1.2011.6.139.15.2.3 + hwWlanWidsResetRogueHistoryAll OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that all devices are deleted." + ::= { hwWlanWidsGloablOper 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.4 + -- 1.3.6.1.4.1.2011.6.139.15.2.4 + hwWlanWidsResetRogueHistoryByDevType OBJECT-TYPE + SYNTAX INTEGER + { + ap(1), + adhoc(2), + bridge(3), + client(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that entries are deleted based on device types." + ::= { hwWlanWidsGloablOper 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.5 + -- 1.3.6.1.4.1.2011.6.139.15.2.5 + hwWlanWidsResetAttackDev OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates deletion of the historical attack table." + ::= { hwWlanWidsGloablOper 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.6 + -- 1.3.6.1.4.1.2011.6.139.15.2.6 + hwWlanWidsResetAttackStat OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates deletion of attack statistics." + ::= { hwWlanWidsGloablOper 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.7 + -- 1.3.6.1.4.1.2011.6.139.15.2.7 + hwWlanWidsResetDynamicBlacklist OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates deletion of all dynamic blacklists." + ::= { hwWlanWidsGloablOper 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.8 + -- 1.3.6.1.4.1.2011.6.139.15.2.8 + hwWlanWidsResetDynamicBlacklistMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates deletion of dynamic blacklist entries based on MAC addresses." + ::= { hwWlanWidsGloablOper 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.2.9 + -- 1.3.6.1.4.1.2011.6.139.15.2.9 + hwWlanWidsResetAttackHistory OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates deletion of historical attack records." + ::= { hwWlanWidsGloablOper 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.3 + -- 1.3.6.1.4.1.2011.6.139.15.3 + hwWlanWidsDetDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsDetDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes detected device information." + ::= { hwWlanWidsService 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1 + -- 1.3.6.1.4.1.2011.6.139.15.3.1 + hwWlanWidsDetDevEntry OBJECT-TYPE + SYNTAX HwWlanWidsDetDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanWidsDetDevMac." + INDEX { hwWlanWidsDetDevMac } + ::= { hwWlanWidsDetDevTable 1 } + + HwWlanWidsDetDevEntry ::= + SEQUENCE { + hwWlanWidsDetDevMac + MacAddress, + hwWlanWidsDetDevType + INTEGER, + hwWlanWidsDetDevRssi + Integer32, + hwWlanWidsDetDevChannel + Integer32, + hwWlanWidsDetDevSSID + OCTET STRING, + hwWlanWidsDetDevRogue + INTEGER, + hwWlanWidsDetDevLastTime + Unsigned32, + hwWlanWidsDetDevIsContained + INTEGER, + hwWlanWidsDetDevInterference + INTEGER, + hwWlanWidsDetDevBSSID + MacAddress, + hwWlanWidsDetDevFirstDetTime + Unsigned32, + hwWlanWidsDetDevAuthenMethod + INTEGER + } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.1 + hwWlanWidsDetDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the detected device." + ::= { hwWlanWidsDetDevEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.2 + hwWlanWidsDetDevType OBJECT-TYPE + SYNTAX INTEGER + { + ap(1), + adhoc(2), + bridge(3), + client(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the device type." + ::= { hwWlanWidsDetDevEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.3 + hwWlanWidsDetDevRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI." + ::= { hwWlanWidsDetDevEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.4 + hwWlanWidsDetDevChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel." + ::= { hwWlanWidsDetDevEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.5 + hwWlanWidsDetDevSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID." + ::= { hwWlanWidsDetDevEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.6 + hwWlanWidsDetDevRogue OBJECT-TYPE + SYNTAX INTEGER + { + legal(1), + illegal(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the device is a rogue device." + ::= { hwWlanWidsDetDevEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.7 + hwWlanWidsDetDevLastTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the device is detected.." + ::= { hwWlanWidsDetDevEntry 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.8 + hwWlanWidsDetDevIsContained OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the device is countered." + ::= { hwWlanWidsDetDevEntry 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.9 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.9 + hwWlanWidsDetDevInterference OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the device is an interference device." + ::= { hwWlanWidsDetDevEntry 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.10 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.10 + hwWlanWidsDetDevBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSSID of the detected device." + ::= { hwWlanWidsDetDevEntry 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.3.1.11 + -- 1.3.6.1.4.1.2011.6.139.15.3.1.11 + hwWlanWidsDetDevFirstDetTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when the device is detected." + ::= { hwWlanWidsDetDevEntry 11 } + + -- 1.3.6.1.4.1.2011.6.139.15.3.1.12 + hwWlanWidsDetDevAuthenMethod OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + open(2), + wep(3), + wpa(4), + wpa2(5), + dot1x(6), + wapi(7), + wpawpa2(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the authentication of the detected device." + ::= { hwWlanWidsDetDevEntry 12 } + +-- 1.3.6.1.4.1.2011.6.139.15.4 + -- 1.3.6.1.4.1.2011.6.139.15.4 + hwWlanWidsRogueHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsRogueHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes historical information about rogue devices." + ::= { hwWlanWidsService 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1 + -- 1.3.6.1.4.1.2011.6.139.15.4.1 + hwWlanWidsRogueHistoryEntry OBJECT-TYPE + SYNTAX HwWlanWidsRogueHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanWidsRogueDevMac." + INDEX { hwWlanWidsRogueDevMac } + ::= { hwWlanWidsRogueHistoryTable 1 } + + HwWlanWidsRogueHistoryEntry ::= + SEQUENCE { + hwWlanWidsRogueDevMac + MacAddress, + hwWlanWidsRogueDevType + INTEGER, + hwWlanWidsRogueDevRssi + Integer32, + hwWlanWidsRogueDevChannel + Integer32, + hwWlanWidsRogueDevSSID + OCTET STRING, + hwWlanWidsRogueDevLastTime + Unsigned32, + hwWlanWidsRogueDevAuthenMethod + INTEGER + } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.1 + hwWlanWidsRogueDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the detected device." + ::= { hwWlanWidsRogueHistoryEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.2 + hwWlanWidsRogueDevType OBJECT-TYPE + SYNTAX INTEGER + { + ap(1), + adhoc(2), + bridge(3), + client(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the device type." + ::= { hwWlanWidsRogueHistoryEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.3 + hwWlanWidsRogueDevRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI.." + ::= { hwWlanWidsRogueHistoryEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.4 + hwWlanWidsRogueDevChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel." + ::= { hwWlanWidsRogueHistoryEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.5 + hwWlanWidsRogueDevSSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID." + ::= { hwWlanWidsRogueHistoryEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.6 + hwWlanWidsRogueDevLastTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the device is detected." + ::= { hwWlanWidsRogueHistoryEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.4.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.4.1.7 + hwWlanWidsRogueDevAuthenMethod OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + open(2), + wep(3), + wpa(4), + wpa2(5), + dot1x(6), + wapi(7), + wpawpa2(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the authentication." + ::= { hwWlanWidsRogueHistoryEntry 7 } + + +-- 1.3.6.1.4.1.2011.6.139.15.5 + -- 1.3.6.1.4.1.2011.6.139.15.5 + hwWlanWidsDetNonWifiDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsDetNonWifiDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes information about non-Wi-Fi devices." + ::= { hwWlanWidsService 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1 + -- 1.3.6.1.4.1.2011.6.139.15.5.1 + hwWlanWidsDetNonWifiDevEntry OBJECT-TYPE + SYNTAX HwWlanWidsDetNonWifiDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWidsDetNonWifiDevMonitorApMac, hwWlanWidsDetNonWifiDevMonitorRadioId, and hwWlanWidsDetNonWifiType." + INDEX { hwWlanWidsDetNonWifiDevMonitorApMac, hwWlanWidsDetNonWifiDevMonitorRadioId, hwWlanWidsDetNonWifiType } + ::= { hwWlanWidsDetNonWifiDevTable 1 } + + HwWlanWidsDetNonWifiDevEntry ::= + SEQUENCE { + hwWlanWidsDetNonWifiDevMonitorApMac + MacAddress, + hwWlanWidsDetNonWifiDevMonitorRadioId + Integer32, + hwWlanWidsDetNonWifiType + Integer32, + hwWlanWidsDetNonWifiRssi + OCTET STRING, + hwWlanWidsDetNonWifiSpectrumType + INTEGER, + hwWlanWidsDetNonWifiChannel + OCTET STRING, + hwWlanWidsDetNonWifiDevLastTime + Integer32, + hwWlanWidsDetNonWifiCenterFrequency + Integer32, + hwWlanWidsDetNonWifiBandwidth + Integer32, + hwWlanWidsDetNonWifiDutycycle + Integer32, + hwWlanWidsDetNonWifiInterferenceLevel + INTEGER, + hwWlanWidsDetNonWifiDevMonitorAPName + OCTET STRING, + hwWlanWidsDetNonWifiDevRadioType + Integer32, + hwWlanWidsDetNonWifiDevMonitorAPChannel + Integer32, + hwWlanWidsDetNonWifiDevFirstTime + Integer32 + } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.1 + hwWlanWidsDetNonWifiDevMonitorApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.2 + hwWlanWidsDetNonWifiDevMonitorRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.3 + hwWlanWidsDetNonWifiType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the type of the detected non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.4 + hwWlanWidsDetNonWifiRssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI." + ::= { hwWlanWidsDetNonWifiDevEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.5 + hwWlanWidsDetNonWifiSpectrumType OBJECT-TYPE + SYNTAX INTEGER + { + hopFrequence(1), + narrowBandwidth(2), + wideBandwidth(3), + sweepFrequence(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the frequency type of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.6 + hwWlanWidsDetNonWifiChannel OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.7 + hwWlanWidsDetNonWifiDevLastTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the non-Wi-Fi device is detected." + ::= { hwWlanWidsDetNonWifiDevEntry 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.8 + hwWlanWidsDetNonWifiCenterFrequency OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the center frequency of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.9 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.9 + hwWlanWidsDetNonWifiBandwidth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the bandwidth of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.10 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.10 + hwWlanWidsDetNonWifiDutycycle OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duty cycle of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.11 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.11 + hwWlanWidsDetNonWifiInterferenceLevel OBJECT-TYPE + SYNTAX INTEGER + { + tiny(1), + light(2), + badly(3), + critical(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interference level of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevEntry 11 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.12 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.12 + hwWlanWidsDetNonWifiDevMonitorAPName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevEntry 12 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.13 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.13 + hwWlanWidsDetNonWifiDevRadioType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of the monitor radio." + ::= { hwWlanWidsDetNonWifiDevEntry 13 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.14 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.14 + hwWlanWidsDetNonWifiDevMonitorAPChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the working channel of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevEntry 14 } + +-- 1.3.6.1.4.1.2011.6.139.15.5.1.15 + -- 1.3.6.1.4.1.2011.6.139.15.5.1.15 + hwWlanWidsDetNonWifiDevFirstTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when the non-Wi-Fi device is detected." + ::= { hwWlanWidsDetNonWifiDevEntry 15 } + +-- 1.3.6.1.4.1.2011.6.139.15.6 + -- 1.3.6.1.4.1.2011.6.139.15.6 + hwWlanWidsAttackHistoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsAttackHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes historical information about attacking devices." + ::= { hwWlanWidsService 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1 + -- 1.3.6.1.4.1.2011.6.139.15.6.1 + hwWlanWidsAttackHistoryEntry OBJECT-TYPE + SYNTAX HwWlanWidsAttackHistoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWidsAttackHistorySeq and hwWlanWidsAttackHistorySubSeq." + INDEX { hwWlanWidsAttackHistorySeq, hwWlanWidsAttackHistorySubSeq } + ::= { hwWlanWidsAttackHistoryTable 1 } + + HwWlanWidsAttackHistoryEntry ::= + SEQUENCE { + hwWlanWidsAttackHistorySeq + Unsigned32, + hwWlanWidsAttackHistorySubSeq + Unsigned32, + hwWlanWidsAttackHistoryDevMac + MacAddress, + hwWlanWidsAttackHistoryDevType + Integer32, + hwWlanWidsAttackHistoryRssi + Integer32, + hwWlanWidsAttackHistoryChannel + Integer32, + hwWlanWidsAttackHistoryAttackType + Integer32, + hwWlanWidsAttackHistoryPacketBmp1 + Integer32, + hwWlanWidsAttackHistoryPacketBmp2 + Integer32, + hwWlanWidsAttackHistorySSID + OCTET STRING, + hwWlanWidsAttackHistoryDetTime + Unsigned32, + hwWlanWidsAttackHistoryDetectorApName + OCTET STRING + } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.1 + hwWlanWidsAttackHistorySeq OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal index of an entry." + ::= { hwWlanWidsAttackHistoryEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.2 + hwWlanWidsAttackHistorySubSeq OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the internal subindex of an entry." + ::= { hwWlanWidsAttackHistoryEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.3 + hwWlanWidsAttackHistoryDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the attack device." + ::= { hwWlanWidsAttackHistoryEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.4 + hwWlanWidsAttackHistoryDevType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of the attack device." + ::= { hwWlanWidsAttackHistoryEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.5 + hwWlanWidsAttackHistoryRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI." + ::= { hwWlanWidsAttackHistoryEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.6 + hwWlanWidsAttackHistoryChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel." + ::= { hwWlanWidsAttackHistoryEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.7 + hwWlanWidsAttackHistoryAttackType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack type." + ::= { hwWlanWidsAttackHistoryEntry 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.8 + hwWlanWidsAttackHistoryPacketBmp1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack packet type." + ::= { hwWlanWidsAttackHistoryEntry 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.9 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.9 + hwWlanWidsAttackHistoryPacketBmp2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack packets." + ::= { hwWlanWidsAttackHistoryEntry 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.10 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.10 + hwWlanWidsAttackHistorySSID OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID." + ::= { hwWlanWidsAttackHistoryEntry 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.11 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.11 + hwWlanWidsAttackHistoryDetTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack detection time." + ::= { hwWlanWidsAttackHistoryEntry 11 } + +-- 1.3.6.1.4.1.2011.6.139.15.6.1.12 + -- 1.3.6.1.4.1.2011.6.139.15.6.1.12 + hwWlanWidsAttackHistoryDetectorApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP that detects the attack." + ::= { hwWlanWidsAttackHistoryEntry 12 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7 + hwWlanWidsAttackStatTable OBJECT IDENTIFIER ::= { hwWlanWidsService 7 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.1 + hwWlanWidsAttackStatProbeRequestFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 1 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.2 + hwWlanWidsAttackStatAuthRequestFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 2 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.3 + hwWlanWidsAttackStatDeAuthenFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 3 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.4 + hwWlanWidsAttackStatAssocReqFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 4 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.5 + hwWlanWidsAttackStatDisassocReqFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 5 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.6 + hwWlanWidsAttackStatReassocReqFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 6 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.7 + hwWlanWidsAttackStatActionFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 7 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.8 + hwWlanWidsAttackStatNullDataFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 8 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.9 + hwWlanWidsAttackStatWeakIvAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 9 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.10 + hwWlanWidsAttackStatDeauthSpoofAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 10 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.11 + hwWlanWidsAttackStatDisassocSpoofAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 11 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.12 + hwWlanWidsAttackStatWepShareKeyAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 12 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.13 + hwWlanWidsAttackStatWpaAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 13 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.14 + hwWlanWidsAttackStatWpa2Attack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 14 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.15 + hwWlanWidsAttackStatWapiAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 15 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.16 + hwWlanWidsAttackStatEAPOLStartFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 16 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.17 + hwWlanWidsAttackStatEAPOLLogoffFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 17 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.18 + hwWlanWidsAttackStatNullQosFloodAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsAttackStatTable 18 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.19 + hwWlanWidsAttackStatStartTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the counting start time." + ::= { hwWlanWidsAttackStatTable 19 } + + + -- 1.3.6.1.4.1.2011.6.139.15.7.20 + hwWlanWidsAttackStatOthersSpoofAttack OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the other types of spoofing frames." + ::= { hwWlanWidsAttackStatTable 20 } + + + -- 1.3.6.1.4.1.2011.6.139.15.8 + hwWlanWidsDynamicBlacklistTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsDynamicBlacklistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes information about dynamic blacklists." + ::= { hwWlanWidsService 8 } + + + -- 1.3.6.1.4.1.2011.6.139.15.8.1 + hwWlanWidsDynamicBlacklistEntry OBJECT-TYPE + SYNTAX HwWlanWidsDynamicBlacklistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanWidsDynamicBlacklistDevMac." + INDEX { hwWlanWidsDynamicBlacklistDevMac } + ::= { hwWlanWidsDynamicBlacklistTable 1 } + + HwWlanWidsDynamicBlacklistEntry ::= + SEQUENCE { + hwWlanWidsDynamicBlacklistDevMac + MacAddress, + hwWlanWidsDynamicBlacklistDevType + Integer32, + hwWlanWidsDynamicBlacklistDevAttackType + Integer32, + hwWlanWidsDynamicBlacklistAttackPacketBmp1 + Integer32, + hwWlanWidsDynamicBlacklistAttackPacketBmp2 + Integer32, + hwWlanWidsDynamicBlacklistLastTime + Unsigned32, + hwWlanWidsDynamicBlacklistLeftAgeTime + Unsigned32, + hwWlanWidsDynamicBlacklistBlockTime + Unsigned32 + } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.1 + hwWlanWidsDynamicBlacklistDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the device." + ::= { hwWlanWidsDynamicBlacklistEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.2 + hwWlanWidsDynamicBlacklistDevType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the device type, such as the AP or Ad-hoc device." + ::= { hwWlanWidsDynamicBlacklistEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.3 + hwWlanWidsDynamicBlacklistDevAttackType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack type." + ::= { hwWlanWidsDynamicBlacklistEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.4 + hwWlanWidsDynamicBlacklistAttackPacketBmp1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack packet type." + ::= { hwWlanWidsDynamicBlacklistEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.5 + hwWlanWidsDynamicBlacklistAttackPacketBmp2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack packets." + ::= { hwWlanWidsDynamicBlacklistEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.6 + hwWlanWidsDynamicBlacklistLastTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the attack is detected." + ::= { hwWlanWidsDynamicBlacklistEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.7 + hwWlanWidsDynamicBlacklistLeftAgeTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the alive time when the attack is detected." + ::= { hwWlanWidsDynamicBlacklistEntry 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.8.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.8.1.8 + hwWlanWidsDynamicBlacklistBlockTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the block time when the attack is detected." + ::= { hwWlanWidsDynamicBlacklistEntry 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.9 + -- 1.3.6.1.4.1.2011.6.139.15.9 + hwWlanWidsSrvObjects OBJECT IDENTIFIER ::= { hwWlanWidsService 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.1 + hwWlanWidsDetNonWifiDevHistTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsDetNonWifiDevHistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes historical records about non-Wi-Fi devices." + ::= { hwWlanWidsSrvObjects 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1 + hwWlanWidsDetNonWifiDevHistEntry OBJECT-TYPE + SYNTAX HwWlanWidsDetNonWifiDevHistEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanWidsDetNonWifiHistIndex." + INDEX { hwWlanWidsDetNonWifiHistIndex } + ::= { hwWlanWidsDetNonWifiDevHistTable 1 } + + HwWlanWidsDetNonWifiDevHistEntry ::= + SEQUENCE { + hwWlanWidsDetNonWifiHistIndex + Integer32, + hwWlanWidsDetNonWifiHistMonitorApMac + MacAddress, + hwWlanWidsDetNonWifiHistMonitorAPName + OCTET STRING, + hwWlanWidsDetNonWifiHistMonitorRadioId + Integer32, + hwWlanWidsDetNonWifiHistMonitorRadioType + Integer32, + hwWlanWidsDetNonWifiHistMonitorAPChannel + Integer32, + hwWlanWidsDetNonWifiHistDevType + Integer32, + hwWlanWidsDetNonWifiHistRssi + OCTET STRING, + hwWlanWidsDetNonWifiHistFrequencyType + INTEGER, + hwWlanWidsDetNonWifiHistChannel + OCTET STRING, + hwWlanWidsDetNonWifiHistDevLastTime + Integer32, + hwWlanWidsDetNonWifiHistCenterFrequency + Integer32, + hwWlanWidsDetNonWifiHistBandwidth + Integer32, + hwWlanWidsDetNonWifiHistDutycycle + Integer32, + hwWlanWidsDetNonWifiHistInterferenceLevel + INTEGER, + hwWlanWidsDetNonWifiHistDevFirstTime + Integer32 + } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.1 + hwWlanWidsDetNonWifiHistIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the index of the table." + ::= { hwWlanWidsDetNonWifiDevHistEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.2 + hwWlanWidsDetNonWifiHistMonitorApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the MAC address of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevHistEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.3 + hwWlanWidsDetNonWifiHistMonitorAPName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevHistEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.4 + hwWlanWidsDetNonWifiHistMonitorRadioId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the radio ID of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevHistEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.5 + hwWlanWidsDetNonWifiHistMonitorRadioType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of the monitor radio." + ::= { hwWlanWidsDetNonWifiDevHistEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.6 + hwWlanWidsDetNonWifiHistMonitorAPChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the working channel of the monitor AP." + ::= { hwWlanWidsDetNonWifiDevHistEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.7 + hwWlanWidsDetNonWifiHistDevType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the type of the detected non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.8 + hwWlanWidsDetNonWifiHistRssi OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI." + ::= { hwWlanWidsDetNonWifiDevHistEntry 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.9 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.9 + hwWlanWidsDetNonWifiHistFrequencyType OBJECT-TYPE + SYNTAX INTEGER + { + hopFrequence(1), + narrowBandwidth(2), + wideBandwidth(3), + sweepFrequence(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interference type of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.10 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.10 + hwWlanWidsDetNonWifiHistChannel OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.11 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.11 + hwWlanWidsDetNonWifiHistDevLastTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the non-Wi-Fi device is detected." + ::= { hwWlanWidsDetNonWifiDevHistEntry 11 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.12 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.12 + hwWlanWidsDetNonWifiHistCenterFrequency OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the center frequency of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 12 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.13 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.13 + hwWlanWidsDetNonWifiHistBandwidth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the bandwidth of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 13 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.14 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.14 + hwWlanWidsDetNonWifiHistDutycycle OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the duty cycle of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 14 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.15 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.15 + hwWlanWidsDetNonWifiHistInterferenceLevel OBJECT-TYPE + SYNTAX INTEGER + { + tiny(1), + light(2), + badly(3), + critical(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the interference level of the non-Wi-Fi device." + ::= { hwWlanWidsDetNonWifiDevHistEntry 15 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.1.1.16 + -- 1.3.6.1.4.1.2011.6.139.15.9.1.1.16 + hwWlanWidsDetNonWifiHistDevFirstTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when the non-Wi-Fi device is detected." + ::= { hwWlanWidsDetNonWifiDevHistEntry 16 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2 + -- 1.3.6.1.4.1.2011.6.139.15.9.2 + hwWlanWidsAttDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsAttDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes information about attacking devices." + ::= { hwWlanWidsSrvObjects 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1 + hwWlanWidsAttDevEntry OBJECT-TYPE + SYNTAX HwWlanWidsAttDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index of this table is hwWlanWidsAttackDevMac." + INDEX { hwWlanWidsAttackDevMac } + ::= { hwWlanWidsAttDevTable 1 } + + HwWlanWidsAttDevEntry ::= + SEQUENCE { + hwWlanWidsAttackDevMac + MacAddress, + hwWlanWidsAttackDevChannel + Integer32, + hwWlanWidsAttackDevRssi + Integer32, + hwWlanWidsAttackDevLastAttType + Unsigned32, + hwWlanWidsAttackDevLastPacketBmp + Unsigned32, + hwWlanWidsAttackDevLastDetTime + Unsigned32 + } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1.1 + hwWlanWidsAttackDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the attack device." + ::= { hwWlanWidsAttDevEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1.2 + hwWlanWidsAttackDevChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel." + ::= { hwWlanWidsAttDevEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1.3 + hwWlanWidsAttackDevRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI of the attack device." + ::= { hwWlanWidsAttDevEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1.4 + hwWlanWidsAttackDevLastAttType OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack type." + ::= { hwWlanWidsAttDevEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1.5 + hwWlanWidsAttackDevLastPacketBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack packet type." + ::= { hwWlanWidsAttDevEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.2.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.9.2.1.6 + hwWlanWidsAttackDevLastDetTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the attack is detected." + ::= { hwWlanWidsAttDevEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.3 + -- 1.3.6.1.4.1.2011.6.139.15.9.3 + hwWlanWidsDetDevMonitorTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsDetDevMonitorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes information about monitoring devices." + ::= { hwWlanWidsSrvObjects 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.3.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1 + hwWlanWidsDetDevMonitorEntry OBJECT-TYPE + SYNTAX HwWlanWidsDetDevMonitorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWidsDetDevMonitorDevMac, hwWlanWidsDetDevMonitorApMac, and hwWlanWidsDetDevMonitorApRadioID." + INDEX { hwWlanWidsDetDevMonitorDevMac, hwWlanWidsDetDevMonitorApMac, hwWlanWidsDetDevMonitorApRadioID } + ::= { hwWlanWidsDetDevMonitorTable 1 } + + HwWlanWidsDetDevMonitorEntry ::= + SEQUENCE { + hwWlanWidsDetDevMonitorDevMac + MacAddress, + hwWlanWidsDetDevMonitorApMac + MacAddress, + hwWlanWidsDetDevMonitorApName + OCTET STRING, + hwWlanWidsDetDevMonitorApRadioID + Integer32, + hwWlanWidsDetDevMonitorApIP + IpAddress, + hwWlanWidsDetDevMonitorApChannel + Integer32, + hwWlanWidsDetDevMonitorApRssi + Integer32, + hwWlanWidsDetDevMonitorApLastDetTime + Unsigned32, + hwWlanWidsDetDevMonitorApCountermeasuresDev + INTEGER, + hwWlanWidsDetDevMonitorDetAtt + INTEGER, + hwWlanWidsDetDevMonitorApId + Unsigned32 + } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.1 + hwWlanWidsDetDevMonitorDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the detected device." + ::= { hwWlanWidsDetDevMonitorEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.2 + hwWlanWidsDetDevMonitorApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the monitor AP." + ::= { hwWlanWidsDetDevMonitorEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.3 + hwWlanWidsDetDevMonitorApName OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the monitor AP." + ::= { hwWlanWidsDetDevMonitorEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.4 + hwWlanWidsDetDevMonitorApRadioID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID of the monitor AP." + ::= { hwWlanWidsDetDevMonitorEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.5 + hwWlanWidsDetDevMonitorApIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address of the monitor AP." + ::= { hwWlanWidsDetDevMonitorEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.6 + hwWlanWidsDetDevMonitorApChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel of the device detected by the monitor AP." + ::= { hwWlanWidsDetDevMonitorEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.7 + hwWlanWidsDetDevMonitorApRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI of the device detected by the monitor AP." + ::= { hwWlanWidsDetDevMonitorEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.8 + hwWlanWidsDetDevMonitorApLastDetTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the device is detected." + ::= { hwWlanWidsDetDevMonitorEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.9 + hwWlanWidsDetDevMonitorApCountermeasuresDev OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This objects indicates whether the monitor device counters the wireless device." + ::= { hwWlanWidsDetDevMonitorEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.10 + hwWlanWidsDetDevMonitorDetAtt OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This objects indicates whether the detected device is an attack device." + ::= { hwWlanWidsDetDevMonitorEntry 10 } + + -- 1.3.6.1.4.1.2011.6.139.15.9.3.1.11 + hwWlanWidsDetDevMonitorApId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the AP ID." + ::= { hwWlanWidsDetDevMonitorEntry 11 } + + + + -- 1.3.6.1.4.1.2011.6.139.15.9.4 + hwWlanWidsDynamicBlacklistAPTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsDynamicBlacklistAPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes information about APs enabled with dynamic blacklists." + ::= { hwWlanWidsSrvObjects 4 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1 + hwWlanWidsDynamicBlacklistAPEntry OBJECT-TYPE + SYNTAX HwWlanWidsDynamicBlacklistAPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWidsDynamicBlacklistDevMac and hwWlanWidsDynamicBlacklistApMac." + INDEX { hwWlanWidsDynamicBlacklistApMac, hwWlanWidsDynamicBlacklistDevMac } + ::= { hwWlanWidsDynamicBlacklistAPTable 1 } + + HwWlanWidsDynamicBlacklistAPEntry ::= + SEQUENCE { + hwWlanWidsDynamicBlacklistApMac + MacAddress, + hwWlanWidsDynamicBlacklistApName + OCTET STRING, + hwWlanWidsDynamicBlacklistApIP + IpAddress, + hwWlanWidsDynamicBlacklistAttackType + Unsigned32, + hwWlanWidsDynamicBlacklistAPLastTime + Unsigned32, + hwWlanWidsDynamicBlacklistAttackPacketBmp + Integer32 + } + +-- 1.3.6.1.4.1.2011.6.139.15.9.4.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1.1 + hwWlanWidsDynamicBlacklistApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the AP that adds the device to the dynamic blacklist." + ::= { hwWlanWidsDynamicBlacklistAPEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.4.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1.2 + hwWlanWidsDynamicBlacklistApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the AP that adds the device to the dynamic blacklist." + ::= { hwWlanWidsDynamicBlacklistAPEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.4.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1.3 + hwWlanWidsDynamicBlacklistApIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the IP address of the AP that adds the device to the dynamic blacklist." + ::= { hwWlanWidsDynamicBlacklistAPEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.4.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1.4 + hwWlanWidsDynamicBlacklistAttackType OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack type." + ::= { hwWlanWidsDynamicBlacklistAPEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.4.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1.5 + hwWlanWidsDynamicBlacklistAPLastTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the time when the device is added to the dynamic blacklist." + ::= { hwWlanWidsDynamicBlacklistAPEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.4.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.9.4.1.6 + hwWlanWidsDynamicBlacklistAttackPacketBmp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack packet type." + ::= { hwWlanWidsDynamicBlacklistAPEntry 6 } + + +-- 1.3.6.1.4.1.2011.6.139.15.9.5 + -- 1.3.6.1.4.1.2011.6.139.15.9.5 + hwWlanWidsAttackDetorTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsAttackDetorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes attack detection information about the monitoring AP." + ::= { hwWlanWidsSrvObjects 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1 + hwWlanWidsAttackDetorEntry OBJECT-TYPE + SYNTAX HwWlanWidsAttackDetorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWidsAttackDetorDevMac and hwWlanWidsAttackDetorApMac." + INDEX { hwWlanWidsAttackDetorDevMac, hwWlanWidsAttackDetorApMac } + ::= { hwWlanWidsAttackDetorTable 1 } + + HwWlanWidsAttackDetorEntry ::= + SEQUENCE { + hwWlanWidsAttackDetorDevMac + MacAddress, + hwWlanWidsAttackDetorApMac + MacAddress, + hwWlanWidsAttackDetorApName + OCTET STRING, + hwWlanWidsAttackDetorAttTypeBmp + Unsigned32, + hwWlanWidsAttackDetorPacketBmpFlood + Unsigned32, + hwWlanWidsAttackDetorPacketBmpSpoof + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeFlood + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeSpoof + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeWeakIv + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeWep + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeWpa + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeWpa2 + Unsigned32, + hwWlanWidsAttackDetorFirstDetTimeWapi + Unsigned32, + hwWlanWidsAttackDetorRSSI + Integer32, + hwWlanWidsAttackDetorChannel + Integer32, + hwWlanWidsAttackDetorLastDetTime + Unsigned32 + } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.1 + hwWlanWidsAttackDetorDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the detected attack device." + ::= { hwWlanWidsAttackDetorEntry 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.2 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.2 + hwWlanWidsAttackDetorApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the monitor AP." + ::= { hwWlanWidsAttackDetorEntry 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.3 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.3 + hwWlanWidsAttackDetorApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the name of the monitor AP." + ::= { hwWlanWidsAttackDetorEntry 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.4 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.4 + hwWlanWidsAttackDetorAttTypeBmp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the attack type bitmap." + ::= { hwWlanWidsAttackDetorEntry 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.5 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.5 + hwWlanWidsAttackDetorPacketBmpFlood OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the flood attack packet bitmap." + ::= { hwWlanWidsAttackDetorEntry 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.6 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.6 + hwWlanWidsAttackDetorPacketBmpSpoof OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the flood attack packet bitmap." + ::= { hwWlanWidsAttackDetorEntry 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.7 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.7 + hwWlanWidsAttackDetorFirstDetTimeFlood OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a flood attack is detected." + ::= { hwWlanWidsAttackDetorEntry 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.8 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.8 + hwWlanWidsAttackDetorFirstDetTimeSpoof OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a spoofing attack is detected." + ::= { hwWlanWidsAttackDetorEntry 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.9 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.9 + hwWlanWidsAttackDetorFirstDetTimeWeakIv OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a Weak IV attack is detected." + ::= { hwWlanWidsAttackDetorEntry 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.10 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.10 + hwWlanWidsAttackDetorFirstDetTimeWep OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a WEP attack is detected." + ::= { hwWlanWidsAttackDetorEntry 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.11 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.11 + hwWlanWidsAttackDetorFirstDetTimeWpa OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a WPA attack is detected." + ::= { hwWlanWidsAttackDetorEntry 11 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.12 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.12 + hwWlanWidsAttackDetorFirstDetTimeWpa2 OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a WPA2 attack is detected." + ::= { hwWlanWidsAttackDetorEntry 12 } + +-- 1.3.6.1.4.1.2011.6.139.15.9.5.1.13 + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.13 + hwWlanWidsAttackDetorFirstDetTimeWapi OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the first time when a WAPI attack is detected." + ::= { hwWlanWidsAttackDetorEntry 13 } + + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.14 + hwWlanWidsAttackDetorRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI of the device that implements the wireless attack detection." + ::= { hwWlanWidsAttackDetorEntry 14 } + + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.15 + hwWlanWidsAttackDetorChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel of the device that implements the wireless attack detection." + ::= { hwWlanWidsAttackDetorEntry 15 } + + -- 1.3.6.1.4.1.2011.6.139.15.9.5.1.16 + hwWlanWidsAttackDetorLastDetTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the last time when the device detects the attack." + ::= { hwWlanWidsAttackDetorEntry 16 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6 + hwWlanWidsApDetDevTable OBJECT-TYPE + SYNTAX SEQUENCE OF HwWlanWidsApDetDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table describes detected device information." + ::= { hwWlanWidsSrvObjects 6 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1 + hwWlanWidsApDetDevEntry OBJECT-TYPE + SYNTAX HwWlanWidsApDetDevEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The indexes of this table are hwWlanWidsApDetDevApMac, hwWlanWidsApDetDevApRadioID and hwWlanWidsApDetDevMac." + INDEX { hwWlanWidsApDetDevApMac, hwWlanWidsApDetDevApRadioID, hwWlanWidsApDetDevMac } + ::= { hwWlanWidsApDetDevTable 1 } + + + HwWlanWidsApDetDevEntry ::= + SEQUENCE { + hwWlanWidsApDetDevApMac + MacAddress, + hwWlanWidsApDetDevApRadioID + Integer32, + hwWlanWidsApDetDevMac + MacAddress, + hwWlanWidsApDetDevType + INTEGER, + hwWlanWidsApDetDevRssi + Integer32, + hwWlanWidsApDetDevChannel + Integer32, + hwWlanWidsApDetDevSsid + OCTET STRING, + hwWlanWidsApDetDevRogueFlag + INTEGER, + hwWlanWidsApDetDevLastTime + Unsigned32, + hwWlanWidsApDetDevContainFlag + INTEGER, + hwWlanWidsApDetDevBSSID + MacAddress + } + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.1 + hwWlanWidsApDetDevApMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the monitor AP." + ::= { hwWlanWidsApDetDevEntry 1 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.2 + hwWlanWidsApDetDevApRadioID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the radio ID of the monitor AP." + ::= { hwWlanWidsApDetDevEntry 2 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.3 + hwWlanWidsApDetDevMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indicates the MAC address of the detected device." + ::= { hwWlanWidsApDetDevEntry 3 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.4 + hwWlanWidsApDetDevType OBJECT-TYPE + SYNTAX INTEGER + { + ap(1), + adhoc(2), + bridge(3), + client(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the device type." + ::= { hwWlanWidsApDetDevEntry 4 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.5 + hwWlanWidsApDetDevRssi OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the RSSI." + ::= { hwWlanWidsApDetDevEntry 5 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.6 + hwWlanWidsApDetDevChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the channel." + ::= { hwWlanWidsApDetDevEntry 6 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.7 + hwWlanWidsApDetDevSsid OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the SSID." + ::= { hwWlanWidsApDetDevEntry 7 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.8 + hwWlanWidsApDetDevRogueFlag OBJECT-TYPE + SYNTAX INTEGER + { + legal(1), + illegal(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the device is a rogue device." + ::= { hwWlanWidsApDetDevEntry 8 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.9 + hwWlanWidsApDetDevLastTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the latest time when the device is detected.." + ::= { hwWlanWidsApDetDevEntry 9 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.10 + hwWlanWidsApDetDevContainFlag OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates whether the device is countered." + ::= { hwWlanWidsApDetDevEntry 10 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6.1.11 + hwWlanWidsApDetDevBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the BSSID of the detected device." + ::= { hwWlanWidsApDetDevEntry 11 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.7 + hwWlanWidsDetDevStatisticsTable OBJECT IDENTIFIER ::= { hwWlanWidsSrvObjects 7 } + + -- 1.3.6.1.4.1.2011.6.139.15.9.7.1 + hwWlanWidsDetDevRougeAdhocCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 1 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.2 + hwWlanWidsDetDevContainAdhocCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 2 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.3 + hwWlanWidsDetDevRougeAPCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 3 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.4 + hwWlanWidsDetDevPermitAPCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 4 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.5 + hwWlanWidsDetDevInterfaceAPCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 5 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.6 + hwWlanWidsDetDevContainAPCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 6 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.7 + hwWlanWidsDetDevRougeClientCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 7 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.8 + hwWlanWidsDetDevPermitClientCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 8 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.9 + hwWlanWidsDetDevContainClientCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 9 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.10 + hwWlanWidsDetDevRougeBridgeCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 10 } + + + -- 1.3.6.1.4.1.2011.6.139.15.9.11 + hwWlanWidsDetDevPermitBridgeCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counting." + ::= { hwWlanWidsDetDevStatisticsTable 11 } + + + +-- 1.3.6.1.4.1.2011.6.139.15.10 + -- 1.3.6.1.4.1.2011.6.139.15.10 + hwWlanWidsSrvConformance OBJECT IDENTIFIER ::= { hwWlanWidsService 10 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.1 + -- 1.3.6.1.4.1.2011.6.139.15.10.1 + hwWlanWidsSrvCompliances OBJECT IDENTIFIER ::= { hwWlanWidsSrvConformance 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.1.1 + -- 1.3.6.1.4.1.2011.6.139.15.10.1.1 + hwWlanWidsSrvCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "Description." + MODULE -- this module + MANDATORY-GROUPS { hwWlanWidsTrapObjectGroup, hwWlanWidsGlobalOperGroup, hwWlanWidsDetDevGroup, hwWlanWidsRogueHistoryGroup, hwWlanWidsDetNonWifiDevGroup, + hwWlanWidsAttackDetectGroup, hwWlanWidsAttackStatGroup, hwWlanWidsDynamicBlacklistGroup, hwWlanWidsSrvObjectsGroup } + ::= { hwWlanWidsSrvCompliances 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2 + -- 1.3.6.1.4.1.2011.6.139.15.10.2 + hwWlanWidsSrvObjectGroups OBJECT IDENTIFIER ::= { hwWlanWidsSrvConformance 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.1 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.1 + hwWlanWidsTrapGroup NOTIFICATION-GROUP + NOTIFICATIONS { hwWlanWidsRougeDevDetectedTrap, hwWlanWidsRougeDevClearTrap, hwWlanWidsNonWifiDetTrap, hwWlanWidsNonWifiClearTrap, hwWlanWidsFloodAttackDetectedTrap, + hwWlanWidsFloodAttackClearTrap, hwWlanWidsSpoofAttackDetectedTrap, hwWlanWidsSpoofAttackClearTrap, hwWlanWidsWeakIvAttackDetectedTrap, hwWlanWidsWeakIvAttackClearTrap, + hwWlanWidsPSKAttackDetectedTrap, hwWlanWidsPSKAttackClearTrap } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 1 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.2 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.2 + hwWlanWidsTrapObjectGroup OBJECT-GROUP + OBJECTS { hwWlanWidsObjRogueDevMAC, hwWlanWidsObjRogueDevType, hwWlanWidsObjRogueDevChannel, hwWlanWidsObjRogueDevRSSI, hwWlanWidsObjRogueDevSSID, + hwWlanWidsObjDetAPID, hwWlanWidsObjDetRadioId, hwWlanWidsObjDetAPChannel, hwWlanWidsObjDetAPMAC, hwWlanWidsObjDetAPIP, + hwWlanWidsObjNonWifiDeviceType, hwWlanWidsObjNonWifiInterChannel, hwWlanWidsObjNonWifiRssi, hwWlanWidsObjDetAPName, hwWlanWidsObjDetRadioType, + hwWlanWidsObjAttackDevMAC, hwWlanWidsObjAttackType, hwWlanWidsObjAttackTypeStr } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 2 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.3 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.3 + hwWlanWidsGlobalOperGroup OBJECT-GROUP + OBJECTS { hwWlanWidsResetDetDevTableAll, hwWlanWidsResetDetDevTableByType, hwWlanWidsResetRogueHistoryAll, hwWlanWidsResetRogueHistoryByDevType, hwWlanWidsResetAttackDev, + hwWlanWidsResetAttackStat, hwWlanWidsResetDynamicBlacklist, hwWlanWidsResetDynamicBlacklistMac, hwWlanWidsResetAttackHistory } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 3 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.4 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.4 + hwWlanWidsDetDevGroup OBJECT-GROUP + OBJECTS { hwWlanWidsDetDevType, hwWlanWidsDetDevRssi, hwWlanWidsDetDevChannel, hwWlanWidsDetDevSSID, + hwWlanWidsDetDevRogue, hwWlanWidsDetDevLastTime, hwWlanWidsDetDevIsContained, hwWlanWidsDetDevInterference, hwWlanWidsDetDevBSSID, + hwWlanWidsDetDevFirstDetTime, hwWlanWidsDetDevAuthenMethod, hwWlanWidsDetDevMonitorApName, + hwWlanWidsDetDevMonitorApIP, hwWlanWidsDetDevMonitorApChannel, hwWlanWidsDetDevMonitorApRssi, hwWlanWidsDetDevMonitorApLastDetTime, hwWlanWidsDetDevMonitorApCountermeasuresDev, + hwWlanWidsDetDevMonitorDetAtt, hwWlanWidsDetDevMonitorApId } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 4 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.5 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.5 + hwWlanWidsRogueHistoryGroup OBJECT-GROUP + OBJECTS { hwWlanWidsRogueDevType, hwWlanWidsRogueDevRssi, hwWlanWidsRogueDevChannel, hwWlanWidsRogueDevSSID, + hwWlanWidsRogueDevLastTime, hwWlanWidsRogueDevAuthenMethod } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 5 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.6 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.6 + hwWlanWidsDetNonWifiDevGroup OBJECT-GROUP + OBJECTS { hwWlanWidsDetNonWifiRssi, hwWlanWidsDetNonWifiSpectrumType, + hwWlanWidsDetNonWifiChannel, hwWlanWidsDetNonWifiDevLastTime, hwWlanWidsDetNonWifiCenterFrequency, hwWlanWidsDetNonWifiBandwidth, hwWlanWidsDetNonWifiDutycycle, + hwWlanWidsDetNonWifiInterferenceLevel, hwWlanWidsDetNonWifiDevMonitorAPName, hwWlanWidsDetNonWifiDevRadioType, hwWlanWidsDetNonWifiDevMonitorAPChannel, hwWlanWidsDetNonWifiDevFirstTime + } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 6 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.7 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.7 + hwWlanWidsAttackDetectGroup OBJECT-GROUP + OBJECTS { hwWlanWidsAttackHistoryDevMac, hwWlanWidsAttackHistoryDevType, hwWlanWidsAttackHistoryRssi, + hwWlanWidsAttackHistoryChannel, hwWlanWidsAttackHistoryAttackType, hwWlanWidsAttackHistoryPacketBmp1, hwWlanWidsAttackHistoryPacketBmp2, hwWlanWidsAttackHistorySSID, + hwWlanWidsAttackHistoryDetTime, hwWlanWidsAttackHistoryDetectorApName, hwWlanWidsAttackDevChannel, hwWlanWidsAttackDevRssi, + hwWlanWidsAttackDevLastAttType, hwWlanWidsAttackDevLastPacketBmp, hwWlanWidsAttackDevLastDetTime, + hwWlanWidsAttackDetorApName, hwWlanWidsAttackDetorAttTypeBmp, hwWlanWidsAttackDetorPacketBmpFlood, hwWlanWidsAttackDetorPacketBmpSpoof, hwWlanWidsAttackDetorFirstDetTimeFlood, + hwWlanWidsAttackDetorFirstDetTimeSpoof, hwWlanWidsAttackDetorFirstDetTimeWeakIv, hwWlanWidsAttackDetorFirstDetTimeWep, hwWlanWidsAttackDetorFirstDetTimeWpa, hwWlanWidsAttackDetorFirstDetTimeWpa2, + hwWlanWidsAttackDetorFirstDetTimeWapi, hwWlanWidsAttackDetorRSSI, hwWlanWidsAttackDetorChannel, hwWlanWidsAttackDetorLastDetTime, hwWlanWidsApDetDevType, + hwWlanWidsApDetDevRssi, hwWlanWidsApDetDevChannel, hwWlanWidsApDetDevSsid, hwWlanWidsApDetDevRogueFlag, hwWlanWidsApDetDevLastTime, + hwWlanWidsApDetDevContainFlag, hwWlanWidsApDetDevBSSID } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 7 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.8 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.8 + hwWlanWidsAttackStatGroup OBJECT-GROUP + OBJECTS { hwWlanWidsAttackStatProbeRequestFloodAttack, hwWlanWidsAttackStatAuthRequestFloodAttack, hwWlanWidsAttackStatDeAuthenFloodAttack, hwWlanWidsAttackStatAssocReqFloodAttack, hwWlanWidsAttackStatDisassocReqFloodAttack, + hwWlanWidsAttackStatReassocReqFloodAttack, hwWlanWidsAttackStatActionFloodAttack, hwWlanWidsAttackStatNullDataFloodAttack, hwWlanWidsAttackStatWeakIvAttack, hwWlanWidsAttackStatDeauthSpoofAttack, + hwWlanWidsAttackStatDisassocSpoofAttack, hwWlanWidsAttackStatWepShareKeyAttack, hwWlanWidsAttackStatWpaAttack, hwWlanWidsAttackStatWpa2Attack, hwWlanWidsAttackStatWapiAttack, + hwWlanWidsAttackStatEAPOLStartFloodAttack, hwWlanWidsAttackStatEAPOLLogoffFloodAttack, hwWlanWidsAttackStatNullQosFloodAttack, hwWlanWidsAttackStatStartTime } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 8 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.9 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.9 + hwWlanWidsDynamicBlacklistGroup OBJECT-GROUP + OBJECTS { hwWlanWidsDynamicBlacklistDevType, hwWlanWidsDynamicBlacklistDevAttackType, hwWlanWidsDynamicBlacklistAttackPacketBmp1, hwWlanWidsDynamicBlacklistAttackPacketBmp2, + hwWlanWidsDynamicBlacklistLastTime, hwWlanWidsDynamicBlacklistApName, hwWlanWidsDynamicBlacklistApIP, hwWlanWidsDynamicBlacklistAttackType, + hwWlanWidsDynamicBlacklistAPLastTime } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 9 } + +-- 1.3.6.1.4.1.2011.6.139.15.10.2.10 + -- 1.3.6.1.4.1.2011.6.139.15.10.2.10 + hwWlanWidsSrvObjectsGroup OBJECT-GROUP + OBJECTS { hwWlanWidsDetNonWifiHistMonitorApMac, hwWlanWidsDetNonWifiHistMonitorAPName, hwWlanWidsDetNonWifiHistMonitorRadioId, hwWlanWidsDetNonWifiHistMonitorRadioType, + hwWlanWidsDetNonWifiHistMonitorAPChannel, hwWlanWidsDetNonWifiHistDevType, hwWlanWidsDetNonWifiHistRssi, hwWlanWidsDetNonWifiHistFrequencyType, hwWlanWidsDetNonWifiHistChannel, + hwWlanWidsDetNonWifiHistDevLastTime, hwWlanWidsDetNonWifiHistCenterFrequency, hwWlanWidsDetNonWifiHistBandwidth, hwWlanWidsDetNonWifiHistDutycycle, hwWlanWidsDetNonWifiHistInterferenceLevel, + hwWlanWidsDetNonWifiHistDevFirstTime } + STATUS current + DESCRIPTION + "Description." + ::= { hwWlanWidsSrvObjectGroups 10 } + + + END + +-- +-- HUAWEI-WLAN-WIDS-SERVICE-MIB.mib +-- diff --git a/tests/data/vrp_ac6605-26.json b/tests/data/vrp_ac6605-26.json new file mode 100644 index 0000000000..4d7dea1352 --- /dev/null +++ b/tests/data/vrp_ac6605-26.json @@ -0,0 +1,7468 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2011.2.240.6", + "sysDescr": "Huawei AC6605-26-PWR Huawei Versatile Routing Platform Software VRP (R) software,Version 5.170 (AC6605-26-PWR V200R010C00SPC500) Copyright (C) 2011-2019 Huawei Technologies Co., Ltd", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "vrp", + "type": "network", + "serial": null, + "icon": "huawei.svg", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2011.2.240.6", + "sysDescr": "Huawei AC6605-26-PWR Huawei Versatile Routing Platform Software VRP (R) software,Version 5.170 (AC6605-26-PWR V200R010C00SPC500) Copyright (C) 2011-2019 Huawei Technologies Co., Ltd", + "sysContact": "", + "version": "5.170 (V200R010C00SPC500) [4]", + "hardware": "Huawei AC6605-26-PWR", + "features": null, + "os": "vrp", + "type": "network", + "serial": null, + "icon": "huawei.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": "InLoopBack0", + "ifName": "InLoopBack0", + "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": "softwareLoopback", + "ifAlias": "HUAWEI, AC Series, InLoopBack0 Interface", + "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": "NULL0", + "ifName": "NULL0", + "portName": null, + "ifIndex": 2, + "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": "HUAWEI, AC Series, NULL0 Interface", + "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": "GigabitEthernet0/0/1", + "ifName": "GigabitEthernet0/0/1", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "Interface 0/0/1 desc", + "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": "GigabitEthernet0/0/2", + "ifName": "GigabitEthernet0/0/2", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/2 Interface", + "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": "GigabitEthernet0/0/3", + "ifName": "GigabitEthernet0/0/3", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/3 Interface", + "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": "GigabitEthernet0/0/4", + "ifName": "GigabitEthernet0/0/4", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/4 Interface", + "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": "GigabitEthernet0/0/5", + "ifName": "GigabitEthernet0/0/5", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/5 Interface", + "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": "GigabitEthernet0/0/6", + "ifName": "GigabitEthernet0/0/6", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/6 Interface", + "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": "GigabitEthernet0/0/7", + "ifName": "GigabitEthernet0/0/7", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/7 Interface", + "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": "GigabitEthernet0/0/8", + "ifName": "GigabitEthernet0/0/8", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/8 Interface", + "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": "GigabitEthernet0/0/9", + "ifName": "GigabitEthernet0/0/9", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/9 Interface", + "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": "GigabitEthernet0/0/10", + "ifName": "GigabitEthernet0/0/10", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/10 Interface", + "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": "GigabitEthernet0/0/11", + "ifName": "GigabitEthernet0/0/11", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/11 Interface", + "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": "GigabitEthernet0/0/12", + "ifName": "GigabitEthernet0/0/12", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/12 Interface", + "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": "GigabitEthernet0/0/13", + "ifName": "GigabitEthernet0/0/13", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/13 Interface", + "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": "GigabitEthernet0/0/14", + "ifName": "GigabitEthernet0/0/14", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/14 Interface", + "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": "GigabitEthernet0/0/15", + "ifName": "GigabitEthernet0/0/15", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/15 Interface", + "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": "GigabitEthernet0/0/16", + "ifName": "GigabitEthernet0/0/16", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/16 Interface", + "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": "GigabitEthernet0/0/17", + "ifName": "GigabitEthernet0/0/17", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/17 Interface", + "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": "GigabitEthernet0/0/18", + "ifName": "GigabitEthernet0/0/18", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/18 Interface", + "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": "GigabitEthernet0/0/19", + "ifName": "GigabitEthernet0/0/19", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/19 Interface", + "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": "GigabitEthernet0/0/20", + "ifName": "GigabitEthernet0/0/20", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/20 Interface", + "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": "GigabitEthernet0/0/21", + "ifName": "GigabitEthernet0/0/21", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/21 Interface", + "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": "GigabitEthernet0/0/22", + "ifName": "GigabitEthernet0/0/22", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/22 Interface", + "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": "GigabitEthernet0/0/23", + "ifName": "GigabitEthernet0/0/23", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/23 Interface", + "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": "GigabitEthernet0/0/24", + "ifName": "GigabitEthernet0/0/24", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/24 Interface", + "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": "XGigabitEthernet0/0/1", + "ifName": "XGigabitEthernet0/0/1", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, XGigabitEthernet0/0/1 Interface", + "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": "XGigabitEthernet0/0/2", + "ifName": "XGigabitEthernet0/0/2", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, XGigabitEthernet0/0/2 Interface", + "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": "MEth0/0/1", + "ifName": "MEth0/0/1", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, MEth0/0/1 Interface", + "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": "Vlanif391", + "ifName": "Vlanif391", + "portName": null, + "ifIndex": 30, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "HUAWEI, AC Series, Vlanif391 Interface", + "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": "Vlanif70", + "ifName": "Vlanif70", + "portName": null, + "ifIndex": 37, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "radius test", + "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": "Ethernet0/0/47", + "ifName": "Ethernet0/0/47", + "portName": null, + "ifIndex": 38, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, Ethernet0/0/47 Interface", + "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": "Vlanif1", + "ifName": "Vlanif1", + "portName": null, + "ifIndex": 39, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "HUAWEI, AC Series, Vlanif1 Interface", + "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": "InLoopBack0", + "ifName": "InLoopBack0", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "HUAWEI, AC Series, InLoopBack0 Interface", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "391", + "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": "NULL0", + "ifName": "NULL0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "HUAWEI, AC Series, NULL0 Interface", + "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": "GigabitEthernet0/0/1", + "ifName": "GigabitEthernet0/0/1", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "Interface 0/0/1 desc", + "ifPhysAddress": "9c713ada8f8e", + "ifHardType": null, + "ifLastChange": 154592, + "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": 1038359, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1159229, + "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": 135047271, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1471494233, + "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": 36, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 635996, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 20387, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 4569672, + "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": "GigabitEthernet0/0/2", + "ifName": "GigabitEthernet0/0/2", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/2 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/3", + "ifName": "GigabitEthernet0/0/3", + "portName": null, + "ifIndex": 5, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/3 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/4", + "ifName": "GigabitEthernet0/0/4", + "portName": null, + "ifIndex": 6, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/4 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/5", + "ifName": "GigabitEthernet0/0/5", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/5 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/6", + "ifName": "GigabitEthernet0/0/6", + "portName": null, + "ifIndex": 8, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/6 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/7", + "ifName": "GigabitEthernet0/0/7", + "portName": null, + "ifIndex": 9, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/7 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/8", + "ifName": "GigabitEthernet0/0/8", + "portName": null, + "ifIndex": 10, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/8 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/9", + "ifName": "GigabitEthernet0/0/9", + "portName": null, + "ifIndex": 11, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/9 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/10", + "ifName": "GigabitEthernet0/0/10", + "portName": null, + "ifIndex": 12, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/10 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/11", + "ifName": "GigabitEthernet0/0/11", + "portName": null, + "ifIndex": 13, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/11 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/12", + "ifName": "GigabitEthernet0/0/12", + "portName": null, + "ifIndex": 14, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/12 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/13", + "ifName": "GigabitEthernet0/0/13", + "portName": null, + "ifIndex": 15, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/13 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/14", + "ifName": "GigabitEthernet0/0/14", + "portName": null, + "ifIndex": 16, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/14 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/15", + "ifName": "GigabitEthernet0/0/15", + "portName": null, + "ifIndex": 17, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/15 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/16", + "ifName": "GigabitEthernet0/0/16", + "portName": null, + "ifIndex": 18, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/16 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/17", + "ifName": "GigabitEthernet0/0/17", + "portName": null, + "ifIndex": 19, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/17 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/18", + "ifName": "GigabitEthernet0/0/18", + "portName": null, + "ifIndex": 20, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/18 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/19", + "ifName": "GigabitEthernet0/0/19", + "portName": null, + "ifIndex": 21, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/19 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/20", + "ifName": "GigabitEthernet0/0/20", + "portName": null, + "ifIndex": 22, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/20 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/21", + "ifName": "GigabitEthernet0/0/21", + "portName": null, + "ifIndex": 23, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/21 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/22", + "ifName": "GigabitEthernet0/0/22", + "portName": null, + "ifIndex": 24, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/22 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/23", + "ifName": "GigabitEthernet0/0/23", + "portName": null, + "ifIndex": 25, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/23 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "GigabitEthernet0/0/24", + "ifName": "GigabitEthernet0/0/24", + "portName": null, + "ifIndex": 26, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, GigabitEthernet0/0/24 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": 1917419, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1731447, + "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": 1803054938, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 445004581, + "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": 1678205, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 344, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 6364984, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 20421, + "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": "XGigabitEthernet0/0/1", + "ifName": "XGigabitEthernet0/0/1", + "portName": null, + "ifIndex": 27, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, XGigabitEthernet0/0/1 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "XGigabitEthernet0/0/2", + "ifName": "XGigabitEthernet0/0/2", + "portName": null, + "ifIndex": 28, + "ifSpeed": 10000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, XGigabitEthernet0/0/2 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "MEth0/0/1", + "ifName": "MEth0/0/1", + "portName": null, + "ifIndex": 29, + "ifSpeed": 100000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, MEth0/0/1 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "Vlanif391", + "ifName": "Vlanif391", + "portName": null, + "ifIndex": 30, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "HUAWEI, AC Series, Vlanif391 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "Vlanif70", + "ifName": "Vlanif70", + "portName": null, + "ifIndex": 37, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "radius test", + "ifPhysAddress": "9c713ada8f8e", + "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": "Ethernet0/0/47", + "ifName": "Ethernet0/0/47", + "portName": null, + "ifIndex": 38, + "ifSpeed": 1000000000, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "HUAWEI, AC Series, Ethernet0/0/47 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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": "Vlanif1", + "ifName": "Vlanif1", + "portName": null, + "ifIndex": 39, + "ifSpeed": 1000000000, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "HUAWEI, AC Series, Vlanif1 Interface", + "ifPhysAddress": "9c713ada8f8e", + "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.2011.5.25.31.1.1.1.1.5.9", + "processor_index": "9", + "processor_type": "vrp", + "processor_usage": 7, + "processor_descr": "SRU Board 0 Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "9", + "entPhysicalIndex": null, + "hrDeviceIndex": null, + "mempool_type": "vrp", + "mempool_precision": 1, + "mempool_descr": "SRU Board 0 Memory", + "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": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2011.6.157.1.3.0", + "sensor_index": "0", + "sensor_type": "vrp", + "sensor_descr": "Average Power Consumption", + "group": "", + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 43.290999999999997, + "sensor_limit": 64.936499999999995, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2011.6.157.1.6.0", + "sensor_index": "1", + "sensor_type": "vrp", + "sensor_descr": "Current Power Consumption", + "group": "", + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 43.290999999999997, + "sensor_limit": 64.936499999999995, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.9", + "sensor_index": "9", + "sensor_type": "vrp", + "sensor_descr": "SRU Board 0", + "group": "", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [] + }, + "poller": "matches discovery" + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 70, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 71, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 391, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 392, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 393, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 395, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 419, + "vlan_domain": 1, + "vlan_name": "", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "ap-count", + "sensor_type": "vrp-ap-count", + "sensor_descr": "AP Count", + "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.2011.6.139.12.1.2.1.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.0.1", + "sensor_type": "vrp", + "sensor_descr": "Radio:0 SSID:acme", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.0.2", + "sensor_type": "vrp", + "sensor_descr": "Radio:0 SSID:WIFI_BYOD", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.0.3", + "sensor_type": "vrp", + "sensor_descr": "Radio:0 SSID:acme_Guest", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.3\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.1.1", + "sensor_type": "vrp", + "sensor_descr": "Radio:1 SSID:acme", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.1.2", + "sensor_type": "vrp", + "sensor_descr": "Radio:1 SSID:WIFI_BYOD", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.1.3", + "sensor_type": "vrp", + "sensor_descr": "Radio:1 SSID:acme_Guest", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.3\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "ap-count", + "sensor_type": "vrp-ap-count", + "sensor_descr": "AP Count", + "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.2011.6.139.12.1.2.1.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.0.1", + "sensor_type": "vrp", + "sensor_descr": "Radio:0 SSID:acme", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.0.2", + "sensor_type": "vrp", + "sensor_descr": "Radio:0 SSID:WIFI_BYOD", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.0.3", + "sensor_type": "vrp", + "sensor_descr": "Radio:0 SSID:acme_Guest", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.3\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.1.1", + "sensor_type": "vrp", + "sensor_descr": "Radio:1 SSID:acme", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.1\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.1.2", + "sensor_type": "vrp", + "sensor_descr": "Radio:1 SSID:WIFI_BYOD", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.2\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "80.111.119.234.220.160.1.3", + "sensor_type": "vrp", + "sensor_descr": "Radio:1 SSID:acme_Guest", + "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.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.3\"]" + } + ] + } + } +} diff --git a/tests/snmpsim/vrp_ac6605-26.snmprec b/tests/snmpsim/vrp_ac6605-26.snmprec new file mode 100644 index 0000000000..bd76723d14 --- /dev/null +++ b/tests/snmpsim/vrp_ac6605-26.snmprec @@ -0,0 +1,4005 @@ +1.0.8802.1.1.2.1.3.7.1.3.1|4|GigabitEthernet0/0/1 +1.0.8802.1.1.2.1.3.7.1.3.2|4|GigabitEthernet0/0/2 +1.0.8802.1.1.2.1.3.7.1.3.3|4|GigabitEthernet0/0/3 +1.0.8802.1.1.2.1.3.7.1.3.4|4|GigabitEthernet0/0/4 +1.0.8802.1.1.2.1.3.7.1.3.5|4|GigabitEthernet0/0/5 +1.0.8802.1.1.2.1.3.7.1.3.6|4|GigabitEthernet0/0/6 +1.0.8802.1.1.2.1.3.7.1.3.7|4|GigabitEthernet0/0/7 +1.0.8802.1.1.2.1.3.7.1.3.8|4|GigabitEthernet0/0/8 +1.0.8802.1.1.2.1.3.7.1.3.9|4|GigabitEthernet0/0/9 +1.0.8802.1.1.2.1.3.7.1.3.10|4|GigabitEthernet0/0/10 +1.0.8802.1.1.2.1.3.7.1.3.11|4|GigabitEthernet0/0/11 +1.0.8802.1.1.2.1.3.7.1.3.12|4|GigabitEthernet0/0/12 +1.0.8802.1.1.2.1.3.7.1.3.13|4|GigabitEthernet0/0/13 +1.0.8802.1.1.2.1.3.7.1.3.14|4|GigabitEthernet0/0/14 +1.0.8802.1.1.2.1.3.7.1.3.15|4|GigabitEthernet0/0/15 +1.0.8802.1.1.2.1.3.7.1.3.16|4|GigabitEthernet0/0/16 +1.0.8802.1.1.2.1.3.7.1.3.17|4|GigabitEthernet0/0/17 +1.0.8802.1.1.2.1.3.7.1.3.18|4|GigabitEthernet0/0/18 +1.0.8802.1.1.2.1.3.7.1.3.19|4|GigabitEthernet0/0/19 +1.0.8802.1.1.2.1.3.7.1.3.20|4|GigabitEthernet0/0/20 +1.0.8802.1.1.2.1.3.7.1.3.21|4|GigabitEthernet0/0/21 +1.0.8802.1.1.2.1.3.7.1.3.22|4|GigabitEthernet0/0/22 +1.0.8802.1.1.2.1.3.7.1.3.23|4|GigabitEthernet0/0/23 +1.0.8802.1.1.2.1.3.7.1.3.24|4|GigabitEthernet0/0/24 +1.0.8802.1.1.2.1.3.7.1.3.25|4|XGigabitEthernet0/0/1 +1.0.8802.1.1.2.1.3.7.1.3.26|4|XGigabitEthernet0/0/2 +1.0.8802.1.1.2.1.4.1.1.4.4490.1.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.4490.24.1|2|4 +1.0.8802.1.1.2.1.4.1.1.5.4490.1.1|4x|506F77EADCA0 +1.0.8802.1.1.2.1.4.1.1.5.4490.24.1|4x|488EEF716260 +1.0.8802.1.1.2.1.4.1.1.6.4490.1.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.4490.24.1|2|5 +1.0.8802.1.1.2.1.4.1.1.7.4490.1.1|4|MultiGE0/0/0 +1.0.8802.1.1.2.1.4.1.1.7.4490.24.1|4|GigabitEthernet2/0/47 +1.0.8802.1.1.2.1.4.1.1.8.4490.1.1|4|HUAWEI, AP Series, MultiGE0/0/0 Interface +1.0.8802.1.1.2.1.4.1.1.8.4490.24.1|4|Cust: acme-PM7-1er [Access;Test-Ctrl-Wifi] (Wireless Test AP) +1.0.8802.1.1.2.1.4.1.1.9.4490.1.1|4|TestAP-NAME +1.0.8802.1.1.2.1.4.1.1.9.4490.24.1|4|acme-pm7-s-110 +1.0.8802.1.1.2.1.4.1.1.10.4490.1.1|4x|48756177656920415020415037303530444e2d450a48756177656920566572736174696c6520526f7574696e6720506c6174666f726d20536f6674776172650d0a5652502028522920736f6674776172652c56657273696f6e20352e3137302028415037303530444e2d45205632303052303130433030535043353030290d0a436f707972696768742028432920323031312d323031362048756177656920546563686e6f6c6f6769657320436f2e2c204c74640d +1.0.8802.1.1.2.1.4.1.1.10.4490.24.1|4x|53353732302d3536432d5057522d45492d41430a48756177656920566572736174696c6520526f7574696e6720506c6174666f726d20536f6674776172650d0a5652502028522920736f6674776172652c2056657273696f6e20352e31373020285335373230205632303052303130433030535043363030290d0a436f707972696768742028432920323030302d3230313620485541574549205445434820434f2e2c204c5444 +1.0.8802.1.1.2.1.4.1.1.11.4490.1.1|4|02 6 +1.0.8802.1.1.2.1.4.1.1.11.4490.24.1|4|02 6 +1.0.8802.1.1.2.1.4.1.1.12.4490.1.1|4|02 6 +1.0.8802.1.1.2.1.4.1.1.12.4490.24.1|4|02 6 +1.3.6.1.2.1.1.1.0|4|Huawei AC6605-26-PWR Huawei Versatile Routing Platform Software VRP (R) software,Version 5.170 (AC6605-26-PWR V200R010C00SPC500) Copyright (C) 2011-2019 Huawei Technologies Co., Ltd +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2011.2.240.6 +1.3.6.1.2.1.1.3.0|67|61090101 +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|InLoopBack0 +1.3.6.1.2.1.2.2.1.2.2|4|NULL0 +1.3.6.1.2.1.2.2.1.2.3|4|GigabitEthernet0/0/1 +1.3.6.1.2.1.2.2.1.2.4|4|GigabitEthernet0/0/2 +1.3.6.1.2.1.2.2.1.2.5|4|GigabitEthernet0/0/3 +1.3.6.1.2.1.2.2.1.2.6|4|GigabitEthernet0/0/4 +1.3.6.1.2.1.2.2.1.2.7|4|GigabitEthernet0/0/5 +1.3.6.1.2.1.2.2.1.2.8|4|GigabitEthernet0/0/6 +1.3.6.1.2.1.2.2.1.2.9|4|GigabitEthernet0/0/7 +1.3.6.1.2.1.2.2.1.2.10|4|GigabitEthernet0/0/8 +1.3.6.1.2.1.2.2.1.2.11|4|GigabitEthernet0/0/9 +1.3.6.1.2.1.2.2.1.2.12|4|GigabitEthernet0/0/10 +1.3.6.1.2.1.2.2.1.2.13|4|GigabitEthernet0/0/11 +1.3.6.1.2.1.2.2.1.2.14|4|GigabitEthernet0/0/12 +1.3.6.1.2.1.2.2.1.2.15|4|GigabitEthernet0/0/13 +1.3.6.1.2.1.2.2.1.2.16|4|GigabitEthernet0/0/14 +1.3.6.1.2.1.2.2.1.2.17|4|GigabitEthernet0/0/15 +1.3.6.1.2.1.2.2.1.2.18|4|GigabitEthernet0/0/16 +1.3.6.1.2.1.2.2.1.2.19|4|GigabitEthernet0/0/17 +1.3.6.1.2.1.2.2.1.2.20|4|GigabitEthernet0/0/18 +1.3.6.1.2.1.2.2.1.2.21|4|GigabitEthernet0/0/19 +1.3.6.1.2.1.2.2.1.2.22|4|GigabitEthernet0/0/20 +1.3.6.1.2.1.2.2.1.2.23|4|GigabitEthernet0/0/21 +1.3.6.1.2.1.2.2.1.2.24|4|GigabitEthernet0/0/22 +1.3.6.1.2.1.2.2.1.2.25|4|GigabitEthernet0/0/23 +1.3.6.1.2.1.2.2.1.2.26|4|GigabitEthernet0/0/24 +1.3.6.1.2.1.2.2.1.2.27|4|XGigabitEthernet0/0/1 +1.3.6.1.2.1.2.2.1.2.28|4|XGigabitEthernet0/0/2 +1.3.6.1.2.1.2.2.1.2.29|4|MEth0/0/1 +1.3.6.1.2.1.2.2.1.2.30|4|Vlanif391 +1.3.6.1.2.1.2.2.1.2.37|4|Vlanif70 +1.3.6.1.2.1.2.2.1.2.38|4|Ethernet0/0/47 +1.3.6.1.2.1.2.2.1.2.39|4|Vlanif1 +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|1 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|6 +1.3.6.1.2.1.2.2.1.3.9|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.12|2|6 +1.3.6.1.2.1.2.2.1.3.13|2|6 +1.3.6.1.2.1.2.2.1.3.14|2|6 +1.3.6.1.2.1.2.2.1.3.15|2|6 +1.3.6.1.2.1.2.2.1.3.16|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|6 +1.3.6.1.2.1.2.2.1.3.18|2|6 +1.3.6.1.2.1.2.2.1.3.19|2|6 +1.3.6.1.2.1.2.2.1.3.20|2|6 +1.3.6.1.2.1.2.2.1.3.21|2|6 +1.3.6.1.2.1.2.2.1.3.22|2|6 +1.3.6.1.2.1.2.2.1.3.23|2|6 +1.3.6.1.2.1.2.2.1.3.24|2|6 +1.3.6.1.2.1.2.2.1.3.25|2|6 +1.3.6.1.2.1.2.2.1.3.26|2|6 +1.3.6.1.2.1.2.2.1.3.27|2|6 +1.3.6.1.2.1.2.2.1.3.28|2|6 +1.3.6.1.2.1.2.2.1.3.29|2|6 +1.3.6.1.2.1.2.2.1.3.30|2|53 +1.3.6.1.2.1.2.2.1.3.37|2|53 +1.3.6.1.2.1.2.2.1.3.38|2|6 +1.3.6.1.2.1.2.2.1.3.39|2|53 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|9216 +1.3.6.1.2.1.2.2.1.4.4|2|9216 +1.3.6.1.2.1.2.2.1.4.5|2|9216 +1.3.6.1.2.1.2.2.1.4.6|2|9216 +1.3.6.1.2.1.2.2.1.4.7|2|9216 +1.3.6.1.2.1.2.2.1.4.8|2|9216 +1.3.6.1.2.1.2.2.1.4.9|2|9216 +1.3.6.1.2.1.2.2.1.4.10|2|9216 +1.3.6.1.2.1.2.2.1.4.11|2|9216 +1.3.6.1.2.1.2.2.1.4.12|2|9216 +1.3.6.1.2.1.2.2.1.4.13|2|9216 +1.3.6.1.2.1.2.2.1.4.14|2|9216 +1.3.6.1.2.1.2.2.1.4.15|2|9216 +1.3.6.1.2.1.2.2.1.4.16|2|9216 +1.3.6.1.2.1.2.2.1.4.17|2|9216 +1.3.6.1.2.1.2.2.1.4.18|2|9216 +1.3.6.1.2.1.2.2.1.4.19|2|9216 +1.3.6.1.2.1.2.2.1.4.20|2|9216 +1.3.6.1.2.1.2.2.1.4.21|2|9216 +1.3.6.1.2.1.2.2.1.4.22|2|9216 +1.3.6.1.2.1.2.2.1.4.23|2|9216 +1.3.6.1.2.1.2.2.1.4.24|2|9216 +1.3.6.1.2.1.2.2.1.4.25|2|9216 +1.3.6.1.2.1.2.2.1.4.26|2|9216 +1.3.6.1.2.1.2.2.1.4.27|2|9216 +1.3.6.1.2.1.2.2.1.4.28|2|9216 +1.3.6.1.2.1.2.2.1.4.29|2|1500 +1.3.6.1.2.1.2.2.1.4.30|2|1500 +1.3.6.1.2.1.2.2.1.4.37|2|1500 +1.3.6.1.2.1.2.2.1.4.38|2|1500 +1.3.6.1.2.1.2.2.1.4.39|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.2|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.3|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.4|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.5|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.6|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.7|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.8|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.9|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.10|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.11|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.12|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.13|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.14|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.15|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.16|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.17|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.18|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.19|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.20|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.21|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.22|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.23|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.24|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.25|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.26|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.27|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.28|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.29|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.30|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.37|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.38|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.6.39|4x|9C713ADA8F8E +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.23|2|1 +1.3.6.1.2.1.2.2.1.7.24|2|1 +1.3.6.1.2.1.2.2.1.7.25|2|1 +1.3.6.1.2.1.2.2.1.7.26|2|1 +1.3.6.1.2.1.2.2.1.7.27|2|1 +1.3.6.1.2.1.2.2.1.7.28|2|1 +1.3.6.1.2.1.2.2.1.7.29|2|1 +1.3.6.1.2.1.2.2.1.7.30|2|1 +1.3.6.1.2.1.2.2.1.7.37|2|1 +1.3.6.1.2.1.2.2.1.7.38|2|1 +1.3.6.1.2.1.2.2.1.7.39|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.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|2 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.23|2|2 +1.3.6.1.2.1.2.2.1.8.24|2|2 +1.3.6.1.2.1.2.2.1.8.25|2|2 +1.3.6.1.2.1.2.2.1.8.26|2|1 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|2 +1.3.6.1.2.1.2.2.1.8.29|2|2 +1.3.6.1.2.1.2.2.1.8.30|2|1 +1.3.6.1.2.1.2.2.1.8.37|2|1 +1.3.6.1.2.1.2.2.1.8.38|2|1 +1.3.6.1.2.1.2.2.1.8.39|2|2 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|154592 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +1.3.6.1.2.1.2.2.1.9.8|67|0 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.14|67|0 +1.3.6.1.2.1.2.2.1.9.15|67|0 +1.3.6.1.2.1.2.2.1.9.16|67|0 +1.3.6.1.2.1.2.2.1.9.17|67|0 +1.3.6.1.2.1.2.2.1.9.18|67|0 +1.3.6.1.2.1.2.2.1.9.19|67|0 +1.3.6.1.2.1.2.2.1.9.20|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|0 +1.3.6.1.2.1.2.2.1.9.22|67|0 +1.3.6.1.2.1.2.2.1.9.23|67|0 +1.3.6.1.2.1.2.2.1.9.24|67|0 +1.3.6.1.2.1.2.2.1.9.25|67|0 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.9.27|67|0 +1.3.6.1.2.1.2.2.1.9.28|67|0 +1.3.6.1.2.1.2.2.1.9.29|67|0 +1.3.6.1.2.1.2.2.1.9.30|67|0 +1.3.6.1.2.1.2.2.1.9.37|67|0 +1.3.6.1.2.1.2.2.1.9.38|67|0 +1.3.6.1.2.1.2.2.1.9.39|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.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.25|65|0 +1.3.6.1.2.1.2.2.1.13.26|65|0 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|0 +1.3.6.1.2.1.2.2.1.13.29|65|0 +1.3.6.1.2.1.2.2.1.13.30|65|0 +1.3.6.1.2.1.2.2.1.13.37|65|0 +1.3.6.1.2.1.2.2.1.13.38|65|0 +1.3.6.1.2.1.2.2.1.13.39|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.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.29|65|0 +1.3.6.1.2.1.2.2.1.14.30|65|0 +1.3.6.1.2.1.2.2.1.14.37|65|0 +1.3.6.1.2.1.2.2.1.14.38|65|0 +1.3.6.1.2.1.2.2.1.14.39|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.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|0 +1.3.6.1.2.1.2.2.1.19.29|65|0 +1.3.6.1.2.1.2.2.1.19.30|65|0 +1.3.6.1.2.1.2.2.1.19.37|65|0 +1.3.6.1.2.1.2.2.1.19.38|65|0 +1.3.6.1.2.1.2.2.1.19.39|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.29|65|0 +1.3.6.1.2.1.2.2.1.20.30|65|0 +1.3.6.1.2.1.2.2.1.20.37|65|0 +1.3.6.1.2.1.2.2.1.20.38|65|0 +1.3.6.1.2.1.2.2.1.20.39|65|0 +1.3.6.1.2.1.4.20.1.2.10.101.156.6|2|37 +1.3.6.1.2.1.4.20.1.2.10.120.10.10|2|30 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.169.254.1.1|2|29 +1.3.6.1.2.1.4.20.1.2.169.254.3.1|2|38 +1.3.6.1.2.1.4.20.1.3.10.101.156.6|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.10.120.10.10|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.20.1.3.169.254.1.1|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.169.254.3.1|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.29.169.254.1.1|4x|9C713ADA8F8E +1.3.6.1.2.1.4.22.1.2.30.10.120.10.1|4x|A201000000EE +1.3.6.1.2.1.4.22.1.2.30.10.120.10.10|4x|9C713ADA8F8E +1.3.6.1.2.1.4.22.1.2.30.10.120.10.100|4x|046273B3D8D0 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.101|4x|0462731BFB2C +1.3.6.1.2.1.4.22.1.2.30.10.120.10.104|4x|F4CFE2FFB1C0 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.111|4x|64F69D99D908 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.118|4x|ECBD1DCEC6A4 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.119|4x|0462731C5884 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.120|4x|F4CFE2A9F668 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.127|4x|F4CFE2A9F83C +1.3.6.1.2.1.4.22.1.2.30.10.120.10.129|4x|64F69D57FC4C +1.3.6.1.2.1.4.22.1.2.30.10.120.10.135|4x|F4CFE2FFB9C4 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.136|4x|ECBD1DCEC51C +1.3.6.1.2.1.4.22.1.2.30.10.120.10.139|4x|0462731C56FC +1.3.6.1.2.1.4.22.1.2.30.10.120.10.140|4x|04627320DE08 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.141|4x|04627320DEF8 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.154|4x|046273130B68 +1.3.6.1.2.1.4.22.1.2.30.10.120.10.171|4x|506F77EADCA0 +1.3.6.1.2.1.4.22.1.2.37.10.101.156.3|4x|005056850FA2 +1.3.6.1.2.1.4.22.1.2.37.10.101.156.6|4x|9C713ADA8F8E +1.3.6.1.2.1.4.22.1.2.37.10.101.156.66|4x|0026B99F92C4 +1.3.6.1.2.1.4.22.1.2.37.10.101.156.86|4x|A4D18C623EAC +1.3.6.1.2.1.4.22.1.2.38.169.254.3.1|4x|9C713ADA8F8E +1.3.6.1.2.1.4.24.3.0|66|14 +1.3.6.1.2.1.4.31.1.1.3.1|65|1749975 +1.3.6.1.2.1.4.31.1.1.3.2|65|0 +1.3.6.1.2.1.4.31.1.1.4.1|70|1749975 +1.3.6.1.2.1.4.31.1.1.4.2|70|0 +1.3.6.1.2.1.4.31.1.1.5.1|65|168546904 +1.3.6.1.2.1.4.31.1.1.5.2|65|0 +1.3.6.1.2.1.4.31.1.1.6.1|70|168546904 +1.3.6.1.2.1.4.31.1.1.6.2|70|0 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|244 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|1545201 +1.3.6.1.2.1.4.31.1.1.18.2|65|0 +1.3.6.1.2.1.4.31.1.1.19.1|70|1545201 +1.3.6.1.2.1.4.31.1.1.19.2|70|0 +1.3.6.1.2.1.4.31.1.1.20.1|65|1496630 +1.3.6.1.2.1.4.31.1.1.20.2|65|0 +1.3.6.1.2.1.4.31.1.1.21.1|70|1496630 +1.3.6.1.2.1.4.31.1.1.21.2|70|0 +1.3.6.1.2.1.4.31.1.1.22.1|65|0 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|350 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|350 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|2100 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|1498382 +1.3.6.1.2.1.4.31.1.1.30.2|65|0 +1.3.6.1.2.1.4.31.1.1.31.1|70|1498382 +1.3.6.1.2.1.4.31.1.1.31.2|70|0 +1.3.6.1.2.1.4.31.1.1.32.1|65|382041993 +1.3.6.1.2.1.4.31.1.1.32.2|65|0 +1.3.6.1.2.1.4.31.1.1.33.1|70|382042248 +1.3.6.1.2.1.4.31.1.1.33.2|70|0 +1.3.6.1.2.1.4.31.1.1.34.1|65|204777 +1.3.6.1.2.1.4.31.1.1.34.2|65|0 +1.3.6.1.2.1.4.31.1.1.35.1|70|204777 +1.3.6.1.2.1.4.31.1.1.35.2|70|0 +1.3.6.1.2.1.4.31.1.1.36.1|65|12352176 +1.3.6.1.2.1.4.31.1.1.36.2|65|0 +1.3.6.1.2.1.4.31.1.1.37.1|70|12352176 +1.3.6.1.2.1.4.31.1.1.37.2|70|0 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|0 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|0 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|0 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|0 +1.3.6.1.2.1.4.31.1.1.42.1|65|38559 +1.3.6.1.2.1.4.31.1.1.42.2|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|38559 +1.3.6.1.2.1.4.31.1.1.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|0 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|0 +1.3.6.1.2.1.4.31.1.1.47.2|66|0 +1.3.6.1.2.1.5.1.0|65|244 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|244 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|0 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|0 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|0 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|244 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|0 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|0 +1.3.6.1.2.1.5.29.1.4.2|65|0 +1.3.6.1.2.1.5.29.1.5.1|65|0 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|0 +1.3.6.1.2.1.5.30.1.3.1.1|65|0 +1.3.6.1.2.1.5.30.1.3.1.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|244 +1.3.6.1.2.1.5.30.1.3.1.4|65|0 +1.3.6.1.2.1.5.30.1.3.1.5|65|0 +1.3.6.1.2.1.5.30.1.3.1.6|65|0 +1.3.6.1.2.1.5.30.1.3.1.7|65|0 +1.3.6.1.2.1.5.30.1.3.1.8|65|0 +1.3.6.1.2.1.5.30.1.3.1.9|65|0 +1.3.6.1.2.1.5.30.1.3.1.10|65|0 +1.3.6.1.2.1.5.30.1.3.1.11|65|0 +1.3.6.1.2.1.5.30.1.3.1.12|65|0 +1.3.6.1.2.1.5.30.1.3.1.13|65|0 +1.3.6.1.2.1.5.30.1.3.1.14|65|0 +1.3.6.1.2.1.5.30.1.3.1.15|65|0 +1.3.6.1.2.1.5.30.1.3.1.16|65|0 +1.3.6.1.2.1.5.30.1.3.1.17|65|0 +1.3.6.1.2.1.5.30.1.3.1.18|65|0 +1.3.6.1.2.1.5.30.1.3.1.19|65|0 +1.3.6.1.2.1.5.30.1.3.1.20|65|0 +1.3.6.1.2.1.5.30.1.3.1.21|65|0 +1.3.6.1.2.1.5.30.1.3.1.22|65|0 +1.3.6.1.2.1.5.30.1.3.1.23|65|0 +1.3.6.1.2.1.5.30.1.3.1.24|65|0 +1.3.6.1.2.1.5.30.1.3.1.25|65|0 +1.3.6.1.2.1.5.30.1.3.1.26|65|0 +1.3.6.1.2.1.5.30.1.3.1.27|65|0 +1.3.6.1.2.1.5.30.1.3.1.28|65|0 +1.3.6.1.2.1.5.30.1.3.1.29|65|0 +1.3.6.1.2.1.5.30.1.3.1.30|65|0 +1.3.6.1.2.1.5.30.1.3.1.31|65|0 +1.3.6.1.2.1.5.30.1.3.1.32|65|0 +1.3.6.1.2.1.5.30.1.3.1.33|65|0 +1.3.6.1.2.1.5.30.1.3.1.34|65|0 +1.3.6.1.2.1.5.30.1.3.1.35|65|0 +1.3.6.1.2.1.5.30.1.3.1.36|65|0 +1.3.6.1.2.1.5.30.1.3.1.37|65|0 +1.3.6.1.2.1.5.30.1.3.1.38|65|0 +1.3.6.1.2.1.5.30.1.3.1.39|65|0 +1.3.6.1.2.1.5.30.1.3.1.40|65|0 +1.3.6.1.2.1.5.30.1.3.1.41|65|0 +1.3.6.1.2.1.5.30.1.3.1.42|65|0 +1.3.6.1.2.1.5.30.1.3.1.43|65|0 +1.3.6.1.2.1.5.30.1.3.1.44|65|0 +1.3.6.1.2.1.5.30.1.3.1.45|65|0 +1.3.6.1.2.1.5.30.1.3.1.46|65|0 +1.3.6.1.2.1.5.30.1.3.1.47|65|0 +1.3.6.1.2.1.5.30.1.3.1.48|65|0 +1.3.6.1.2.1.5.30.1.3.1.49|65|0 +1.3.6.1.2.1.5.30.1.3.1.50|65|0 +1.3.6.1.2.1.5.30.1.3.1.51|65|0 +1.3.6.1.2.1.5.30.1.3.1.52|65|0 +1.3.6.1.2.1.5.30.1.3.1.53|65|0 +1.3.6.1.2.1.5.30.1.3.1.54|65|0 +1.3.6.1.2.1.5.30.1.3.1.55|65|0 +1.3.6.1.2.1.5.30.1.3.1.56|65|0 +1.3.6.1.2.1.5.30.1.3.1.57|65|0 +1.3.6.1.2.1.5.30.1.3.1.58|65|0 +1.3.6.1.2.1.5.30.1.3.1.59|65|0 +1.3.6.1.2.1.5.30.1.3.1.60|65|0 +1.3.6.1.2.1.5.30.1.3.1.61|65|0 +1.3.6.1.2.1.5.30.1.3.1.62|65|0 +1.3.6.1.2.1.5.30.1.3.1.63|65|0 +1.3.6.1.2.1.5.30.1.3.1.64|65|0 +1.3.6.1.2.1.5.30.1.3.1.65|65|0 +1.3.6.1.2.1.5.30.1.3.1.66|65|0 +1.3.6.1.2.1.5.30.1.3.1.67|65|0 +1.3.6.1.2.1.5.30.1.3.1.68|65|0 +1.3.6.1.2.1.5.30.1.3.1.69|65|0 +1.3.6.1.2.1.5.30.1.3.1.70|65|0 +1.3.6.1.2.1.5.30.1.3.1.71|65|0 +1.3.6.1.2.1.5.30.1.3.1.72|65|0 +1.3.6.1.2.1.5.30.1.3.1.73|65|0 +1.3.6.1.2.1.5.30.1.3.1.74|65|0 +1.3.6.1.2.1.5.30.1.3.1.75|65|0 +1.3.6.1.2.1.5.30.1.3.1.76|65|0 +1.3.6.1.2.1.5.30.1.3.1.77|65|0 +1.3.6.1.2.1.5.30.1.3.1.78|65|0 +1.3.6.1.2.1.5.30.1.3.1.79|65|0 +1.3.6.1.2.1.5.30.1.3.1.80|65|0 +1.3.6.1.2.1.5.30.1.3.1.81|65|0 +1.3.6.1.2.1.5.30.1.3.1.82|65|0 +1.3.6.1.2.1.5.30.1.3.1.83|65|0 +1.3.6.1.2.1.5.30.1.3.1.84|65|0 +1.3.6.1.2.1.5.30.1.3.1.85|65|0 +1.3.6.1.2.1.5.30.1.3.1.86|65|0 +1.3.6.1.2.1.5.30.1.3.1.87|65|0 +1.3.6.1.2.1.5.30.1.3.1.88|65|0 +1.3.6.1.2.1.5.30.1.3.1.89|65|0 +1.3.6.1.2.1.5.30.1.3.1.90|65|0 +1.3.6.1.2.1.5.30.1.3.1.91|65|0 +1.3.6.1.2.1.5.30.1.3.1.92|65|0 +1.3.6.1.2.1.5.30.1.3.1.93|65|0 +1.3.6.1.2.1.5.30.1.3.1.94|65|0 +1.3.6.1.2.1.5.30.1.3.1.95|65|0 +1.3.6.1.2.1.5.30.1.3.1.96|65|0 +1.3.6.1.2.1.5.30.1.3.1.97|65|0 +1.3.6.1.2.1.5.30.1.3.1.98|65|0 +1.3.6.1.2.1.5.30.1.3.1.99|65|0 +1.3.6.1.2.1.5.30.1.3.1.100|65|0 +1.3.6.1.2.1.5.30.1.3.1.101|65|0 +1.3.6.1.2.1.5.30.1.3.1.102|65|0 +1.3.6.1.2.1.5.30.1.3.1.103|65|0 +1.3.6.1.2.1.5.30.1.3.1.104|65|0 +1.3.6.1.2.1.5.30.1.3.1.105|65|0 +1.3.6.1.2.1.5.30.1.3.1.106|65|0 +1.3.6.1.2.1.5.30.1.3.1.107|65|0 +1.3.6.1.2.1.5.30.1.3.1.108|65|0 +1.3.6.1.2.1.5.30.1.3.1.109|65|0 +1.3.6.1.2.1.5.30.1.3.1.110|65|0 +1.3.6.1.2.1.5.30.1.3.1.111|65|0 +1.3.6.1.2.1.5.30.1.3.1.112|65|0 +1.3.6.1.2.1.5.30.1.3.1.113|65|0 +1.3.6.1.2.1.5.30.1.3.1.114|65|0 +1.3.6.1.2.1.5.30.1.3.1.115|65|0 +1.3.6.1.2.1.5.30.1.3.1.116|65|0 +1.3.6.1.2.1.5.30.1.3.1.117|65|0 +1.3.6.1.2.1.5.30.1.3.1.118|65|0 +1.3.6.1.2.1.5.30.1.3.1.119|65|0 +1.3.6.1.2.1.5.30.1.3.1.120|65|0 +1.3.6.1.2.1.5.30.1.3.1.121|65|0 +1.3.6.1.2.1.5.30.1.3.1.122|65|0 +1.3.6.1.2.1.5.30.1.3.1.123|65|0 +1.3.6.1.2.1.5.30.1.3.1.124|65|0 +1.3.6.1.2.1.5.30.1.3.1.125|65|0 +1.3.6.1.2.1.5.30.1.3.1.126|65|0 +1.3.6.1.2.1.5.30.1.3.1.127|65|0 +1.3.6.1.2.1.5.30.1.3.1.128|65|0 +1.3.6.1.2.1.5.30.1.3.1.129|65|0 +1.3.6.1.2.1.5.30.1.3.1.130|65|0 +1.3.6.1.2.1.5.30.1.3.1.131|65|0 +1.3.6.1.2.1.5.30.1.3.1.132|65|0 +1.3.6.1.2.1.5.30.1.3.1.133|65|0 +1.3.6.1.2.1.5.30.1.3.1.134|65|0 +1.3.6.1.2.1.5.30.1.3.1.135|65|0 +1.3.6.1.2.1.5.30.1.3.1.136|65|0 +1.3.6.1.2.1.5.30.1.3.1.137|65|0 +1.3.6.1.2.1.5.30.1.3.1.138|65|0 +1.3.6.1.2.1.5.30.1.3.1.139|65|0 +1.3.6.1.2.1.5.30.1.3.1.140|65|0 +1.3.6.1.2.1.5.30.1.3.1.141|65|0 +1.3.6.1.2.1.5.30.1.3.1.142|65|0 +1.3.6.1.2.1.5.30.1.3.1.143|65|0 +1.3.6.1.2.1.5.30.1.3.1.144|65|0 +1.3.6.1.2.1.5.30.1.3.1.145|65|0 +1.3.6.1.2.1.5.30.1.3.1.146|65|0 +1.3.6.1.2.1.5.30.1.3.1.147|65|0 +1.3.6.1.2.1.5.30.1.3.1.148|65|0 +1.3.6.1.2.1.5.30.1.3.1.149|65|0 +1.3.6.1.2.1.5.30.1.3.1.150|65|0 +1.3.6.1.2.1.5.30.1.3.1.151|65|0 +1.3.6.1.2.1.5.30.1.3.1.152|65|0 +1.3.6.1.2.1.5.30.1.3.1.153|65|0 +1.3.6.1.2.1.5.30.1.3.1.154|65|0 +1.3.6.1.2.1.5.30.1.3.1.155|65|0 +1.3.6.1.2.1.5.30.1.3.1.156|65|0 +1.3.6.1.2.1.5.30.1.3.1.157|65|0 +1.3.6.1.2.1.5.30.1.3.1.158|65|0 +1.3.6.1.2.1.5.30.1.3.1.159|65|0 +1.3.6.1.2.1.5.30.1.3.1.160|65|0 +1.3.6.1.2.1.5.30.1.3.1.161|65|0 +1.3.6.1.2.1.5.30.1.3.1.162|65|0 +1.3.6.1.2.1.5.30.1.3.1.163|65|0 +1.3.6.1.2.1.5.30.1.3.1.164|65|0 +1.3.6.1.2.1.5.30.1.3.1.165|65|0 +1.3.6.1.2.1.5.30.1.3.1.166|65|0 +1.3.6.1.2.1.5.30.1.3.1.167|65|0 +1.3.6.1.2.1.5.30.1.3.1.168|65|0 +1.3.6.1.2.1.5.30.1.3.1.169|65|0 +1.3.6.1.2.1.5.30.1.3.1.170|65|0 +1.3.6.1.2.1.5.30.1.3.1.171|65|0 +1.3.6.1.2.1.5.30.1.3.1.172|65|0 +1.3.6.1.2.1.5.30.1.3.1.173|65|0 +1.3.6.1.2.1.5.30.1.3.1.174|65|0 +1.3.6.1.2.1.5.30.1.3.1.175|65|0 +1.3.6.1.2.1.5.30.1.3.1.176|65|0 +1.3.6.1.2.1.5.30.1.3.1.177|65|0 +1.3.6.1.2.1.5.30.1.3.1.178|65|0 +1.3.6.1.2.1.5.30.1.3.1.179|65|0 +1.3.6.1.2.1.5.30.1.3.1.180|65|0 +1.3.6.1.2.1.5.30.1.3.1.181|65|0 +1.3.6.1.2.1.5.30.1.3.1.182|65|0 +1.3.6.1.2.1.5.30.1.3.1.183|65|0 +1.3.6.1.2.1.5.30.1.3.1.184|65|0 +1.3.6.1.2.1.5.30.1.3.1.185|65|0 +1.3.6.1.2.1.5.30.1.3.1.186|65|0 +1.3.6.1.2.1.5.30.1.3.1.187|65|0 +1.3.6.1.2.1.5.30.1.3.1.188|65|0 +1.3.6.1.2.1.5.30.1.3.1.189|65|0 +1.3.6.1.2.1.5.30.1.3.1.190|65|0 +1.3.6.1.2.1.5.30.1.3.1.191|65|0 +1.3.6.1.2.1.5.30.1.3.1.192|65|0 +1.3.6.1.2.1.5.30.1.3.1.193|65|0 +1.3.6.1.2.1.5.30.1.3.1.194|65|0 +1.3.6.1.2.1.5.30.1.3.1.195|65|0 +1.3.6.1.2.1.5.30.1.3.1.196|65|0 +1.3.6.1.2.1.5.30.1.3.1.197|65|0 +1.3.6.1.2.1.5.30.1.3.1.198|65|0 +1.3.6.1.2.1.5.30.1.3.1.199|65|0 +1.3.6.1.2.1.5.30.1.3.1.200|65|0 +1.3.6.1.2.1.5.30.1.3.1.201|65|0 +1.3.6.1.2.1.5.30.1.3.1.202|65|0 +1.3.6.1.2.1.5.30.1.3.1.203|65|0 +1.3.6.1.2.1.5.30.1.3.1.204|65|0 +1.3.6.1.2.1.5.30.1.3.1.205|65|0 +1.3.6.1.2.1.5.30.1.3.1.206|65|0 +1.3.6.1.2.1.5.30.1.3.1.207|65|0 +1.3.6.1.2.1.5.30.1.3.1.208|65|0 +1.3.6.1.2.1.5.30.1.3.1.209|65|0 +1.3.6.1.2.1.5.30.1.3.1.210|65|0 +1.3.6.1.2.1.5.30.1.3.1.211|65|0 +1.3.6.1.2.1.5.30.1.3.1.212|65|0 +1.3.6.1.2.1.5.30.1.3.1.213|65|0 +1.3.6.1.2.1.5.30.1.3.1.214|65|0 +1.3.6.1.2.1.5.30.1.3.1.215|65|0 +1.3.6.1.2.1.5.30.1.3.1.216|65|0 +1.3.6.1.2.1.5.30.1.3.1.217|65|0 +1.3.6.1.2.1.5.30.1.3.1.218|65|0 +1.3.6.1.2.1.5.30.1.3.1.219|65|0 +1.3.6.1.2.1.5.30.1.3.1.220|65|0 +1.3.6.1.2.1.5.30.1.3.1.221|65|0 +1.3.6.1.2.1.5.30.1.3.1.222|65|0 +1.3.6.1.2.1.5.30.1.3.1.223|65|0 +1.3.6.1.2.1.5.30.1.3.1.224|65|0 +1.3.6.1.2.1.5.30.1.3.1.225|65|0 +1.3.6.1.2.1.5.30.1.3.1.226|65|0 +1.3.6.1.2.1.5.30.1.3.1.227|65|0 +1.3.6.1.2.1.5.30.1.3.1.228|65|0 +1.3.6.1.2.1.5.30.1.3.1.229|65|0 +1.3.6.1.2.1.5.30.1.3.1.230|65|0 +1.3.6.1.2.1.5.30.1.3.1.231|65|0 +1.3.6.1.2.1.5.30.1.3.1.232|65|0 +1.3.6.1.2.1.5.30.1.3.1.233|65|0 +1.3.6.1.2.1.5.30.1.3.1.234|65|0 +1.3.6.1.2.1.5.30.1.3.1.235|65|0 +1.3.6.1.2.1.5.30.1.3.1.236|65|0 +1.3.6.1.2.1.5.30.1.3.1.237|65|0 +1.3.6.1.2.1.5.30.1.3.1.238|65|0 +1.3.6.1.2.1.5.30.1.3.1.239|65|0 +1.3.6.1.2.1.5.30.1.3.1.240|65|0 +1.3.6.1.2.1.5.30.1.3.1.241|65|0 +1.3.6.1.2.1.5.30.1.3.1.242|65|0 +1.3.6.1.2.1.5.30.1.3.1.243|65|0 +1.3.6.1.2.1.5.30.1.3.1.244|65|0 +1.3.6.1.2.1.5.30.1.3.1.245|65|0 +1.3.6.1.2.1.5.30.1.3.1.246|65|0 +1.3.6.1.2.1.5.30.1.3.1.247|65|0 +1.3.6.1.2.1.5.30.1.3.1.248|65|0 +1.3.6.1.2.1.5.30.1.3.1.249|65|0 +1.3.6.1.2.1.5.30.1.3.1.250|65|0 +1.3.6.1.2.1.5.30.1.3.1.251|65|0 +1.3.6.1.2.1.5.30.1.3.1.252|65|0 +1.3.6.1.2.1.5.30.1.3.1.253|65|0 +1.3.6.1.2.1.5.30.1.3.1.254|65|0 +1.3.6.1.2.1.5.30.1.3.1.255|65|0 +1.3.6.1.2.1.5.30.1.3.2.0|65|0 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.5|65|0 +1.3.6.1.2.1.5.30.1.3.2.6|65|0 +1.3.6.1.2.1.5.30.1.3.2.7|65|0 +1.3.6.1.2.1.5.30.1.3.2.8|65|0 +1.3.6.1.2.1.5.30.1.3.2.9|65|0 +1.3.6.1.2.1.5.30.1.3.2.10|65|0 +1.3.6.1.2.1.5.30.1.3.2.11|65|0 +1.3.6.1.2.1.5.30.1.3.2.12|65|0 +1.3.6.1.2.1.5.30.1.3.2.13|65|0 +1.3.6.1.2.1.5.30.1.3.2.14|65|0 +1.3.6.1.2.1.5.30.1.3.2.15|65|0 +1.3.6.1.2.1.5.30.1.3.2.16|65|0 +1.3.6.1.2.1.5.30.1.3.2.17|65|0 +1.3.6.1.2.1.5.30.1.3.2.18|65|0 +1.3.6.1.2.1.5.30.1.3.2.19|65|0 +1.3.6.1.2.1.5.30.1.3.2.20|65|0 +1.3.6.1.2.1.5.30.1.3.2.21|65|0 +1.3.6.1.2.1.5.30.1.3.2.22|65|0 +1.3.6.1.2.1.5.30.1.3.2.23|65|0 +1.3.6.1.2.1.5.30.1.3.2.24|65|0 +1.3.6.1.2.1.5.30.1.3.2.25|65|0 +1.3.6.1.2.1.5.30.1.3.2.26|65|0 +1.3.6.1.2.1.5.30.1.3.2.27|65|0 +1.3.6.1.2.1.5.30.1.3.2.28|65|0 +1.3.6.1.2.1.5.30.1.3.2.29|65|0 +1.3.6.1.2.1.5.30.1.3.2.30|65|0 +1.3.6.1.2.1.5.30.1.3.2.31|65|0 +1.3.6.1.2.1.5.30.1.3.2.32|65|0 +1.3.6.1.2.1.5.30.1.3.2.33|65|0 +1.3.6.1.2.1.5.30.1.3.2.34|65|0 +1.3.6.1.2.1.5.30.1.3.2.35|65|0 +1.3.6.1.2.1.5.30.1.3.2.36|65|0 +1.3.6.1.2.1.5.30.1.3.2.37|65|0 +1.3.6.1.2.1.5.30.1.3.2.38|65|0 +1.3.6.1.2.1.5.30.1.3.2.39|65|0 +1.3.6.1.2.1.5.30.1.3.2.40|65|0 +1.3.6.1.2.1.5.30.1.3.2.41|65|0 +1.3.6.1.2.1.5.30.1.3.2.42|65|0 +1.3.6.1.2.1.5.30.1.3.2.43|65|0 +1.3.6.1.2.1.5.30.1.3.2.44|65|0 +1.3.6.1.2.1.5.30.1.3.2.45|65|0 +1.3.6.1.2.1.5.30.1.3.2.46|65|0 +1.3.6.1.2.1.5.30.1.3.2.47|65|0 +1.3.6.1.2.1.5.30.1.3.2.48|65|0 +1.3.6.1.2.1.5.30.1.3.2.49|65|0 +1.3.6.1.2.1.5.30.1.3.2.50|65|0 +1.3.6.1.2.1.5.30.1.3.2.51|65|0 +1.3.6.1.2.1.5.30.1.3.2.52|65|0 +1.3.6.1.2.1.5.30.1.3.2.53|65|0 +1.3.6.1.2.1.5.30.1.3.2.54|65|0 +1.3.6.1.2.1.5.30.1.3.2.55|65|0 +1.3.6.1.2.1.5.30.1.3.2.56|65|0 +1.3.6.1.2.1.5.30.1.3.2.57|65|0 +1.3.6.1.2.1.5.30.1.3.2.58|65|0 +1.3.6.1.2.1.5.30.1.3.2.59|65|0 +1.3.6.1.2.1.5.30.1.3.2.60|65|0 +1.3.6.1.2.1.5.30.1.3.2.61|65|0 +1.3.6.1.2.1.5.30.1.3.2.62|65|0 +1.3.6.1.2.1.5.30.1.3.2.63|65|0 +1.3.6.1.2.1.5.30.1.3.2.64|65|0 +1.3.6.1.2.1.5.30.1.3.2.65|65|0 +1.3.6.1.2.1.5.30.1.3.2.66|65|0 +1.3.6.1.2.1.5.30.1.3.2.67|65|0 +1.3.6.1.2.1.5.30.1.3.2.68|65|0 +1.3.6.1.2.1.5.30.1.3.2.69|65|0 +1.3.6.1.2.1.5.30.1.3.2.70|65|0 +1.3.6.1.2.1.5.30.1.3.2.71|65|0 +1.3.6.1.2.1.5.30.1.3.2.72|65|0 +1.3.6.1.2.1.5.30.1.3.2.73|65|0 +1.3.6.1.2.1.5.30.1.3.2.74|65|0 +1.3.6.1.2.1.5.30.1.3.2.75|65|0 +1.3.6.1.2.1.5.30.1.3.2.76|65|0 +1.3.6.1.2.1.5.30.1.3.2.77|65|0 +1.3.6.1.2.1.5.30.1.3.2.78|65|0 +1.3.6.1.2.1.5.30.1.3.2.79|65|0 +1.3.6.1.2.1.5.30.1.3.2.80|65|0 +1.3.6.1.2.1.5.30.1.3.2.81|65|0 +1.3.6.1.2.1.5.30.1.3.2.82|65|0 +1.3.6.1.2.1.5.30.1.3.2.83|65|0 +1.3.6.1.2.1.5.30.1.3.2.84|65|0 +1.3.6.1.2.1.5.30.1.3.2.85|65|0 +1.3.6.1.2.1.5.30.1.3.2.86|65|0 +1.3.6.1.2.1.5.30.1.3.2.87|65|0 +1.3.6.1.2.1.5.30.1.3.2.88|65|0 +1.3.6.1.2.1.5.30.1.3.2.89|65|0 +1.3.6.1.2.1.5.30.1.3.2.90|65|0 +1.3.6.1.2.1.5.30.1.3.2.91|65|0 +1.3.6.1.2.1.5.30.1.3.2.92|65|0 +1.3.6.1.2.1.5.30.1.3.2.93|65|0 +1.3.6.1.2.1.5.30.1.3.2.94|65|0 +1.3.6.1.2.1.5.30.1.3.2.95|65|0 +1.3.6.1.2.1.5.30.1.3.2.96|65|0 +1.3.6.1.2.1.5.30.1.3.2.97|65|0 +1.3.6.1.2.1.5.30.1.3.2.98|65|0 +1.3.6.1.2.1.5.30.1.3.2.99|65|0 +1.3.6.1.2.1.5.30.1.3.2.100|65|0 +1.3.6.1.2.1.5.30.1.3.2.101|65|0 +1.3.6.1.2.1.5.30.1.3.2.102|65|0 +1.3.6.1.2.1.5.30.1.3.2.103|65|0 +1.3.6.1.2.1.5.30.1.3.2.104|65|0 +1.3.6.1.2.1.5.30.1.3.2.105|65|0 +1.3.6.1.2.1.5.30.1.3.2.106|65|0 +1.3.6.1.2.1.5.30.1.3.2.107|65|0 +1.3.6.1.2.1.5.30.1.3.2.108|65|0 +1.3.6.1.2.1.5.30.1.3.2.109|65|0 +1.3.6.1.2.1.5.30.1.3.2.110|65|0 +1.3.6.1.2.1.5.30.1.3.2.111|65|0 +1.3.6.1.2.1.5.30.1.3.2.112|65|0 +1.3.6.1.2.1.5.30.1.3.2.113|65|0 +1.3.6.1.2.1.5.30.1.3.2.114|65|0 +1.3.6.1.2.1.5.30.1.3.2.115|65|0 +1.3.6.1.2.1.5.30.1.3.2.116|65|0 +1.3.6.1.2.1.5.30.1.3.2.117|65|0 +1.3.6.1.2.1.5.30.1.3.2.118|65|0 +1.3.6.1.2.1.5.30.1.3.2.119|65|0 +1.3.6.1.2.1.5.30.1.3.2.120|65|0 +1.3.6.1.2.1.5.30.1.3.2.121|65|0 +1.3.6.1.2.1.5.30.1.3.2.122|65|0 +1.3.6.1.2.1.5.30.1.3.2.123|65|0 +1.3.6.1.2.1.5.30.1.3.2.124|65|0 +1.3.6.1.2.1.5.30.1.3.2.125|65|0 +1.3.6.1.2.1.5.30.1.3.2.126|65|0 +1.3.6.1.2.1.5.30.1.3.2.127|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|0 +1.3.6.1.2.1.5.30.1.3.2.129|65|0 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.136|65|0 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.3.2.138|65|0 +1.3.6.1.2.1.5.30.1.3.2.139|65|0 +1.3.6.1.2.1.5.30.1.3.2.140|65|0 +1.3.6.1.2.1.5.30.1.3.2.141|65|0 +1.3.6.1.2.1.5.30.1.3.2.142|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.3.2.144|65|0 +1.3.6.1.2.1.5.30.1.3.2.145|65|0 +1.3.6.1.2.1.5.30.1.3.2.146|65|0 +1.3.6.1.2.1.5.30.1.3.2.147|65|0 +1.3.6.1.2.1.5.30.1.3.2.148|65|0 +1.3.6.1.2.1.5.30.1.3.2.149|65|0 +1.3.6.1.2.1.5.30.1.3.2.150|65|0 +1.3.6.1.2.1.5.30.1.3.2.151|65|0 +1.3.6.1.2.1.5.30.1.3.2.152|65|0 +1.3.6.1.2.1.5.30.1.3.2.153|65|0 +1.3.6.1.2.1.5.30.1.3.2.154|65|0 +1.3.6.1.2.1.5.30.1.3.2.155|65|0 +1.3.6.1.2.1.5.30.1.3.2.156|65|0 +1.3.6.1.2.1.5.30.1.3.2.157|65|0 +1.3.6.1.2.1.5.30.1.3.2.158|65|0 +1.3.6.1.2.1.5.30.1.3.2.159|65|0 +1.3.6.1.2.1.5.30.1.3.2.160|65|0 +1.3.6.1.2.1.5.30.1.3.2.161|65|0 +1.3.6.1.2.1.5.30.1.3.2.162|65|0 +1.3.6.1.2.1.5.30.1.3.2.163|65|0 +1.3.6.1.2.1.5.30.1.3.2.164|65|0 +1.3.6.1.2.1.5.30.1.3.2.165|65|0 +1.3.6.1.2.1.5.30.1.3.2.166|65|0 +1.3.6.1.2.1.5.30.1.3.2.167|65|0 +1.3.6.1.2.1.5.30.1.3.2.168|65|0 +1.3.6.1.2.1.5.30.1.3.2.169|65|0 +1.3.6.1.2.1.5.30.1.3.2.170|65|0 +1.3.6.1.2.1.5.30.1.3.2.171|65|0 +1.3.6.1.2.1.5.30.1.3.2.172|65|0 +1.3.6.1.2.1.5.30.1.3.2.173|65|0 +1.3.6.1.2.1.5.30.1.3.2.174|65|0 +1.3.6.1.2.1.5.30.1.3.2.175|65|0 +1.3.6.1.2.1.5.30.1.3.2.176|65|0 +1.3.6.1.2.1.5.30.1.3.2.177|65|0 +1.3.6.1.2.1.5.30.1.3.2.178|65|0 +1.3.6.1.2.1.5.30.1.3.2.179|65|0 +1.3.6.1.2.1.5.30.1.3.2.180|65|0 +1.3.6.1.2.1.5.30.1.3.2.181|65|0 +1.3.6.1.2.1.5.30.1.3.2.182|65|0 +1.3.6.1.2.1.5.30.1.3.2.183|65|0 +1.3.6.1.2.1.5.30.1.3.2.184|65|0 +1.3.6.1.2.1.5.30.1.3.2.185|65|0 +1.3.6.1.2.1.5.30.1.3.2.186|65|0 +1.3.6.1.2.1.5.30.1.3.2.187|65|0 +1.3.6.1.2.1.5.30.1.3.2.188|65|0 +1.3.6.1.2.1.5.30.1.3.2.189|65|0 +1.3.6.1.2.1.5.30.1.3.2.190|65|0 +1.3.6.1.2.1.5.30.1.3.2.191|65|0 +1.3.6.1.2.1.5.30.1.3.2.192|65|0 +1.3.6.1.2.1.5.30.1.3.2.193|65|0 +1.3.6.1.2.1.5.30.1.3.2.194|65|0 +1.3.6.1.2.1.5.30.1.3.2.195|65|0 +1.3.6.1.2.1.5.30.1.3.2.196|65|0 +1.3.6.1.2.1.5.30.1.3.2.197|65|0 +1.3.6.1.2.1.5.30.1.3.2.198|65|0 +1.3.6.1.2.1.5.30.1.3.2.199|65|0 +1.3.6.1.2.1.5.30.1.3.2.200|65|0 +1.3.6.1.2.1.5.30.1.3.2.201|65|0 +1.3.6.1.2.1.5.30.1.3.2.202|65|0 +1.3.6.1.2.1.5.30.1.3.2.203|65|0 +1.3.6.1.2.1.5.30.1.3.2.204|65|0 +1.3.6.1.2.1.5.30.1.3.2.205|65|0 +1.3.6.1.2.1.5.30.1.3.2.206|65|0 +1.3.6.1.2.1.5.30.1.3.2.207|65|0 +1.3.6.1.2.1.5.30.1.3.2.208|65|0 +1.3.6.1.2.1.5.30.1.3.2.209|65|0 +1.3.6.1.2.1.5.30.1.3.2.210|65|0 +1.3.6.1.2.1.5.30.1.3.2.211|65|0 +1.3.6.1.2.1.5.30.1.3.2.212|65|0 +1.3.6.1.2.1.5.30.1.3.2.213|65|0 +1.3.6.1.2.1.5.30.1.3.2.214|65|0 +1.3.6.1.2.1.5.30.1.3.2.215|65|0 +1.3.6.1.2.1.5.30.1.3.2.216|65|0 +1.3.6.1.2.1.5.30.1.3.2.217|65|0 +1.3.6.1.2.1.5.30.1.3.2.218|65|0 +1.3.6.1.2.1.5.30.1.3.2.219|65|0 +1.3.6.1.2.1.5.30.1.3.2.220|65|0 +1.3.6.1.2.1.5.30.1.3.2.221|65|0 +1.3.6.1.2.1.5.30.1.3.2.222|65|0 +1.3.6.1.2.1.5.30.1.3.2.223|65|0 +1.3.6.1.2.1.5.30.1.3.2.224|65|0 +1.3.6.1.2.1.5.30.1.3.2.225|65|0 +1.3.6.1.2.1.5.30.1.3.2.226|65|0 +1.3.6.1.2.1.5.30.1.3.2.227|65|0 +1.3.6.1.2.1.5.30.1.3.2.228|65|0 +1.3.6.1.2.1.5.30.1.3.2.229|65|0 +1.3.6.1.2.1.5.30.1.3.2.230|65|0 +1.3.6.1.2.1.5.30.1.3.2.231|65|0 +1.3.6.1.2.1.5.30.1.3.2.232|65|0 +1.3.6.1.2.1.5.30.1.3.2.233|65|0 +1.3.6.1.2.1.5.30.1.3.2.234|65|0 +1.3.6.1.2.1.5.30.1.3.2.235|65|0 +1.3.6.1.2.1.5.30.1.3.2.236|65|0 +1.3.6.1.2.1.5.30.1.3.2.237|65|0 +1.3.6.1.2.1.5.30.1.3.2.238|65|0 +1.3.6.1.2.1.5.30.1.3.2.239|65|0 +1.3.6.1.2.1.5.30.1.3.2.240|65|0 +1.3.6.1.2.1.5.30.1.3.2.241|65|0 +1.3.6.1.2.1.5.30.1.3.2.242|65|0 +1.3.6.1.2.1.5.30.1.3.2.243|65|0 +1.3.6.1.2.1.5.30.1.3.2.244|65|0 +1.3.6.1.2.1.5.30.1.3.2.245|65|0 +1.3.6.1.2.1.5.30.1.3.2.246|65|0 +1.3.6.1.2.1.5.30.1.3.2.247|65|0 +1.3.6.1.2.1.5.30.1.3.2.248|65|0 +1.3.6.1.2.1.5.30.1.3.2.249|65|0 +1.3.6.1.2.1.5.30.1.3.2.250|65|0 +1.3.6.1.2.1.5.30.1.3.2.251|65|0 +1.3.6.1.2.1.5.30.1.3.2.252|65|0 +1.3.6.1.2.1.5.30.1.3.2.253|65|0 +1.3.6.1.2.1.5.30.1.3.2.254|65|0 +1.3.6.1.2.1.5.30.1.3.2.255|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|0 +1.3.6.1.2.1.5.30.1.4.1.1|65|0 +1.3.6.1.2.1.5.30.1.4.1.2|65|0 +1.3.6.1.2.1.5.30.1.4.1.3|65|0 +1.3.6.1.2.1.5.30.1.4.1.4|65|0 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.6|65|0 +1.3.6.1.2.1.5.30.1.4.1.7|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.1.10|65|0 +1.3.6.1.2.1.5.30.1.4.1.11|65|0 +1.3.6.1.2.1.5.30.1.4.1.12|65|0 +1.3.6.1.2.1.5.30.1.4.1.13|65|0 +1.3.6.1.2.1.5.30.1.4.1.14|65|0 +1.3.6.1.2.1.5.30.1.4.1.15|65|0 +1.3.6.1.2.1.5.30.1.4.1.16|65|0 +1.3.6.1.2.1.5.30.1.4.1.17|65|0 +1.3.6.1.2.1.5.30.1.4.1.18|65|0 +1.3.6.1.2.1.5.30.1.4.1.19|65|0 +1.3.6.1.2.1.5.30.1.4.1.20|65|0 +1.3.6.1.2.1.5.30.1.4.1.21|65|0 +1.3.6.1.2.1.5.30.1.4.1.22|65|0 +1.3.6.1.2.1.5.30.1.4.1.23|65|0 +1.3.6.1.2.1.5.30.1.4.1.24|65|0 +1.3.6.1.2.1.5.30.1.4.1.25|65|0 +1.3.6.1.2.1.5.30.1.4.1.26|65|0 +1.3.6.1.2.1.5.30.1.4.1.27|65|0 +1.3.6.1.2.1.5.30.1.4.1.28|65|0 +1.3.6.1.2.1.5.30.1.4.1.29|65|0 +1.3.6.1.2.1.5.30.1.4.1.30|65|0 +1.3.6.1.2.1.5.30.1.4.1.31|65|0 +1.3.6.1.2.1.5.30.1.4.1.32|65|0 +1.3.6.1.2.1.5.30.1.4.1.33|65|0 +1.3.6.1.2.1.5.30.1.4.1.34|65|0 +1.3.6.1.2.1.5.30.1.4.1.35|65|0 +1.3.6.1.2.1.5.30.1.4.1.36|65|0 +1.3.6.1.2.1.5.30.1.4.1.37|65|0 +1.3.6.1.2.1.5.30.1.4.1.38|65|0 +1.3.6.1.2.1.5.30.1.4.1.39|65|0 +1.3.6.1.2.1.5.30.1.4.1.40|65|0 +1.3.6.1.2.1.5.30.1.4.1.41|65|0 +1.3.6.1.2.1.5.30.1.4.1.42|65|0 +1.3.6.1.2.1.5.30.1.4.1.43|65|0 +1.3.6.1.2.1.5.30.1.4.1.44|65|0 +1.3.6.1.2.1.5.30.1.4.1.45|65|0 +1.3.6.1.2.1.5.30.1.4.1.46|65|0 +1.3.6.1.2.1.5.30.1.4.1.47|65|0 +1.3.6.1.2.1.5.30.1.4.1.48|65|0 +1.3.6.1.2.1.5.30.1.4.1.49|65|0 +1.3.6.1.2.1.5.30.1.4.1.50|65|0 +1.3.6.1.2.1.5.30.1.4.1.51|65|0 +1.3.6.1.2.1.5.30.1.4.1.52|65|0 +1.3.6.1.2.1.5.30.1.4.1.53|65|0 +1.3.6.1.2.1.5.30.1.4.1.54|65|0 +1.3.6.1.2.1.5.30.1.4.1.55|65|0 +1.3.6.1.2.1.5.30.1.4.1.56|65|0 +1.3.6.1.2.1.5.30.1.4.1.57|65|0 +1.3.6.1.2.1.5.30.1.4.1.58|65|0 +1.3.6.1.2.1.5.30.1.4.1.59|65|0 +1.3.6.1.2.1.5.30.1.4.1.60|65|0 +1.3.6.1.2.1.5.30.1.4.1.61|65|0 +1.3.6.1.2.1.5.30.1.4.1.62|65|0 +1.3.6.1.2.1.5.30.1.4.1.63|65|0 +1.3.6.1.2.1.5.30.1.4.1.64|65|0 +1.3.6.1.2.1.5.30.1.4.1.65|65|0 +1.3.6.1.2.1.5.30.1.4.1.66|65|0 +1.3.6.1.2.1.5.30.1.4.1.67|65|0 +1.3.6.1.2.1.5.30.1.4.1.68|65|0 +1.3.6.1.2.1.5.30.1.4.1.69|65|0 +1.3.6.1.2.1.5.30.1.4.1.70|65|0 +1.3.6.1.2.1.5.30.1.4.1.71|65|0 +1.3.6.1.2.1.5.30.1.4.1.72|65|0 +1.3.6.1.2.1.5.30.1.4.1.73|65|0 +1.3.6.1.2.1.5.30.1.4.1.74|65|0 +1.3.6.1.2.1.5.30.1.4.1.75|65|0 +1.3.6.1.2.1.5.30.1.4.1.76|65|0 +1.3.6.1.2.1.5.30.1.4.1.77|65|0 +1.3.6.1.2.1.5.30.1.4.1.78|65|0 +1.3.6.1.2.1.5.30.1.4.1.79|65|0 +1.3.6.1.2.1.5.30.1.4.1.80|65|0 +1.3.6.1.2.1.5.30.1.4.1.81|65|0 +1.3.6.1.2.1.5.30.1.4.1.82|65|0 +1.3.6.1.2.1.5.30.1.4.1.83|65|0 +1.3.6.1.2.1.5.30.1.4.1.84|65|0 +1.3.6.1.2.1.5.30.1.4.1.85|65|0 +1.3.6.1.2.1.5.30.1.4.1.86|65|0 +1.3.6.1.2.1.5.30.1.4.1.87|65|0 +1.3.6.1.2.1.5.30.1.4.1.88|65|0 +1.3.6.1.2.1.5.30.1.4.1.89|65|0 +1.3.6.1.2.1.5.30.1.4.1.90|65|0 +1.3.6.1.2.1.5.30.1.4.1.91|65|0 +1.3.6.1.2.1.5.30.1.4.1.92|65|0 +1.3.6.1.2.1.5.30.1.4.1.93|65|0 +1.3.6.1.2.1.5.30.1.4.1.94|65|0 +1.3.6.1.2.1.5.30.1.4.1.95|65|0 +1.3.6.1.2.1.5.30.1.4.1.96|65|0 +1.3.6.1.2.1.5.30.1.4.1.97|65|0 +1.3.6.1.2.1.5.30.1.4.1.98|65|0 +1.3.6.1.2.1.5.30.1.4.1.99|65|0 +1.3.6.1.2.1.5.30.1.4.1.100|65|0 +1.3.6.1.2.1.5.30.1.4.1.101|65|0 +1.3.6.1.2.1.5.30.1.4.1.102|65|0 +1.3.6.1.2.1.5.30.1.4.1.103|65|0 +1.3.6.1.2.1.5.30.1.4.1.104|65|0 +1.3.6.1.2.1.5.30.1.4.1.105|65|0 +1.3.6.1.2.1.5.30.1.4.1.106|65|0 +1.3.6.1.2.1.5.30.1.4.1.107|65|0 +1.3.6.1.2.1.5.30.1.4.1.108|65|0 +1.3.6.1.2.1.5.30.1.4.1.109|65|0 +1.3.6.1.2.1.5.30.1.4.1.110|65|0 +1.3.6.1.2.1.5.30.1.4.1.111|65|0 +1.3.6.1.2.1.5.30.1.4.1.112|65|0 +1.3.6.1.2.1.5.30.1.4.1.113|65|0 +1.3.6.1.2.1.5.30.1.4.1.114|65|0 +1.3.6.1.2.1.5.30.1.4.1.115|65|0 +1.3.6.1.2.1.5.30.1.4.1.116|65|0 +1.3.6.1.2.1.5.30.1.4.1.117|65|0 +1.3.6.1.2.1.5.30.1.4.1.118|65|0 +1.3.6.1.2.1.5.30.1.4.1.119|65|0 +1.3.6.1.2.1.5.30.1.4.1.120|65|0 +1.3.6.1.2.1.5.30.1.4.1.121|65|0 +1.3.6.1.2.1.5.30.1.4.1.122|65|0 +1.3.6.1.2.1.5.30.1.4.1.123|65|0 +1.3.6.1.2.1.5.30.1.4.1.124|65|0 +1.3.6.1.2.1.5.30.1.4.1.125|65|0 +1.3.6.1.2.1.5.30.1.4.1.126|65|0 +1.3.6.1.2.1.5.30.1.4.1.127|65|0 +1.3.6.1.2.1.5.30.1.4.1.128|65|0 +1.3.6.1.2.1.5.30.1.4.1.129|65|0 +1.3.6.1.2.1.5.30.1.4.1.130|65|0 +1.3.6.1.2.1.5.30.1.4.1.131|65|0 +1.3.6.1.2.1.5.30.1.4.1.132|65|0 +1.3.6.1.2.1.5.30.1.4.1.133|65|0 +1.3.6.1.2.1.5.30.1.4.1.134|65|0 +1.3.6.1.2.1.5.30.1.4.1.135|65|0 +1.3.6.1.2.1.5.30.1.4.1.136|65|0 +1.3.6.1.2.1.5.30.1.4.1.137|65|0 +1.3.6.1.2.1.5.30.1.4.1.138|65|0 +1.3.6.1.2.1.5.30.1.4.1.139|65|0 +1.3.6.1.2.1.5.30.1.4.1.140|65|0 +1.3.6.1.2.1.5.30.1.4.1.141|65|0 +1.3.6.1.2.1.5.30.1.4.1.142|65|0 +1.3.6.1.2.1.5.30.1.4.1.143|65|0 +1.3.6.1.2.1.5.30.1.4.1.144|65|0 +1.3.6.1.2.1.5.30.1.4.1.145|65|0 +1.3.6.1.2.1.5.30.1.4.1.146|65|0 +1.3.6.1.2.1.5.30.1.4.1.147|65|0 +1.3.6.1.2.1.5.30.1.4.1.148|65|0 +1.3.6.1.2.1.5.30.1.4.1.149|65|0 +1.3.6.1.2.1.5.30.1.4.1.150|65|0 +1.3.6.1.2.1.5.30.1.4.1.151|65|0 +1.3.6.1.2.1.5.30.1.4.1.152|65|0 +1.3.6.1.2.1.5.30.1.4.1.153|65|0 +1.3.6.1.2.1.5.30.1.4.1.154|65|0 +1.3.6.1.2.1.5.30.1.4.1.155|65|0 +1.3.6.1.2.1.5.30.1.4.1.156|65|0 +1.3.6.1.2.1.5.30.1.4.1.157|65|0 +1.3.6.1.2.1.5.30.1.4.1.158|65|0 +1.3.6.1.2.1.5.30.1.4.1.159|65|0 +1.3.6.1.2.1.5.30.1.4.1.160|65|0 +1.3.6.1.2.1.5.30.1.4.1.161|65|0 +1.3.6.1.2.1.5.30.1.4.1.162|65|0 +1.3.6.1.2.1.5.30.1.4.1.163|65|0 +1.3.6.1.2.1.5.30.1.4.1.164|65|0 +1.3.6.1.2.1.5.30.1.4.1.165|65|0 +1.3.6.1.2.1.5.30.1.4.1.166|65|0 +1.3.6.1.2.1.5.30.1.4.1.167|65|0 +1.3.6.1.2.1.5.30.1.4.1.168|65|0 +1.3.6.1.2.1.5.30.1.4.1.169|65|0 +1.3.6.1.2.1.5.30.1.4.1.170|65|0 +1.3.6.1.2.1.5.30.1.4.1.171|65|0 +1.3.6.1.2.1.5.30.1.4.1.172|65|0 +1.3.6.1.2.1.5.30.1.4.1.173|65|0 +1.3.6.1.2.1.5.30.1.4.1.174|65|0 +1.3.6.1.2.1.5.30.1.4.1.175|65|0 +1.3.6.1.2.1.5.30.1.4.1.176|65|0 +1.3.6.1.2.1.5.30.1.4.1.177|65|0 +1.3.6.1.2.1.5.30.1.4.1.178|65|0 +1.3.6.1.2.1.5.30.1.4.1.179|65|0 +1.3.6.1.2.1.5.30.1.4.1.180|65|0 +1.3.6.1.2.1.5.30.1.4.1.181|65|0 +1.3.6.1.2.1.5.30.1.4.1.182|65|0 +1.3.6.1.2.1.5.30.1.4.1.183|65|0 +1.3.6.1.2.1.5.30.1.4.1.184|65|0 +1.3.6.1.2.1.5.30.1.4.1.185|65|0 +1.3.6.1.2.1.5.30.1.4.1.186|65|0 +1.3.6.1.2.1.5.30.1.4.1.187|65|0 +1.3.6.1.2.1.5.30.1.4.1.188|65|0 +1.3.6.1.2.1.5.30.1.4.1.189|65|0 +1.3.6.1.2.1.5.30.1.4.1.190|65|0 +1.3.6.1.2.1.5.30.1.4.1.191|65|0 +1.3.6.1.2.1.5.30.1.4.1.192|65|0 +1.3.6.1.2.1.5.30.1.4.1.193|65|0 +1.3.6.1.2.1.5.30.1.4.1.194|65|0 +1.3.6.1.2.1.5.30.1.4.1.195|65|0 +1.3.6.1.2.1.5.30.1.4.1.196|65|0 +1.3.6.1.2.1.5.30.1.4.1.197|65|0 +1.3.6.1.2.1.5.30.1.4.1.198|65|0 +1.3.6.1.2.1.5.30.1.4.1.199|65|0 +1.3.6.1.2.1.5.30.1.4.1.200|65|0 +1.3.6.1.2.1.5.30.1.4.1.201|65|0 +1.3.6.1.2.1.5.30.1.4.1.202|65|0 +1.3.6.1.2.1.5.30.1.4.1.203|65|0 +1.3.6.1.2.1.5.30.1.4.1.204|65|0 +1.3.6.1.2.1.5.30.1.4.1.205|65|0 +1.3.6.1.2.1.5.30.1.4.1.206|65|0 +1.3.6.1.2.1.5.30.1.4.1.207|65|0 +1.3.6.1.2.1.5.30.1.4.1.208|65|0 +1.3.6.1.2.1.5.30.1.4.1.209|65|0 +1.3.6.1.2.1.5.30.1.4.1.210|65|0 +1.3.6.1.2.1.5.30.1.4.1.211|65|0 +1.3.6.1.2.1.5.30.1.4.1.212|65|0 +1.3.6.1.2.1.5.30.1.4.1.213|65|0 +1.3.6.1.2.1.5.30.1.4.1.214|65|0 +1.3.6.1.2.1.5.30.1.4.1.215|65|0 +1.3.6.1.2.1.5.30.1.4.1.216|65|0 +1.3.6.1.2.1.5.30.1.4.1.217|65|0 +1.3.6.1.2.1.5.30.1.4.1.218|65|0 +1.3.6.1.2.1.5.30.1.4.1.219|65|0 +1.3.6.1.2.1.5.30.1.4.1.220|65|0 +1.3.6.1.2.1.5.30.1.4.1.221|65|0 +1.3.6.1.2.1.5.30.1.4.1.222|65|0 +1.3.6.1.2.1.5.30.1.4.1.223|65|0 +1.3.6.1.2.1.5.30.1.4.1.224|65|0 +1.3.6.1.2.1.5.30.1.4.1.225|65|0 +1.3.6.1.2.1.5.30.1.4.1.226|65|0 +1.3.6.1.2.1.5.30.1.4.1.227|65|0 +1.3.6.1.2.1.5.30.1.4.1.228|65|0 +1.3.6.1.2.1.5.30.1.4.1.229|65|0 +1.3.6.1.2.1.5.30.1.4.1.230|65|0 +1.3.6.1.2.1.5.30.1.4.1.231|65|0 +1.3.6.1.2.1.5.30.1.4.1.232|65|0 +1.3.6.1.2.1.5.30.1.4.1.233|65|0 +1.3.6.1.2.1.5.30.1.4.1.234|65|0 +1.3.6.1.2.1.5.30.1.4.1.235|65|0 +1.3.6.1.2.1.5.30.1.4.1.236|65|0 +1.3.6.1.2.1.5.30.1.4.1.237|65|0 +1.3.6.1.2.1.5.30.1.4.1.238|65|0 +1.3.6.1.2.1.5.30.1.4.1.239|65|0 +1.3.6.1.2.1.5.30.1.4.1.240|65|0 +1.3.6.1.2.1.5.30.1.4.1.241|65|0 +1.3.6.1.2.1.5.30.1.4.1.242|65|0 +1.3.6.1.2.1.5.30.1.4.1.243|65|0 +1.3.6.1.2.1.5.30.1.4.1.244|65|0 +1.3.6.1.2.1.5.30.1.4.1.245|65|0 +1.3.6.1.2.1.5.30.1.4.1.246|65|0 +1.3.6.1.2.1.5.30.1.4.1.247|65|0 +1.3.6.1.2.1.5.30.1.4.1.248|65|0 +1.3.6.1.2.1.5.30.1.4.1.249|65|0 +1.3.6.1.2.1.5.30.1.4.1.250|65|0 +1.3.6.1.2.1.5.30.1.4.1.251|65|0 +1.3.6.1.2.1.5.30.1.4.1.252|65|0 +1.3.6.1.2.1.5.30.1.4.1.253|65|0 +1.3.6.1.2.1.5.30.1.4.1.254|65|0 +1.3.6.1.2.1.5.30.1.4.1.255|65|0 +1.3.6.1.2.1.5.30.1.4.2.0|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.5|65|0 +1.3.6.1.2.1.5.30.1.4.2.6|65|0 +1.3.6.1.2.1.5.30.1.4.2.7|65|0 +1.3.6.1.2.1.5.30.1.4.2.8|65|0 +1.3.6.1.2.1.5.30.1.4.2.9|65|0 +1.3.6.1.2.1.5.30.1.4.2.10|65|0 +1.3.6.1.2.1.5.30.1.4.2.11|65|0 +1.3.6.1.2.1.5.30.1.4.2.12|65|0 +1.3.6.1.2.1.5.30.1.4.2.13|65|0 +1.3.6.1.2.1.5.30.1.4.2.14|65|0 +1.3.6.1.2.1.5.30.1.4.2.15|65|0 +1.3.6.1.2.1.5.30.1.4.2.16|65|0 +1.3.6.1.2.1.5.30.1.4.2.17|65|0 +1.3.6.1.2.1.5.30.1.4.2.18|65|0 +1.3.6.1.2.1.5.30.1.4.2.19|65|0 +1.3.6.1.2.1.5.30.1.4.2.20|65|0 +1.3.6.1.2.1.5.30.1.4.2.21|65|0 +1.3.6.1.2.1.5.30.1.4.2.22|65|0 +1.3.6.1.2.1.5.30.1.4.2.23|65|0 +1.3.6.1.2.1.5.30.1.4.2.24|65|0 +1.3.6.1.2.1.5.30.1.4.2.25|65|0 +1.3.6.1.2.1.5.30.1.4.2.26|65|0 +1.3.6.1.2.1.5.30.1.4.2.27|65|0 +1.3.6.1.2.1.5.30.1.4.2.28|65|0 +1.3.6.1.2.1.5.30.1.4.2.29|65|0 +1.3.6.1.2.1.5.30.1.4.2.30|65|0 +1.3.6.1.2.1.5.30.1.4.2.31|65|0 +1.3.6.1.2.1.5.30.1.4.2.32|65|0 +1.3.6.1.2.1.5.30.1.4.2.33|65|0 +1.3.6.1.2.1.5.30.1.4.2.34|65|0 +1.3.6.1.2.1.5.30.1.4.2.35|65|0 +1.3.6.1.2.1.5.30.1.4.2.36|65|0 +1.3.6.1.2.1.5.30.1.4.2.37|65|0 +1.3.6.1.2.1.5.30.1.4.2.38|65|0 +1.3.6.1.2.1.5.30.1.4.2.39|65|0 +1.3.6.1.2.1.5.30.1.4.2.40|65|0 +1.3.6.1.2.1.5.30.1.4.2.41|65|0 +1.3.6.1.2.1.5.30.1.4.2.42|65|0 +1.3.6.1.2.1.5.30.1.4.2.43|65|0 +1.3.6.1.2.1.5.30.1.4.2.44|65|0 +1.3.6.1.2.1.5.30.1.4.2.45|65|0 +1.3.6.1.2.1.5.30.1.4.2.46|65|0 +1.3.6.1.2.1.5.30.1.4.2.47|65|0 +1.3.6.1.2.1.5.30.1.4.2.48|65|0 +1.3.6.1.2.1.5.30.1.4.2.49|65|0 +1.3.6.1.2.1.5.30.1.4.2.50|65|0 +1.3.6.1.2.1.5.30.1.4.2.51|65|0 +1.3.6.1.2.1.5.30.1.4.2.52|65|0 +1.3.6.1.2.1.5.30.1.4.2.53|65|0 +1.3.6.1.2.1.5.30.1.4.2.54|65|0 +1.3.6.1.2.1.5.30.1.4.2.55|65|0 +1.3.6.1.2.1.5.30.1.4.2.56|65|0 +1.3.6.1.2.1.5.30.1.4.2.57|65|0 +1.3.6.1.2.1.5.30.1.4.2.58|65|0 +1.3.6.1.2.1.5.30.1.4.2.59|65|0 +1.3.6.1.2.1.5.30.1.4.2.60|65|0 +1.3.6.1.2.1.5.30.1.4.2.61|65|0 +1.3.6.1.2.1.5.30.1.4.2.62|65|0 +1.3.6.1.2.1.5.30.1.4.2.63|65|0 +1.3.6.1.2.1.5.30.1.4.2.64|65|0 +1.3.6.1.2.1.5.30.1.4.2.65|65|0 +1.3.6.1.2.1.5.30.1.4.2.66|65|0 +1.3.6.1.2.1.5.30.1.4.2.67|65|0 +1.3.6.1.2.1.5.30.1.4.2.68|65|0 +1.3.6.1.2.1.5.30.1.4.2.69|65|0 +1.3.6.1.2.1.5.30.1.4.2.70|65|0 +1.3.6.1.2.1.5.30.1.4.2.71|65|0 +1.3.6.1.2.1.5.30.1.4.2.72|65|0 +1.3.6.1.2.1.5.30.1.4.2.73|65|0 +1.3.6.1.2.1.5.30.1.4.2.74|65|0 +1.3.6.1.2.1.5.30.1.4.2.75|65|0 +1.3.6.1.2.1.5.30.1.4.2.76|65|0 +1.3.6.1.2.1.5.30.1.4.2.77|65|0 +1.3.6.1.2.1.5.30.1.4.2.78|65|0 +1.3.6.1.2.1.5.30.1.4.2.79|65|0 +1.3.6.1.2.1.5.30.1.4.2.80|65|0 +1.3.6.1.2.1.5.30.1.4.2.81|65|0 +1.3.6.1.2.1.5.30.1.4.2.82|65|0 +1.3.6.1.2.1.5.30.1.4.2.83|65|0 +1.3.6.1.2.1.5.30.1.4.2.84|65|0 +1.3.6.1.2.1.5.30.1.4.2.85|65|0 +1.3.6.1.2.1.5.30.1.4.2.86|65|0 +1.3.6.1.2.1.5.30.1.4.2.87|65|0 +1.3.6.1.2.1.5.30.1.4.2.88|65|0 +1.3.6.1.2.1.5.30.1.4.2.89|65|0 +1.3.6.1.2.1.5.30.1.4.2.90|65|0 +1.3.6.1.2.1.5.30.1.4.2.91|65|0 +1.3.6.1.2.1.5.30.1.4.2.92|65|0 +1.3.6.1.2.1.5.30.1.4.2.93|65|0 +1.3.6.1.2.1.5.30.1.4.2.94|65|0 +1.3.6.1.2.1.5.30.1.4.2.95|65|0 +1.3.6.1.2.1.5.30.1.4.2.96|65|0 +1.3.6.1.2.1.5.30.1.4.2.97|65|0 +1.3.6.1.2.1.5.30.1.4.2.98|65|0 +1.3.6.1.2.1.5.30.1.4.2.99|65|0 +1.3.6.1.2.1.5.30.1.4.2.100|65|0 +1.3.6.1.2.1.5.30.1.4.2.101|65|0 +1.3.6.1.2.1.5.30.1.4.2.102|65|0 +1.3.6.1.2.1.5.30.1.4.2.103|65|0 +1.3.6.1.2.1.5.30.1.4.2.104|65|0 +1.3.6.1.2.1.5.30.1.4.2.105|65|0 +1.3.6.1.2.1.5.30.1.4.2.106|65|0 +1.3.6.1.2.1.5.30.1.4.2.107|65|0 +1.3.6.1.2.1.5.30.1.4.2.108|65|0 +1.3.6.1.2.1.5.30.1.4.2.109|65|0 +1.3.6.1.2.1.5.30.1.4.2.110|65|0 +1.3.6.1.2.1.5.30.1.4.2.111|65|0 +1.3.6.1.2.1.5.30.1.4.2.112|65|0 +1.3.6.1.2.1.5.30.1.4.2.113|65|0 +1.3.6.1.2.1.5.30.1.4.2.114|65|0 +1.3.6.1.2.1.5.30.1.4.2.115|65|0 +1.3.6.1.2.1.5.30.1.4.2.116|65|0 +1.3.6.1.2.1.5.30.1.4.2.117|65|0 +1.3.6.1.2.1.5.30.1.4.2.118|65|0 +1.3.6.1.2.1.5.30.1.4.2.119|65|0 +1.3.6.1.2.1.5.30.1.4.2.120|65|0 +1.3.6.1.2.1.5.30.1.4.2.121|65|0 +1.3.6.1.2.1.5.30.1.4.2.122|65|0 +1.3.6.1.2.1.5.30.1.4.2.123|65|0 +1.3.6.1.2.1.5.30.1.4.2.124|65|0 +1.3.6.1.2.1.5.30.1.4.2.125|65|0 +1.3.6.1.2.1.5.30.1.4.2.126|65|0 +1.3.6.1.2.1.5.30.1.4.2.127|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|0 +1.3.6.1.2.1.5.30.1.4.2.129|65|0 +1.3.6.1.2.1.5.30.1.4.2.130|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|0 +1.3.6.1.2.1.5.30.1.4.2.134|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|0 +1.3.6.1.2.1.5.30.1.4.2.136|65|0 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.2.138|65|0 +1.3.6.1.2.1.5.30.1.4.2.139|65|0 +1.3.6.1.2.1.5.30.1.4.2.140|65|0 +1.3.6.1.2.1.5.30.1.4.2.141|65|0 +1.3.6.1.2.1.5.30.1.4.2.142|65|0 +1.3.6.1.2.1.5.30.1.4.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.2.144|65|0 +1.3.6.1.2.1.5.30.1.4.2.145|65|0 +1.3.6.1.2.1.5.30.1.4.2.146|65|0 +1.3.6.1.2.1.5.30.1.4.2.147|65|0 +1.3.6.1.2.1.5.30.1.4.2.148|65|0 +1.3.6.1.2.1.5.30.1.4.2.149|65|0 +1.3.6.1.2.1.5.30.1.4.2.150|65|0 +1.3.6.1.2.1.5.30.1.4.2.151|65|0 +1.3.6.1.2.1.5.30.1.4.2.152|65|0 +1.3.6.1.2.1.5.30.1.4.2.153|65|0 +1.3.6.1.2.1.5.30.1.4.2.154|65|0 +1.3.6.1.2.1.5.30.1.4.2.155|65|0 +1.3.6.1.2.1.5.30.1.4.2.156|65|0 +1.3.6.1.2.1.5.30.1.4.2.157|65|0 +1.3.6.1.2.1.5.30.1.4.2.158|65|0 +1.3.6.1.2.1.5.30.1.4.2.159|65|0 +1.3.6.1.2.1.5.30.1.4.2.160|65|0 +1.3.6.1.2.1.5.30.1.4.2.161|65|0 +1.3.6.1.2.1.5.30.1.4.2.162|65|0 +1.3.6.1.2.1.5.30.1.4.2.163|65|0 +1.3.6.1.2.1.5.30.1.4.2.164|65|0 +1.3.6.1.2.1.5.30.1.4.2.165|65|0 +1.3.6.1.2.1.5.30.1.4.2.166|65|0 +1.3.6.1.2.1.5.30.1.4.2.167|65|0 +1.3.6.1.2.1.5.30.1.4.2.168|65|0 +1.3.6.1.2.1.5.30.1.4.2.169|65|0 +1.3.6.1.2.1.5.30.1.4.2.170|65|0 +1.3.6.1.2.1.5.30.1.4.2.171|65|0 +1.3.6.1.2.1.5.30.1.4.2.172|65|0 +1.3.6.1.2.1.5.30.1.4.2.173|65|0 +1.3.6.1.2.1.5.30.1.4.2.174|65|0 +1.3.6.1.2.1.5.30.1.4.2.175|65|0 +1.3.6.1.2.1.5.30.1.4.2.176|65|0 +1.3.6.1.2.1.5.30.1.4.2.177|65|0 +1.3.6.1.2.1.5.30.1.4.2.178|65|0 +1.3.6.1.2.1.5.30.1.4.2.179|65|0 +1.3.6.1.2.1.5.30.1.4.2.180|65|0 +1.3.6.1.2.1.5.30.1.4.2.181|65|0 +1.3.6.1.2.1.5.30.1.4.2.182|65|0 +1.3.6.1.2.1.5.30.1.4.2.183|65|0 +1.3.6.1.2.1.5.30.1.4.2.184|65|0 +1.3.6.1.2.1.5.30.1.4.2.185|65|0 +1.3.6.1.2.1.5.30.1.4.2.186|65|0 +1.3.6.1.2.1.5.30.1.4.2.187|65|0 +1.3.6.1.2.1.5.30.1.4.2.188|65|0 +1.3.6.1.2.1.5.30.1.4.2.189|65|0 +1.3.6.1.2.1.5.30.1.4.2.190|65|0 +1.3.6.1.2.1.5.30.1.4.2.191|65|0 +1.3.6.1.2.1.5.30.1.4.2.192|65|0 +1.3.6.1.2.1.5.30.1.4.2.193|65|0 +1.3.6.1.2.1.5.30.1.4.2.194|65|0 +1.3.6.1.2.1.5.30.1.4.2.195|65|0 +1.3.6.1.2.1.5.30.1.4.2.196|65|0 +1.3.6.1.2.1.5.30.1.4.2.197|65|0 +1.3.6.1.2.1.5.30.1.4.2.198|65|0 +1.3.6.1.2.1.5.30.1.4.2.199|65|0 +1.3.6.1.2.1.5.30.1.4.2.200|65|0 +1.3.6.1.2.1.5.30.1.4.2.201|65|0 +1.3.6.1.2.1.5.30.1.4.2.202|65|0 +1.3.6.1.2.1.5.30.1.4.2.203|65|0 +1.3.6.1.2.1.5.30.1.4.2.204|65|0 +1.3.6.1.2.1.5.30.1.4.2.205|65|0 +1.3.6.1.2.1.5.30.1.4.2.206|65|0 +1.3.6.1.2.1.5.30.1.4.2.207|65|0 +1.3.6.1.2.1.5.30.1.4.2.208|65|0 +1.3.6.1.2.1.5.30.1.4.2.209|65|0 +1.3.6.1.2.1.5.30.1.4.2.210|65|0 +1.3.6.1.2.1.5.30.1.4.2.211|65|0 +1.3.6.1.2.1.5.30.1.4.2.212|65|0 +1.3.6.1.2.1.5.30.1.4.2.213|65|0 +1.3.6.1.2.1.5.30.1.4.2.214|65|0 +1.3.6.1.2.1.5.30.1.4.2.215|65|0 +1.3.6.1.2.1.5.30.1.4.2.216|65|0 +1.3.6.1.2.1.5.30.1.4.2.217|65|0 +1.3.6.1.2.1.5.30.1.4.2.218|65|0 +1.3.6.1.2.1.5.30.1.4.2.219|65|0 +1.3.6.1.2.1.5.30.1.4.2.220|65|0 +1.3.6.1.2.1.5.30.1.4.2.221|65|0 +1.3.6.1.2.1.5.30.1.4.2.222|65|0 +1.3.6.1.2.1.5.30.1.4.2.223|65|0 +1.3.6.1.2.1.5.30.1.4.2.224|65|0 +1.3.6.1.2.1.5.30.1.4.2.225|65|0 +1.3.6.1.2.1.5.30.1.4.2.226|65|0 +1.3.6.1.2.1.5.30.1.4.2.227|65|0 +1.3.6.1.2.1.5.30.1.4.2.228|65|0 +1.3.6.1.2.1.5.30.1.4.2.229|65|0 +1.3.6.1.2.1.5.30.1.4.2.230|65|0 +1.3.6.1.2.1.5.30.1.4.2.231|65|0 +1.3.6.1.2.1.5.30.1.4.2.232|65|0 +1.3.6.1.2.1.5.30.1.4.2.233|65|0 +1.3.6.1.2.1.5.30.1.4.2.234|65|0 +1.3.6.1.2.1.5.30.1.4.2.235|65|0 +1.3.6.1.2.1.5.30.1.4.2.236|65|0 +1.3.6.1.2.1.5.30.1.4.2.237|65|0 +1.3.6.1.2.1.5.30.1.4.2.238|65|0 +1.3.6.1.2.1.5.30.1.4.2.239|65|0 +1.3.6.1.2.1.5.30.1.4.2.240|65|0 +1.3.6.1.2.1.5.30.1.4.2.241|65|0 +1.3.6.1.2.1.5.30.1.4.2.242|65|0 +1.3.6.1.2.1.5.30.1.4.2.243|65|0 +1.3.6.1.2.1.5.30.1.4.2.244|65|0 +1.3.6.1.2.1.5.30.1.4.2.245|65|0 +1.3.6.1.2.1.5.30.1.4.2.246|65|0 +1.3.6.1.2.1.5.30.1.4.2.247|65|0 +1.3.6.1.2.1.5.30.1.4.2.248|65|0 +1.3.6.1.2.1.5.30.1.4.2.249|65|0 +1.3.6.1.2.1.5.30.1.4.2.250|65|0 +1.3.6.1.2.1.5.30.1.4.2.251|65|0 +1.3.6.1.2.1.5.30.1.4.2.252|65|0 +1.3.6.1.2.1.5.30.1.4.2.253|65|0 +1.3.6.1.2.1.5.30.1.4.2.254|65|0 +1.3.6.1.2.1.5.30.1.4.2.255|65|0 +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.4|2|4 +1.3.6.1.2.1.10.7.2.1.1.5|2|5 +1.3.6.1.2.1.10.7.2.1.1.6|2|6 +1.3.6.1.2.1.10.7.2.1.1.7|2|7 +1.3.6.1.2.1.10.7.2.1.1.8|2|8 +1.3.6.1.2.1.10.7.2.1.1.9|2|9 +1.3.6.1.2.1.10.7.2.1.1.10|2|10 +1.3.6.1.2.1.10.7.2.1.1.11|2|11 +1.3.6.1.2.1.10.7.2.1.1.12|2|12 +1.3.6.1.2.1.10.7.2.1.1.13|2|13 +1.3.6.1.2.1.10.7.2.1.1.14|2|14 +1.3.6.1.2.1.10.7.2.1.1.15|2|15 +1.3.6.1.2.1.10.7.2.1.1.16|2|16 +1.3.6.1.2.1.10.7.2.1.1.17|2|17 +1.3.6.1.2.1.10.7.2.1.1.18|2|18 +1.3.6.1.2.1.10.7.2.1.1.19|2|19 +1.3.6.1.2.1.10.7.2.1.1.20|2|20 +1.3.6.1.2.1.10.7.2.1.1.21|2|21 +1.3.6.1.2.1.10.7.2.1.1.22|2|22 +1.3.6.1.2.1.10.7.2.1.1.23|2|23 +1.3.6.1.2.1.10.7.2.1.1.24|2|24 +1.3.6.1.2.1.10.7.2.1.1.25|2|25 +1.3.6.1.2.1.10.7.2.1.1.26|2|26 +1.3.6.1.2.1.10.7.2.1.1.27|2|27 +1.3.6.1.2.1.10.7.2.1.1.28|2|28 +1.3.6.1.2.1.10.7.2.1.1.29|2|29 +1.3.6.1.2.1.10.7.2.1.1.38|2|38 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +1.3.6.1.2.1.10.7.2.1.19.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.5|2|1 +1.3.6.1.2.1.10.7.2.1.19.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.7|2|1 +1.3.6.1.2.1.10.7.2.1.19.8|2|1 +1.3.6.1.2.1.10.7.2.1.19.9|2|1 +1.3.6.1.2.1.10.7.2.1.19.10|2|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.10.7.2.1.19.12|2|1 +1.3.6.1.2.1.10.7.2.1.19.13|2|1 +1.3.6.1.2.1.10.7.2.1.19.14|2|1 +1.3.6.1.2.1.10.7.2.1.19.15|2|1 +1.3.6.1.2.1.10.7.2.1.19.16|2|1 +1.3.6.1.2.1.10.7.2.1.19.17|2|1 +1.3.6.1.2.1.10.7.2.1.19.18|2|1 +1.3.6.1.2.1.10.7.2.1.19.19|2|1 +1.3.6.1.2.1.10.7.2.1.19.20|2|1 +1.3.6.1.2.1.10.7.2.1.19.21|2|1 +1.3.6.1.2.1.10.7.2.1.19.22|2|1 +1.3.6.1.2.1.10.7.2.1.19.23|2|1 +1.3.6.1.2.1.10.7.2.1.19.24|2|1 +1.3.6.1.2.1.10.7.2.1.19.25|2|1 +1.3.6.1.2.1.10.7.2.1.19.26|2|1 +1.3.6.1.2.1.10.7.2.1.19.27|2|1 +1.3.6.1.2.1.10.7.2.1.19.28|2|1 +1.3.6.1.2.1.10.7.2.1.19.29|2|1 +1.3.6.1.2.1.10.7.2.1.19.38|2|1 +1.3.6.1.2.1.11.1.0|65|1471593 +1.3.6.1.2.1.11.2.0|65|1471434 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|607072 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|163181 +1.3.6.1.2.1.11.16.0|65|35 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|1471436 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|1 +1.3.6.1.2.1.16.11.1.0|67|0 +1.3.6.1.2.1.17.1.1.0|4x|9C713ADA8F8E +1.3.6.1.2.1.17.1.4.1.2.1|2|3 +1.3.6.1.2.1.17.2.1.0|2|1 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.3.0|67|0 +1.3.6.1.2.1.17.2.4.0|65|0 +1.3.6.1.2.1.17.2.5.0|4x|80009C713ADA8F8E +1.3.6.1.2.1.17.2.6.0|2|0 +1.3.6.1.2.1.17.2.7.0|2|0 +1.3.6.1.2.1.17.2.8.0|2|2000 +1.3.6.1.2.1.17.2.9.0|2|200 +1.3.6.1.2.1.17.2.10.0|2|0 +1.3.6.1.2.1.17.2.11.0|2|1500 +1.3.6.1.2.1.17.2.12.0|2|2000 +1.3.6.1.2.1.17.2.13.0|2|200 +1.3.6.1.2.1.17.2.14.0|2|1500 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.1|4x|7FFFFEC00000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.70|4x|800001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203430203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.71|4x|800001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.391|4x|800001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.392|4x|800001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203430203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.393|4x|800001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.395|4x|800001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.4.0.419|4x|000001000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.1|4x|7FFFFEC00000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.70|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.71|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.391|4x|800000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.392|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.393|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.395|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a303020303020303020303020303020303020303020303020303020303020303020303020 +1.3.6.1.2.1.17.7.1.4.2.1.5.0.419|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030 +1.3.6.1.2.1.17.7.1.4.3.1.1.1|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.70|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.71|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.391|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.392|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.393|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.395|4| +1.3.6.1.2.1.17.7.1.4.3.1.1.419|4| +1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|391 +1.3.6.1.2.1.31.1.1.1.1.1|4|InLoopBack0 +1.3.6.1.2.1.31.1.1.1.1.2|4|NULL0 +1.3.6.1.2.1.31.1.1.1.1.3|4|GigabitEthernet0/0/1 +1.3.6.1.2.1.31.1.1.1.1.4|4|GigabitEthernet0/0/2 +1.3.6.1.2.1.31.1.1.1.1.5|4|GigabitEthernet0/0/3 +1.3.6.1.2.1.31.1.1.1.1.6|4|GigabitEthernet0/0/4 +1.3.6.1.2.1.31.1.1.1.1.7|4|GigabitEthernet0/0/5 +1.3.6.1.2.1.31.1.1.1.1.8|4|GigabitEthernet0/0/6 +1.3.6.1.2.1.31.1.1.1.1.9|4|GigabitEthernet0/0/7 +1.3.6.1.2.1.31.1.1.1.1.10|4|GigabitEthernet0/0/8 +1.3.6.1.2.1.31.1.1.1.1.11|4|GigabitEthernet0/0/9 +1.3.6.1.2.1.31.1.1.1.1.12|4|GigabitEthernet0/0/10 +1.3.6.1.2.1.31.1.1.1.1.13|4|GigabitEthernet0/0/11 +1.3.6.1.2.1.31.1.1.1.1.14|4|GigabitEthernet0/0/12 +1.3.6.1.2.1.31.1.1.1.1.15|4|GigabitEthernet0/0/13 +1.3.6.1.2.1.31.1.1.1.1.16|4|GigabitEthernet0/0/14 +1.3.6.1.2.1.31.1.1.1.1.17|4|GigabitEthernet0/0/15 +1.3.6.1.2.1.31.1.1.1.1.18|4|GigabitEthernet0/0/16 +1.3.6.1.2.1.31.1.1.1.1.19|4|GigabitEthernet0/0/17 +1.3.6.1.2.1.31.1.1.1.1.20|4|GigabitEthernet0/0/18 +1.3.6.1.2.1.31.1.1.1.1.21|4|GigabitEthernet0/0/19 +1.3.6.1.2.1.31.1.1.1.1.22|4|GigabitEthernet0/0/20 +1.3.6.1.2.1.31.1.1.1.1.23|4|GigabitEthernet0/0/21 +1.3.6.1.2.1.31.1.1.1.1.24|4|GigabitEthernet0/0/22 +1.3.6.1.2.1.31.1.1.1.1.25|4|GigabitEthernet0/0/23 +1.3.6.1.2.1.31.1.1.1.1.26|4|GigabitEthernet0/0/24 +1.3.6.1.2.1.31.1.1.1.1.27|4|XGigabitEthernet0/0/1 +1.3.6.1.2.1.31.1.1.1.1.28|4|XGigabitEthernet0/0/2 +1.3.6.1.2.1.31.1.1.1.1.29|4|MEth0/0/1 +1.3.6.1.2.1.31.1.1.1.1.30|4|Vlanif391 +1.3.6.1.2.1.31.1.1.1.1.37|4|Vlanif70 +1.3.6.1.2.1.31.1.1.1.1.38|4|Ethernet0/0/47 +1.3.6.1.2.1.31.1.1.1.1.39|4|Vlanif1 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|20387 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.23|65|0 +1.3.6.1.2.1.31.1.1.1.2.24|65|0 +1.3.6.1.2.1.31.1.1.1.2.25|65|0 +1.3.6.1.2.1.31.1.1.1.2.26|65|6364978 +1.3.6.1.2.1.31.1.1.1.2.27|65|0 +1.3.6.1.2.1.31.1.1.1.2.28|65|0 +1.3.6.1.2.1.31.1.1.1.2.29|65|0 +1.3.6.1.2.1.31.1.1.1.2.30|65|0 +1.3.6.1.2.1.31.1.1.1.2.37|65|0 +1.3.6.1.2.1.31.1.1.1.2.38|65|0 +1.3.6.1.2.1.31.1.1.1.2.39|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.3|65|36 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.23|65|0 +1.3.6.1.2.1.31.1.1.1.3.24|65|0 +1.3.6.1.2.1.31.1.1.1.3.25|65|0 +1.3.6.1.2.1.31.1.1.1.3.26|65|1678199 +1.3.6.1.2.1.31.1.1.1.3.27|65|0 +1.3.6.1.2.1.31.1.1.1.3.28|65|0 +1.3.6.1.2.1.31.1.1.1.3.29|65|0 +1.3.6.1.2.1.31.1.1.1.3.30|65|0 +1.3.6.1.2.1.31.1.1.1.3.37|65|0 +1.3.6.1.2.1.31.1.1.1.3.38|65|0 +1.3.6.1.2.1.31.1.1.1.3.39|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|4569668 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.23|65|0 +1.3.6.1.2.1.31.1.1.1.4.24|65|0 +1.3.6.1.2.1.31.1.1.1.4.25|65|0 +1.3.6.1.2.1.31.1.1.1.4.26|65|20421 +1.3.6.1.2.1.31.1.1.1.4.27|65|0 +1.3.6.1.2.1.31.1.1.1.4.28|65|0 +1.3.6.1.2.1.31.1.1.1.4.29|65|0 +1.3.6.1.2.1.31.1.1.1.4.30|65|0 +1.3.6.1.2.1.31.1.1.1.4.37|65|0 +1.3.6.1.2.1.31.1.1.1.4.38|65|0 +1.3.6.1.2.1.31.1.1.1.4.39|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.3|65|635996 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.14|65|0 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|0 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.5.19|65|0 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.23|65|0 +1.3.6.1.2.1.31.1.1.1.5.24|65|0 +1.3.6.1.2.1.31.1.1.1.5.25|65|0 +1.3.6.1.2.1.31.1.1.1.5.26|65|344 +1.3.6.1.2.1.31.1.1.1.5.27|65|0 +1.3.6.1.2.1.31.1.1.1.5.28|65|0 +1.3.6.1.2.1.31.1.1.1.5.29|65|0 +1.3.6.1.2.1.31.1.1.1.5.30|65|0 +1.3.6.1.2.1.31.1.1.1.5.37|65|0 +1.3.6.1.2.1.31.1.1.1.5.38|65|0 +1.3.6.1.2.1.31.1.1.1.5.39|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|135047271 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|0 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|0 +1.3.6.1.2.1.31.1.1.1.6.23|70|0 +1.3.6.1.2.1.31.1.1.1.6.24|70|0 +1.3.6.1.2.1.31.1.1.1.6.25|70|0 +1.3.6.1.2.1.31.1.1.1.6.26|70|1803054938 +1.3.6.1.2.1.31.1.1.1.6.27|70|0 +1.3.6.1.2.1.31.1.1.1.6.28|70|0 +1.3.6.1.2.1.31.1.1.1.6.29|70|0 +1.3.6.1.2.1.31.1.1.1.6.30|70|0 +1.3.6.1.2.1.31.1.1.1.6.37|70|0 +1.3.6.1.2.1.31.1.1.1.6.38|70|0 +1.3.6.1.2.1.31.1.1.1.6.39|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|1038359 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|0 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|0 +1.3.6.1.2.1.31.1.1.1.7.23|70|0 +1.3.6.1.2.1.31.1.1.1.7.24|70|0 +1.3.6.1.2.1.31.1.1.1.7.25|70|0 +1.3.6.1.2.1.31.1.1.1.7.26|70|1917419 +1.3.6.1.2.1.31.1.1.1.7.27|70|0 +1.3.6.1.2.1.31.1.1.1.7.28|70|0 +1.3.6.1.2.1.31.1.1.1.7.29|70|0 +1.3.6.1.2.1.31.1.1.1.7.30|70|0 +1.3.6.1.2.1.31.1.1.1.7.37|70|0 +1.3.6.1.2.1.31.1.1.1.7.38|70|0 +1.3.6.1.2.1.31.1.1.1.7.39|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|20387 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.23|70|0 +1.3.6.1.2.1.31.1.1.1.8.24|70|0 +1.3.6.1.2.1.31.1.1.1.8.25|70|0 +1.3.6.1.2.1.31.1.1.1.8.26|70|6364984 +1.3.6.1.2.1.31.1.1.1.8.27|70|0 +1.3.6.1.2.1.31.1.1.1.8.28|70|0 +1.3.6.1.2.1.31.1.1.1.8.29|70|0 +1.3.6.1.2.1.31.1.1.1.8.30|70|0 +1.3.6.1.2.1.31.1.1.1.8.37|70|0 +1.3.6.1.2.1.31.1.1.1.8.38|70|0 +1.3.6.1.2.1.31.1.1.1.8.39|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.3|70|36 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.23|70|0 +1.3.6.1.2.1.31.1.1.1.9.24|70|0 +1.3.6.1.2.1.31.1.1.1.9.25|70|0 +1.3.6.1.2.1.31.1.1.1.9.26|70|1678205 +1.3.6.1.2.1.31.1.1.1.9.27|70|0 +1.3.6.1.2.1.31.1.1.1.9.28|70|0 +1.3.6.1.2.1.31.1.1.1.9.29|70|0 +1.3.6.1.2.1.31.1.1.1.9.30|70|0 +1.3.6.1.2.1.31.1.1.1.9.37|70|0 +1.3.6.1.2.1.31.1.1.1.9.38|70|0 +1.3.6.1.2.1.31.1.1.1.9.39|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|1471494233 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|0 +1.3.6.1.2.1.31.1.1.1.10.14|70|0 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|0 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.19|70|0 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|0 +1.3.6.1.2.1.31.1.1.1.10.22|70|0 +1.3.6.1.2.1.31.1.1.1.10.23|70|0 +1.3.6.1.2.1.31.1.1.1.10.24|70|0 +1.3.6.1.2.1.31.1.1.1.10.25|70|0 +1.3.6.1.2.1.31.1.1.1.10.26|70|445004581 +1.3.6.1.2.1.31.1.1.1.10.27|70|0 +1.3.6.1.2.1.31.1.1.1.10.28|70|0 +1.3.6.1.2.1.31.1.1.1.10.29|70|0 +1.3.6.1.2.1.31.1.1.1.10.30|70|0 +1.3.6.1.2.1.31.1.1.1.10.37|70|0 +1.3.6.1.2.1.31.1.1.1.10.38|70|0 +1.3.6.1.2.1.31.1.1.1.10.39|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|1159229 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|0 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|0 +1.3.6.1.2.1.31.1.1.1.11.23|70|0 +1.3.6.1.2.1.31.1.1.1.11.24|70|0 +1.3.6.1.2.1.31.1.1.1.11.25|70|0 +1.3.6.1.2.1.31.1.1.1.11.26|70|1731447 +1.3.6.1.2.1.31.1.1.1.11.27|70|0 +1.3.6.1.2.1.31.1.1.1.11.28|70|0 +1.3.6.1.2.1.31.1.1.1.11.29|70|0 +1.3.6.1.2.1.31.1.1.1.11.30|70|0 +1.3.6.1.2.1.31.1.1.1.11.37|70|0 +1.3.6.1.2.1.31.1.1.1.11.38|70|0 +1.3.6.1.2.1.31.1.1.1.11.39|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|4569672 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.23|70|0 +1.3.6.1.2.1.31.1.1.1.12.24|70|0 +1.3.6.1.2.1.31.1.1.1.12.25|70|0 +1.3.6.1.2.1.31.1.1.1.12.26|70|20421 +1.3.6.1.2.1.31.1.1.1.12.27|70|0 +1.3.6.1.2.1.31.1.1.1.12.28|70|0 +1.3.6.1.2.1.31.1.1.1.12.29|70|0 +1.3.6.1.2.1.31.1.1.1.12.30|70|0 +1.3.6.1.2.1.31.1.1.1.12.37|70|0 +1.3.6.1.2.1.31.1.1.1.12.38|70|0 +1.3.6.1.2.1.31.1.1.1.12.39|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.3|70|635996 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.14|70|0 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|0 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.13.19|70|0 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.23|70|0 +1.3.6.1.2.1.31.1.1.1.13.24|70|0 +1.3.6.1.2.1.31.1.1.1.13.25|70|0 +1.3.6.1.2.1.31.1.1.1.13.26|70|344 +1.3.6.1.2.1.31.1.1.1.13.27|70|0 +1.3.6.1.2.1.31.1.1.1.13.28|70|0 +1.3.6.1.2.1.31.1.1.1.13.29|70|0 +1.3.6.1.2.1.31.1.1.1.13.30|70|0 +1.3.6.1.2.1.31.1.1.1.13.37|70|0 +1.3.6.1.2.1.31.1.1.1.13.38|70|0 +1.3.6.1.2.1.31.1.1.1.13.39|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|1 +1.3.6.1.2.1.31.1.1.1.14.5|2|1 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.25|2|1 +1.3.6.1.2.1.31.1.1.1.14.26|2|1 +1.3.6.1.2.1.31.1.1.1.14.27|2|1 +1.3.6.1.2.1.31.1.1.1.14.28|2|1 +1.3.6.1.2.1.31.1.1.1.14.29|2|1 +1.3.6.1.2.1.31.1.1.1.14.30|2|1 +1.3.6.1.2.1.31.1.1.1.14.37|2|1 +1.3.6.1.2.1.31.1.1.1.14.38|2|1 +1.3.6.1.2.1.31.1.1.1.14.39|2|1 +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.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|1000 +1.3.6.1.2.1.31.1.1.1.15.4|66|1000 +1.3.6.1.2.1.31.1.1.1.15.5|66|1000 +1.3.6.1.2.1.31.1.1.1.15.6|66|1000 +1.3.6.1.2.1.31.1.1.1.15.7|66|1000 +1.3.6.1.2.1.31.1.1.1.15.8|66|1000 +1.3.6.1.2.1.31.1.1.1.15.9|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10|66|1000 +1.3.6.1.2.1.31.1.1.1.15.11|66|1000 +1.3.6.1.2.1.31.1.1.1.15.12|66|1000 +1.3.6.1.2.1.31.1.1.1.15.13|66|1000 +1.3.6.1.2.1.31.1.1.1.15.14|66|1000 +1.3.6.1.2.1.31.1.1.1.15.15|66|1000 +1.3.6.1.2.1.31.1.1.1.15.16|66|1000 +1.3.6.1.2.1.31.1.1.1.15.17|66|1000 +1.3.6.1.2.1.31.1.1.1.15.18|66|1000 +1.3.6.1.2.1.31.1.1.1.15.19|66|1000 +1.3.6.1.2.1.31.1.1.1.15.20|66|1000 +1.3.6.1.2.1.31.1.1.1.15.21|66|1000 +1.3.6.1.2.1.31.1.1.1.15.22|66|1000 +1.3.6.1.2.1.31.1.1.1.15.23|66|1000 +1.3.6.1.2.1.31.1.1.1.15.24|66|1000 +1.3.6.1.2.1.31.1.1.1.15.25|66|1000 +1.3.6.1.2.1.31.1.1.1.15.26|66|1000 +1.3.6.1.2.1.31.1.1.1.15.27|66|10000 +1.3.6.1.2.1.31.1.1.1.15.28|66|10000 +1.3.6.1.2.1.31.1.1.1.15.29|66|100 +1.3.6.1.2.1.31.1.1.1.15.30|66|1000 +1.3.6.1.2.1.31.1.1.1.15.37|66|1000 +1.3.6.1.2.1.31.1.1.1.15.38|66|1000 +1.3.6.1.2.1.31.1.1.1.15.39|66|1000 +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.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.25|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.27|2|2 +1.3.6.1.2.1.31.1.1.1.16.28|2|2 +1.3.6.1.2.1.31.1.1.1.16.29|2|2 +1.3.6.1.2.1.31.1.1.1.16.30|2|2 +1.3.6.1.2.1.31.1.1.1.16.37|2|2 +1.3.6.1.2.1.31.1.1.1.16.38|2|2 +1.3.6.1.2.1.31.1.1.1.16.39|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|2 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.17.6|2|1 +1.3.6.1.2.1.31.1.1.1.17.7|2|1 +1.3.6.1.2.1.31.1.1.1.17.8|2|1 +1.3.6.1.2.1.31.1.1.1.17.9|2|1 +1.3.6.1.2.1.31.1.1.1.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.12|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.17.14|2|1 +1.3.6.1.2.1.31.1.1.1.17.15|2|1 +1.3.6.1.2.1.31.1.1.1.17.16|2|1 +1.3.6.1.2.1.31.1.1.1.17.17|2|1 +1.3.6.1.2.1.31.1.1.1.17.18|2|1 +1.3.6.1.2.1.31.1.1.1.17.19|2|1 +1.3.6.1.2.1.31.1.1.1.17.20|2|1 +1.3.6.1.2.1.31.1.1.1.17.21|2|1 +1.3.6.1.2.1.31.1.1.1.17.22|2|1 +1.3.6.1.2.1.31.1.1.1.17.23|2|1 +1.3.6.1.2.1.31.1.1.1.17.24|2|1 +1.3.6.1.2.1.31.1.1.1.17.25|2|1 +1.3.6.1.2.1.31.1.1.1.17.26|2|1 +1.3.6.1.2.1.31.1.1.1.17.27|2|1 +1.3.6.1.2.1.31.1.1.1.17.28|2|1 +1.3.6.1.2.1.31.1.1.1.17.29|2|1 +1.3.6.1.2.1.31.1.1.1.17.30|2|2 +1.3.6.1.2.1.31.1.1.1.17.37|2|2 +1.3.6.1.2.1.31.1.1.1.17.38|2|1 +1.3.6.1.2.1.31.1.1.1.17.39|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4|HUAWEI, AC Series, InLoopBack0 Interface +1.3.6.1.2.1.31.1.1.1.18.2|4|HUAWEI, AC Series, NULL0 Interface +1.3.6.1.2.1.31.1.1.1.18.3|4|Interface 0/0/1 desc +1.3.6.1.2.1.31.1.1.1.18.4|4|HUAWEI, AC Series, GigabitEthernet0/0/2 Interface +1.3.6.1.2.1.31.1.1.1.18.5|4|HUAWEI, AC Series, GigabitEthernet0/0/3 Interface +1.3.6.1.2.1.31.1.1.1.18.6|4|HUAWEI, AC Series, GigabitEthernet0/0/4 Interface +1.3.6.1.2.1.31.1.1.1.18.7|4|HUAWEI, AC Series, GigabitEthernet0/0/5 Interface +1.3.6.1.2.1.31.1.1.1.18.8|4|HUAWEI, AC Series, GigabitEthernet0/0/6 Interface +1.3.6.1.2.1.31.1.1.1.18.9|4|HUAWEI, AC Series, GigabitEthernet0/0/7 Interface +1.3.6.1.2.1.31.1.1.1.18.10|4|HUAWEI, AC Series, GigabitEthernet0/0/8 Interface +1.3.6.1.2.1.31.1.1.1.18.11|4|HUAWEI, AC Series, GigabitEthernet0/0/9 Interface +1.3.6.1.2.1.31.1.1.1.18.12|4|HUAWEI, AC Series, GigabitEthernet0/0/10 Interface +1.3.6.1.2.1.31.1.1.1.18.13|4|HUAWEI, AC Series, GigabitEthernet0/0/11 Interface +1.3.6.1.2.1.31.1.1.1.18.14|4|HUAWEI, AC Series, GigabitEthernet0/0/12 Interface +1.3.6.1.2.1.31.1.1.1.18.15|4|HUAWEI, AC Series, GigabitEthernet0/0/13 Interface +1.3.6.1.2.1.31.1.1.1.18.16|4|HUAWEI, AC Series, GigabitEthernet0/0/14 Interface +1.3.6.1.2.1.31.1.1.1.18.17|4|HUAWEI, AC Series, GigabitEthernet0/0/15 Interface +1.3.6.1.2.1.31.1.1.1.18.18|4|HUAWEI, AC Series, GigabitEthernet0/0/16 Interface +1.3.6.1.2.1.31.1.1.1.18.19|4|HUAWEI, AC Series, GigabitEthernet0/0/17 Interface +1.3.6.1.2.1.31.1.1.1.18.20|4|HUAWEI, AC Series, GigabitEthernet0/0/18 Interface +1.3.6.1.2.1.31.1.1.1.18.21|4|HUAWEI, AC Series, GigabitEthernet0/0/19 Interface +1.3.6.1.2.1.31.1.1.1.18.22|4|HUAWEI, AC Series, GigabitEthernet0/0/20 Interface +1.3.6.1.2.1.31.1.1.1.18.23|4|HUAWEI, AC Series, GigabitEthernet0/0/21 Interface +1.3.6.1.2.1.31.1.1.1.18.24|4|HUAWEI, AC Series, GigabitEthernet0/0/22 Interface +1.3.6.1.2.1.31.1.1.1.18.25|4|HUAWEI, AC Series, GigabitEthernet0/0/23 Interface +1.3.6.1.2.1.31.1.1.1.18.26|4|HUAWEI, AC Series, GigabitEthernet0/0/24 Interface +1.3.6.1.2.1.31.1.1.1.18.27|4|HUAWEI, AC Series, XGigabitEthernet0/0/1 Interface +1.3.6.1.2.1.31.1.1.1.18.28|4|HUAWEI, AC Series, XGigabitEthernet0/0/2 Interface +1.3.6.1.2.1.31.1.1.1.18.29|4|HUAWEI, AC Series, MEth0/0/1 Interface +1.3.6.1.2.1.31.1.1.1.18.30|4|HUAWEI, AC Series, Vlanif391 Interface +1.3.6.1.2.1.31.1.1.1.18.37|4|radius test +1.3.6.1.2.1.31.1.1.1.18.38|4|HUAWEI, AC Series, Ethernet0/0/47 Interface +1.3.6.1.2.1.31.1.1.1.18.39|4|HUAWEI, AC Series, Vlanif1 Interface +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.20|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.23|67|0 +1.3.6.1.2.1.31.1.1.1.19.24|67|0 +1.3.6.1.2.1.31.1.1.1.19.25|67|0 +1.3.6.1.2.1.31.1.1.1.19.26|67|0 +1.3.6.1.2.1.31.1.1.1.19.27|67|0 +1.3.6.1.2.1.31.1.1.1.19.28|67|0 +1.3.6.1.2.1.31.1.1.1.19.29|67|0 +1.3.6.1.2.1.31.1.1.1.19.30|67|0 +1.3.6.1.2.1.31.1.1.1.19.37|67|0 +1.3.6.1.2.1.31.1.1.1.19.38|67|0 +1.3.6.1.2.1.31.1.1.1.19.39|67|0 +1.3.6.1.2.1.47.1.1.1.1.2.3|4|acme-pm7-wlc-001 +1.3.6.1.2.1.47.1.1.1.1.2.5|4|Board slot +1.3.6.1.2.1.47.1.1.1.1.2.9|4|SRU Board +1.3.6.1.2.1.47.1.1.1.1.2.14|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.78|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.142|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.206|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.270|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.334|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.398|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.462|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.526|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.590|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.654|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.718|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.782|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.846|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.910|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.974|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1038|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1102|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1166|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1230|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1294|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1358|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1422|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1486|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1550|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1614|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.1678|4|Port +1.3.6.1.2.1.47.1.1.1.1.2.65548|4|Card slot +1.3.6.1.2.1.47.1.1.1.1.2.81932|4|Card slot +1.3.6.1.2.1.47.1.1.1.1.2.81933|4|PowerSupply +1.3.6.1.2.1.47.1.1.1.1.3.3|6|1.3.6.1.4.1.2011.20021210.11.692225 +1.3.6.1.2.1.47.1.1.1.1.3.5|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.9|6|1.3.6.1.4.1.2011.20021210.12.692225 +1.3.6.1.2.1.47.1.1.1.1.3.14|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.78|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.142|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.206|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.270|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.334|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.398|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.462|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.526|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.590|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.654|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.718|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.782|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.846|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.910|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.974|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1038|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1102|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1166|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1230|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1294|6|1.3.6.1.4.1.2011.20021210.14.667657 +1.3.6.1.2.1.47.1.1.1.1.3.1358|6|1.3.6.1.4.1.2011.20021210.14.667657 +1.3.6.1.2.1.47.1.1.1.1.3.1422|6|1.3.6.1.4.1.2011.20021210.14.667657 +1.3.6.1.2.1.47.1.1.1.1.3.1486|6|1.3.6.1.4.1.2011.20021210.14.667657 +1.3.6.1.2.1.47.1.1.1.1.3.1550|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1614|6|1.3.6.1.4.1.2011.20021210.14.667652 +1.3.6.1.2.1.47.1.1.1.1.3.1678|6|1.3.6.1.4.1.2011.20021210.14.0 +1.3.6.1.2.1.47.1.1.1.1.3.65548|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.81932|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.81933|6|1.3.6.1.4.1.2011.20021210.13.0 +1.3.6.1.2.1.47.1.1.1.1.4.3|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.5|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.9|2|5 +1.3.6.1.2.1.47.1.1.1.1.4.14|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.78|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.142|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.206|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.270|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.334|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.398|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.462|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.526|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.590|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.654|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.718|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.782|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.846|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.910|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.974|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1038|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1102|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1166|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1230|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1294|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1358|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1422|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1486|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1550|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1614|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.1678|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.65548|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.81932|2|9 +1.3.6.1.2.1.47.1.1.1.1.4.81933|2|81932 +1.3.6.1.2.1.47.1.1.1.1.5.3|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.5|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.14|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.78|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.142|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.206|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.270|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.334|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.398|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.462|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.526|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.590|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.654|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.718|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.782|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.846|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.910|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.974|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1038|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1102|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1166|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1230|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1294|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1358|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1422|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1486|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1550|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1614|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1678|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.65548|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.81932|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.81933|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.3|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.5|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.14|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.78|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.142|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.206|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.270|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.334|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.398|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.462|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.526|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.590|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.654|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.718|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.782|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.846|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.910|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.974|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.1038|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.1102|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.1166|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.1230|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.1294|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.1358|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.1422|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.1486|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.1550|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.1614|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.1678|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.65548|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.81932|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.81933|2|1 +1.3.6.1.2.1.47.1.1.1.1.7.3|4|AC6605-26-PWR +1.3.6.1.2.1.47.1.1.1.1.7.5|4|Board slot 0 +1.3.6.1.2.1.47.1.1.1.1.7.9|4|SRU Board 0 +1.3.6.1.2.1.47.1.1.1.1.7.14|4|GigabitEthernet0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.78|4|GigabitEthernet0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.142|4|GigabitEthernet0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.206|4|GigabitEthernet0/0/4 +1.3.6.1.2.1.47.1.1.1.1.7.270|4|GigabitEthernet0/0/5 +1.3.6.1.2.1.47.1.1.1.1.7.334|4|GigabitEthernet0/0/6 +1.3.6.1.2.1.47.1.1.1.1.7.398|4|GigabitEthernet0/0/7 +1.3.6.1.2.1.47.1.1.1.1.7.462|4|GigabitEthernet0/0/8 +1.3.6.1.2.1.47.1.1.1.1.7.526|4|GigabitEthernet0/0/9 +1.3.6.1.2.1.47.1.1.1.1.7.590|4|GigabitEthernet0/0/10 +1.3.6.1.2.1.47.1.1.1.1.7.654|4|GigabitEthernet0/0/11 +1.3.6.1.2.1.47.1.1.1.1.7.718|4|GigabitEthernet0/0/12 +1.3.6.1.2.1.47.1.1.1.1.7.782|4|GigabitEthernet0/0/13 +1.3.6.1.2.1.47.1.1.1.1.7.846|4|GigabitEthernet0/0/14 +1.3.6.1.2.1.47.1.1.1.1.7.910|4|GigabitEthernet0/0/15 +1.3.6.1.2.1.47.1.1.1.1.7.974|4|GigabitEthernet0/0/16 +1.3.6.1.2.1.47.1.1.1.1.7.1038|4|GigabitEthernet0/0/17 +1.3.6.1.2.1.47.1.1.1.1.7.1102|4|GigabitEthernet0/0/18 +1.3.6.1.2.1.47.1.1.1.1.7.1166|4|GigabitEthernet0/0/19 +1.3.6.1.2.1.47.1.1.1.1.7.1230|4|GigabitEthernet0/0/20 +1.3.6.1.2.1.47.1.1.1.1.7.1294|4|GigabitEthernet0/0/21 +1.3.6.1.2.1.47.1.1.1.1.7.1358|4|GigabitEthernet0/0/22 +1.3.6.1.2.1.47.1.1.1.1.7.1422|4|GigabitEthernet0/0/23 +1.3.6.1.2.1.47.1.1.1.1.7.1486|4|GigabitEthernet0/0/24 +1.3.6.1.2.1.47.1.1.1.1.7.1550|4|XGigabitEthernet0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.1614|4|XGigabitEthernet0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.1678|4|MEth0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.65548|4|Card slot 0/4 +1.3.6.1.2.1.47.1.1.1.1.7.81932|4|Card slot 0/5 +1.3.6.1.2.1.47.1.1.1.1.7.81933|4|PWR Card 0/5 +1.3.6.1.2.1.47.1.1.1.1.8.3|4| +1.3.6.1.2.1.47.1.1.1.1.8.5|4| +1.3.6.1.2.1.47.1.1.1.1.8.9|4|H852V26S VER.B +1.3.6.1.2.1.47.1.1.1.1.8.14|4| +1.3.6.1.2.1.47.1.1.1.1.8.78|4| +1.3.6.1.2.1.47.1.1.1.1.8.142|4| +1.3.6.1.2.1.47.1.1.1.1.8.206|4| +1.3.6.1.2.1.47.1.1.1.1.8.270|4| +1.3.6.1.2.1.47.1.1.1.1.8.334|4| +1.3.6.1.2.1.47.1.1.1.1.8.398|4| +1.3.6.1.2.1.47.1.1.1.1.8.462|4| +1.3.6.1.2.1.47.1.1.1.1.8.526|4| +1.3.6.1.2.1.47.1.1.1.1.8.590|4| +1.3.6.1.2.1.47.1.1.1.1.8.654|4| +1.3.6.1.2.1.47.1.1.1.1.8.718|4| +1.3.6.1.2.1.47.1.1.1.1.8.782|4| +1.3.6.1.2.1.47.1.1.1.1.8.846|4| +1.3.6.1.2.1.47.1.1.1.1.8.910|4| +1.3.6.1.2.1.47.1.1.1.1.8.974|4| +1.3.6.1.2.1.47.1.1.1.1.8.1038|4| +1.3.6.1.2.1.47.1.1.1.1.8.1102|4| +1.3.6.1.2.1.47.1.1.1.1.8.1166|4| +1.3.6.1.2.1.47.1.1.1.1.8.1230|4| +1.3.6.1.2.1.47.1.1.1.1.8.1294|4| +1.3.6.1.2.1.47.1.1.1.1.8.1358|4| +1.3.6.1.2.1.47.1.1.1.1.8.1422|4| +1.3.6.1.2.1.47.1.1.1.1.8.1486|4| +1.3.6.1.2.1.47.1.1.1.1.8.1550|4| +1.3.6.1.2.1.47.1.1.1.1.8.1614|4| +1.3.6.1.2.1.47.1.1.1.1.8.1678|4| +1.3.6.1.2.1.47.1.1.1.1.8.65548|4| +1.3.6.1.2.1.47.1.1.1.1.8.81932|4| +1.3.6.1.2.1.47.1.1.1.1.8.81933|4| +1.3.6.1.2.1.47.1.1.1.1.9.3|4| +1.3.6.1.2.1.47.1.1.1.1.9.5|4| +1.3.6.1.2.1.47.1.1.1.1.9.9|4|611 +1.3.6.1.2.1.47.1.1.1.1.9.14|4| +1.3.6.1.2.1.47.1.1.1.1.9.78|4| +1.3.6.1.2.1.47.1.1.1.1.9.142|4| +1.3.6.1.2.1.47.1.1.1.1.9.206|4| +1.3.6.1.2.1.47.1.1.1.1.9.270|4| +1.3.6.1.2.1.47.1.1.1.1.9.334|4| +1.3.6.1.2.1.47.1.1.1.1.9.398|4| +1.3.6.1.2.1.47.1.1.1.1.9.462|4| +1.3.6.1.2.1.47.1.1.1.1.9.526|4| +1.3.6.1.2.1.47.1.1.1.1.9.590|4| +1.3.6.1.2.1.47.1.1.1.1.9.654|4| +1.3.6.1.2.1.47.1.1.1.1.9.718|4| +1.3.6.1.2.1.47.1.1.1.1.9.782|4| +1.3.6.1.2.1.47.1.1.1.1.9.846|4| +1.3.6.1.2.1.47.1.1.1.1.9.910|4| +1.3.6.1.2.1.47.1.1.1.1.9.974|4| +1.3.6.1.2.1.47.1.1.1.1.9.1038|4| +1.3.6.1.2.1.47.1.1.1.1.9.1102|4| +1.3.6.1.2.1.47.1.1.1.1.9.1166|4| +1.3.6.1.2.1.47.1.1.1.1.9.1230|4| +1.3.6.1.2.1.47.1.1.1.1.9.1294|4| +1.3.6.1.2.1.47.1.1.1.1.9.1358|4| +1.3.6.1.2.1.47.1.1.1.1.9.1422|4| +1.3.6.1.2.1.47.1.1.1.1.9.1486|4| +1.3.6.1.2.1.47.1.1.1.1.9.1550|4| +1.3.6.1.2.1.47.1.1.1.1.9.1614|4| +1.3.6.1.2.1.47.1.1.1.1.9.1678|4| +1.3.6.1.2.1.47.1.1.1.1.9.65548|4| +1.3.6.1.2.1.47.1.1.1.1.9.81932|4| +1.3.6.1.2.1.47.1.1.1.1.9.81933|4| +1.3.6.1.2.1.47.1.1.1.1.10.3|4|V200R010C00SPC500 +1.3.6.1.2.1.47.1.1.1.1.10.5|4| +1.3.6.1.2.1.47.1.1.1.1.10.9|4|V200R010C00SPC500 +1.3.6.1.2.1.47.1.1.1.1.10.14|4| +1.3.6.1.2.1.47.1.1.1.1.10.78|4| +1.3.6.1.2.1.47.1.1.1.1.10.142|4| +1.3.6.1.2.1.47.1.1.1.1.10.206|4| +1.3.6.1.2.1.47.1.1.1.1.10.270|4| +1.3.6.1.2.1.47.1.1.1.1.10.334|4| +1.3.6.1.2.1.47.1.1.1.1.10.398|4| +1.3.6.1.2.1.47.1.1.1.1.10.462|4| +1.3.6.1.2.1.47.1.1.1.1.10.526|4| +1.3.6.1.2.1.47.1.1.1.1.10.590|4| +1.3.6.1.2.1.47.1.1.1.1.10.654|4| +1.3.6.1.2.1.47.1.1.1.1.10.718|4| +1.3.6.1.2.1.47.1.1.1.1.10.782|4| +1.3.6.1.2.1.47.1.1.1.1.10.846|4| +1.3.6.1.2.1.47.1.1.1.1.10.910|4| +1.3.6.1.2.1.47.1.1.1.1.10.974|4| +1.3.6.1.2.1.47.1.1.1.1.10.1038|4| +1.3.6.1.2.1.47.1.1.1.1.10.1102|4| +1.3.6.1.2.1.47.1.1.1.1.10.1166|4| +1.3.6.1.2.1.47.1.1.1.1.10.1230|4| +1.3.6.1.2.1.47.1.1.1.1.10.1294|4| +1.3.6.1.2.1.47.1.1.1.1.10.1358|4| +1.3.6.1.2.1.47.1.1.1.1.10.1422|4| +1.3.6.1.2.1.47.1.1.1.1.10.1486|4| +1.3.6.1.2.1.47.1.1.1.1.10.1550|4| +1.3.6.1.2.1.47.1.1.1.1.10.1614|4| +1.3.6.1.2.1.47.1.1.1.1.10.1678|4| +1.3.6.1.2.1.47.1.1.1.1.10.65548|4| +1.3.6.1.2.1.47.1.1.1.1.10.81932|4| +1.3.6.1.2.1.47.1.1.1.1.10.81933|4| +1.3.6.1.2.1.47.1.1.1.1.11.3|4| +1.3.6.1.2.1.47.1.1.1.1.11.5|4| +1.3.6.1.2.1.47.1.1.1.1.11.9|4|21023579169WJ6000038 +1.3.6.1.2.1.47.1.1.1.1.11.14|4| +1.3.6.1.2.1.47.1.1.1.1.11.78|4| +1.3.6.1.2.1.47.1.1.1.1.11.142|4| +1.3.6.1.2.1.47.1.1.1.1.11.206|4| +1.3.6.1.2.1.47.1.1.1.1.11.270|4| +1.3.6.1.2.1.47.1.1.1.1.11.334|4| +1.3.6.1.2.1.47.1.1.1.1.11.398|4| +1.3.6.1.2.1.47.1.1.1.1.11.462|4| +1.3.6.1.2.1.47.1.1.1.1.11.526|4| +1.3.6.1.2.1.47.1.1.1.1.11.590|4| +1.3.6.1.2.1.47.1.1.1.1.11.654|4| +1.3.6.1.2.1.47.1.1.1.1.11.718|4| +1.3.6.1.2.1.47.1.1.1.1.11.782|4| +1.3.6.1.2.1.47.1.1.1.1.11.846|4| +1.3.6.1.2.1.47.1.1.1.1.11.910|4| +1.3.6.1.2.1.47.1.1.1.1.11.974|4| +1.3.6.1.2.1.47.1.1.1.1.11.1038|4| +1.3.6.1.2.1.47.1.1.1.1.11.1102|4| +1.3.6.1.2.1.47.1.1.1.1.11.1166|4| +1.3.6.1.2.1.47.1.1.1.1.11.1230|4| +1.3.6.1.2.1.47.1.1.1.1.11.1294|4| +1.3.6.1.2.1.47.1.1.1.1.11.1358|4| +1.3.6.1.2.1.47.1.1.1.1.11.1422|4| +1.3.6.1.2.1.47.1.1.1.1.11.1486|4| +1.3.6.1.2.1.47.1.1.1.1.11.1550|4| +1.3.6.1.2.1.47.1.1.1.1.11.1614|4| +1.3.6.1.2.1.47.1.1.1.1.11.1678|4| +1.3.6.1.2.1.47.1.1.1.1.11.65548|4| +1.3.6.1.2.1.47.1.1.1.1.11.81932|4| +1.3.6.1.2.1.47.1.1.1.1.11.81933|4|2102310JFA6TJ7923697 +1.3.6.1.2.1.47.1.1.1.1.12.3|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.5|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.9|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.14|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.78|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.142|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.206|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.270|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.334|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.398|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.462|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.526|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.590|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.654|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.718|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.782|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.846|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.910|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.974|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1038|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1102|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1166|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1230|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1294|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1358|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1422|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1486|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1550|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1614|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.1678|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.65548|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.81932|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.81933|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.16.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.14|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.78|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.142|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.206|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.270|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.334|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.398|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.462|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.526|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.590|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.654|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.718|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.782|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.846|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.910|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.974|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1038|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1102|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1166|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1230|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1294|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1358|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1422|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1486|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1550|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1614|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1678|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.65548|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.81932|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.81933|2|2 +1.3.6.1.2.1.47.1.3.2.1.2.14.1|6|1.3.6.1.2.1.2.2.1.1.3 +1.3.6.1.2.1.47.1.3.2.1.2.78.1|6|1.3.6.1.2.1.2.2.1.1.4 +1.3.6.1.2.1.47.1.3.2.1.2.142.1|6|1.3.6.1.2.1.2.2.1.1.5 +1.3.6.1.2.1.47.1.3.2.1.2.206.1|6|1.3.6.1.2.1.2.2.1.1.6 +1.3.6.1.2.1.47.1.3.2.1.2.270.1|6|1.3.6.1.2.1.2.2.1.1.7 +1.3.6.1.2.1.47.1.3.2.1.2.334.1|6|1.3.6.1.2.1.2.2.1.1.8 +1.3.6.1.2.1.47.1.3.2.1.2.398.1|6|1.3.6.1.2.1.2.2.1.1.9 +1.3.6.1.2.1.47.1.3.2.1.2.462.1|6|1.3.6.1.2.1.2.2.1.1.10 +1.3.6.1.2.1.47.1.3.2.1.2.526.1|6|1.3.6.1.2.1.2.2.1.1.11 +1.3.6.1.2.1.47.1.3.2.1.2.590.1|6|1.3.6.1.2.1.2.2.1.1.12 +1.3.6.1.2.1.47.1.3.2.1.2.654.1|6|1.3.6.1.2.1.2.2.1.1.13 +1.3.6.1.2.1.47.1.3.2.1.2.718.1|6|1.3.6.1.2.1.2.2.1.1.14 +1.3.6.1.2.1.47.1.3.2.1.2.782.1|6|1.3.6.1.2.1.2.2.1.1.15 +1.3.6.1.2.1.47.1.3.2.1.2.846.1|6|1.3.6.1.2.1.2.2.1.1.16 +1.3.6.1.2.1.47.1.3.2.1.2.910.1|6|1.3.6.1.2.1.2.2.1.1.17 +1.3.6.1.2.1.47.1.3.2.1.2.974.1|6|1.3.6.1.2.1.2.2.1.1.18 +1.3.6.1.2.1.47.1.3.2.1.2.1038.1|6|1.3.6.1.2.1.2.2.1.1.19 +1.3.6.1.2.1.47.1.3.2.1.2.1102.1|6|1.3.6.1.2.1.2.2.1.1.20 +1.3.6.1.2.1.47.1.3.2.1.2.1166.1|6|1.3.6.1.2.1.2.2.1.1.21 +1.3.6.1.2.1.47.1.3.2.1.2.1230.1|6|1.3.6.1.2.1.2.2.1.1.22 +1.3.6.1.2.1.47.1.3.2.1.2.1294.1|6|1.3.6.1.2.1.2.2.1.1.23 +1.3.6.1.2.1.47.1.3.2.1.2.1358.1|6|1.3.6.1.2.1.2.2.1.1.24 +1.3.6.1.2.1.47.1.3.2.1.2.1422.1|6|1.3.6.1.2.1.2.2.1.1.25 +1.3.6.1.2.1.47.1.3.2.1.2.1486.1|6|1.3.6.1.2.1.2.2.1.1.26 +1.3.6.1.2.1.47.1.3.2.1.2.1550.1|6|1.3.6.1.2.1.2.2.1.1.27 +1.3.6.1.2.1.47.1.3.2.1.2.1614.1|6|1.3.6.1.2.1.2.2.1.1.28 +1.3.6.1.2.1.47.1.3.2.1.2.1678.1|6|1.3.6.1.2.1.2.2.1.1.29 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.3|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.5|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.9|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.14|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.78|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.142|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.206|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.270|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.334|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.398|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.462|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.526|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.590|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.654|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.718|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.782|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.846|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.910|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.974|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1038|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1102|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1166|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1230|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1294|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1358|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1422|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1486|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1550|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1614|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.1678|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.65548|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.81932|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1.81933|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.3|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.5|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.9|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.14|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.78|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.142|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.206|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.270|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.334|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.398|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.462|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.526|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.590|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.654|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.718|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.782|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.846|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.910|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.974|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1038|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1102|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1166|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1230|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1294|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1358|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1422|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1486|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1550|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1614|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.1678|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.65548|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.81932|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2.81933|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.3|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.5|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.9|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.14|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.78|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.142|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.206|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.270|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.334|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.398|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.462|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.526|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.590|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.654|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.718|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.782|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.846|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.910|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.974|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1038|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1102|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1166|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1230|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1294|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1358|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1422|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1486|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1550|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1614|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.1678|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.65548|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.81932|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3.81933|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.9|2|7 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.9|2|80 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.9|2|36 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.9|2|90 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.9|2|-1535721472 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.9|2|610897 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.9|2|40 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.9|2|59 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.9|2|3 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.9|2|2 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.9|2|4 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.9|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.9|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.9|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.9|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.3|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.5|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.9|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.14|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.78|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.142|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.206|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.270|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.334|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.398|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.462|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.526|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.590|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.654|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.718|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.782|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.846|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.910|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.974|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1038|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1102|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1166|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1230|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1294|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1358|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1422|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1486|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1550|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1614|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.1678|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.65548|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.81932|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20.81933|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.3|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.5|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.9|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.14|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.78|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.142|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.206|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.270|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.334|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.398|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.462|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.526|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.590|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.654|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.718|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.782|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.846|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.910|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.974|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1038|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1102|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1166|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1230|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1294|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1358|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1422|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1486|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1550|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1614|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.1678|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.65548|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.81932|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21.81933|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.3|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.5|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.9|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.65548|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.81932|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22.81933|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.3|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.5|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.9|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.14|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.78|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.142|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.206|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.270|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.334|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.398|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.462|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.526|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.590|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.654|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.718|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.782|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.846|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.910|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.974|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1038|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1102|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1166|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1230|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1294|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1358|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1422|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1486|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1550|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1614|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.1678|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.65548|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.81932|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.43.81933|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.3|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.5|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.9|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.14|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.78|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.142|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.206|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.270|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.334|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.398|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.462|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.526|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.590|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.654|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.718|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.782|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.846|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.910|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.974|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1038|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1102|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1166|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1230|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1294|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1358|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1422|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1486|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1550|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1614|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.1678|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.65548|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.81932|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.44.81933|4| +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.3|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.5|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.9|66|2694576 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.14|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.78|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.142|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.206|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.270|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.334|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.398|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.462|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.526|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.590|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.654|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.718|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.782|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.846|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.910|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.974|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1038|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1102|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1166|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1230|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1294|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1358|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1422|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1486|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1550|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1614|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.1678|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.65548|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.81932|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.1.1.65.81933|66|0 +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.3|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.9|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.14|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.78|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.142|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.206|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.270|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.334|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.398|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.462|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.526|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.590|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.654|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.718|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.782|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.846|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.910|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.974|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1038|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1102|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1166|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1230|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1294|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1358|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1422|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1486|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1550|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1614|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.1678|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.2.81933|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.3|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.9|4|AC6605-26-PWR-16AP +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.14|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.78|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.142|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.206|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.270|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.334|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.398|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.462|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.526|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.590|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.654|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.718|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.782|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.846|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.910|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.974|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1038|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1102|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1166|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1230|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1294|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1358|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1422|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1486|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1550|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1614|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.1678|4| +1.3.6.1.4.1.2011.5.25.31.1.1.2.1.11.81933|4|ES0W2PSA0150 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.14|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.78|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.142|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.206|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.270|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.334|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.398|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.462|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.526|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.590|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.654|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.718|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.782|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.846|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.910|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.974|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1038|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1102|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1166|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1230|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1294|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1358|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1422|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1486|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1550|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1614|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.1.1678|2|1 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.2.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.3.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.14|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.78|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.142|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.206|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.270|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.334|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.398|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.462|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.526|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.590|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.654|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.718|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.782|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.846|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.910|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.974|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1038|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1102|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1166|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1230|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1294|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1358|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1422|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1486|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1550|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1614|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.4.1678|4| +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.5.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.6.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.7.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.8.1678|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.14|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.78|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.142|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.206|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.270|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.334|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.398|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.462|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.526|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.590|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.654|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.718|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.782|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.846|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.910|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.974|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1038|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1102|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1166|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1230|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1294|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1358|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1422|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1486|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1550|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1614|2|0 +1.3.6.1.4.1.2011.5.25.31.1.1.3.1.9.1678|2|0 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.0.12.7.172.0.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.15.254.127.73.254.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.16.24.191.180.20.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.21.93.60.200.3.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.21.93.60.200.4.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.21.93.60.200.5.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.21.93.60.200.6.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.21.93.156.65.1.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.21.93.156.65.2.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.34.144.61.112.0.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.40.248.151.85.159.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.40.248.151.86.13.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.3.179.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.15.162.70.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.30.162.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.36.107.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.38.109.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.44.246.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.55.244.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.58.114.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.79.195.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.96.255.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.97.41.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.103.8.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.106.169.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.107.235.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.115.12.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.115.151.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.80.86.133.124.3.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.0.181.109.0.211.169.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.19.11.104.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.27.251.44.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.28.86.252.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.28.88.132.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.32.222.8.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.32.222.248.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.179.216.208.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.196.82.169.70.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.196.82.169.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.196.82.169.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.196.82.169.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.4.98.115.196.82.169.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.64.156.40.236.224.168.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.72.142.239.113.98.96.70.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.72.142.239.113.98.96.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.72.142.239.113.98.96.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.72.142.239.113.98.96.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.72.142.239.113.98.96.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.80.111.119.234.220.160.391.1.48|2|3 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.92.247.230.118.205.170.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.100.246.157.87.252.76.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.100.246.157.153.217.8.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.120.123.138.103.132.133.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.132.137.173.49.196.65.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.162.1.0.0.0.238.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.162.1.0.0.0.240.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.162.1.0.0.0.241.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.162.1.0.0.1.136.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.164.52.217.56.67.107.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.168.92.44.50.221.82.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.184.233.55.152.177.112.71.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.196.125.79.236.80.64.419.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.196.217.135.43.124.33.70.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.236.189.29.206.197.28.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.236.189.29.206.198.164.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.240.213.191.155.233.22.392.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.244.207.226.169.246.104.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.244.207.226.169.248.60.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.244.207.226.255.177.192.391.1.48|2|26 +1.3.6.1.4.1.2011.5.25.42.2.1.3.1.4.244.207.226.255.185.196.391.1.48|2|26 +1.3.6.1.4.1.2011.6.139.12.1.2.1.0|2|1 +1.3.6.1.4.1.2011.6.139.13.3.3.1.2.80.111.119.234.220.160|4|2102350PKF10J1000078 +1.3.6.1.4.1.2011.6.139.13.3.3.1.3.80.111.119.234.220.160|4|AP7050DN-E +1.3.6.1.4.1.2011.6.139.13.3.3.1.4.80.111.119.234.220.160|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.16.1.2.1.5.80.111.119.234.220.160.0|2|1 +1.3.6.1.4.1.2011.6.139.16.1.2.1.5.80.111.119.234.220.160.1|2|2 +1.3.6.1.4.1.2011.6.139.16.1.2.1.7.80.111.119.234.220.160.0|66|6 +1.3.6.1.4.1.2011.6.139.16.1.2.1.7.80.111.119.234.220.160.1|66|40 +1.3.6.1.4.1.2011.6.139.16.1.2.1.20.80.111.119.234.220.160.0|4x|506F77EADCA0 +1.3.6.1.4.1.2011.6.139.16.1.2.1.20.80.111.119.234.220.160.1|4x|506F77EADCB0 +1.3.6.1.4.1.2011.6.139.16.1.2.1.25.80.111.119.234.220.160.0|66|7 +1.3.6.1.4.1.2011.6.139.16.1.2.1.25.80.111.119.234.220.160.1|66|1 +1.3.6.1.4.1.2011.6.139.16.1.2.1.29.80.111.119.234.220.160.0|66|1 +1.3.6.1.4.1.2011.6.139.16.1.2.1.29.80.111.119.234.220.160.1|66|0 +1.3.6.1.4.1.2011.6.139.16.1.2.1.45.80.111.119.234.220.160.0|66|20 +1.3.6.1.4.1.2011.6.139.16.1.2.1.45.80.111.119.234.220.160.1|66|23 +1.3.6.1.4.1.2011.6.139.17.1.1.1.4.80.111.119.234.220.160.0.1|4|acme +1.3.6.1.4.1.2011.6.139.17.1.1.1.4.80.111.119.234.220.160.0.2|4|WIFI_BYOD +1.3.6.1.4.1.2011.6.139.17.1.1.1.4.80.111.119.234.220.160.0.3|4|acme_Guest +1.3.6.1.4.1.2011.6.139.17.1.1.1.4.80.111.119.234.220.160.1.1|4|acme +1.3.6.1.4.1.2011.6.139.17.1.1.1.4.80.111.119.234.220.160.1.2|4|WIFI_BYOD +1.3.6.1.4.1.2011.6.139.17.1.1.1.4.80.111.119.234.220.160.1.3|4|acme_Guest +1.3.6.1.4.1.2011.6.139.17.1.1.1.5.80.111.119.234.220.160.0.1|4x|506F77EADCA0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.5.80.111.119.234.220.160.0.2|4x|506F77EADCA1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.5.80.111.119.234.220.160.0.3|4x|506F77EADCA2 +1.3.6.1.4.1.2011.6.139.17.1.1.1.5.80.111.119.234.220.160.1.1|4x|506F77EADCB0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.5.80.111.119.234.220.160.1.2|4x|506F77EADCB1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.5.80.111.119.234.220.160.1.3|4x|506F77EADCB2 +1.3.6.1.4.1.2011.6.139.17.1.1.1.6.80.111.119.234.220.160.0.1|4|acme_Test +1.3.6.1.4.1.2011.6.139.17.1.1.1.6.80.111.119.234.220.160.0.2|4|WIFI_BYOD_Test +1.3.6.1.4.1.2011.6.139.17.1.1.1.6.80.111.119.234.220.160.0.3|4|acme_Guest_Test +1.3.6.1.4.1.2011.6.139.17.1.1.1.6.80.111.119.234.220.160.1.1|4|acme_Test +1.3.6.1.4.1.2011.6.139.17.1.1.1.6.80.111.119.234.220.160.1.2|4|WIFI_BYOD_Test +1.3.6.1.4.1.2011.6.139.17.1.1.1.6.80.111.119.234.220.160.1.3|4|acme_Guest_Test +1.3.6.1.4.1.2011.6.139.17.1.1.1.7.80.111.119.234.220.160.0.1|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.17.1.1.1.7.80.111.119.234.220.160.0.2|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.17.1.1.1.7.80.111.119.234.220.160.0.3|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.17.1.1.1.7.80.111.119.234.220.160.1.1|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.17.1.1.1.7.80.111.119.234.220.160.1.2|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.17.1.1.1.7.80.111.119.234.220.160.1.3|4|TestAP-NAME +1.3.6.1.4.1.2011.6.139.17.1.1.1.8.80.111.119.234.220.160.0.1|2|13 +1.3.6.1.4.1.2011.6.139.17.1.1.1.8.80.111.119.234.220.160.0.2|2|13 +1.3.6.1.4.1.2011.6.139.17.1.1.1.8.80.111.119.234.220.160.0.3|2|32 +1.3.6.1.4.1.2011.6.139.17.1.1.1.8.80.111.119.234.220.160.1.1|2|13 +1.3.6.1.4.1.2011.6.139.17.1.1.1.8.80.111.119.234.220.160.1.2|2|13 +1.3.6.1.4.1.2011.6.139.17.1.1.1.8.80.111.119.234.220.160.1.3|2|32 +1.3.6.1.4.1.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.1|2|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.2|2|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.0.3|2|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.1|2|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.2|2|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.9.80.111.119.234.220.160.1.3|2|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.10.80.111.119.234.220.160.0.1|2|1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.10.80.111.119.234.220.160.0.2|2|1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.10.80.111.119.234.220.160.0.3|2|1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.10.80.111.119.234.220.160.1.1|2|1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.10.80.111.119.234.220.160.1.2|2|1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.10.80.111.119.234.220.160.1.3|2|1 +1.3.6.1.4.1.2011.6.139.17.1.1.1.11.80.111.119.234.220.160.0.1|66|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.11.80.111.119.234.220.160.0.2|66|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.11.80.111.119.234.220.160.0.3|66|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.11.80.111.119.234.220.160.1.1|66|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.11.80.111.119.234.220.160.1.2|66|0 +1.3.6.1.4.1.2011.6.139.17.1.1.1.11.80.111.119.234.220.160.1.3|66|0 +1.3.6.1.4.1.2011.6.157.1.3.0|2|43291 +1.3.6.1.4.1.2011.6.157.1.6.0|2|43291 +1.3.6.1.6.3.10.2.1.3.0|2|610994