mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	Clean up old cambium code / migrate more data to wireless sensors (#8725)
* Clean up old cambium code / migrate more data to wireless sensors Update tests * Fix tests * Update 450m tests
This commit is contained in:
		
				
					committed by
					
						
						Neil Lathwood
					
				
			
			
				
	
			
			
			
						parent
						
							d88d230a02
						
					
				
				
					commit
					05c03a2290
				
			@@ -32,6 +32,7 @@ use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessUtilizationDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSsrDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
 | 
			
		||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessErrorsDiscovery;
 | 
			
		||||
use LibreNMS\OS;
 | 
			
		||||
 | 
			
		||||
class Pmp extends OS implements
 | 
			
		||||
@@ -40,7 +41,8 @@ class Pmp extends OS implements
 | 
			
		||||
    WirelessFrequencyDiscovery,
 | 
			
		||||
    WirelessUtilizationDiscovery,
 | 
			
		||||
    WirelessSsrDiscovery,
 | 
			
		||||
    WirelessClientsDiscovery
 | 
			
		||||
    WirelessClientsDiscovery,
 | 
			
		||||
    WirelessErrorsDiscovery
 | 
			
		||||
{
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
@@ -283,4 +285,46 @@ class Pmp extends OS implements
 | 
			
		||||
            )
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Discover wireless bit errors.  This is in total bits. Type is errors.
 | 
			
		||||
     * Returns an array of LibreNMS\Device\Sensor objects that have been discovered
 | 
			
		||||
     *
 | 
			
		||||
     * @return array Sensors
 | 
			
		||||
     */
 | 
			
		||||
    public function discoverWirelessErrors()
 | 
			
		||||
    {
 | 
			
		||||
        $fecInErrorsCount = '.1.3.6.1.4.1.161.19.3.3.1.95.0';
 | 
			
		||||
        $fecOutErrorsCount = '.1.3.6.1.4.1.161.19.3.3.1.97.0';
 | 
			
		||||
        $fecCRCError = '.1.3.6.1.4.1.161.19.3.3.1.223.0';
 | 
			
		||||
        return array(
 | 
			
		||||
            new WirelessSensor(
 | 
			
		||||
                'errors',
 | 
			
		||||
                $this->getDeviceId(),
 | 
			
		||||
                $fecCRCError,
 | 
			
		||||
                'pmp-fecCRCError',
 | 
			
		||||
                0,
 | 
			
		||||
                'CRC Errors',
 | 
			
		||||
                null
 | 
			
		||||
            ),
 | 
			
		||||
            new WirelessSensor(
 | 
			
		||||
                'errors',
 | 
			
		||||
                $this->getDeviceId(),
 | 
			
		||||
                $fecOutErrorsCount,
 | 
			
		||||
                'pmp-fecOutErrorsCount',
 | 
			
		||||
                0,
 | 
			
		||||
                'Out Error Count',
 | 
			
		||||
                null
 | 
			
		||||
            ),
 | 
			
		||||
            new WirelessSensor(
 | 
			
		||||
                'errors',
 | 
			
		||||
                $this->getDeviceId(),
 | 
			
		||||
                $fecInErrorsCount,
 | 
			
		||||
                'pmp-fecInErrorsCount',
 | 
			
		||||
                0,
 | 
			
		||||
                'In Error Count',
 | 
			
		||||
                null
 | 
			
		||||
            )
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -134,50 +134,9 @@ $config['graph_types']['device']['sub10_sub10RadioLclDataRate']['order'] = '4';
 | 
			
		||||
$config['graph_types']['device']['sub10_sub10RadioLclDataRate']['descr'] = 'Data Rate on the Airside interface';
 | 
			
		||||
 | 
			
		||||
//cambium graphs
 | 
			
		||||
$config['graph_types']['device']['cambium_650_rawReceivePower']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_rawReceivePower']['order']   = '0';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_rawReceivePower']['descr']   = 'Raw Receive Power';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_transmitPower']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_transmitPower']['order']   = '1';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_transmitPower']['descr']   = 'Transmit Power';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_modulationMode']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_modulationMode']['order']   = '2';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_modulationMode']['descr']   = 'Moduation Mode';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_dataRate']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_dataRate']['order']   = '3';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_dataRate']['descr']   = 'Data Rate';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_ssr']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_ssr']['order']   = '4';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_ssr']['descr']   = 'Signal Strength Ratio';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_gps']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_gps']['order']   = '5';
 | 
			
		||||
$config['graph_types']['device']['cambium_650_gps']['descr']   = 'GPS Status';
 | 
			
		||||
 | 
			
		||||
$config['graph_types']['device']['cambium_250_receivePower']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_receivePower']['order']   = '0';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_receivePower']['descr']   = 'Raw Receive Power';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_transmitPower']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_transmitPower']['order']   = '1';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_transmitPower']['descr']   = 'Transmit Power';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_modulationMode']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_modulationMode']['order']   = '2';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_modulationMode']['descr']   = 'Moduation Mode';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_dataRate']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_dataRate']['order']   = '3';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_dataRate']['descr']   = 'Data Rate';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_ssr']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_ssr']['order']   = '4';
 | 
			
		||||
$config['graph_types']['device']['cambium_250_ssr']['descr']   = 'Signal Strength Ratio';
 | 
			
		||||
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_whispGPSStats']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_whispGPSStats']['order']   = '0';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_whispGPSStats']['descr']   = 'GPS Status';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_gpsStats']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_gpsStats']['order']   = '0';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_gpsStats']['descr']   = 'GPS Stats';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_rssi']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_rssi']['order']   = '1';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_rssi']['descr']   = 'Signal Rssi';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_jitter']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_jitter']['order']   = '2';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_jitter']['descr']   = 'Jitter';
 | 
			
		||||
@@ -196,40 +155,22 @@ $config['graph_types']['device']['canopy_generic_450_ptpSNR']['descr']   = 'Mast
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveHV']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveHV']['order']   = '7';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveHV']['descr']   = 'Dbm H/V';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveSNR']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveSNR']['order']   = '8';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveSNR']['descr']   = 'SNR';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveSSR']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveSSR']['order']   = '9';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_slaveSSR']['descr']   = 'SSR';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_masterSSR']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_masterSSR']['order']   = '10';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_450_masterSSR']['descr']   = 'Master SSR';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_regCount']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_regCount']['order']   = '11';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_regCount']['descr']   = 'Registered SM';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_freq']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_freq']['order']   = '12';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_freq']['descr']   = 'Radio Frequency';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_radioDbm']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_radioDbm']['order']   = '13';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_radioDbm']['descr']   = 'Radio Dbm';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_errorCount']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_errorCount']['order']   = '14';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_errorCount']['descr']   = 'Error Count';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_errorCount']['descr']   = 'Error Count (Migrated to Wireless Sensor)';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_crcErrors']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_crcErrors']['order']   = '15';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_crcErrors']['descr']   = 'CRC Errors';
 | 
			
		||||
$config['graph_types']['device']['canopy-generic-frameUtilization']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['canopy-generic-frameUtilization']['order']   = '16';
 | 
			
		||||
$config['graph_types']['device']['canopy-generic-frameUtilization']['descr']   = 'Frame Utilization';
 | 
			
		||||
$config['graph_types']['device']['canopy_generic_crcErrors']['descr']   = 'CRC Errors (Migrated to Wireless Sensor)';
 | 
			
		||||
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_RFStatus']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_RFStatus']['order']   = '0';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_RFStatus']['descr']   = 'RF Status';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_gps']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_gps']['order']   = '1';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_gps']['descr']   = 'GPS Info';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_modulation']['section'] = 'wireless';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_modulation']['order']   = '2';
 | 
			
		||||
$config['graph_types']['device']['cambium_epmp_modulation']['descr']   = 'ePMP Modulation';
 | 
			
		||||
 
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
$oid  = '.1.3.6.1.4.1.161.19.3.3.1.35.0';
 | 
			
		||||
$oids = trim(str_replace('"', '', snmp_get($device, "$oid", '-OsqnU')));
 | 
			
		||||
d_echo($oids."\n");
 | 
			
		||||
 | 
			
		||||
if (!empty($oids)) {
 | 
			
		||||
    echo 'Cambium Temperature ';
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
$divisor = 1;
 | 
			
		||||
$type    = 'cambium';
 | 
			
		||||
if (!empty($oids)) {
 | 
			
		||||
    list(,$current) = explode(' ', $oids);
 | 
			
		||||
    $index          = $oid;
 | 
			
		||||
    $descr          = 'System Temp';
 | 
			
		||||
    discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current);
 | 
			
		||||
}
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
$oid  = '.1.3.6.1.4.1.161.19.3.3.1.35.0';
 | 
			
		||||
$oids = trim(str_replace('"', '', snmp_get($device, "$oid", '-OsqnU')));
 | 
			
		||||
d_echo($oids."\n");
 | 
			
		||||
 | 
			
		||||
if (!empty($oids)) {
 | 
			
		||||
    echo 'Canopy Temperature ';
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
$divisor = 1;
 | 
			
		||||
$type    = 'canopy';
 | 
			
		||||
if (!empty($oids)) {
 | 
			
		||||
    list(,$current) = explode(' ', $oids);
 | 
			
		||||
    $index          = $oid;
 | 
			
		||||
    $descr          = 'System Temp';
 | 
			
		||||
    discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $type, $descr, $divisor, '1', -30, null, null, 50, $current);
 | 
			
		||||
}
 | 
			
		||||
@@ -1,41 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
/*
 | 
			
		||||
 * LibreNMS
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify it
 | 
			
		||||
 * under the terms of the GNU General Public License as published by the
 | 
			
		||||
 * Free Software Foundation, either version 3 of the License, or (at your
 | 
			
		||||
 * option) any later version.  Please see LICENSE.txt at the top level of
 | 
			
		||||
 * the source code distribution for details.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
$cambium_type = $device['sysDescr'];
 | 
			
		||||
$is_epmp = $device['sysObjectID'];
 | 
			
		||||
$version = $cambium_type;
 | 
			
		||||
if (strstr($cambium_type, 'Cambium PTP 50650')) {
 | 
			
		||||
    $masterSlaveMode = ucfirst(snmp_get($device, 'masterSlaveMode.0', '-Oqv', "CAMBIUM-PTP650-MIB"));
 | 
			
		||||
    $hardware = 'PTP 650 '. $masterSlaveMode;
 | 
			
		||||
    include 'includes/polling/wireless/cambium-650.inc.php';
 | 
			
		||||
} elseif (strstr($cambium_type, 'PTP250')) {
 | 
			
		||||
    $masterSlaveMode = ucfirst(snmp_get($device, 'masterSlaveMode.0', '-Oqv', "CAMBIUM-PTP250-MIB"));
 | 
			
		||||
    $hardware = 'PTP 250 '.$masterSlaveMode;
 | 
			
		||||
    include 'includes/polling/wireless/cambium-250.inc.php';
 | 
			
		||||
} elseif (strstr($is_epmp, '.17713.21')) {
 | 
			
		||||
    $epmp_ap = snmp_get($device, 'wirelessInterfaceMode.0', '-Oqv', 'CAMBIUM-PMP80211-MIB');
 | 
			
		||||
    $epmp_number = snmp_get($device, 'cambiumSubModeType.0', '-Oqv', 'CAMBIUM-PMP80211-MIB');
 | 
			
		||||
    if ($epmp_ap == 1) {
 | 
			
		||||
        if ($epmp_number == 5) {
 | 
			
		||||
            $hardware = 'ePTP Master';
 | 
			
		||||
        } else {
 | 
			
		||||
            $hardware = 'ePMP AP';
 | 
			
		||||
        }
 | 
			
		||||
    } elseif ($epmp_ap == 2) {
 | 
			
		||||
        if ($epmp_number == 4) {
 | 
			
		||||
            $hardware = 'ePTP Slave';
 | 
			
		||||
        } else {
 | 
			
		||||
            $hardware = 'ePMP SM';
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    $version = snmp_get($device, 'cambiumCurrentuImageVersion.0', '-Oqv', 'CAMBIUM-PMP80211-MIB');
 | 
			
		||||
    include 'includes/polling/wireless/cambium-epmp.inc.php';
 | 
			
		||||
}
 | 
			
		||||
@@ -1,64 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
/*
 | 
			
		||||
 * LibreNMS
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify it
 | 
			
		||||
 * under the terms of the GNU General Public License as published by the
 | 
			
		||||
 * Free Software Foundation, either version 3 of the License, or (at your
 | 
			
		||||
 * option) any later version.  Please see LICENSE.txt at the top level of
 | 
			
		||||
 * the source code distribution for details.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
$cambium_type = $device['sysDescr'];
 | 
			
		||||
$PMP = snmp_get($device, 'boxDeviceType.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB');
 | 
			
		||||
$version = $cambium_type;
 | 
			
		||||
$filtered_words = array(
 | 
			
		||||
        'timing',
 | 
			
		||||
        'timeing',
 | 
			
		||||
);
 | 
			
		||||
if (strstr($cambium_type, 'BHUL450')) {
 | 
			
		||||
    $masterSlaveMode = str_replace($filtered_words, "", snmp_get($device, 'bhTimingMode.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB'));
 | 
			
		||||
    $hardware = 'PTP 450 '.$masterSlaveMode;
 | 
			
		||||
    $version = snmp_get($device, 'boxDeviceTypeID.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB');
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
} elseif (strstr($cambium_type, 'BHUL')) {
 | 
			
		||||
    $masterSlaveMode = str_replace($filtered_words, "", snmp_get($device, 'bhTimingMode.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB'));
 | 
			
		||||
    $hardware = 'PTP 230 '. $masterSlaveMode;
 | 
			
		||||
    $version = snmp_get($device, 'boxDeviceTypeID.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB');
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
} elseif (strstr($cambium_type, 'BH20') || strstr($cambium_type, 'BH10')) {
 | 
			
		||||
    $masterSlaveMode = str_replace($filtered_words, "", snmp_get($device, 'bhTimingMode.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB'));
 | 
			
		||||
    $hardware = 'PTP 100 '. $masterSlaveMode;
 | 
			
		||||
    $version = snmp_get($device, 'boxDeviceTypeID.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB');
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
} elseif (strstr($cambium_type, 'CMM')) {
 | 
			
		||||
    $hardware = 'CMM';
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
} elseif (strstr($PMP, 'MIMO OFDM')) {
 | 
			
		||||
    if (strstr($version, "AP")) {
 | 
			
		||||
        $hardware = 'PMP 450 AP';
 | 
			
		||||
    } elseif (strstr($version, "SM")) {
 | 
			
		||||
        $hardware = 'PMP 450 SM';
 | 
			
		||||
    } else {
 | 
			
		||||
        $hardware = 'PMP 450';
 | 
			
		||||
    }
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
} elseif (strstr($PMP, 'OFDM')) {
 | 
			
		||||
    if (strstr($version, "AP")) {
 | 
			
		||||
        $hardware = 'PMP 430 AP';
 | 
			
		||||
    } elseif (strstr($version, "SM")) {
 | 
			
		||||
        $hardware = 'PMP 430 SM';
 | 
			
		||||
    } else {
 | 
			
		||||
        $hardware = 'PMP 430';
 | 
			
		||||
    }
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
} else {
 | 
			
		||||
    if (strstr($version, "AP")) {
 | 
			
		||||
        $hardware = 'PMP 100 AP';
 | 
			
		||||
    } elseif (strstr($version, "SM")) {
 | 
			
		||||
        $hardware = 'PMP 100 SM';
 | 
			
		||||
    } else {
 | 
			
		||||
        $hardware = 'PMP 100';
 | 
			
		||||
    }
 | 
			
		||||
    include 'includes/polling/wireless/canopy-generic.inc.php';
 | 
			
		||||
}
 | 
			
		||||
@@ -76,6 +76,7 @@ if (!isset($hardware)) {
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Migrated to Wireless Sensor
 | 
			
		||||
$fecInErrorsCount = snmp_get($device, "fecInErrorsCount.0", "-Ovqn", "WHISP-BOX-MIBV2-MIB");
 | 
			
		||||
$fecOutErrorsCount = snmp_get($device, "fecOutErrorsCount.0", "-Ovqn", "WHISP-BOX-MIBV2-MIB");
 | 
			
		||||
if (is_numeric($fecInErrorsCount) && is_numeric($fecOutErrorsCount)) {
 | 
			
		||||
@@ -93,6 +94,7 @@ if (is_numeric($fecInErrorsCount) && is_numeric($fecOutErrorsCount)) {
 | 
			
		||||
    unset($rrd_filename, $fecInErrorsCount, $fecOutErrorsCount);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Migrated to Wireless Sensor
 | 
			
		||||
$crcErrors = snmp_get($device, "fecCRCError.0", "-Ovqn", "WHISP-BOX-MIBV2-MIB");
 | 
			
		||||
if (is_numeric($crcErrors)) {
 | 
			
		||||
    $rrd_def = RrdDefinition::make()->addDataset('crcErrors', 'GAUGE', 0, 100000);
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
                {
 | 
			
		||||
                    "sysName": "<private>",
 | 
			
		||||
                    "sysObjectID": ".1.3.6.1.4.1.161.19.250.256",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.1.3 AP-DES",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.0.0.1 AP-DES",
 | 
			
		||||
                    "sysContact": null,
 | 
			
		||||
                    "version": null,
 | 
			
		||||
                    "hardware": "",
 | 
			
		||||
@@ -23,9 +23,9 @@
 | 
			
		||||
                {
 | 
			
		||||
                    "sysName": "<private>",
 | 
			
		||||
                    "sysObjectID": ".1.3.6.1.4.1.161.19.250.256",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.1.3 AP-DES",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.0.0.1 AP-DES",
 | 
			
		||||
                    "sysContact": "<private>",
 | 
			
		||||
                    "version": "CANOPY 15.1.3 AP-DES",
 | 
			
		||||
                    "version": "CANOPY 15.0.0.1 AP-DES",
 | 
			
		||||
                    "hardware": "PMP 450 AP",
 | 
			
		||||
                    "features": null,
 | 
			
		||||
                    "location": "<private>",
 | 
			
		||||
@@ -46,8 +46,8 @@
 | 
			
		||||
                    "port_descr_circuit": null,
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "Cambium 10/100/1000 Ethernet",
 | 
			
		||||
                    "ifName": "1",
 | 
			
		||||
                    "ifDescr": "Cambium 10/100 FEC",
 | 
			
		||||
                    "ifName": "",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": "1",
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
@@ -152,7 +152,7 @@
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "Canopy MultiPoint",
 | 
			
		||||
                    "ifName": "2",
 | 
			
		||||
                    "ifName": "",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": "2",
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
@@ -260,25 +260,25 @@
 | 
			
		||||
                    "port_descr_circuit": null,
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "Cambium 10/100/1000 Ethernet",
 | 
			
		||||
                    "ifName": "1",
 | 
			
		||||
                    "ifDescr": "Cambium 10/100 FEC",
 | 
			
		||||
                    "ifName": "Cambium 10/100 FEC",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": "1",
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
                    "ifConnectorPresent": null,
 | 
			
		||||
                    "ifPromiscuousMode": null,
 | 
			
		||||
                    "ifConnectorPresent": "0",
 | 
			
		||||
                    "ifPromiscuousMode": "0",
 | 
			
		||||
                    "ifHighSpeed": "0",
 | 
			
		||||
                    "ifOperStatus": "up",
 | 
			
		||||
                    "ifOperStatus_prev": null,
 | 
			
		||||
                    "ifAdminStatus": "up",
 | 
			
		||||
                    "ifAdminStatus_prev": null,
 | 
			
		||||
                    "ifDuplex": "fullDuplex",
 | 
			
		||||
                    "ifMtu": "1514",
 | 
			
		||||
                    "ifDuplex": null,
 | 
			
		||||
                    "ifMtu": "0",
 | 
			
		||||
                    "ifType": "ethernetCsmacd",
 | 
			
		||||
                    "ifAlias": "None",
 | 
			
		||||
                    "ifPhysAddress": "0a003e603d2b",
 | 
			
		||||
                    "ifPhysAddress": "0a003ea0acdf",
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": "13323925",
 | 
			
		||||
                    "ifLastChange": "1922057",
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
@@ -297,40 +297,40 @@
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": "2954615545",
 | 
			
		||||
                    "ifInUcastPkts": "529623573",
 | 
			
		||||
                    "ifInUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": "1844260273",
 | 
			
		||||
                    "ifOutUcastPkts": "2765970337",
 | 
			
		||||
                    "ifOutUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
                    "ifInErrors": "0",
 | 
			
		||||
                    "ifInErrors": "13",
 | 
			
		||||
                    "ifInErrors_prev": "0",
 | 
			
		||||
                    "ifInErrors_delta": null,
 | 
			
		||||
                    "ifInErrors_rate": null,
 | 
			
		||||
                    "ifOutErrors": "0",
 | 
			
		||||
                    "ifOutErrors": "1",
 | 
			
		||||
                    "ifOutErrors_prev": "0",
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": "3443302827",
 | 
			
		||||
                    "ifInOctets": "4025207045",
 | 
			
		||||
                    "ifInOctets_prev": "0",
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": "42828566",
 | 
			
		||||
                    "ifOutOctets": "1509054150",
 | 
			
		||||
                    "ifOutOctets_prev": "0",
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": "64323940",
 | 
			
		||||
                    "ifInNUcastPkts": "35916455",
 | 
			
		||||
                    "ifInNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": "2305560",
 | 
			
		||||
                    "ifOutNUcastPkts": "504577",
 | 
			
		||||
                    "ifOutNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
                    "ifInDiscards": "35",
 | 
			
		||||
                    "ifInDiscards": "0",
 | 
			
		||||
                    "ifInDiscards_prev": "0",
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
@@ -342,11 +342,11 @@
 | 
			
		||||
                    "ifInUnknownProtos_prev": "0",
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": "0",
 | 
			
		||||
                    "ifInBroadcastPkts": "35916455",
 | 
			
		||||
                    "ifInBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": "0",
 | 
			
		||||
                    "ifOutBroadcastPkts": "504577",
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
@@ -366,12 +366,12 @@
 | 
			
		||||
                    "port_descr_speed": null,
 | 
			
		||||
                    "port_descr_notes": null,
 | 
			
		||||
                    "ifDescr": "Canopy MultiPoint",
 | 
			
		||||
                    "ifName": "2",
 | 
			
		||||
                    "ifName": "Canopy MultiPoint",
 | 
			
		||||
                    "portName": null,
 | 
			
		||||
                    "ifIndex": "2",
 | 
			
		||||
                    "ifSpeed": null,
 | 
			
		||||
                    "ifConnectorPresent": null,
 | 
			
		||||
                    "ifPromiscuousMode": null,
 | 
			
		||||
                    "ifConnectorPresent": "0",
 | 
			
		||||
                    "ifPromiscuousMode": "0",
 | 
			
		||||
                    "ifHighSpeed": "0",
 | 
			
		||||
                    "ifOperStatus": "up",
 | 
			
		||||
                    "ifOperStatus_prev": null,
 | 
			
		||||
@@ -381,9 +381,9 @@
 | 
			
		||||
                    "ifMtu": "1500",
 | 
			
		||||
                    "ifType": "ethernetCsmacd",
 | 
			
		||||
                    "ifAlias": "None",
 | 
			
		||||
                    "ifPhysAddress": "1a003e603d2b",
 | 
			
		||||
                    "ifPhysAddress": "1a003ea0acdf",
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": "13323993",
 | 
			
		||||
                    "ifLastChange": "1922057",
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
@@ -402,11 +402,11 @@
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": "2006882871",
 | 
			
		||||
                    "ifInUcastPkts": "529623574",
 | 
			
		||||
                    "ifInUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": "2934902632",
 | 
			
		||||
                    "ifOutUcastPkts": "2765970338",
 | 
			
		||||
                    "ifOutUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
@@ -418,20 +418,20 @@
 | 
			
		||||
                    "ifOutErrors_prev": "0",
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": "2527529646",
 | 
			
		||||
                    "ifInOctets": "4025222391",
 | 
			
		||||
                    "ifInOctets_prev": "0",
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": "278058018",
 | 
			
		||||
                    "ifOutOctets": "1509054150",
 | 
			
		||||
                    "ifOutOctets_prev": "0",
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": "2821088",
 | 
			
		||||
                    "ifInNUcastPkts": "489502",
 | 
			
		||||
                    "ifInNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": "40507545",
 | 
			
		||||
                    "ifOutNUcastPkts": "26636360",
 | 
			
		||||
                    "ifOutNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
@@ -439,7 +439,7 @@
 | 
			
		||||
                    "ifInDiscards_prev": "0",
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": "5680700",
 | 
			
		||||
                    "ifOutDiscards": "6920861",
 | 
			
		||||
                    "ifOutDiscards_prev": "0",
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
@@ -447,11 +447,11 @@
 | 
			
		||||
                    "ifInUnknownProtos_prev": "0",
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": "0",
 | 
			
		||||
                    "ifInBroadcastPkts": "35916455",
 | 
			
		||||
                    "ifInBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": "0",
 | 
			
		||||
                    "ifOutBroadcastPkts": "504577",
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
@@ -480,7 +480,7 @@
 | 
			
		||||
                    "sensor_descr": "GPS Status",
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_current": "2",
 | 
			
		||||
                    "sensor_current": "1",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -493,29 +493,6 @@
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "WHISP-APS-MIB::whispGPSStats"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "temperature",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.161.19.3.3.1.35.0",
 | 
			
		||||
                    "sensor_index": ".1.3.6.1.4.1.161.19.3.3.1.35.0",
 | 
			
		||||
                    "sensor_type": "cambium",
 | 
			
		||||
                    "sensor_descr": "System Temp",
 | 
			
		||||
                    "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
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "temperature",
 | 
			
		||||
@@ -526,10 +503,10 @@
 | 
			
		||||
                    "sensor_descr": "Cambium Temperature",
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_current": "40",
 | 
			
		||||
                    "sensor_limit": "60",
 | 
			
		||||
                    "sensor_current": "27",
 | 
			
		||||
                    "sensor_limit": "47",
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": "30",
 | 
			
		||||
                    "sensor_limit_low": "17",
 | 
			
		||||
                    "sensor_limit_low_warn": null,
 | 
			
		||||
                    "sensor_alert": "1",
 | 
			
		||||
                    "sensor_custom": "No",
 | 
			
		||||
@@ -578,7 +555,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "80",
 | 
			
		||||
                    "sensor_current": "24",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -599,7 +576,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "95",
 | 
			
		||||
                    "sensor_current": "20",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -620,7 +597,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "87",
 | 
			
		||||
                    "sensor_current": "16",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -632,6 +609,69 @@
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.1.2.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecCRCError",
 | 
			
		||||
                    "sensor_descr": "CRC Errors",
 | 
			
		||||
                    "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.161.19.3.3.1.223.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecOutErrorsCount",
 | 
			
		||||
                    "sensor_descr": "Out Error 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.161.19.3.3.1.97.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecInErrorsCount",
 | 
			
		||||
                    "sensor_descr": "In Error Count",
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "13",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
                    "sensor_limit_low_warn": null,
 | 
			
		||||
                    "sensor_alert": "1",
 | 
			
		||||
                    "sensor_custom": "No",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_oids": "[\".1.3.6.1.4.1.161.19.3.3.1.95.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "frequency",
 | 
			
		||||
@@ -641,7 +681,7 @@
 | 
			
		||||
                    "sensor_divisor": "1000",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "5480",
 | 
			
		||||
                    "sensor_current": "5525",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -666,8 +706,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "80",
 | 
			
		||||
                    "sensor_prev": "80",
 | 
			
		||||
                    "sensor_current": "24",
 | 
			
		||||
                    "sensor_prev": "24",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -687,8 +727,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "95",
 | 
			
		||||
                    "sensor_prev": "95",
 | 
			
		||||
                    "sensor_current": "20",
 | 
			
		||||
                    "sensor_prev": "20",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -708,8 +748,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "87",
 | 
			
		||||
                    "sensor_prev": "87",
 | 
			
		||||
                    "sensor_current": "16",
 | 
			
		||||
                    "sensor_prev": "16",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -720,6 +760,69 @@
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.1.2.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecCRCError",
 | 
			
		||||
                    "sensor_descr": "CRC Errors",
 | 
			
		||||
                    "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.161.19.3.3.1.223.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecOutErrorsCount",
 | 
			
		||||
                    "sensor_descr": "Out Error 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.161.19.3.3.1.97.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecInErrorsCount",
 | 
			
		||||
                    "sensor_descr": "In Error Count",
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "13",
 | 
			
		||||
                    "sensor_prev": "13",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
                    "sensor_limit_low_warn": null,
 | 
			
		||||
                    "sensor_alert": "1",
 | 
			
		||||
                    "sensor_custom": "No",
 | 
			
		||||
                    "entPhysicalIndex": null,
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_oids": "[\".1.3.6.1.4.1.161.19.3.3.1.95.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "frequency",
 | 
			
		||||
@@ -729,8 +832,8 @@
 | 
			
		||||
                    "sensor_divisor": "1000",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "5480",
 | 
			
		||||
                    "sensor_prev": "5480",
 | 
			
		||||
                    "sensor_current": "5525",
 | 
			
		||||
                    "sensor_prev": "5525",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
                {
 | 
			
		||||
                    "sysName": "<private>",
 | 
			
		||||
                    "sysObjectID": ".1.3.6.1.4.1.161.19.250.256",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.0.0.1 AP-DES",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.1.2 AP-DES",
 | 
			
		||||
                    "sysContact": null,
 | 
			
		||||
                    "version": null,
 | 
			
		||||
                    "hardware": "",
 | 
			
		||||
@@ -23,9 +23,9 @@
 | 
			
		||||
                {
 | 
			
		||||
                    "sysName": "<private>",
 | 
			
		||||
                    "sysObjectID": ".1.3.6.1.4.1.161.19.250.256",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.0.0.1 AP-DES",
 | 
			
		||||
                    "sysDescr": "CANOPY 15.1.2 AP-DES",
 | 
			
		||||
                    "sysContact": "<private>",
 | 
			
		||||
                    "version": "CANOPY 15.0.0.1 AP-DES",
 | 
			
		||||
                    "version": "CANOPY 15.1.2 AP-DES",
 | 
			
		||||
                    "hardware": "PMP 450m AP",
 | 
			
		||||
                    "features": null,
 | 
			
		||||
                    "location": "<private>",
 | 
			
		||||
@@ -276,9 +276,9 @@
 | 
			
		||||
                    "ifMtu": "1514",
 | 
			
		||||
                    "ifType": "ethernetCsmacd",
 | 
			
		||||
                    "ifAlias": "None",
 | 
			
		||||
                    "ifPhysAddress": "0a003e603218",
 | 
			
		||||
                    "ifPhysAddress": "0a003e60324d",
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": "21205629",
 | 
			
		||||
                    "ifLastChange": "27719212",
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
@@ -297,11 +297,11 @@
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": "32622670282",
 | 
			
		||||
                    "ifInUcastPkts": "6416607025",
 | 
			
		||||
                    "ifInUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": "21868548574",
 | 
			
		||||
                    "ifOutUcastPkts": "4278065397",
 | 
			
		||||
                    "ifOutUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
@@ -313,20 +313,20 @@
 | 
			
		||||
                    "ifOutErrors_prev": "0",
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": "44708651033343",
 | 
			
		||||
                    "ifInOctets": "8775677657392",
 | 
			
		||||
                    "ifInOctets_prev": "0",
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": "2998082755764",
 | 
			
		||||
                    "ifOutOctets": "702075286478",
 | 
			
		||||
                    "ifOutOctets_prev": "0",
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": "947548814",
 | 
			
		||||
                    "ifInNUcastPkts": "285444112",
 | 
			
		||||
                    "ifInNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": "1406747",
 | 
			
		||||
                    "ifOutNUcastPkts": "253123",
 | 
			
		||||
                    "ifOutNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
@@ -334,7 +334,7 @@
 | 
			
		||||
                    "ifInDiscards_prev": "0",
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": "9258",
 | 
			
		||||
                    "ifOutDiscards": "1867",
 | 
			
		||||
                    "ifOutDiscards_prev": "0",
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
@@ -342,11 +342,11 @@
 | 
			
		||||
                    "ifInUnknownProtos_prev": "0",
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": "947548749",
 | 
			
		||||
                    "ifInBroadcastPkts": "285444070",
 | 
			
		||||
                    "ifInBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": "1406747",
 | 
			
		||||
                    "ifOutBroadcastPkts": "253123",
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
@@ -381,9 +381,9 @@
 | 
			
		||||
                    "ifMtu": "1500",
 | 
			
		||||
                    "ifType": "ethernetCsmacd",
 | 
			
		||||
                    "ifAlias": "None",
 | 
			
		||||
                    "ifPhysAddress": "1a003e603218",
 | 
			
		||||
                    "ifPhysAddress": "1a003e60324d",
 | 
			
		||||
                    "ifHardType": null,
 | 
			
		||||
                    "ifLastChange": "21205629",
 | 
			
		||||
                    "ifLastChange": "27719212",
 | 
			
		||||
                    "ifVlan": "",
 | 
			
		||||
                    "ifTrunk": null,
 | 
			
		||||
                    "counter_in": null,
 | 
			
		||||
@@ -402,11 +402,11 @@
 | 
			
		||||
                    "pagpEthcOperationMode": null,
 | 
			
		||||
                    "pagpDeviceId": null,
 | 
			
		||||
                    "pagpGroupIfIndex": null,
 | 
			
		||||
                    "ifInUcastPkts": "32622670282",
 | 
			
		||||
                    "ifInUcastPkts": "6416607025",
 | 
			
		||||
                    "ifInUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInUcastPkts_delta": null,
 | 
			
		||||
                    "ifInUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutUcastPkts": "21868548574",
 | 
			
		||||
                    "ifOutUcastPkts": "4278065397",
 | 
			
		||||
                    "ifOutUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutUcastPkts_rate": null,
 | 
			
		||||
@@ -418,20 +418,20 @@
 | 
			
		||||
                    "ifOutErrors_prev": "0",
 | 
			
		||||
                    "ifOutErrors_delta": null,
 | 
			
		||||
                    "ifOutErrors_rate": null,
 | 
			
		||||
                    "ifInOctets": "44708651095844",
 | 
			
		||||
                    "ifInOctets": "8775677703256",
 | 
			
		||||
                    "ifInOctets_prev": "0",
 | 
			
		||||
                    "ifInOctets_delta": null,
 | 
			
		||||
                    "ifInOctets_rate": null,
 | 
			
		||||
                    "ifOutOctets": "2998082755764",
 | 
			
		||||
                    "ifOutOctets": "702075286478",
 | 
			
		||||
                    "ifOutOctets_prev": "0",
 | 
			
		||||
                    "ifOutOctets_delta": null,
 | 
			
		||||
                    "ifOutOctets_rate": null,
 | 
			
		||||
                    "poll_prev": null,
 | 
			
		||||
                    "ifInNUcastPkts": "2132322",
 | 
			
		||||
                    "ifInNUcastPkts": "505659",
 | 
			
		||||
                    "ifInNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifInNUcastPkts_delta": null,
 | 
			
		||||
                    "ifInNUcastPkts_rate": null,
 | 
			
		||||
                    "ifOutNUcastPkts": "956761578",
 | 
			
		||||
                    "ifOutNUcastPkts": "286559981",
 | 
			
		||||
                    "ifOutNUcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutNUcastPkts_delta": null,
 | 
			
		||||
                    "ifOutNUcastPkts_rate": null,
 | 
			
		||||
@@ -439,7 +439,7 @@
 | 
			
		||||
                    "ifInDiscards_prev": "0",
 | 
			
		||||
                    "ifInDiscards_delta": null,
 | 
			
		||||
                    "ifInDiscards_rate": null,
 | 
			
		||||
                    "ifOutDiscards": "840847",
 | 
			
		||||
                    "ifOutDiscards": "617642",
 | 
			
		||||
                    "ifOutDiscards_prev": "0",
 | 
			
		||||
                    "ifOutDiscards_delta": null,
 | 
			
		||||
                    "ifOutDiscards_rate": null,
 | 
			
		||||
@@ -447,11 +447,11 @@
 | 
			
		||||
                    "ifInUnknownProtos_prev": "0",
 | 
			
		||||
                    "ifInUnknownProtos_delta": null,
 | 
			
		||||
                    "ifInUnknownProtos_rate": null,
 | 
			
		||||
                    "ifInBroadcastPkts": "947548749",
 | 
			
		||||
                    "ifInBroadcastPkts": "285444070",
 | 
			
		||||
                    "ifInBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifInBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifInBroadcastPkts_rate": null,
 | 
			
		||||
                    "ifOutBroadcastPkts": "1406747",
 | 
			
		||||
                    "ifOutBroadcastPkts": "253123",
 | 
			
		||||
                    "ifOutBroadcastPkts_prev": "0",
 | 
			
		||||
                    "ifOutBroadcastPkts_delta": null,
 | 
			
		||||
                    "ifOutBroadcastPkts_rate": null,
 | 
			
		||||
@@ -493,29 +493,6 @@
 | 
			
		||||
                    "user_func": null,
 | 
			
		||||
                    "state_name": "WHISP-APS-MIB::whispGPSStats"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "temperature",
 | 
			
		||||
                    "poller_type": "snmp",
 | 
			
		||||
                    "sensor_oid": ".1.3.6.1.4.1.161.19.3.3.1.35.0",
 | 
			
		||||
                    "sensor_index": ".1.3.6.1.4.1.161.19.3.3.1.35.0",
 | 
			
		||||
                    "sensor_type": "cambium",
 | 
			
		||||
                    "sensor_descr": "System Temp",
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_current": "27",
 | 
			
		||||
                    "sensor_limit": "47",
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": "17",
 | 
			
		||||
                    "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",
 | 
			
		||||
@@ -526,10 +503,10 @@
 | 
			
		||||
                    "sensor_descr": "Cambium Temperature",
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_current": "27",
 | 
			
		||||
                    "sensor_limit": "47",
 | 
			
		||||
                    "sensor_current": "40",
 | 
			
		||||
                    "sensor_limit": "60",
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": "17",
 | 
			
		||||
                    "sensor_limit_low": "30",
 | 
			
		||||
                    "sensor_limit_low_warn": null,
 | 
			
		||||
                    "sensor_alert": "1",
 | 
			
		||||
                    "sensor_custom": "No",
 | 
			
		||||
@@ -578,7 +555,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "55",
 | 
			
		||||
                    "sensor_current": "30",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -599,7 +576,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "75",
 | 
			
		||||
                    "sensor_current": "46",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -620,7 +597,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "38",
 | 
			
		||||
                    "sensor_current": "72",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -641,7 +618,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "63",
 | 
			
		||||
                    "sensor_current": "45",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -683,7 +660,7 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "57",
 | 
			
		||||
                    "sensor_current": "39",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -695,6 +672,69 @@
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.31.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecCRCError",
 | 
			
		||||
                    "sensor_descr": "CRC Errors",
 | 
			
		||||
                    "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.161.19.3.3.1.223.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecOutErrorsCount",
 | 
			
		||||
                    "sensor_descr": "Out Error Count",
 | 
			
		||||
                    "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.161.19.3.3.1.97.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecInErrorsCount",
 | 
			
		||||
                    "sensor_descr": "In Error Count",
 | 
			
		||||
                    "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.161.19.3.3.1.95.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "frequency",
 | 
			
		||||
@@ -704,7 +744,7 @@
 | 
			
		||||
                    "sensor_divisor": "1000",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "5755",
 | 
			
		||||
                    "sensor_current": "5805",
 | 
			
		||||
                    "sensor_prev": null,
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
@@ -729,8 +769,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "55",
 | 
			
		||||
                    "sensor_prev": "55",
 | 
			
		||||
                    "sensor_current": "30",
 | 
			
		||||
                    "sensor_prev": "30",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -750,8 +790,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "75",
 | 
			
		||||
                    "sensor_prev": "75",
 | 
			
		||||
                    "sensor_current": "46",
 | 
			
		||||
                    "sensor_prev": "46",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -771,8 +811,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "38",
 | 
			
		||||
                    "sensor_prev": "38",
 | 
			
		||||
                    "sensor_current": "72",
 | 
			
		||||
                    "sensor_prev": "72",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -792,8 +832,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "63",
 | 
			
		||||
                    "sensor_prev": "63",
 | 
			
		||||
                    "sensor_current": "45",
 | 
			
		||||
                    "sensor_prev": "45",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -834,8 +874,8 @@
 | 
			
		||||
                    "sensor_divisor": "1",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "57",
 | 
			
		||||
                    "sensor_prev": "57",
 | 
			
		||||
                    "sensor_current": "39",
 | 
			
		||||
                    "sensor_prev": "39",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
@@ -846,6 +886,69 @@
 | 
			
		||||
                    "entPhysicalIndex_measured": null,
 | 
			
		||||
                    "sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.31.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecCRCError",
 | 
			
		||||
                    "sensor_descr": "CRC Errors",
 | 
			
		||||
                    "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.161.19.3.3.1.223.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecOutErrorsCount",
 | 
			
		||||
                    "sensor_descr": "Out Error Count",
 | 
			
		||||
                    "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.161.19.3.3.1.97.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "errors",
 | 
			
		||||
                    "sensor_index": "0",
 | 
			
		||||
                    "sensor_type": "pmp-fecInErrorsCount",
 | 
			
		||||
                    "sensor_descr": "In Error Count",
 | 
			
		||||
                    "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.161.19.3.3.1.95.0\"]"
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                    "sensor_deleted": "0",
 | 
			
		||||
                    "sensor_class": "frequency",
 | 
			
		||||
@@ -855,8 +958,8 @@
 | 
			
		||||
                    "sensor_divisor": "1000",
 | 
			
		||||
                    "sensor_multiplier": "1",
 | 
			
		||||
                    "sensor_aggregator": "sum",
 | 
			
		||||
                    "sensor_current": "5755",
 | 
			
		||||
                    "sensor_prev": "5755",
 | 
			
		||||
                    "sensor_current": "5805",
 | 
			
		||||
                    "sensor_prev": "5805",
 | 
			
		||||
                    "sensor_limit": null,
 | 
			
		||||
                    "sensor_limit_warn": null,
 | 
			
		||||
                    "sensor_limit_low": null,
 | 
			
		||||
 
 | 
			
		||||
@@ -1,206 +1,141 @@
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.4.1|2|0
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.5.1|4x|00000000
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.6.1|2|0
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.7.1|4x|00000000
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.8.1|4x|00000000
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.9.1|4x|00000000
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.10.1|4x|00000000
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.11.1|4|04 00 5
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.12.1|4|04 00 5
 | 
			
		||||
1.3.6.1.2.1.1.1.0|4|CANOPY 15.1.3 AP-DES
 | 
			
		||||
1.3.6.1.2.1.1.1.0|4|CANOPY 15.0.0.1 AP-DES
 | 
			
		||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.161.19.250.256
 | 
			
		||||
1.3.6.1.2.1.1.3.0|67|228072021
 | 
			
		||||
1.3.6.1.2.1.1.3.0|67|302568836
 | 
			
		||||
1.3.6.1.2.1.1.4.0|4|<private>
 | 
			
		||||
1.3.6.1.2.1.1.5.0|4|<private>
 | 
			
		||||
1.3.6.1.2.1.1.6.0|4|<private>
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.1|4|Cambium 10/100/1000 Ethernet
 | 
			
		||||
1.3.6.1.2.1.2.2.1.1.1|2|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.1.2|2|2
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.1|4|Cambium 10/100 FEC
 | 
			
		||||
1.3.6.1.2.1.2.2.1.2.2|4|Canopy MultiPoint
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.1|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.3.2|2|6
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.1|2|1514
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.1|2|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
 | 
			
		||||
1.3.6.1.2.1.2.2.1.5.1|66|100000000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.5.2|66|132710400
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003E603D2B
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003E603D2B
 | 
			
		||||
1.3.6.1.2.1.2.2.1.5.2|66|117964800
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003EA0ACDF
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003EA0ACDF
 | 
			
		||||
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.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.9.1|67|13323925
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.2|67|13323993
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.1|65|3443302827
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.2|65|2527529646
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.1|65|2954615545
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.2|65|2006882871
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.1|65|64323940
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.2|65|2821088
 | 
			
		||||
1.3.6.1.2.1.2.2.1.13.1|65|35
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.1|67|1922057
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.2|67|1922057
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.1|65|4025483640
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.2|65|1245324285
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.1|65|529623768
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.2|65|2764636421
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.1|65|35916455
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.2|65|489502
 | 
			
		||||
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.14.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.1|65|13
 | 
			
		||||
1.3.6.1.2.1.2.2.1.14.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.15.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.15.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.1|65|42828566
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.2|65|278058018
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.1|65|1844260273
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.2|65|2934902632
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.1|65|2305560
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.2|65|40507545
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.1|65|1509060299
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.2|65|1242295092
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.1|65|2765970385
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.2|65|510135601
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.1|65|504577
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.2|65|26636360
 | 
			
		||||
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|5680700
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.2|65|6920861
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.1|65|1
 | 
			
		||||
1.3.6.1.2.1.2.2.1.20.2|65|0
 | 
			
		||||
1.3.6.1.2.1.4.3.0|65|101140956
 | 
			
		||||
1.3.6.1.2.1.4.4.0|65|17
 | 
			
		||||
1.3.6.1.2.1.2.2.1.21.1|66|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.21.2|66|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.22.1|6|0.0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.22.2|6|0.0
 | 
			
		||||
1.3.6.1.2.1.4.3.0|65|2960655
 | 
			
		||||
1.3.6.1.2.1.4.4.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.5.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.6.0|65|812
 | 
			
		||||
1.3.6.1.2.1.4.6.0|65|18
 | 
			
		||||
1.3.6.1.2.1.4.7.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.8.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.9.0|65|100457877
 | 
			
		||||
1.3.6.1.2.1.4.10.0|65|10081486
 | 
			
		||||
1.3.6.1.2.1.4.9.0|65|2960636
 | 
			
		||||
1.3.6.1.2.1.4.10.0|65|3038037
 | 
			
		||||
1.3.6.1.2.1.4.11.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.12.0|65|162
 | 
			
		||||
1.3.6.1.2.1.4.14.0|65|1364487
 | 
			
		||||
1.3.6.1.2.1.4.15.0|65|682238
 | 
			
		||||
1.3.6.1.2.1.4.16.0|65|11
 | 
			
		||||
1.3.6.1.2.1.4.12.0|65|18
 | 
			
		||||
1.3.6.1.2.1.4.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.15.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.16.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.17.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.18.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.19.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.20.1.2.172.16.10.12|2|1
 | 
			
		||||
1.3.6.1.2.1.4.20.1.2.10.2.1.252|2|1
 | 
			
		||||
1.3.6.1.2.1.4.20.1.2.192.168.101.1|2|2
 | 
			
		||||
1.3.6.1.2.1.4.20.1.3.172.16.10.12|64|255.255.252.0
 | 
			
		||||
1.3.6.1.2.1.4.20.1.3.10.2.1.252|64|255.255.0.0
 | 
			
		||||
1.3.6.1.2.1.4.20.1.3.192.168.101.1|64|255.255.255.0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.172.16.8.243|4x|001E8C8EC35C
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.172.16.8.244|4x|0050569F4958
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.172.16.8.254|4x|00090FFC2BE4
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.172.16.10.4|4x|0050569841C1
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.2|4x|1A003EB9B541
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.3|4x|1A003EB27E22
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EB9DE33
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.5|4x|1A003EB396BB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EB9B5E9
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EB6B52E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.9|4x|1A003EB35F15
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.10|4x|1A003EB2D76D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EB236B0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.12|4x|1A003EB2C12D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EB98343
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.14|4x|1A003EB9ED54
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EB9E089
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.16|4x|1A003EB2C11C
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.17|4x|1A003EB9ECC0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EB9EDCB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.19|4x|1A003EB99A14
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EB6989E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EB981F2
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.22|4x|1A003EB529FA
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.23|4x|1A003EB971FE
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.24|4x|1A003EB80190
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EB3969A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.26|4x|1A003EB529A8
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EB9EBE9
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.28|4x|1A003EB983D4
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.29|4x|1A003EB9EDA5
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.30|4x|1A003EB9B611
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.32|4x|1A003EB9834D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.33|4x|1A003EB9B7F0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.34|4x|1A003EB9B640
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.36|4x|1A003EB984FF
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.37|4x|1A003EB72F68
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.38|4x|1A003EB7450E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.39|4x|1A003EB746AB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.40|4x|1A003EB528E3
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.41|4x|1A003EB52958
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.42|4x|1A003EB981B6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.43|4x|1A003EB7450F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.44|4x|1A003EB9ED9E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.45|4x|1A003EB98108
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.46|4x|1A003EB980E8
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.49|4x|1A003EB9EDD6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.50|4x|1A003EB9DF72
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.51|4x|1A003EB9ED70
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.52|4x|1A003EB6980D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.53|4x|1A003EB5318E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.54|4x|1A003EB5298E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.55|4x|1A003EA292AD
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.57|4x|1A003EB9B60D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.58|4x|1A003EB9EDD3
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.59|4x|1A003EB27EC3
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.60|4x|1A003EB9B746
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.61|4x|1A003EB9E18C
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.62|4x|1A003EB9EA08
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.63|4x|1A003EA28FE4
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.64|4x|1A003EB9E082
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.65|4x|1A003EB6D70E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.66|4x|1A003EB983B6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.67|4x|1A003EB4B75F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.69|4x|1A003EB35DEB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.70|4x|1A003EB98207
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.71|4x|1A003EB9ED0E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.72|4x|1A003E70690F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.74|4x|1A003EB9EC6A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.75|4x|1A003EB800A6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.77|4x|1A003EB9EEF8
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.78|4x|1A003EB8214B
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.80|4x|1A003EBA3315
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.81|4x|1A003E292CC4
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.82|4x|1A003E293308
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.83|4x|1A003EB800E3
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.85|4x|1A003E2927BB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.87|4x|1A003E29175D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.88|4x|1A003E29187D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.89|4x|1A003E29276F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.90|4x|1A003EB2D77B
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.91|4x|1A003E2917A6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.92|4x|1A003E291E70
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.93|4x|1A003EB52FDD
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.10.2.200.200|4x|00900B43F502
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.162.211.185.103|4x|2A003EB35DB9
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.2|4x|1A003EA147D5
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.3|4x|1A003EB59A69
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.5|4x|1A003EA0844D
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB1FF85
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EB15D00
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.10|4x|1A003E702F36
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.12|4x|1A003EA2B08E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EB27E2A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.14|4x|1A003EA1BD5B
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EA18AAB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.16|4x|1A003EB3629A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.17|4x|1A003EB36E31
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EB35040
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.19|4x|1A003EA076AB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EB517D7
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EB5A6AA
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.22|4x|1A003EA05E78
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.23|4x|1A003EB36E19
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.24|4x|1A003EB372A2
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EB4B54F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.26|4x|1A003EB173DE
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.3.127.0.0.1|4|LPBACK
 | 
			
		||||
1.3.6.1.2.1.5.1.0|65|47671
 | 
			
		||||
1.3.6.1.2.1.5.1.0|65|410826
 | 
			
		||||
1.3.6.1.2.1.5.2.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.3.0|65|1262
 | 
			
		||||
1.3.6.1.2.1.5.4.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.3.0|65|2886
 | 
			
		||||
1.3.6.1.2.1.5.4.0|65|29
 | 
			
		||||
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|46409
 | 
			
		||||
1.3.6.1.2.1.5.8.0|65|407911
 | 
			
		||||
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|46420
 | 
			
		||||
1.3.6.1.2.1.5.14.0|65|407911
 | 
			
		||||
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|11
 | 
			
		||||
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|46409
 | 
			
		||||
1.3.6.1.2.1.5.22.0|65|407911
 | 
			
		||||
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.6.5.0|65|1357
 | 
			
		||||
1.3.6.1.2.1.6.6.0|65|230
 | 
			
		||||
1.3.6.1.2.1.6.5.0|65|50
 | 
			
		||||
1.3.6.1.2.1.6.6.0|65|12
 | 
			
		||||
1.3.6.1.2.1.6.7.0|65|0
 | 
			
		||||
1.3.6.1.2.1.6.8.0|65|14
 | 
			
		||||
1.3.6.1.2.1.6.8.0|65|2
 | 
			
		||||
1.3.6.1.2.1.6.9.0|66|0
 | 
			
		||||
1.3.6.1.2.1.6.10.0|65|202958
 | 
			
		||||
1.3.6.1.2.1.6.11.0|65|332992
 | 
			
		||||
1.3.6.1.2.1.6.12.0|65|944
 | 
			
		||||
1.3.6.1.2.1.6.14.0|65|34
 | 
			
		||||
1.3.6.1.2.1.6.15.0|65|31
 | 
			
		||||
1.3.6.1.2.1.7.1.0|65|93056092
 | 
			
		||||
1.3.6.1.2.1.6.10.0|65|184165
 | 
			
		||||
1.3.6.1.2.1.6.11.0|65|306954
 | 
			
		||||
1.3.6.1.2.1.6.12.0|65|137
 | 
			
		||||
1.3.6.1.2.1.6.14.0|65|69
 | 
			
		||||
1.3.6.1.2.1.6.15.0|65|69
 | 
			
		||||
1.3.6.1.2.1.7.1.0|65|2287537
 | 
			
		||||
1.3.6.1.2.1.7.2.0|65|0
 | 
			
		||||
1.3.6.1.2.1.7.3.0|65|7272806
 | 
			
		||||
1.3.6.1.2.1.7.4.0|65|9702117
 | 
			
		||||
1.3.6.1.2.1.10.7.2.1.19.1|2|3
 | 
			
		||||
1.3.6.1.2.1.11.1.0|65|7175665
 | 
			
		||||
1.3.6.1.2.1.11.2.0|65|7175843
 | 
			
		||||
1.3.6.1.2.1.7.3.0|65|80873
 | 
			
		||||
1.3.6.1.2.1.7.4.0|65|2323189
 | 
			
		||||
1.3.6.1.2.1.11.1.0|65|1425496
 | 
			
		||||
1.3.6.1.2.1.11.2.0|65|1425495
 | 
			
		||||
1.3.6.1.2.1.11.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.4.0|65|18
 | 
			
		||||
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
 | 
			
		||||
@@ -208,538 +143,79 @@
 | 
			
		||||
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|4518819
 | 
			
		||||
1.3.6.1.2.1.11.14.0|65|1
 | 
			
		||||
1.3.6.1.2.1.11.15.0|65|209224
 | 
			
		||||
1.3.6.1.2.1.11.16.0|65|3864308
 | 
			
		||||
1.3.6.1.2.1.11.17.0|65|1
 | 
			
		||||
1.3.6.1.2.1.11.13.0|65|2286249
 | 
			
		||||
1.3.6.1.2.1.11.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.15.0|65|915052
 | 
			
		||||
1.3.6.1.2.1.11.16.0|65|59925
 | 
			
		||||
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|37933
 | 
			
		||||
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|7175647
 | 
			
		||||
1.3.6.1.2.1.11.29.0|65|180
 | 
			
		||||
1.3.6.1.2.1.11.28.0|65|1425497
 | 
			
		||||
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.11.31.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.32.0|65|0
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.1.1|2|0
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.1|2|1
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.2|2|2
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.3|2|3
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.4|2|4
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.5|2|5
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.6|2|6
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.7|2|7
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.8|2|8
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.9|2|9
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.10|2|10
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.11|2|11
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.12|2|12
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.13|2|13
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.14|2|14
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.15|2|15
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.16|2|16
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.17|2|17
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.18|2|18
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.19|2|19
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.20|2|20
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.21|2|21
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.22|2|22
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.23|2|23
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.24|2|24
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.25|2|25
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.26|2|26
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.27|2|27
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.28|2|28
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.29|2|29
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.30|2|30
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.31|2|31
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.32|2|32
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.33|2|33
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.34|2|34
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.35|2|35
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.36|2|36
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.37|2|37
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.38|2|38
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.39|2|39
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.40|2|40
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.41|2|41
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.42|2|42
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.43|2|43
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.44|2|44
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.45|2|45
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.46|2|46
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.47|2|47
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.48|2|48
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.49|2|49
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.50|2|50
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.51|2|51
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.52|2|52
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.53|2|53
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.54|2|54
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.55|2|55
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.56|2|56
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.57|2|57
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.58|2|58
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.59|2|59
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.60|2|60
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.61|2|61
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.62|2|62
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.63|2|63
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.64|2|64
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.65|2|65
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.66|2|66
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.67|2|67
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.68|2|68
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.69|2|69
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.70|2|70
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.71|2|71
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.72|2|72
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.73|2|73
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.74|2|74
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.75|2|75
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.76|2|76
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.77|2|77
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.78|2|78
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.79|2|79
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.80|2|80
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.81|2|81
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.82|2|82
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.83|2|83
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.84|2|84
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.85|2|85
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.86|2|86
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.87|2|87
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.88|2|88
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.89|2|89
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.90|2|90
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.91|2|91
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.92|2|92
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.93|2|93
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.94|2|94
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.95|2|95
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.96|2|96
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.97|2|97
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.98|2|98
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.99|2|99
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.100|2|100
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.101|2|101
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.102|2|102
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.103|2|103
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.104|2|104
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.105|2|105
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.106|2|106
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.107|2|107
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.108|2|108
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.109|2|109
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.110|2|110
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.111|2|111
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.112|2|112
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.113|2|113
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.114|2|114
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.115|2|115
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.116|2|116
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.117|2|117
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.118|2|118
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.119|2|119
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.120|2|120
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.121|2|121
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.122|2|122
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.123|2|123
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.124|2|124
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.125|2|125
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.126|2|126
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.127|2|127
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.128|2|128
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.129|2|129
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.130|2|130
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.131|2|131
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.132|2|132
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.133|2|133
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.134|2|134
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.135|2|135
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.136|2|136
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.137|2|137
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.138|2|138
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.139|2|139
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.140|2|140
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.141|2|141
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.142|2|142
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.143|2|143
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.144|2|144
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.145|2|145
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.146|2|146
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.147|2|147
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.148|2|148
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.149|2|149
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.150|2|150
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.151|2|151
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.152|2|152
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.153|2|153
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.154|2|154
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.155|2|155
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.156|2|156
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.157|2|157
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.158|2|158
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.159|2|159
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.160|2|160
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.161|2|161
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.162|2|162
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.163|2|163
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.164|2|164
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.165|2|165
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.166|2|166
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.167|2|167
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.168|2|168
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.169|2|169
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.170|2|170
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.171|2|171
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.172|2|172
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.173|2|173
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.174|2|174
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.175|2|175
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.176|2|176
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.177|2|177
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.178|2|178
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.179|2|179
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.180|2|180
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.181|2|181
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.182|2|182
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.183|2|183
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.184|2|184
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.185|2|185
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.186|2|186
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.187|2|187
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.188|2|188
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.189|2|189
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.190|2|190
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.191|2|191
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.192|2|192
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.193|2|193
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.194|2|194
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.195|2|195
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.196|2|196
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.197|2|197
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.198|2|198
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.199|2|199
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.200|2|200
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.201|2|201
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.202|2|202
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.203|2|203
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.204|2|204
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.205|2|205
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.206|2|206
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.207|2|207
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.208|2|208
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.209|2|209
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.210|2|210
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.211|2|211
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.212|2|212
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.213|2|213
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.214|2|214
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.215|2|215
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.216|2|216
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.217|2|217
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.218|2|218
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.219|2|219
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.220|2|220
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.221|2|221
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.222|2|222
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.223|2|223
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.224|2|224
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.225|2|225
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.226|2|226
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.227|2|227
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.228|2|228
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.229|2|229
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.230|2|230
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.231|2|231
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.232|2|232
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.233|2|233
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.234|2|234
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.235|2|235
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.236|2|236
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.237|2|237
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.238|2|238
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.239|2|239
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.240|2|240
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.241|2|241
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.242|2|242
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.243|2|243
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.244|2|244
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.245|2|245
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.1|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.2|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.3|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.4|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.5|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.6|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.7|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.8|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.9|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.10|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.11|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.12|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.13|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.14|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.15|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.16|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.17|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.18|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.19|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.20|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.21|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.22|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.23|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.24|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.25|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.26|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.27|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.28|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.29|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.30|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.31|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.32|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.33|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.34|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.35|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.36|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.37|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.38|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.39|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.40|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.41|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.42|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.43|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.44|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.45|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.46|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.47|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.48|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.49|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.50|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.51|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.52|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.53|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.54|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.55|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.56|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.57|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.58|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.59|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.60|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.61|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.62|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.63|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.64|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.65|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.66|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.67|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.68|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.69|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.70|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.71|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.72|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.73|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.74|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.75|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.76|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.77|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.78|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.79|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.80|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.81|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.82|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.83|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.84|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.85|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.86|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.87|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.88|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.89|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.90|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.91|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.92|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.93|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.94|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.95|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.96|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.97|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.98|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.99|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.100|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.101|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.102|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.103|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.104|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.105|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.106|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.107|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.108|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.109|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.110|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.111|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.112|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.113|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.114|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.115|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.116|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.117|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.118|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.119|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.120|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.121|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.122|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.123|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.124|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.125|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.126|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.127|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.128|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.129|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.130|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.131|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.132|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.133|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.134|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.135|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.136|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.137|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.138|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.139|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.140|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.141|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.142|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.143|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.144|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.145|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.146|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.147|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.148|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.149|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.150|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.151|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.152|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.153|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.154|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.155|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.156|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.157|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.158|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.159|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.160|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.161|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.162|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.163|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.164|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.165|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.166|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.167|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.168|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.169|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.170|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.171|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.172|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.173|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.174|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.175|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.176|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.177|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.178|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.179|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.180|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.181|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.182|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.183|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.184|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.185|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.186|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.187|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.188|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.189|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.190|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.191|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.192|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.193|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.194|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.195|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.196|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.197|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.198|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.199|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.200|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.201|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.202|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.203|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.204|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.205|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.206|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.207|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.208|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.209|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.210|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.211|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.212|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.213|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.214|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.215|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.216|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.217|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.218|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.219|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.220|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.221|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.222|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.223|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.224|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.225|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.226|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.227|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.228|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.229|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.230|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.231|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.232|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.233|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.234|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.235|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.236|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.237|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.238|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.239|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.240|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.241|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.242|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.243|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.244|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.245|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.1|4|1
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.2|4|2
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.255|4|1
 | 
			
		||||
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.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.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.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.6.1|70|4025207045
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.2|70|4025222391
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.1|70|529623573
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.2|70|529623574
 | 
			
		||||
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.9.1|70|35916455
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.2|70|35916455
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.1|70|1509054150
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.2|70|1509054150
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.1|70|2765970337
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.2|70|2765970338
 | 
			
		||||
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.13.1|70|504577
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.2|70|504577
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.14.1|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.14.2|2|0
 | 
			
		||||
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.16.1|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.16.2|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.1|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.17.2|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.1|4|None
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.18.2|4|None
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.3.1.0|2|2
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-71.5
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|32
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|36
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|1.7
 | 
			
		||||
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.2.1.3.1|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.2.1.3.2|2|0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.3.1.0|2|1
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-71.0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|20
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|20
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|0.0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.87.2|4|-74.0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-75.2
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|80
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|4710
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5480000
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|95
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|87
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.4GHz MIMO OFDM - Multipoint - Access Point
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|40
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.95.0|66|0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.97.0|66|0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-74.0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|24
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|3
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5525000
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|20
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|16
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.4GHzMIMO OFDM - Multipoint - Access Point
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|27
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.95.0|66|13
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.97.0|66|1
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.223.0|65|0
 | 
			
		||||
1.3.6.1.6.3.10.2.1.3.0|2|2280720
 | 
			
		||||
1.3.6.1.6.3.10.2.1.3.0|2|3025688
 | 
			
		||||
 
 | 
			
		||||
@@ -7,9 +7,9 @@
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.10.1|4x|00000000
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.11.1|4|04 00 5
 | 
			
		||||
1.0.8802.1.1.2.1.4.1.1.12.1|4|04 00 5
 | 
			
		||||
1.3.6.1.2.1.1.1.0|4|CANOPY 15.0.0.1 AP-DES
 | 
			
		||||
1.3.6.1.2.1.1.1.0|4|CANOPY 15.1.2 AP-DES
 | 
			
		||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.161.19.250.256
 | 
			
		||||
1.3.6.1.2.1.1.3.0|67|1137895728
 | 
			
		||||
1.3.6.1.2.1.1.3.0|67|371315226
 | 
			
		||||
1.3.6.1.2.1.1.4.0|4|<private>
 | 
			
		||||
1.3.6.1.2.1.1.5.0|4|<private>
 | 
			
		||||
1.3.6.1.2.1.1.6.0|4|<private>
 | 
			
		||||
@@ -23,148 +23,130 @@
 | 
			
		||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
 | 
			
		||||
1.3.6.1.2.1.2.2.1.5.1|66|1000000000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.5.2|66|122880000
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003E603218
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003E603218
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003E60324D
 | 
			
		||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003E60324D
 | 
			
		||||
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.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.9.1|67|21205629
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.2|67|21205629
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.1|65|2336905811
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.2|65|30615458
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.1|65|2557899566
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.2|65|1525902664
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.1|65|947548814
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.2|65|2132322
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.1|67|27719212
 | 
			
		||||
1.3.6.1.2.1.2.2.1.9.2|67|27719212
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.1|65|1059771850
 | 
			
		||||
1.3.6.1.2.1.2.2.1.10.2|65|1968904320
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.1|65|2121639952
 | 
			
		||||
1.3.6.1.2.1.2.2.1.11.2|65|227657654
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.1|65|285444112
 | 
			
		||||
1.3.6.1.2.1.2.2.1.12.2|65|505659
 | 
			
		||||
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.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.15.1|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.15.2|65|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.1|65|195634745
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.2|65|4154955750
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.1|65|393712701
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.2|65|2506855926
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.1|65|1406747
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.2|65|956761578
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.1|65|9258
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.2|65|840847
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.1|65|1995617230
 | 
			
		||||
1.3.6.1.2.1.2.2.1.16.2|65|2184038035
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.1|65|4278065397
 | 
			
		||||
1.3.6.1.2.1.2.2.1.17.2|65|1986573240
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.1|65|253123
 | 
			
		||||
1.3.6.1.2.1.2.2.1.18.2|65|286559981
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.1|65|1867
 | 
			
		||||
1.3.6.1.2.1.2.2.1.19.2|65|617642
 | 
			
		||||
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.21.1|66|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.21.2|66|0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.22.1|6|0.0
 | 
			
		||||
1.3.6.1.2.1.2.2.1.22.2|6|0.0
 | 
			
		||||
1.3.6.1.2.1.4.3.0|65|578030230
 | 
			
		||||
1.3.6.1.2.1.4.3.0|65|126499831
 | 
			
		||||
1.3.6.1.2.1.4.4.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.5.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.6.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.7.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.8.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.9.0|65|574720402
 | 
			
		||||
1.3.6.1.2.1.4.10.0|65|8926782
 | 
			
		||||
1.3.6.1.2.1.4.9.0|65|125273403
 | 
			
		||||
1.3.6.1.2.1.4.10.0|65|3180714
 | 
			
		||||
1.3.6.1.2.1.4.11.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.12.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.14.0|65|6613842
 | 
			
		||||
1.3.6.1.2.1.4.15.0|65|3304019
 | 
			
		||||
1.3.6.1.2.1.4.16.0|65|5695
 | 
			
		||||
1.3.6.1.2.1.4.12.0|65|314210
 | 
			
		||||
1.3.6.1.2.1.4.14.0|65|2452240
 | 
			
		||||
1.3.6.1.2.1.4.15.0|65|1225818
 | 
			
		||||
1.3.6.1.2.1.4.16.0|65|604
 | 
			
		||||
1.3.6.1.2.1.4.17.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.18.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.19.0|65|0
 | 
			
		||||
1.3.6.1.2.1.4.20.1.2.10.51.100.51|2|1
 | 
			
		||||
1.3.6.1.2.1.4.20.1.2.10.51.100.52|2|1
 | 
			
		||||
1.3.6.1.2.1.4.20.1.2.192.168.101.1|2|2
 | 
			
		||||
1.3.6.1.2.1.4.20.1.3.10.51.100.51|64|255.255.255.0
 | 
			
		||||
1.3.6.1.2.1.4.20.1.3.10.51.100.52|64|255.255.255.0
 | 
			
		||||
1.3.6.1.2.1.4.20.1.3.192.168.101.1|64|255.255.255.0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.10.51.100.65|4x|0090EAC2CC80
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.10.51.100.199|4x|0090EAC33C5F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.10.51.100.254|4x|C0F79D0206BF
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.1.192.168.123.240|4x|00204AC8D88A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.2|4x|1A003EB3A43A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EB44246
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.5|4x|1A003EB441EF
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EB50EA6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB4BDE7
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EB2D2DD
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.9|4x|1A003EB50E17
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EB2D2DC
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EB4AE63
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.16|4x|1A003EB4BEB0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EB50E57
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.19|4x|1A003EB3F850
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EB3A3E2
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EB4A6B7
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.22|4x|1A003EA0F9D6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.24|4x|1A003EA16912
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.26|4x|1A003EB28741
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EB2874C
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.28|4x|1A003EB62287
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.30|4x|1A003EA093A0
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.32|4x|1A003EB0D36E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.34|4x|1A003EB4AD3F
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.35|4x|1A003EB3F423
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.36|4x|1A003EB14541
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.37|4x|1A003EB2DC66
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.38|4x|1A003EA2AD1E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.39|4x|1A003EB3A541
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.43|4x|1A003EBB3BD2
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.48|4x|1A003EB2DBF7
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.51|4x|1A003EA2A5D2
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.55|4x|1A003EB4A9AD
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.59|4x|1A003EA0FE46
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.60|4x|1A003EB4A62A
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.65|4x|1A003EB5AEBA
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.66|4x|1A003EA07683
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.72|4x|1A003E291A8C
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.75|4x|1A003E2920DB
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.83|4x|1A003EB4A9FD
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.85|4x|1A003EB3A46F
 | 
			
		||||
1.3.6.1.2.1.5.1.0|65|3716363
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EB4424B
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EB3F734
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB5AEEE
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EB2863B
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EA2D597
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EB3F847
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EB444E6
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.17|4x|1A003EA25EDF
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EB30296
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EB27B04
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EBB19A5
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.23|4x|1A003EA07650
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EB3A44C
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EB3F8E2
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.31|4x|1A003EB5AE70
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.35|4x|1A003EB16009
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.43|4x|1A003EA08407
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.49|4x|1A003EB3A397
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.53|4x|1A003EB3F897
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.70|4x|1A003EB2879E
 | 
			
		||||
1.3.6.1.2.1.4.22.1.2.3.127.0.0.1|4|LPBACK
 | 
			
		||||
1.3.6.1.2.1.5.1.0|65|1132410
 | 
			
		||||
1.3.6.1.2.1.5.2.0|65|0
 | 
			
		||||
1.3.6.1.2.1.5.3.0|65|1896526
 | 
			
		||||
1.3.6.1.2.1.5.4.0|65|293
 | 
			
		||||
1.3.6.1.2.1.5.3.0|65|618867
 | 
			
		||||
1.3.6.1.2.1.5.4.0|65|1
 | 
			
		||||
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|1819544
 | 
			
		||||
1.3.6.1.2.1.5.8.0|65|513542
 | 
			
		||||
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|1822855
 | 
			
		||||
1.3.6.1.2.1.5.14.0|65|514162
 | 
			
		||||
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|3311
 | 
			
		||||
1.3.6.1.2.1.5.16.0|65|16
 | 
			
		||||
1.3.6.1.2.1.5.17.0|65|604
 | 
			
		||||
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|1819544
 | 
			
		||||
1.3.6.1.2.1.5.22.0|65|513542
 | 
			
		||||
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.6.5.0|65|1707
 | 
			
		||||
1.3.6.1.2.1.6.6.0|65|507
 | 
			
		||||
1.3.6.1.2.1.6.5.0|65|4598
 | 
			
		||||
1.3.6.1.2.1.6.6.0|65|18868
 | 
			
		||||
1.3.6.1.2.1.6.7.0|65|0
 | 
			
		||||
1.3.6.1.2.1.6.8.0|65|1
 | 
			
		||||
1.3.6.1.2.1.6.8.0|65|4
 | 
			
		||||
1.3.6.1.2.1.6.9.0|66|0
 | 
			
		||||
1.3.6.1.2.1.6.10.0|65|786684
 | 
			
		||||
1.3.6.1.2.1.6.11.0|65|1370158
 | 
			
		||||
1.3.6.1.2.1.6.12.0|65|1234
 | 
			
		||||
1.3.6.1.2.1.6.14.0|65|680
 | 
			
		||||
1.3.6.1.2.1.6.15.0|65|627
 | 
			
		||||
1.3.6.1.2.1.7.1.0|65|570217595
 | 
			
		||||
1.3.6.1.2.1.7.2.0|65|0
 | 
			
		||||
1.3.6.1.2.1.6.10.0|65|308531
 | 
			
		||||
1.3.6.1.2.1.6.11.0|65|431852
 | 
			
		||||
1.3.6.1.2.1.6.12.0|65|13827
 | 
			
		||||
1.3.6.1.2.1.6.14.0|65|143
 | 
			
		||||
1.3.6.1.2.1.6.15.0|65|128
 | 
			
		||||
1.3.6.1.2.1.7.1.0|65|123832609
 | 
			
		||||
1.3.6.1.2.1.7.2.0|65|16
 | 
			
		||||
1.3.6.1.2.1.7.3.0|65|0
 | 
			
		||||
1.3.6.1.2.1.7.4.0|65|5733716
 | 
			
		||||
1.3.6.1.2.1.7.4.0|65|2234718
 | 
			
		||||
1.3.6.1.2.1.10.7.2.1.19.1|2|3
 | 
			
		||||
1.3.6.1.2.1.11.1.0|65|3163073
 | 
			
		||||
1.3.6.1.2.1.11.2.0|65|3163068
 | 
			
		||||
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.1.0|65|1318903
 | 
			
		||||
1.3.6.1.2.1.11.2.0|65|1633112
 | 
			
		||||
1.3.6.1.2.1.11.3.0|65|860
 | 
			
		||||
1.3.6.1.2.1.11.4.0|65|31421
 | 
			
		||||
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
 | 
			
		||||
@@ -172,22 +154,22 @@
 | 
			
		||||
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|4643001
 | 
			
		||||
1.3.6.1.2.1.11.14.0|65|4
 | 
			
		||||
1.3.6.1.2.1.11.15.0|65|1733044
 | 
			
		||||
1.3.6.1.2.1.11.16.0|65|459953
 | 
			
		||||
1.3.6.1.2.1.11.17.0|65|3
 | 
			
		||||
1.3.6.1.2.1.11.13.0|65|1437619
 | 
			
		||||
1.3.6.1.2.1.11.14.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.15.0|65|547263
 | 
			
		||||
1.3.6.1.2.1.11.16.0|65|107594
 | 
			
		||||
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|1
 | 
			
		||||
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|3163070
 | 
			
		||||
1.3.6.1.2.1.11.29.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.28.0|65|1286623
 | 
			
		||||
1.3.6.1.2.1.11.29.0|65|314210
 | 
			
		||||
1.3.6.1.2.1.11.30.0|2|1
 | 
			
		||||
1.3.6.1.2.1.11.31.0|65|0
 | 
			
		||||
1.3.6.1.2.1.11.32.0|65|0
 | 
			
		||||
@@ -312,104 +294,6 @@
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.118|2|118
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.119|2|119
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.120|2|120
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.121|2|121
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.122|2|122
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.123|2|123
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.124|2|124
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.125|2|125
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.126|2|126
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.127|2|127
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.128|2|128
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.129|2|129
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.130|2|130
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.131|2|131
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.132|2|132
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.133|2|133
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.134|2|134
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.135|2|135
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.136|2|136
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.137|2|137
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.138|2|138
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.139|2|139
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.140|2|140
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.141|2|141
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.142|2|142
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.143|2|143
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.144|2|144
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.145|2|145
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.146|2|146
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.147|2|147
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.148|2|148
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.149|2|149
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.150|2|150
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.151|2|151
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.152|2|152
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.153|2|153
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.154|2|154
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.155|2|155
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.156|2|156
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.157|2|157
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.158|2|158
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.159|2|159
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.160|2|160
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.161|2|161
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.162|2|162
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.163|2|163
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.164|2|164
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.165|2|165
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.166|2|166
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.167|2|167
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.168|2|168
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.169|2|169
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.170|2|170
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.171|2|171
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.172|2|172
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.173|2|173
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.174|2|174
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.175|2|175
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.176|2|176
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.177|2|177
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.178|2|178
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.179|2|179
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.180|2|180
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.181|2|181
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.182|2|182
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.183|2|183
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.184|2|184
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.185|2|185
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.186|2|186
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.187|2|187
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.188|2|188
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.189|2|189
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.190|2|190
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.191|2|191
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.192|2|192
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.193|2|193
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.194|2|194
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.195|2|195
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.196|2|196
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.197|2|197
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.198|2|198
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.199|2|199
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.200|2|200
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.201|2|201
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.202|2|202
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.203|2|203
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.204|2|204
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.205|2|205
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.206|2|206
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.207|2|207
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.208|2|208
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.209|2|209
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.210|2|210
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.211|2|211
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.212|2|212
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.213|2|213
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.214|2|214
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.215|2|215
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.216|2|216
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.217|2|217
 | 
			
		||||
1.3.6.1.2.1.17.1.4.1.2.218|2|218
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.1|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.2|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.3|2|0
 | 
			
		||||
@@ -530,104 +414,6 @@
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.118|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.119|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.120|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.121|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.122|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.123|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.124|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.125|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.126|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.127|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.128|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.129|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.130|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.131|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.132|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.133|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.134|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.135|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.136|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.137|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.138|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.139|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.140|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.141|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.142|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.143|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.144|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.145|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.146|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.147|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.148|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.149|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.150|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.151|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.152|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.153|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.154|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.155|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.156|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.157|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.158|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.159|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.160|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.161|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.162|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.163|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.164|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.165|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.166|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.167|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.168|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.169|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.170|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.171|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.172|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.173|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.174|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.175|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.176|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.177|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.178|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.179|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.180|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.181|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.182|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.183|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.184|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.185|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.186|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.187|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.188|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.189|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.190|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.191|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.192|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.193|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.194|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.195|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.196|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.197|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.198|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.199|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.200|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.201|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.202|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.203|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.204|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.205|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.206|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.207|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.208|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.209|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.210|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.211|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.212|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.213|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.214|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.215|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.216|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.217|2|0
 | 
			
		||||
1.3.6.1.2.1.17.4.3.1.2.218|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.1.255|4|1
 | 
			
		||||
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
 | 
			
		||||
@@ -637,22 +423,22 @@
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.4.2|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.6.1|70|44708651033343
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.2|70|44708651095844
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.1|70|32622670282
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.2|70|32622670282
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.1|70|8775677657392
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.6.2|70|8775677703256
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.1|70|6416607025
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.7.2|70|6416607025
 | 
			
		||||
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.9.1|70|947548749
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.2|70|947548749
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.1|70|2998082755764
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.2|70|2998082755764
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.1|70|21868548574
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.2|70|21868548574
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.1|70|285444070
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.9.2|70|285444070
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.1|70|702075286478
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.10.2|70|702075286478
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.1|70|4278065397
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.11.2|70|4278065397
 | 
			
		||||
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.13.1|70|1406747
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.2|70|1406747
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.1|70|253123
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.13.2|70|253123
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.14.1|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.14.2|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.1.1.15.1|66|0
 | 
			
		||||
@@ -668,23 +454,23 @@
 | 
			
		||||
1.3.6.1.2.1.31.1.2.1.3.1|2|0
 | 
			
		||||
1.3.6.1.2.1.31.1.2.1.3.2|2|0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.3.1.0|2|1
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-57.9
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|35
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|36
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|-2.1
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.87.2|4|-63.0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-60.8
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|55
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|7
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5755000
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|75
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|38
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.2.29.0|2|63
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-67.5
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|13
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|13
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|-1.1
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.87.2|4|-72.3
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-71.7
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|30
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|2
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5805000
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|46
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|72
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.2.29.0|2|45
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.2.30.0|2|2
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.2.31.0|2|57
 | 
			
		||||
1.3.6.1.4.1.161.19.3.1.12.2.31.0|2|39
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.7GHz MU-MIMO OFDM - Multipoint - Access Point
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|27
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|40
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.95.0|66|0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.97.0|66|0
 | 
			
		||||
1.3.6.1.4.1.161.19.3.3.1.223.0|65|0
 | 
			
		||||
1.3.6.1.6.3.10.2.1.3.0|2|11378957
 | 
			
		||||
1.3.6.1.6.3.10.2.1.3.0|2|3713152
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user